File: index.html

package info (click to toggle)
bootstrap-flask 2.2.0%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 25,396 kB
  • sloc: python: 2,218; makefile: 24
file content (16 lines) | stat: -rw-r--r-- 671 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends 'base.html' %}

{% block content %}
    <h1>Bootstrap-Flask Demo Application</h1>
<p>This demo uses Bootstrap version 5.</p>
<ul>
    <li><a href="{{ url_for('test_form') }}">Form</a></li>
    <li><a href="{{ url_for('test_nav') }}">Nav</a></li>
    <li><a href="{{ url_for('test_bootswatch') }}">Bootswatch</a></li>
    <li><a href="{{ url_for('test_pagination') }}">Pagination</a></li>
    <li><a href="{{ url_for('test_flash') }}">Flash Messages</a></li>
    <li><a href="{{ url_for('test_table') }}">Table</a></li>
    <li><a href="{{ url_for('test_icon') }}">Icon</a></li>
    <li><a href="{{ url_for('test_icons') }}">Icons</a></li>
</ul>
{% endblock %}