From 113bd8a0f865b0cc2c47fb45a2ac511286ba7c29 Mon Sep 17 00:00:00 2001 From: Ozan Hanedan Date: Sat, 7 Sep 2019 13:10:57 +0300 Subject: [PATCH] Removed anchor tag for projects without a link (#130) --- _includes/projects.html | 6 +++++- _sass/_base.scss | 1 + 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/_includes/projects.html b/_includes/projects.html index 8d125ee..c50783c 100644 --- a/_includes/projects.html +++ b/_includes/projects.html @@ -20,7 +20,11 @@
- {{ project.title }} + {% if project.link %} + {{ project.title }} + {% else %} + {{ project.title }} + {% endif %} {% if project.tagline %} diff --git a/_sass/_base.scss b/_sass/_base.scss index 81d781c..2b66ce8 100644 --- a/_sass/_base.scss +++ b/_sass/_base.scss @@ -203,6 +203,7 @@ p { font-weight: 400; margin-top: 0; margin-bottom: 5px; + color: darken($theme-color, 15%); } .projects-section { .intro {