- Zola static site with zolanight theme - Blog section with sample posts - Projects section for listing external projects - Custom index template showing latest post and recent posts list
25 lines
613 B
HTML
25 lines
613 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ section.title }} - {{ config.title }}{% endblock title %}
|
|
|
|
{% block content %}
|
|
<h1>{{ section.title }}</h1>
|
|
<div>
|
|
{{ section.content | safe }}
|
|
</div>
|
|
<ul class="projects">
|
|
{% for page in section.pages %}
|
|
<li>
|
|
<article>
|
|
<h2><a href="{{ page.permalink }}">{{ page.title }}</a></h2>
|
|
{% if page.description %}
|
|
<p>{{ page.description }}</p>
|
|
{% endif %}
|
|
{% if page.extra.url %}
|
|
<p><a href="{{ page.extra.url }}">{{ page.extra.url }}</a></p>
|
|
{% endif %}
|
|
</article>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock content %}
|