File: index.html

package info (click to toggle)
flask-openid 1.2.5%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 332 kB
  • ctags: 136
  • sloc: python: 614; makefile: 113
file content (10 lines) | stat: -rw-r--r-- 213 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
{% extends "layout.html" %}
{% block body %}
  <h2>Overview</h2>
  {% if g.user %}
  <p>
    Hello {{ g.user.name }}!
  {% endif %}
  <p>
    This is just an example page so that something is here.
{% endblock %}