Skip to content

Commit

Permalink
Merge pull request #701 from drnlm/feature/urlify_profiles
Browse files Browse the repository at this point in the history
Make profile urls links, so they're clickable
  • Loading branch information
drnlm authored Feb 28, 2024
2 parents 7d345a1 + 36125d6 commit 5aada61
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ <h1>
{% endblock name %}
{% block social %}
{% for tag, site_url in social_sites.items %}
<p><b>{{ tag }}</b>: {{ site_url }}</p>
<p><b>{{ tag }}</b>: <a href="{{ site_url }}">{{ site_url }}</a></p>
{% endfor %}
{% for tag, site_url in code_sites.items %}
<p><b>{{ tag }}</b>: {{ site_url }}</p>
<p><b>{{ tag }}</b>: <a href="{{ site_url }}">{{ site_url }}</a></p>
{% endfor %}
{% endblock social %}
{% endspaceless %}
Expand Down

0 comments on commit 5aada61

Please sign in to comment.