105 lines
4.1 KiB
HTML
105 lines
4.1 KiB
HTML
{% load staticfiles sekizai_tags %}
|
|
<!DOCTYPE html>
|
|
<html lang='cs'>
|
|
<head>
|
|
<title>{% block title %}Seminář M&M{% endblock title %}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="shortcut icon" href="{% static 'favicon.ico' %}" type="image/x-icon">
|
|
{% render_block "css" %}
|
|
<link href="{% static 'css/bootstrap-theme.css' %}" rel="stylesheet">
|
|
<link href="{% static 'css/bootstrap.css' %}" rel="stylesheet">
|
|
<link href="{% static 'css/mamweb.css' %}" rel="stylesheet">
|
|
<link href="{% static 'css/prettyPhoto.css' %}" rel="stylesheet" type="text/css" media="screen" charset="utf-8" />
|
|
<script src="{% static 'js/jquery-1.11.1.js' %}"></script>
|
|
{% include 'autocomplete_light/static.html' %}
|
|
|
|
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}fluent_comments/css/ajaxcomments.css" />
|
|
<script type="text/javascript" src="{{ STATIC_URL }}fluent_comments/js/ajaxcomments.js"></script>
|
|
|
|
{# nastavení MathJaxu, aby nahrazoval i matiku obalenou jednoduchými $ #}
|
|
<script type="text/x-mathjax-config">
|
|
MathJax.Hub.Config({
|
|
tex2jax: {
|
|
inlineMath: [['$','$'], ['\\(','\\)']],
|
|
processEscapes: true
|
|
}
|
|
});
|
|
</script>
|
|
<script type="text/javascript"
|
|
src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
|
|
</script>
|
|
|
|
</head>
|
|
<body class='{% if user.is_staff %}org-logged-in{% endif %}'>
|
|
{% if user.is_staff %}
|
|
<div class="login-bar" style='background: #F80;'>
|
|
{% if view.object %}
|
|
Objekt {{ view.object }}: {{ view.object }}
|
|
{% if view.object.admin_url %}<a href='{{ view.object.admin_url }}'>[admin]</a>{% endif %}
|
|
{% endif %}
|
|
{% if flatpage %}
|
|
Stránka <tt>{{ flatpage.url }}</tt> ({{ flatpage.title }})
|
|
<a href='{% url 'admin:flatpages_flatpage_change' flatpage.id %}'>[admin]</a>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div class="container">
|
|
<div class='row'>
|
|
<div class='col-md-12'>
|
|
<a href='/'>
|
|
<div id="header" class="{% block header %}{% endblock %}">
|
|
<img class="logo" src="{% static 'images/logo.png' %}" />
|
|
<!--<h1>{% block nadpis1b %}Nadpis 1. úrovně{% endblock %}</h1>-->
|
|
</div>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div class='row'>
|
|
<div class='col-md-12' style=''>
|
|
<div id='menu'>
|
|
{# ============= MENU ============== #}
|
|
<ul>
|
|
<li class="{% block menu_uvod %}{% endblock %}"><a href="/co-je-MaM/uvod/">Co je M&M</a>
|
|
{# ukazka jak pouzit tag url <li class="{% block menu_soustredeni %}{% endblock %}"><a href="{% url 'seminar_seznam_soustredeni' %}">Soustředění</a> #}
|
|
<li class="{% block menu_soustredeni %}{% endblock %}"><a href="/soustredeni/">Soustředění</a>
|
|
<li class="{% block menu_zadani %}{% endblock %}"><a href="/zadani/aktualni/">Zadání</a>
|
|
<li class="{% block menu_clanky %}{% endblock %}"><a href="/clanky/uvod/">Články</a>
|
|
<li class="{% block menu_archiv %}{% endblock %}"><a href="/archiv/cisla/">Archiv</a>
|
|
<li class="{% block menu_odevzdat %}{% endblock %}"><a href="/co-je-MaM/kontakt/">Kontakt</a>
|
|
</ul>
|
|
{# ======== KONEC MENU =============#}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class='row'>
|
|
<div class='col-md-12'>
|
|
<div id='submenu'>
|
|
{% block submenu %}
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class='row content'>
|
|
<div class='col-md-12'>
|
|
{% block content %}
|
|
{% endblock content %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="{% static 'js/bootstrap.js' %}"></script>
|
|
<script src="{% static 'js/jquery.jcarousel-core.js' %}" type="text/javascript"></script>
|
|
<script src="{% static 'js/jquery.prettyPhoto.js' %}" type="text/javascript" charset="utf-8"></script>
|
|
<script type="text/javascript" charset="utf-8">
|
|
var prettyparams = {
|
|
animation_speed: 'fast',
|
|
theme: 'dark_rounded',
|
|
}
|
|
$(document).ready(function(){
|
|
$("a[rel^='gallery-image']").prettyPhoto(prettyparams);
|
|
});
|
|
</script>
|
|
{% render_block "js" %}
|
|
</body>
|
|
</html>
|
|
|