1
Fork 0
mirror of https://github.com/Steffo99/estus.git synced 2024-11-25 17:14:19 +00:00
estus/templates/base.htm

29 lines
1.3 KiB
HTML
Raw Normal View History

<html>
<head>
<title>{% block title %}{% endblock %}</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
2017-09-13 06:47:37 +00:00
<link rel="icon" href="http://www.terredicastelli.mo.it/favicon.ico">
{% block extrahead %}{% endblock %}
</head>
<body>
{% include 'nav.htm' %}
<div class="container">
{% block content %}{% endblock %}
</div>
2017-09-14 07:44:04 +00:00
{% if footer is not defined %}
<div class="container container-lower">
<div class="well well-sm">
<div align="right">
{% if user %}
<div class="goldfish"><a href="/pheesh">{% include 'pheesh.svg' %}</a></div>
{% endif %}
<div class="goldfish"><a href="/smecds"><img alt="Secondo me è colpa dello stagista..." src="{{ url_for('static', filename='joke.png') }}"></a></div>
</div>
</div>
</div>
2017-09-14 07:44:04 +00:00
{% endif %}
</body>
</html>