nerd-fonts/index.html
Fini Jastrow f71298b449 Simplify link of github button
[why]
The link on the floating Github button explicitely opens the master
branch. We could instead just link to the default branch (which is
technically more correct anyhow).

[how]
Drop branch specification from URL and use default branch.

Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
2023-10-09 12:26:25 +02:00

28 lines
733 B
HTML
Executable file

---
---
<!DOCTYPE html>
<html dir="ltr" lang="en">
{% include header.html %}
<body>
<div id="main">
<div class="container">
<a href="https://github.com/ryanoasis/nerd-fonts" target="_blank" id="github"
class="nf nf-fa-github"></a>
</div>
{% include topnav.html %}
{% for page in site.posts reversed %}
{% if page.page == nil %}
{% include section.html %}
{% endif %}
{% endfor %}
<div id="footer" class="section text-white">
<div class="container">
{% capture foottext %} {% include footer.md %} {% endcapture %}
{{ foottext | markdownify }}
</div>
</div>
</div>
{% include analytics.html %}
{% include scripts.html %}
</body>
</html>