7 lines
317 B
HTML
7 lines
317 B
HTML
{% extends "layout.html" %}
|
|
{% block page_title %}Public Page{% endblock %}
|
|
{% block body %}
|
|
{{ super() }}
|
|
<img src="{{ url_for('static', filename='img/public.jpg') }}" class="img-circle" alt="Cinque Terre" width="304" height="236">
|
|
You can access this no matter whether you have logged in.
|
|
{% endblock %} |