nerd-fonts/index.html
Fini Jastrow 6da42f1532 Remove dependency from FA's css
[why]
Keep the dependencies as small as possible.
We already have the github icon in our own set which we import anyhow,
so there is no need to fetch fontawesome's CSS.

[how]
Replace fa-github with nf-fa-github.

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

28 lines
745 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/tree/master" 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>