File: index.html

package info (click to toggle)
bootstrap-flask 2.4.2%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 28,784 kB
  • sloc: python: 2,334; makefile: 30
file content (16 lines) | stat: -rw-r--r-- 667 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 %}