Skip to content

Commit

Permalink
#7 Add text decoration to links for publications
Browse files Browse the repository at this point in the history
  • Loading branch information
LeNPaul committed Apr 29, 2021
1 parent daa05ab commit 008677b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _includes/publications.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<h3 class="fw-bold border-bottom pb-3 mb-5">Publications</h3>
{% if page.title == "Home" %}
{% for item in site.data.publications.featured %}
<p><a href="{{ item.url }}" class="text-dark text-decoration-none">{{ item.name }}</a></p>
<p><a href="{{ item.url }}" class="text-dark">{{ item.name }}</a></p>
{% endfor %}
{% else %}
{% for item in site.data.publications.index %}
<p><a href="{{ item.url }}" class="text-dark text-decoration-none">{{ item.name }}</a></p>
<p><a href="{{ item.url }}" class="text-dark">{{ item.name }}</a></p>
{% endfor %}
{% endif %}
</div>
Expand Down

0 comments on commit 008677b

Please sign in to comment.