We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b1ee8f commit fc5b67bCopy full SHA for fc5b67b
templates/blog.html
@@ -7,11 +7,8 @@ <h1 class="title">
7
8
<a href="https://github.com/micouy">my github</a>
9
10
-<ul>
11
- <!-- If you are using pagination, section.pages will be empty.
12
- You need to use the paginator object -->
13
- {% for page in section.pages %}
14
- <li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
15
- {% endfor %}
16
-</ul>
+{% for page in section.pages %}
+<p>{{ page.date }} <a href="{{ page.permalink | safe }}">{{ page.title }}</a></p>
+{% endfor %}
+
17
{% endblock content %}
0 commit comments