mirror of
https://github.com/wassname/flask-bootstrap.git
synced 2026-06-27 16:10:14 +08:00
22 lines
700 B
HTML
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 »</a></p>
|
|
<p>Current user:
|
|
{{ session['username'] }}
|
|
</p>
|
|
<p>Switch: {{ switch }}
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|