Skip to content

Commit

Permalink
fix: links in footer
Browse files Browse the repository at this point in the history
  • Loading branch information
papierkorp committed Nov 9, 2023
1 parent 3670714 commit d301208
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ <h3>Recent Posts</h3>
<div class="social-icons item3">
{% for link in site.footer_links %}
{% if link.icon %}
<a href="{{ site.baseurl }}{{ link.url }}" class="{{ link.icon }}" target="_blank"></a>
<a href="{{ link.url }}" class="{{ link.icon }}" target="_blank"></a>
{% else %}
<a href="{{ site.baseurl }}{{ link.url }}">{{ link.title }}</a>
<a href="{{ link.url }}">{{ link.title }}</a>
{% endif %}
{% unless forloop.last %}
<span class="divider"></span>
Expand Down

0 comments on commit d301208

Please sign in to comment.