forked from kittv/web
1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
web/templates/index.html

49 lines
1.5 KiB
HTML

3 years ago
{% extends "base.html" %}
{% block header %}
<header>
<div class="wrap">
<a href="{{ config.base_url }}" class="logo"><img src="{{ get_url(path="logo.svg") }}" alt="Logo KITTV"></a>
<section>
<nav class="secondary">
{{ macro::nav_list_items(items=config.extra.nav_secondary) }}
</nav>
<nav class="primary">
{{ macro::nav_list_items_main(items=config.extra.nav_primary) }}
</nav>
</section>
</div>
</header>
{% endblock header %}
3 years ago
{% block extra %}
<div class="rambotron">
<h1>O katedře</h1>
<p>Katedra informačních technologií a technické výchovy Pedagogické fakulty Univerzity Karlovy je báječné místo, kde můžete získat kvalitní vzdělání v oblasti ICT. Tento krásný web je toho důkazem. Srší to tu talentem, entusiazmem i odhodlaností. Jsme zastánci čistého kódu, svobodného softwaru a piva.</p>
<div class="links">
{{ macro::nav_list_items(items=config.extra.nav_rambotron) }}
</div>
</div>
{% endblock extra %}
3 years ago
{% block content %}
<main class="index">
<section>
<h1 class="centering">Aktuality</h1>
<div class="blocks noshadow">
{% set section = get_section(path="aktuality/_index.md") %}
{{ macro::list_posts(section=section) }}
</div>
<div class="centering">
<a href="aktuality" class="button">Starší příspěvky</a>
</div>
</section>
<section>
<div class="websites blocks">
{% set section = get_section(path="spratelene-weby/_index.md") %}
{{ macro::list_external_links(section=section) }}
</div>
</section>
</main>
3 years ago
{% endblock content %}