nerd-fonts/index.html
2019-07-23 14:39:52 -07:00

28 lines
577 B
HTML
Executable file

---
---
<!DOCTYPE html>
<html dir="ltr" lang="en">
{% include header.html %}
<body>
<div id="main">
{% 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>