forked from robert/robertjohnson.work
Removed anchor tag for projects without a link (#130)
This commit is contained in:
parent
b91225665c
commit
113bd8a0f8
@ -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 %}
|
||||
|
@ -203,6 +203,7 @@ p {
|
||||
font-weight: 400;
|
||||
margin-top: 0;
|
||||
margin-bottom: 5px;
|
||||
color: darken($theme-color, 15%);
|
||||
}
|
||||
.projects-section {
|
||||
.intro {
|
||||
|
Loading…
Reference in New Issue
Block a user