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

{% block content %}

	<pre class="content" id="top">{{parts.top}}</pre>
	
	<img src="title_headline.png">

	<pre class="content" id="program">{% for event in parts.program %}{% include 'event.html' %}{% endfor %}</pre>
{#
	<img src="news_headline.png">
	
	<pre class="content" id="news">{{parts.news}}</pre>
	-->
	<br>
<!--
	<form>
		<label id="news_input_label" for="news_input">Post your own news, or anything you'd like here:</label><br>
		<input type="text" id="news_input" name="news_input" maxlength="{{ news_max_length }}" placeholder="Type text here">
		<input type="submit" value="Post" />
	</form> 
#}

{% endblock %}