Flask-Project-Template/src/core/templates/index.html

30 lines
1014 B
HTML
Raw Normal View History

2019-12-14 23:03:06 +00:00
{% extends "layout.html" %}
2020-01-12 20:24:44 +00:00
{% block body_header %}
<h1 style=" position: fixed; top: 0em;">Footer</h1>
{% endblock body_header %}
2019-12-14 23:03:06 +00:00
{% block content %}
<div class="container">
<div class="row">
<div class="col justify-content-center text-center">
<h1>Hello World!</h1>
<p>Using dark themed Bootstrap 4 css files...</p>
<p>Themes:&nbsp;<a href="https://bootswatch.com/" target="_blank">Bootswatch</a></p>
</div>
2019-11-01 22:54:25 +00:00
</div>
</div>
2019-12-14 23:03:06 +00:00
{% endblock content %}
2019-11-01 22:54:25 +00:00
2020-01-12 20:24:44 +00:00
{% block body_footer %}
<h1 style=" position: fixed; bottom: 0em;">Footer</h1>
{% endblock body_footer %}
{% block body_scripts %}
2019-12-30 07:14:31 +00:00
<script src="{{ url_for('static', filename='js/ui-logic.js')}}"></script>
<script src="{{ url_for('static', filename='js/post-ajax.js')}}"></script>
<script src="{{ url_for('static', filename='js/ajax.js')}}"></script>
<script src="{{ url_for('static', filename='js/events.js')}}"></script>
2020-01-12 20:24:44 +00:00
{% endblock body_scripts %}