We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2082178 commit b8f72bbCopy full SHA for b8f72bb
content/pages/projects.md
@@ -0,0 +1,4 @@
1
+Title: Projects
2
+Template: projects
3
+
4
+The various libraries we maintain.
theme/templates/projects.html
@@ -0,0 +1,18 @@
+{% extends "!simple/page.html" %}
+{% block content %}
+ <header>
5
+ <h2>{{ page.title }}</h2>
6
+ </header>
7
+ {% import 'translations.html' as translations with context %}
8
+ {{ translations.translations_for(page) }}
9
10
+ {{ page.content }}
11
12
+ {% for p in pages|sort(attribute='title') if p.prefix == "projects/" %}
13
+ <article>
14
+ <h3><a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a></h3>
15
+ {{ p.summary }}
16
+ </article>
17
+ {% endfor %}
18
+{% endblock %}
0 commit comments