<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') }}"> {% block extrahead %}{% endblock %} </head> <body> {% include 'nav.htm' %} <div class="container"> {% block content %}{% endblock %} </div> <div class="container container-lower"> <div class="well well-sm"> <div align="right"> <img class="goldfish" src="{{ url_for('static', filename='goldfish.png') }}"> <a href="/smecds"><img alt="Secondo me รจ colpa dello stagista..." src="{{ url_for('static', filename='joke.png') }}"></a> </div> </div> </div> </body> </html>