summaryrefslogtreecommitdiff
path: root/templates/project.html
blob: f2b73e1be2ad1a9493da102e4b30a97ec7acc513 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "base.html" %}

{% block content %}
<h1>{{ section.title }}</h1>
<div class="projects-list-content">
<div class="blog-list">
	{% for page in section.pages %}
		<pre class="projects-entry wrap">
		<div class="blog-ls wrap">
<span class="white">$ </span><span class="green">cat </span><span class="white">{{ page.extra.displayed_filename }} | </span><span class="green">glow</span>
		</div>
			<h2 class="blog-title">
				<a href="{{ page.extra.url | safe}}">{{ page.title }}</a>
			</h2>
			{{ page.content | safe }}
		</pre>
	{% endfor %}
</div>
</div>
{% endblock content %}