gitar

repositories.djhtml

1
{% extends "website/base.djhtml" %}
2
3
{% block title %}Gitar | Index page{% endblock title %}
4
{% block description %}
5
Vngngdn's Gitar app. Really nothing more to say, except that it FREAKING ROCKS!
6
{% endblock description %}
7
{% block main %}
8
{% with mdac=materialDesign_accentColor %} {# You'll see why this is handy shortly. #}
9
<div class="section {{ materialDesign_color }} lighten-2">
10
	<p class="flow-text container white-text">
11
		Gitar is a simple web app to easily host Git repositories using the Django framework.
12
	</p>
13
</div>
14
<div class="container section">
15
16
	<ul>
17
	{% for file in files %}
18
	<li>{{ file }}</li>
19
	{% endfor %}
20
	</ul>
21
	</div>
22
{% endwith %}
23
{% endblock main %}
24