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">
<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>
{% if project.tagline %}