DEVELOPMENT ENVIRONMENT

~liljamo/liljamo-dev-zola

ref: aff5e729fa98f5d70f89849b77cd5269b13bcb6c liljamo-dev-zola/templates/project.html -rw-r--r-- 253 bytes
aff5e729Jonni Liljamo feat: content structure defined, config changes 9 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "layouts/base.html" %}

{% block content %}
<p>{{ section.title }}</p>

{% if section.pages %}
<p>has logs</p>
{% for page in section.pages %}
<a href={{ page.permalink }}>{{ page.title }}</a>
{% endfor %}
{% endif %}

{% endblock content %}