Removed anchor tag for projects without a link (#130)

This commit is contained in:
Ozan Hanedan 2019-09-07 13:10:57 +03:00 committed by Nelson Estevão
parent b91225665c
commit 113bd8a0f8
2 changed files with 6 additions and 1 deletions

View File

@ -20,7 +20,11 @@
<div class="item"> <div class="item">
<span class="project-title"> <span class="project-title">
<a href="{{ project.link }}">{{ project.title }}</a> {% if project.link %}
<a href="{{ project.link }}" target="_blank">{{ project.title }}</a>
{% else %}
{{ project.title }}
{% endif %}
</span> </span>
{% if project.tagline %} {% if project.tagline %}

View File

@ -203,6 +203,7 @@ p {
font-weight: 400; font-weight: 400;
margin-top: 0; margin-top: 0;
margin-bottom: 5px; margin-bottom: 5px;
color: darken($theme-color, 15%);
} }
.projects-section { .projects-section {
.intro { .intro {