Setup a Notes category
This commit is contained in:
parent
f9eafed416
commit
f2e8988825
5 changed files with 53 additions and 0 deletions
13
templates/notes.html
Normal file
13
templates/notes.html
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<h1 class="title">{{ section.title }}</h1>
|
||||
<ul id="posts">
|
||||
{%- for page in section.pages %}
|
||||
<li>
|
||||
<time class="post-date">{{ page.date }}</time>
|
||||
<a href="{{ page.permalink | safe }}">{{ page.title }}</a>
|
||||
</li>
|
||||
{%- endfor %}
|
||||
</ul>
|
||||
{%- endblock content %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue