DEVELOPMENT ENVIRONMENT

~liljamo/liljamo-dev-zola

ref: 9d18b7cb629a750400f16451f58dd849e9bcd5e3 liljamo-dev-zola/templates/index.html -rw-r--r-- 282 bytes
9d18b7cbJonni Liljamo feat: feeds, more testing 9 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
{% extends "layouts/base.html" %}

{% block content %}
<p class="text-slate-900">balls</p>

{% for section_path in section.subsections %}
{% set section = get_section(path=section_path) %}
<a href={{ section.permalink }}>{{ section.title }}</a>
{% endfor %}

{% endblock content %}