2017-09-11 10:47:52 +00:00
|
|
|
<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">
|
2017-09-12 09:11:19 +00:00
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
2017-09-11 10:47:52 +00:00
|
|
|
{% block extrahead %}{% endblock %}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% include 'nav.htm' %}
|
|
|
|
<div class="container">
|
|
|
|
{% block content %}{% endblock %}
|
2017-09-12 10:50:04 +00:00
|
|
|
<br><br>
|
|
|
|
<a href="/smedcs"> <div align="right">
|
|
|
|
<div class="well well-sm">
|
|
|
|
<img alt="joke" src="{{ url_for('static', filename='joke.png') }}">
|
|
|
|
</div>
|
|
|
|
</a>
|
2017-09-11 10:47:52 +00:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|