Skip to content
Snippets Groups Projects
Select Git revision
  • ac0c098deeca6285a15d746d35cb93d196d314c3
  • devel default
  • master
  • fo
  • jirka/typing
  • fo-base
  • mj/submit-images
  • jk/issue-96
  • jk/issue-196
  • honza/add-contestant
  • honza/mr7
  • honza/mrf
  • honza/mrd
  • honza/mra
  • honza/mr6
  • honza/submit-images
  • honza/kolo-vs-soutez
  • jh-stress-test-wip
  • shorten-schools
19 results

base.html

Blame
  • base.html 1.72 KiB
    <!DOCTYPE html>
    <html>
    <head>
    	<title>Odevzdávací systém MO</title>
    	<link rel=stylesheet href="{{ url_for('static', filename='bootstrap.min.css') }}" type='text/css' media=all>
    	<link rel=stylesheet href="{{ url_for('static', filename='mo.css') }}?v=7" type='text/css' media=all>
    {% block head %}{% endblock %}
    </head>
    <body>
    <header class="flavor-{{web_flavor}}">
    	<div class="content">
    		<a href="http://www.matematickaolympiada.cz/" title="Na stránky MO">
    			<img src="{{ url_for('static', filename='img/mo.png') }}" alt="Matematická olympiáda">
    		</a>
    		<h1><b>O</b>devzdávací <b>S</b>ystém <b>M</b>atematické <b>O</b>lympiády</h1>
    	</div>
    </header>
    <div id="nav-wrapper">
    	<nav id="main-menu" class="content">
    		{% for item in get_menu() %}
    			<a {% if item.classes %}class="{{ " ".join(item.classes) }}"{% endif %} href="{{ item.url }}">{{ item.name }}</a>
    		{% endfor %}
    		{% if g.user %}
    			<form method=POST action='{{ url_for('logout') }}'><input type=submit value='Logout'></form>
    		{% endif %}
    	</nav>
    </div>
    <main>
    {% with messages = get_flashed_messages(with_categories=true) %}
    {% if messages %}
    	{% for category, message in messages %}
    		{% if category == 'message' %}
    		<div class="alert alert-warning" role="alert">
    		{% else %}
    		<div class="alert alert-{{ category }}" role="alert">
    		{% endif %}
    		{{ message }}
    		</div>
    	{% endfor %}
    {% endif %}
    {% endwith %}
    {% block body %}{% endblock %}
    </main>
    <footer>
    	<hr>
    	<div class="content">
    		<p>V případě problémů napište správci na adresu <a href='mailto:osmo@mo.mff.cuni.cz'>osmo@mo.mff.cuni.cz</a>.
    		Více viz <a href='{{ url_for('doc_about') }}'>o aplikaci</a> a
    		<a href='{{ url_for('doc_gdpr') }}'>zpracování osobních údajů</a>.
    	</div>
    </footer>
    </body>
    </html>