summaryrefslogtreecommitdiff
path: root/templates/curating.html
diff options
context:
space:
mode:
authorjoak <joak@nospace.at>2020-08-17 11:55:24 +0200
committerjoak <joak@nospace.at>2020-08-17 11:55:24 +0200
commitf60e9ccd5b046101903a79bf6afa0cf87fdd956c (patch)
treedb29d0f55a1bc3347b63341551fa05308554101d /templates/curating.html
init
Diffstat (limited to 'templates/curating.html')
-rw-r--r--templates/curating.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/templates/curating.html b/templates/curating.html
new file mode 100644
index 0000000..bdd6536
--- /dev/null
+++ b/templates/curating.html
@@ -0,0 +1,21 @@
+{% extends "layout.html" %}
+{% block title %}{{ this.title }}{% endblock %}
+{% block body %}
+ <div class="container-fluid main">
+ <div class="row">
+ <div class="col">
+ <h1>{{ bag('translation', this.alt, 'curating') }}</h1>
+
+ <h2>{{ bag('translation', this.alt, 'title') }}: {{ this.title }}</h2>
+ <h3>Start: {{ this.date_start|dateformat('Y-MM-dd') }}</h3>
+ <h3>{{ bag('translation', this.alt, 'end') }}: {{ this.date_end|dateformat('Y-MM-dd') }}</h3>
+ <h3>{{ bag('translation', this.alt, 'venue') }}: {{ this.venue }} </h3>
+ <h3>{{ bag('translation', this.alt, 'place') }}: {{ this.place }} </h3>
+ <h3>{{ bag('translation', this.alt, 'country') }}: {{ this.country }} </h3>
+ <h3>{{ bag('translation', this.alt, 'website') }}: <a href="{{ this.url }}">{{this.url}}</a> </h3>
+ <h3>{{ bag('translation', this.alt, 'comment') }}: {{ this.comment }} </h3>
+ {{ this.info }}
+ </div>
+ </div>
+ </div>
+{% endblock %}