Ein wenig mehr Waffeln...
This commit is contained in:
parent
fe7b6b56c2
commit
471b020974
7 changed files with 57 additions and 27 deletions
BIN
assets/images/bg.jpg
Normal file
BIN
assets/images/bg.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 37 KiB |
BIN
assets/images/overlay.png
Normal file
BIN
assets/images/overlay.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.3 KiB |
BIN
assets/images/pic01.jpg
Normal file
BIN
assets/images/pic01.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.8 KiB |
BIN
assets/images/pic02.jpg
Normal file
BIN
assets/images/pic02.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.7 KiB |
BIN
assets/images/pic03.jpg
Normal file
BIN
assets/images/pic03.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.5 KiB |
|
@ -1,2 +1,14 @@
|
||||||
[project]
|
[project]
|
||||||
name = c3woc
|
name = c3woc
|
||||||
|
url = https://c3woce.de/
|
||||||
|
|
||||||
|
[servers.c3woc]
|
||||||
|
name = c3woc
|
||||||
|
url = https://c3woc/
|
||||||
|
url_style = absolute
|
||||||
|
enabled = yes
|
||||||
|
default = yes
|
||||||
|
target = rsync://l3d@c3woc.de/var/www/c3woc.de/web
|
||||||
|
|
||||||
|
[packages]
|
||||||
|
lektor-atom = 0.2
|
||||||
|
|
|
@ -1,38 +1,56 @@
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
||||||
<link rel="stylesheet" href="{{ '/css/main.css'|url }}" />
|
<link rel="stylesheet" href="{{ '/css/main.css'|url }}" />
|
||||||
<!--[if lte IE 9]><link rel="stylesheet" href="{{ '/css/ie9.css'|url }}" /><![endif]-->
|
<!--[if lte IE 9]><link rel="stylesheet" href="{{ '/css/ie9.css'|url }}" /><![endif]-->
|
||||||
<noscript><link rel="stylesheet" href="{{ '/css/noscript.css'|url }}" /></noscript>
|
<noscript><link rel="stylesheet" href="{{ '/css/noscript.css'|url }}" /></noscript>
|
||||||
|
|
||||||
<title>{% block title %}Welcome{% endblock %} — c3woc</title>
|
<title>{% block title %}Welcome{% endblock %} — c3woc</title>
|
||||||
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<div id="wrapper">
|
||||||
<h1>c3woc</h1>
|
<header id="header">
|
||||||
<nav>
|
<div class="logo">
|
||||||
<ul class="nav navbar-nav">
|
<span class="icon fa-heart"></span>
|
||||||
<li{% if this._path == '/' %} class="active"{% endif
|
</div>
|
||||||
%}><a href="{{ '/'|url }}">Welcome</a></li>
|
<div class="content">
|
||||||
{% for href, title in [
|
<div class="inner">
|
||||||
['/blog', 'Blog'],
|
<h1>c3woc</h1>
|
||||||
['/projects', 'Projects'],
|
<p>Das C3 Waffel Operation Center.<br/>Wir machen Waffeln.</p>
|
||||||
['/about', 'About']
|
</div>
|
||||||
] %}
|
</div>
|
||||||
<li{% if this.is_child_of(href) %} class="active"{% endif
|
|
||||||
%}><a href="{{ href|url }}">{{ title }}</a></li>
|
<nav>
|
||||||
{% endfor %}
|
<ul class="nav navbar-nav">
|
||||||
</ul>
|
<li{% if this._path == '/' %} class="active"{% endif
|
||||||
</nav>
|
%}><a href="{{ '/'|url }}">Welcome</a></li>
|
||||||
</header>
|
{% for href, title in [
|
||||||
<div class="page">
|
['/blog', 'Blog'],
|
||||||
{% block body %}{% endblock %}
|
['/projects', 'Projects'],
|
||||||
|
['/about', 'About']
|
||||||
|
] %}
|
||||||
|
<li{% if this.is_child_of(href) %} class="active"{% endif
|
||||||
|
%}><a href="{{ href|url }}#{{ title }}">{{ title }}</a></li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<div id="main">
|
||||||
|
<article id="{{ this.title }}">
|
||||||
|
<span class="image main"><img src="images/pic01.jpg" alt="" /></span>
|
||||||
|
<div class="page">
|
||||||
|
{% block body %}{% endblock %}
|
||||||
|
</div>
|
||||||
|
</article>
|
||||||
|
</div>
|
||||||
|
<footer id="footer">
|
||||||
|
© Copyright 2018 by L3D.
|
||||||
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
<footer>
|
<div id="bg"></div>
|
||||||
© Copyright 2018 by L3D.
|
|
||||||
</footer>
|
|
||||||
<!-- Scripts -->
|
<!-- Scripts -->
|
||||||
<script src="assets/js/jquery.min.js"></script>
|
<script src="{{ '/js/jquery.min.js'|url }}"></script>
|
||||||
<script src="assets/js/skel.min.js"></script>
|
<script src="{{ '/js/skel.min.js'|url }}"></script>
|
||||||
<script src="assets/js/util.js"></script>
|
<script src="{{ '/js/util.js'|url }}"></script>
|
||||||
<script src="assets/js/main.js"></script>
|
<script src="{{ '/js/main.js'|url }}"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Reference in a new issue