DEVELOPMENT ENVIRONMENT

~liljamo/liljamo-dev-zola

ref: 9d18b7cb629a750400f16451f58dd849e9bcd5e3 liljamo-dev-zola/templates/project.html -rw-r--r-- 533 bytes
9d18b7cbJonni Liljamo feat: feeds, more testing 9 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% 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 %}
{% endblock content %}