Very far-reaching formatting and structure changes to website
parent
27e8d8ad6f
commit
df87565e42
@ -1,12 +1,5 @@
|
||||
{% extends "base.html" %} {% block content %}
|
||||
<article>
|
||||
<p lang="en">
|
||||
This page is a placeholder for this domain, as I am not sure
|
||||
what to put here yet.
|
||||
</p>
|
||||
<p lang="de">
|
||||
Diese Seite ist ein Platzhalter für diese Domäne, weil ich noch
|
||||
nicht weiß, was ich hier hin packen will.
|
||||
</p>
|
||||
</article>
|
||||
<p>
|
||||
This is some placeholder text because I don't know what to put here, yet.
|
||||
</p>
|
||||
{% endblock content %}
|
||||
|
@ -1,13 +1,11 @@
|
||||
{% extends "base.html" %} {% block content %}
|
||||
<h2>{{ section.title }}</h2>
|
||||
<article>
|
||||
<ul>
|
||||
{% for page in section.pages %}
|
||||
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<div>
|
||||
{{ section.content | safe }}
|
||||
</div>
|
||||
</article>
|
||||
<ul>
|
||||
{% for page in section.pages %}
|
||||
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<div>
|
||||
{{ section.content | safe }}
|
||||
</div>
|
||||
{% endblock content %}
|
||||
|
Loading…
Reference in New Issue