I like woffles

Former-commit-id: 7e34b5f7d66c8a8dd91ed64fd64609d96de7a0af
This commit is contained in:
2018-02-26 16:24:49 +01:00
parent a5be761a52
commit c43923f1b2
6 changed files with 34 additions and 17 deletions

View file

@ -0,0 +1 @@
0fe2eaffb2f4fd26e686231aaef61816c83a0040

View file

@ -1,7 +1,21 @@
title: About this Website
title: Impressum
---
body:
This is a website that was made with the Lektor quickstart.
IRC:
And it does not contain a lot of information.
````
Server: irc.hackint.org
Channel: #c6
````
[irc://irc.hackint.org](ircs://irc.hackint.org:6697/#C6) - [Web IRC](https://webirc.hackint.org/#irc://irc.hackint.org/#C6)
Postanschrift:
````
Toolbox Bodensee e.V.
c3WOC
Bergheimer Str. 6-12
88677 Markdorf
````

View file

@ -1,6 +1,8 @@
title: Welcome to c3woc!
title: Wir sind das c3woc
---
body:
This is a basic demo website that shows how to use Lektor for a basic
website with some pages and a blog.
Das C3 Waffel Operation Center möchte die ganze Welt mit Waffeln versorgen!
Daher haben wir es uns zum Ziel gesetzt zufällig an verschiedenen Chaosevents, in Hackerspacen und bei Chaostreffs aufzutauchen und Waffeln zu machen.
Notfalls auch mit Waffelgewalt.

View file

@ -1,9 +1,9 @@
title: Projects
title: Projekte
---
body:
This is a list of the projects:
Wir beschäftigen uns mit einer großzahl an unterschiedlichen und spannenden Projekten. Hier eine kleine Übersicht:
* Project 1
* Project 2
* Project 3
* Waffeln
* mehr Waffeln
* Und noch mehr Waffeln

View file

@ -22,11 +22,11 @@
<nav>
<ul class="nav navbar-nav">
<li{% if this._path == '/' %} class="active"{% endif
%}><a href="{{ '/'|url }}#Cyber">Welcome</a></li>
%}><a href="{{ '/'|url }}#Cyber">Willkommen</a></li>
{% for href, title in [
['/blog', 'Blog'],
['/projects', 'Projects'],
['/about', 'About']
['/projects', 'Projekte'],
['/about', 'Impressum']
] %}
<li{% if this.is_child_of(href) %} class="active"{% endif
%}><a href="{{ href|url }}#Cyber">{{ title }}</a></li>
@ -36,10 +36,7 @@
</header>
<div id="main">
<article id="Cyber">
<span class="image main"><img src="images/pic01.jpg" alt="" /></span>
<div class="page">
{% block body %}{% endblock %}
</div>
</article>
</div>
<footer id="footer">

View file

@ -1,6 +1,9 @@
{% extends "layout.html" %}
{% block title %}{{ this.title }}{% endblock %}
{% block body %}
<div class="page">
<h2>{{ this.title }}</h2>
<span class="image main"><img src="images/njom.jpg" alt="" /></span>
{{ this.body }}
</div>
{% endblock %}