diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-03-18 14:10:12 +0000 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-03-18 14:10:12 +0000 |
| commit | 2158c8e86ff4417973dd7ca650fab91e32c4e56a (patch) | |
| tree | e26d9e43f712e6f140dc744287431e6e46c9b143 /app/templates/base.html | |
| download | AnnotateChange-2158c8e86ff4417973dd7ca650fab91e32c4e56a.tar.gz AnnotateChange-2158c8e86ff4417973dd7ca650fab91e32c4e56a.zip | |
initial commit
Diffstat (limited to 'app/templates/base.html')
| -rw-r--r-- | app/templates/base.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/app/templates/base.html b/app/templates/base.html new file mode 100644 index 0000000..c40482d --- /dev/null +++ b/app/templates/base.html @@ -0,0 +1,27 @@ +<html> + <head> + {% if title %} + <title>{{ title }} - Annotate Change</title> + {% else %} + <title>Welcome to Annotate Change</title> + {% endif %} + </head> + <body> + <div>Annotate Change: + <a href="{{ url_for('index') }}">Home</a> + <a href="{{ url_for('login') }}">Login</a> + </div> + <hr> + {% with messages = get_flashed_messages() %} + {% if messages %} + <ul> + {% for message in messages %} + <li>{{ message}}</li> + {% endfor %} + </ul> + {% endif %} + {% endwith %} + {% block content %} + {% endblock %} + </body> +</html> |
