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: 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: body:
This is a basic demo website that shows how to use Lektor for a basic Das C3 Waffel Operation Center möchte die ganze Welt mit Waffeln versorgen!
website with some pages and a blog.
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: 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 * Waffeln
* Project 2 * mehr Waffeln
* Project 3 * Und noch mehr Waffeln

View file

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

View file

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