DEVELOPMENT ENVIRONMENT

~liljamo/liljamo-dev-zola

ref: 5b5216b200b8d5bf843d9493c0a626ef1c9b91f5 liljamo-dev-zola/templates/project.html -rw-r--r-- 613 bytes
5b5216b2Jonni Liljamo fix: background colour cutting off 9 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends "layouts/base.html" %}
{% block extra_head %}
<link rel="alternative" type="application/atom+xml" title="RSS" href="{{ section.path }}atom.xml">
{% endblock extra_head %}

{% block content %}
<p>{{ section.title }}</p>
{% if section.pages %}
<div>
    <p>has logs</p>
    {% if section.generate_feed %}
    <a href="{{ section.path }}atom.xml">RSS Feed</a>
    {% endif %}
    {% for page in section.pages %}
    <a href={{ page.permalink }}>{{ page.title }}</a>
    {% endfor %}
</div>
{% endif %}
<article class="prose lg:prose-xl">
    {{ section.content | safe }}
</article>
{% endblock content %}