<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="/static/css/hoa.css"> <title> {% block title %}{{ EVENT_HEADLINE }}{% endblock %} </title> </head> <body class="index-row"> <div id="left"> {% block left %} {% if content.lang == "en" %} <a href="index.html" {% if is_active_menu_entry(content, 'index.html') %}class="active"{% endif %}> </a> {% else %} <a href="index.html" {% if is_active_menu_entry(content, 'index.html') %}class="active"{% endif %}> </a> {% endif %} {% for entry in context.settings.MENU %} {% if content.lang == "en" %} <a href="{{entry.url}}" {% if is_active_menu_entry(content, entry.url) %}class="active"{% endif %}> <img src="/static/img/{{entry.img}}" alt="{{entry.title_en}}"> </a> {% else %} <a href="{{entry.url}}" {% if is_active_menu_entry(content, entry.url) %}class="active"{% endif %}> <img src="/static/img/{{entry.img}}" alt="{{entry.title_de}}"> </a> {% endif %} {% endfor %} <a></a> <a></a> <a></a> <a></a> <a></a> {% block langchooser_left%} <div id="languages-menu">{% for translation in context.contents.filter(id=content.id).order_by('lang') %} <a {% if translation == content %} class="active"{% endif %} href="{{ translation.url }}">{{ translation.lang }}</a> {% if not loop.last %}<span class="spacer">|</span>{% endif %} {% endfor %} </div> {% endblock %} {% endblock %} </div> <div id="main"> <h1 id="sticky" class="hoa">{{ EVENT_HEADLINE }}</h1> <p class="hoa">1234 in gifhorn</p> {% block main %}{% endblock %} {% block footer %} {% if content.group == "en" %} <h2 id="footnote">Contact</h2> <footer> <ul> <li>Mail: <a href="mailto:kontakt@hackenopenair.de">kontakt@hackenopenair.de</a></li> <li>Matrix: <a href="https://matrix.to/#/#hackenopenair:stratum0.org">#hackenopenair:stratum0.org</a></li> <li>IRC: <a href="irc://irc.libera.chat/#hackenopenair">irc.libera.chat/#hackenopenair</a></li> <li>Mastodon: <a href="https://chaos.social/@HackenOpenAir">@HackenOpenAir@chaos.social</a></li> <li><a href="./impressum.html">Impressum und Datenschutzerklärung</a></li> </ul> <h2 id="footnote">An Event by <a href="https://stratum0.org">Stratum 0</a></h2> </footer> {% else %} <h2>Kontakt</h2> <footer> <ul> <li>Mail: <a href="mailto:kontakt@hackenopenair.de">kontakt@hackenopenair.de</a></li> <li>Matrix: <a href="https://matrix.to/#/#hackenopenair:stratum0.org">#hackenopenair:stratum0.org</a></li> <li>IRC: <a href="irc://irc.libera.chat/#hackenopenair">irc.libera.chat/#hackenopenair</a></li> <li>Mastodon: <a href="https://chaos.social/@HackenOpenAir">@HackenOpenAir@chaos.social</a></li> <li><a href="./impressum.html">Impressum und Datenschutzerklärung</a></li> </ul> <h2 id="footnote">Eine Veranstaltung des <a href="https://stratum0.org">Stratum 0</a></h2> </footer> {% endif %} {% endblock %} </div> <div id="right"> {% block right %} {% block langchooser_right %} <div id="languages-menu">{% for translation in context.contents.filter(id=content.id).order_by('lang') %} <a {% if translation == content %} class="active"{% endif %} href="{{ translation.url }}">{{ translation.lang }}</a> {% if not loop.last %}<span class="spacer">|</span>{% endif %} {% endfor %} </div> {% endblock %} <img src="/static/img/specht.svg"> {% endblock %} </div> </body> </html>