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

43 lines
1.4 KiB
HTML
Raw Normal View History

2019-12-14 23:03:06 +00:00
{% extends "layout.html" %}
2020-01-12 20:24:44 +00:00
2020-11-10 01:33:27 +00:00
{% block header_meta_additional %}
{% endblock header_meta_additional %}
{% block header_css_additional %}
{% endblock header_css_additional %}
{% block header_scripts_additional %}
{% endblock header_scripts_additional %}
2020-01-12 21:08:45 +00:00
{% block body_header_additional %}
{% endblock body_header_additional %}
2020-01-12 20:24:44 +00:00
2020-11-10 01:33:27 +00:00
{% block body_content_additional %}
2020-12-16 05:22:52 +00:00
<div class="row">
<div class="col justify-content-center text-center">
2022-06-17 05:04:14 +00:00
<p>Using Bootstrap 5 Themeing...</p>
2020-12-16 05:22:52 +00:00
<p>Themes:&nbsp;<a href="https://bootswatch.com/" target="_blank">Bootswatch</a></p>
2021-09-27 03:33:23 +00:00
<p>With React available...</p>
<p>A React Example Page:&nbsp;
<a href="{{ url_for('react_page') }}">
<button type="button" class="btn btn-dark">
Try Me!
</button>
</a>
</p>
2019-11-01 22:54:25 +00:00
</div>
</div>
2020-11-10 01:33:27 +00:00
{% endblock body_content_additional %}
2020-01-12 20:24:44 +00:00
2020-01-12 21:08:45 +00:00
{% block body_footer_additional %}
{% endblock body_footer_additional %}
2020-01-12 20:24:44 +00:00
2020-11-10 01:33:27 +00:00
2020-01-12 21:08:45 +00:00
{% block body_scripts_additional %}
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 21:08:45 +00:00
{% endblock body_scripts_additional %}