use gutenberg and render anleitungen
This commit is contained in:
parent
9141aced4e
commit
64db773f11
30 changed files with 152 additions and 254 deletions
14
templates/how-to.html
Executable file
14
templates/how-to.html
Executable file
|
@ -0,0 +1,14 @@
|
|||
{% extends "index.html" %}
|
||||
|
||||
{% block title %}
|
||||
<title>{{ page.title }} - {{ config.title }}</title>
|
||||
{% endblock title %}
|
||||
|
||||
{% block content %}
|
||||
{% set anleitungen = get_section(path="how-to/_index.md") %}
|
||||
{% for page in anleitungen.pages %}
|
||||
<li>
|
||||
<a href="{{ get_url(path=page.path) }}" title="{{ page.title }}">{{ page.title }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
{% endblock content %}
|
Loading…
Add table
Add a link
Reference in a new issue