Compare commits
No commits in common. '5f898c2ef9ae619af8a03cac01437c6048f2c13a' and '2f657f5cd226bb0899ff54cb66a168dab873c8f1' have entirely different histories.
5f898c2ef9
...
2f657f5cd2
@ -0,0 +1,10 @@
|
|||||||
|
{% extends "layout.html" %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
{% for post in posts %}
|
||||||
|
<p> {{ post.universe }} </p>
|
||||||
|
<p> {{ post.powerlevel }} </p>
|
||||||
|
<i> {{ post.date_posted }} </i>
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
|
{% endblock content %}
|
@ -1,6 +1,8 @@
|
|||||||
{% extends "layout.html" %}
|
{% extends "layout.html" %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
{% for post in posts %}
|
||||||
|
<h1>{{ post.pagetitle }}</h1>
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
{% endblock content %}
|
{% endblock content %}
|
Loading…
Reference in new issue