Compare commits

..

No commits in common. "f2db2628de46ac125ef34c66257bc0d80ada1f21" and "ab64aa83841c35253cf55acaa30b5b1872992cd2" have entirely different histories.

4 changed files with 15 additions and 36 deletions

View file

@ -32,7 +32,7 @@ Weitere Treffen finden nach Bedarf meist sonntags statt. Tagesordnungen, Protoko
<a href="https://hacknang.de/freifunk/" target="_blank"><img alt="Logo von Freifunk Backnang" src="/img/ffs-bk-paths.svg" class="small"></a>
- [Getränke und Snacks der Bar](https://www.daswohnzimmer.com/drinks) (auch Mate!)
- Getränke und Snacks der Bar (auch Mate!)
- Sofas
- 3D-Drucker, diverses Werkzeug

View file

@ -29,9 +29,10 @@
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
"Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
"Helvetica Neue", sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
@ -40,11 +41,8 @@ body {
background-color: var(--main-bg-color);
color: var(--main-text-color);
/* allows the footer to always snap to bottom of page, even if the content is shorter */
margin: 0 3rem;
display: flex;
flex-direction: column;
min-height: 100vh;
margin: 3rem;
margin-top: 0;
}
a {
@ -167,7 +165,8 @@ header {
}
nav {
transition: max-height 0.2s cubic-bezier(0.86, 0, 0.07, 1),
transition:
max-height 0.2s cubic-bezier(0.86, 0, 0.07, 1),
margin 0.2s cubic-bezier(0.86, 0, 0.07, 1);
overflow-y: hidden;
height: auto;
@ -269,7 +268,9 @@ nav {
margin-bottom: 0.4em;
text-transform: uppercase;
text-decoration: underline 0.15em var(--main-text-color);
transition: text-decoration-color 0.3s, color 0.25s;
transition:
text-decoration-color 0.3s,
color 0.25s;
&:focus,
&:hover {
@ -282,8 +283,6 @@ nav {
/* main grid */
main {
flex: 1;
display: grid;
grid-template: ". content ." auto / 1fr minmax(min-content, 45rem) 1fr;
@ -303,7 +302,6 @@ footer {
text-align: center;
padding-top: 1.5em;
margin-top: 1.5em;
margin-bottom: 1.5em;
font-weight: bold;
border-top: 2px solid transparent;
border-image: linear-gradient(

View file

@ -1,6 +0,0 @@
{% extends "page.html" %}
{% block content %}
<h1>404 Unavailable for URL Reasons</h1>
<p>Diese Seite gibt es nicht. Vielleicht ist sie im Cyber verschwunden. <a href="{{ get_url(path='/') }}">Zurück zur Startseite</a>.</p>
{% endblock content %}

View file

@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<!-- prettier-ignore -->
{% if page.title %} {% set title = page.title %}
<!-- prettier-ignore -->
@ -22,11 +22,6 @@
{% else %} {% set description = "" %}
<!-- prettier-ignore -->
{% endif %}
<!-- prettier-ignore -->
{% if page.content %} {% set content = page.content %}
<!-- prettier-ignore -->
{% endif %}
<html lang="{{ config.default_language }}">
<head>
<meta charset="UTF-8" />
@ -106,16 +101,8 @@
</header>
<main id="main-content">
<section class="main-text">
<!-- prettier-ignore -->
{% block content %}
<!-- prettier-ignore -->
{% if section %} {{ section.content | safe }}
<!-- prettier-ignore -->
{% else %} {{ page.content | safe }}
<!-- prettier-ignore -->
{% endif %}
<!-- prettier-ignore -->
{% endblock content %}
{% if section %} {{ section.content | safe }} {% else %} {{ page.content
| safe }} {% endif %}
</section>
</main>
<footer>