Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Odevzdávací Systém MO
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Martin Mareš
Odevzdávací Systém MO
Merge requests
!11
Změny vzhledu
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Změny vzhledu
jirka/layout
into
devel
Overview
0
Commits
3
Changes
6
Merged
Jiří Setnička
requested to merge
jirka/layout
into
devel
4 years ago
Overview
0
Commits
3
Changes
6
0
0
Merge request reports
Compare
devel
version 3
81f83c39
4 years ago
version 2
1a8d1fb5
4 years ago
version 1
74472381
4 years ago
devel (base)
and
version 1
latest version
a0aeeb3e
3 commits,
4 years ago
version 3
81f83c39
3 commits,
4 years ago
version 2
1a8d1fb5
3 commits,
4 years ago
version 1
74472381
3 commits,
4 years ago
6 files
+
104
−
67
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
mo/web/templates/base.html
+
25
−
10
View file @ 74472381
Edit in single-file editor
Open in Web IDE
Show full file
@@ -7,15 +7,25 @@
{% block head %}{% endblock %}
</head>
<body>
<nav
id=
"main-menu"
>
{% 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>
<h1>
Odevzdávací systém Matematické olympiády
</h1>
<header>
<div
class=
"content"
>
<a
href=
"http://www.matematickaolympiada.cz/"
title=
"Na stránky MO"
>
<img
src=
"{{ url_for('static', filename='img/mo.jpg') }}"
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 %}
@@ -30,7 +40,12 @@
{% endif %}
{% endwith %}
{% block body %}{% endblock %}
</main>
<footer>
<hr>
<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>
.
<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>
.
</div>
</footer>
</body>
</html>
Loading