Files
Eric S. Bullington 14f006ee5e Initial commit
2012-03-06 12:57:28 -05:00

22 lines
700 B
HTML

{% extends "inner_base.html" %}
{% block title %}Welcome Inside!{% endblock %}
{% block header %}Welcome to Flask!{% endblock %}
{% block main %}
<!-- Main hero unit for a primary marketing message or call to action -->
<div>
<p>This is a template for a simple marketing or informational website. It includes a large callout called the hero unit and three supporting pieces of content. Use it as a starting point to create something more unique.</p>
<p><a class="btn btn-primary btn-large">Learn more &raquo;</a></p>
<p>Current user:
{{ session['username'] }}
</p>
<p>Switch: {{ switch }}
</div>
{% endblock %}