blob: 15b69856f962d9ee37226d88f43cabc2e5dd8db6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{% extends "snippets/layout.html" %}
{% block title "projects | Maximilian Möhring" %}
{% block css %}
.main {
/*
font-size: 1.25rem;
*/
margin-top: 4rem;
}
{% endblock %}
{% block main %}
<div class="container">
{% include "snippets/projects.html" %}
{% include "snippets/things.html" with {'included': true}%}
</div>
{% endblock %}
|