Initial commit
This commit is contained in:
commit
ccd13c62a2
18 changed files with 3795 additions and 0 deletions
23
source/_layouts/note.html.twig
Normal file
23
source/_layouts/note.html.twig
Normal file
|
@ -0,0 +1,23 @@
|
|||
{% extends "base" %}
|
||||
|
||||
{% block body %}
|
||||
<nav>
|
||||
<a href="/">Home</a>
|
||||
</nav>
|
||||
|
||||
{{ parent() }}
|
||||
{% endblock %}
|
||||
|
||||
{% block content_wrapper %}
|
||||
{% block content %}{% endblock %}
|
||||
|
||||
{% if page.tags is not empty %}
|
||||
<h2>Tags</h2>
|
||||
|
||||
<ul>
|
||||
{% for tag in page.tags|sort %}
|
||||
<li>{{ tag }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
{% endblock %}
|
Loading…
Add table
Add a link
Reference in a new issue