templates/index.html
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | {% extends "base.html" %}
{% block outline %}
	. <br>
	├── <a href="https://search.apocryphonofgio.net">Whoogle 🔗</a> <br> 
	├── <a href="https://inv.apocryphonofgio.net/search?q=">Invidious 🔗</a> <br> 
	└── <a href="https://git.apocryphonofgio.net/">Git 🔗</a> <br>
{% endblock outline %}
{% block title %}
	The Apocryphon of Gio
{% endblock title %}
{% block content %}
{% set posts_section = get_section(path="posts/_index.md") %}
<img src="/winthrop_quotes.jpg" alt="This alt text is in quotes"> 
<img src="/Amarna_Chudeological_Expedition.jpg" alt="I wanted the Thor art parody, for some reason its not on Soybooru"> 
<h2> Recent </h2>
<ul>
  {% for page in posts_section.pages %}
  <li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
  {% endfor %}
</ul>
{% endblock content %}
 |