Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
pyladies.cz/templates/layout.html
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
156 lines (150 sloc)
7.77 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<!-- ADD META TAGS --> | |
<meta charset="utf-8"></meta> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no"></meta> | |
<meta http-equiv="x-ua-compatible" content="ie=edge"></meta> | |
<meta name="keywords" content="PyLadies, PyLady, kurz, sraz, programování, IT, python, workshop, slečny, ženy"></meta> | |
<meta name="description" content="PyLadies přibližuje IT k ženám a ženy k IT pomocí programovacího jazyka Python. Aktuální kurzy najdeš na www.pyladies.cz"></meta> | |
<meta property="og:title" content="PyLadies CZ"></meta> | |
<meta property="og:type" content="article"></meta> | |
<meta property="og:url" content="www.pyladies.cz"></meta> | |
<meta property="og:description" content="PyLadies přibližuje IT k ženám a ženy k IT pomocí programovacího jazyka Python. Aktuální kurzy najdeš na www.pyladies.cz"></meta> | |
<meta name="twitter:card" content="summary"></meta> | |
<meta name="twitter:title" content="PyLadies CZ"></meta> | |
<meta name="twitter:site" content="@PyLadiesCZ"></meta> | |
<meta name="twitter:description" content="PyLadies přibližuje IT k ženám a ženy k IT pomocí programovacího jazyka Python. Aktuální kurzy najdeš na www.pyladies.cz"></meta> | |
<title>{% block title %}PyLadies CZ{% endblock title %}</title> | |
{% block extra_head %} | |
{% endblock extra_head %} | |
{% block css %} | |
<!-- Bootstrap CSS --> | |
<link href="{{ pathto('_static/css/bootstrap.min.css', 1) }}" rel="stylesheet"> | |
<!-- Custom CSS --> | |
<link href="{{ pathto('_static/css/custom.css', 1) }}" rel="stylesheet"> | |
<!-- Custom Fonts --> | |
<link href='https://fonts.bunny.net/css?family=Open+Sans:400,400italic,600,600italic,700&subset=latin,greek,greek-ext,vietnamese,latin-ext,cyrillic' rel='stylesheet' type='text/css'> | |
{% endblock css %} | |
<!-- Favicon --> | |
<link rel="icon" type="image/x-icon" href="{{ pathto('_static/img/favicon.ico', 1) }}" /> | |
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> | |
<!-- WARNING: Respond.js doesn't work if you view the page via file:// --> | |
<!--[if lt IE 9]> | |
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> | |
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> | |
<![endif]--> | |
</head> | |
<body class="{% block body_class %}{% endblock %}"> | |
<div class="body-content"> | |
<!-- Navigation --> | |
<nav class="main-navbar" role="navigation"> | |
<div class="container navbar-logo"> | |
<a href="{{ pathto('index') }}"> | |
<img src="{{ pathto('_static/img/pyladies.png', 1) }}" /> | |
</a> | |
</div> | |
<div class="navbar-menu" id="hamburger-menu"> | |
<span class="glyphicon glyphicon-menu-hamburger"></span> | |
</div> | |
<ul class="navbar-other"> | |
<li class="materials-dropdown"> | |
<a>Materiály<span class="caret"></span></a> | |
<ul> | |
{% for name, url in ( | |
('Brno – začátečnický kurz - čtvrtek', | |
'https://naucse.python.cz/2023/brno-jaro-ctvrtek/'), | |
('Praha – začátečnický kurz', | |
'https://naucse.python.cz/2023/praha-pyladies-jaro/'), | |
('Praha – Datový kurz', | |
'https://naucse.python.cz/2021/pydata-praha-jaro/'), | |
('Ostrava – začátečnický kurz', | |
'https://naucse.python.cz/2022/ostrava-python/'), | |
('Plzeň – začátečnický kurz', | |
'https://naucse.python.cz/2020/plzen-jaro-2020/'), | |
('Hradec Králové – začátečnický kurz', | |
'https://naucse.python.cz/2020/pyladies-hradec-leden/'), | |
('Olomouc – začátečnický kurz', | |
'https://naucse.python.cz/2021/pyladies-olomouc-podzim/'), | |
('Chci se učit doma sama', | |
'https://naucse.python.cz/course/pyladies/'), | |
) %} | |
<li> | |
<a href="{{ url }}"> | |
{{ name }} | |
<small><span class="glyphicon"></span></small> | |
</a> | |
</li> | |
{% endfor %} | |
</ul> | |
</li> | |
<li {% block current_page_class_stanse %}{% endblock %}> | |
<a href="{{ pathto('stan_se') }}">Staň se PyLady!</a> | |
</li> | |
<li {% block current_page_class_faq %}{% endblock %}> | |
<a href="{{ pathto('faq') }}">FAQ</a> | |
</li> | |
</ul> | |
<div class="navbar-cities {% block banner_class %}faded-banner{% endblock %}"> | |
<ul> | |
{% for slug, city in cities.items() %} | |
<li {% block current_city_class scoped %}{% endblock %}> | |
<a href="{{ url_for('city', city_slug=slug) }}"> | |
<span class="img-container"> | |
<img class="city-outline" src="{{ pathto('_static/img/'+slug+'.svg', 1) }}" alt=""> | |
</span> | |
<div class="city-title-box"> | |
<span class="city-title">{{ city['title'] }}</span> | |
</div> | |
{% if city.active_registration %} | |
<span class='city-active-registration'> | |
Registruj se! | |
</span> | |
{% endif %} | |
</a> | |
</li> | |
{% endfor %} | |
</ul> | |
</div> | |
</nav> | |
{% block content %} {% endblock %} | |
</div> | |
{% block footer %} | |
<footer> | |
<div class="container"> | |
<div class="global-pyladies"> | |
PyLadies CZ jsou součástí <a href="http://pyladies.com">mezinárodních PyLadies</a>. | |
</div> | |
<ul> | |
<li> | |
<a href="mailto:info@pyladies.cz"> | |
<img src="{{ pathto('_static/img/icon/mail-white.png', 1) }}" /> | |
</a> | |
</li> | |
<li> | |
<a href="https://twitter.com/pyladiescz"> | |
<img src="{{ pathto('_static/img/icon/twitter-white.png', 1) }}" /> | |
</a> | |
</li> | |
<li> | |
<a href="https://github.com/pyladiescz"> | |
<img src="{{ pathto('_static/img/icon/github-white.png', 1) }}" /> | |
</a> | |
</li> | |
<li> | |
<a href="https://www.facebook.com/groups/pyonieri/"> | |
<img src="{{ pathto('_static/img/icon/facebook-white.png', 1) }}" /> | |
</a> | |
</li> | |
</ul> | |
</div> | |
<div class="clear"></div> | |
</footer> | |
<script src="{{ pathto('_static/js/script.js', 1) }}"></script> | |
{% endblock footer %} | |
{% block javascript %} | |
{% endblock javascript %} | |
<script async defer src="https://scripts.simpleanalyticscdn.com/latest.js"></script> | |
<noscript><img src="https://queue.simpleanalyticscdn.com/noscript.gif" alt="" referrerpolicy="no-referrer-when-downgrade"></noscript> | |
</body> | |
</html> |