forked from orbit-oss/flask
10 lines
213 B
HTML
10 lines
213 B
HTML
{% 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 %}
|