summaryrefslogtreecommitdiff
path: root/src/templates/index.html
blob: e4b0aff8dc7a91fc2a031d1ec035a2f5cfdd0f68 (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
25
26
{% extends "base.html" %}

{% block content %}

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

	<pre class="content" id="program">{% for event in parts.program %}{% if loop.previtem and loop.previtem.day != event.day %}<br>{% endif %}<div style="position: relative"><div style="display: inline-block; background: #006688; height: 1.2em; width: {{event.progress}}%; position: absolute; left: 0"></div><div style="position: absolute; top: 0px; left: 0px;">{{event.title}}  <span class="grey">{{event.day}}</span> {{ event.time}}  {{ event.icon }}</div></div><br>{% 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 %}