Graph base template

This commit is contained in:
Eryn Wells 2012-08-18 09:47:22 -07:00
parent 529c932e33
commit 2da6b7395c

19
templates/graph_base.html Normal file
View file

@ -0,0 +1,19 @@
{# vim: set ft=htmldjango #}
{% extends "base.html" %}
{% block head_css %}
<style text="text/css">
h1.placeholder {
margin-top: 80px;
text-align: center;
color: #ccc;
}
</style>
{% endblock %}
{% block container %}
{% include "navbar.html" %}
<div class="container-fluid">
{% block graph %}<h1 class="placeholder">PUT A GRAPH HERE</h1>{% endblock %}
</div>
{% endblock container %}