templates/golb.html (view raw)
1{% extends "base.html" %}
2
3{% block content %}
4<h1 class="title">{{ section.title }}</h1>
5<p>Welcome to my golb!</p>
6
7<p>It's like my blog, but with things that are a bit moreā¦ personal? Random? Spanish? Yeah!</p>
8
9<hr>
10
11<ul>
12 {% for page in section.pages %}
13 <li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
14 {% endfor %}
15</ul>
16{% endblock %}