blob: 3fbe12e2f8524da189e2aa05e076c232e879e5a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{% extends "base.html" %}
{% block content %}
<h1 class="title">
{{ section.title }}
</h1>
{% for page in section.pages %}
<div class="index-section project-section">
<a href="{{ page.permalink | safe }}"><h2>{{ page.title }}</h2><img src="{{ page.path ~ 'cover.png' }}" alt="{{ page.title }}"></a>
</div>
{% endfor %}
{% endblock content %}
|