{# SPDX-License-Identifier: CC0-1.0 koszko.org website campaign pages template. Copyright (C) 2021,2022 Wojtek Kosior #} {% set section_attrs = {'class': 'layout-item'} %} {% set header_attrs = {'class': 'content-subhead'} %} {% extends "__base.html.jinja" %} {% macro gitlink() -%} {%- for project_id in varargs -%} {{ numberlink('https://git.koszko.org/' ~ project_id ~ '/') }} {%- endfor -%} {%- endmacro %} {% block external_css %} {{ super() }} {% endblock %} {% block style %} {{ super() }} .pure-menu-item a { display: block; } #no-fb { position: relative; } #no-fb img { width: 150px; height: auto; position: absolute; left: 100px; top: -70px; -webkit-backface-visibility: hidden; } @media (max-width: 520px) { #no-fb img { width: 130px; left: 90px; top: -60px; } } @media (max-width: 460px) { #no-fb img { width: 110px; top: -50px; } } @media (max-width: 410px) { #no-fb img { width: 100px; left: 80px; top: -40px; } } @media (max-width: 380px) { #no-fb img { width: 70px; left: 65px; top: -30px; } } #main { min-height: 100vh; display: flex; flex-direction: column; } .header, .content { width: 100%; } .content { flex-grow: 1; } aside { background: #1f8dd6; margin: 10px 0; padding: 3px 10px; border-radius: 3px; color: #fff; } .layout-item:first-child { margin-top: 0; border-top: 0; } .content .content-subhead { margin-top: 0; } dt { float: left; margin-right: .5em; } dd { display: inline; } dl.indent-dl dt { margin-left: -2em; } dl.indent-dl { margin-top: 0; margin-left: 2em; } footer > p { max-width: 768px; margin: auto; } {% endblock %} {% macro menu_item(link_url, text, active) %}
  • {% if active %} {% set link_url = "#" %} {% endif %} {% set attrs = {'href': link_url, 'class': 'active' if active else none} %} {{ text }}
  • {% endmacro %} {% block body %}
    {% block header %}

    {% if page_path == 'koszko.html' %} {% set url = '#' %} {% else %} {% set url = same_lang_url('koszko.html') %} {% endif %} {{ _('koszko_base.h1:wojtek_kosior') }}

    {% block subheading_text %} {% endblock %}

    {% if include_not_facebookd|default(false) %} {% endif %} {% endblock %}
    {% block content %} {% endblock %}
    {% endblock %}