You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
508 B
HTML
22 lines
508 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ SITENAME }}{%endblock%}
|
|
|
|
{% block bodyclass %}research{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ page.title }}</h1>
|
|
{{ page.content }}
|
|
{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
<h2>Research axes</h2>
|
|
{% for article in categories|get_category_articles('research-questions')|sort(attribute="sort") %}
|
|
<details>
|
|
<summary>
|
|
<h3>{{ article.title }}</h3>
|
|
</summary>
|
|
{{ article.content }}
|
|
</details>
|
|
{% endfor %}
|
|
{% endblock %} |