Compare commits
3 commits
03e049af66
...
c59d8bb27b
Author | SHA1 | Date | |
---|---|---|---|
c59d8bb27b | |||
759b943e95 | |||
2b600b8ba7 |
24 changed files with 191 additions and 23 deletions
6
.gitattributes
vendored
Normal file
6
.gitattributes
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
**.png filter=lfs diff=lfs merge=lfs -text
|
||||
**.jpg filter=lfs diff=lfs merge=lfs -text
|
||||
**.jpeg filter=lfs diff=lfs merge=lfs -text
|
||||
**.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
**.woff filter=lfs diff=lfs merge=lfs -text
|
||||
**.ico filter=lfs diff=lfs merge=lfs -text
|
BIN
assets/favicon.ico
(Stored with Git LFS)
Normal file
BIN
assets/favicon.ico
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/fonts/lato_italic_400.ttf
(Stored with Git LFS)
Normal file
BIN
assets/fonts/lato_italic_400.ttf
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/fonts/lato_italic_700.ttf
(Stored with Git LFS)
Normal file
BIN
assets/fonts/lato_italic_700.ttf
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/fonts/lato_italic_900.ttf
(Stored with Git LFS)
Normal file
BIN
assets/fonts/lato_italic_900.ttf
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/fonts/lato_normal_400.ttf
(Stored with Git LFS)
Normal file
BIN
assets/fonts/lato_normal_400.ttf
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/fonts/lato_normal_700.ttf
(Stored with Git LFS)
Normal file
BIN
assets/fonts/lato_normal_700.ttf
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/fonts/lato_normal_900.ttf
(Stored with Git LFS)
Normal file
BIN
assets/fonts/lato_normal_900.ttf
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/fonts/mochiypoppone.ttf
(Stored with Git LFS)
Normal file
BIN
assets/fonts/mochiypoppone.ttf
(Stored with Git LFS)
Normal file
Binary file not shown.
52
assets/scss/_fonts.scss
Normal file
52
assets/scss/_fonts.scss
Normal file
|
@ -0,0 +1,52 @@
|
|||
|
||||
// 'Mochiy Pop P One' font
|
||||
@font-face {
|
||||
font-family: 'Mochiy Pop P One';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url(/fonts/mochiypoppone.ttf) format('truetype');
|
||||
}
|
||||
|
||||
// Lato font
|
||||
@font-face {
|
||||
font-family: 'Lato';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(/fonts/lato_italic_400.ttf) format('truetype');
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Lato';
|
||||
font-style: italic;
|
||||
font-weight: 700;
|
||||
font-display: swap;
|
||||
src: url(/fonts/lato_italic_700.ttf) format('truetype');
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Lato';
|
||||
font-style: italic;
|
||||
font-weight: 900;
|
||||
font-display: swap;
|
||||
src: url(/fonts/lato_italic_900.ttf) format('truetype');
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Lato';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(/fonts/lato_normal_400.ttf) format('truetype');
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Lato';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
font-display: swap;
|
||||
src: url(/fonts/lato_normal_700.ttf) format('truetype');
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Lato';
|
||||
font-style: normal;
|
||||
font-weight: 900;
|
||||
font-display: swap;
|
||||
src: url(/fonts/lato_normal_900.ttf) format('truetype');
|
||||
}
|
|
@ -1,6 +1,14 @@
|
|||
footer {
|
||||
margin: 0 auto;
|
||||
background: $background_accent_1;
|
||||
background: $background_accent_2;
|
||||
padding: 20px 30px;
|
||||
box-shadow: 5px 5px 5px 10px $background_accent_1;
|
||||
font-size: $font_size_default;
|
||||
color: $font_default;
|
||||
text-align: center;
|
||||
a {
|
||||
color: $font_accent_4;
|
||||
}
|
||||
a:hover {
|
||||
color: $font_accent_3;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,21 +1,13 @@
|
|||
body {
|
||||
font-family: 'Verdana', sans-serif;
|
||||
font-family: 'Lato', sans-serif;
|
||||
margin: 25px 25px 50px 25px;
|
||||
background: $background_accent_2;
|
||||
color: $font_default;
|
||||
}
|
||||
|
||||
h1, h2 {
|
||||
color: $font_accent_3;
|
||||
text-shadow: 0px 0px 1px black;
|
||||
}
|
||||
|
||||
a {
|
||||
color: $font_accent_2;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: $font_accent_3;
|
||||
a {
|
||||
color: $font_accent_2;
|
||||
}
|
||||
a:hover {
|
||||
color: $font_accent_3;
|
||||
}
|
||||
}
|
||||
|
||||
.left {
|
||||
|
|
|
@ -1,16 +1,18 @@
|
|||
header {
|
||||
margin: 0 auto;
|
||||
margin: -25px -25px 0px -25px;
|
||||
background: $background_accent_1;
|
||||
padding: 20px 30px;
|
||||
box-shadow: 5px 5px 5px 10px $background_accent_1;
|
||||
h1, h1 a, h1 a:hover, h1 a:link {
|
||||
h1 a, h1 a:hover, h1 a:link {
|
||||
font-family: 'Mochiy Pop P One', sans-serif;
|
||||
color: $font_accent_1;
|
||||
margin: 0;
|
||||
font-weight: normal;
|
||||
font-size: 42px;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
font-size: $font_size_h1;
|
||||
}
|
||||
nav ul {
|
||||
font-size: $font_size_default;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
|
|
@ -2,4 +2,23 @@ div.page {
|
|||
margin: 0 auto;
|
||||
padding: 20px 30px;
|
||||
background: transparent;
|
||||
p, a{
|
||||
color: $font_default;
|
||||
font-size: $font_size_default;
|
||||
}
|
||||
|
||||
code {
|
||||
color: $font_accent_4;
|
||||
font-size: $font_size_code;
|
||||
}
|
||||
h1 {
|
||||
color: $font_accent_3;
|
||||
font-size: $font_size_h1;
|
||||
text-shadow: 0px 0px 1px black;
|
||||
}
|
||||
h2 {
|
||||
color: $font_accent_3;
|
||||
font-size: $font_size_h2;
|
||||
text-shadow: 0px 0px 1px black;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -14,4 +14,19 @@ div.start {
|
|||
max-height: 7dh;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
p, a{
|
||||
color: $font_default;
|
||||
font-size: $font_size_default;
|
||||
}
|
||||
|
||||
code {
|
||||
color: $font_accent_4;
|
||||
font-size: $font_size_code;
|
||||
}
|
||||
h2 {
|
||||
color: $font_accent_3;
|
||||
font-size: $font_size_h2;
|
||||
text-shadow: 0px 0px 1px black;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,4 +4,10 @@ $background_accent_2: black;
|
|||
$font_accent_1: red;
|
||||
$font_accent_2: maroon;
|
||||
$font_accent_3: orangered;
|
||||
$font_accent_4: rgb(247, 196, 24 );
|
||||
$font_default: white;
|
||||
|
||||
$font_size_default: 1.5em;
|
||||
$font_size_code: 1.7em;
|
||||
$font_size_h1: 3em;
|
||||
$font_size_h2: 2.3em;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
@import "_variables";
|
||||
@import "_fonts";
|
||||
|
||||
@import "_page.scss";
|
||||
|
||||
|
|
16
assets/scss/sitemap.scss
Normal file
16
assets/scss/sitemap.scss
Normal file
|
@ -0,0 +1,16 @@
|
|||
@import "_variables";
|
||||
|
||||
urlset {
|
||||
background-color: $background_accent_2;
|
||||
url {
|
||||
color: $font_default;
|
||||
&:after {
|
||||
content: '\a';
|
||||
white-space: pre;
|
||||
}
|
||||
&:before {
|
||||
content: '> ';
|
||||
white-space: pre;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,4 +1,5 @@
|
|||
@import "_variables";
|
||||
@import "_fonts";
|
||||
|
||||
@import "_start";
|
||||
|
||||
|
|
|
@ -2,6 +2,13 @@ title: Winkekatze Video Operation Center
|
|||
---
|
||||
_model: start
|
||||
---
|
||||
body: Hello World
|
||||
body:
|
||||
|
||||
Das Winkekatzen Video Operation Center ist eine kleine Gruppe von chaosnahen Wesen aus der Bodenseeregion. Wir sind begeistert von Video- und Veranstaltungstechnik und Streamen und Recorden gerne Vorträge aus der Community rund um den Chaos Computer Club.
|
||||
|
||||
Gibt es bei bei dir im Chaostreff auch spannende Vorträge oder ähnliches, die gerne gestreamt und recordet wären? Dann Sprich uns an!
|
||||
```
|
||||
video [at] winkekatze.tv
|
||||
```
|
||||
---
|
||||
image: /images/winkekatze.svg
|
||||
|
|
5
content/events/contents.lr
Normal file
5
content/events/contents.lr
Normal file
|
@ -0,0 +1,5 @@
|
|||
_model: page
|
||||
---
|
||||
title: Veranstaltungen mit Winkekatze TV
|
||||
---
|
||||
body: Hallo Welt
|
4
content/sitemap.xml/contents.lr
Normal file
4
content/sitemap.xml/contents.lr
Normal file
|
@ -0,0 +1,4 @@
|
|||
_template: sitemap.xml
|
||||
---
|
||||
_model: none
|
||||
_discoverable: no
|
|
@ -39,9 +39,10 @@
|
|||
<ul class="nav navbar-nav">
|
||||
<li
|
||||
{%- if this._path == '/' %} class="active"{%- endif -%}>
|
||||
<a href="{{ '/'|url }}">Welcome</a>
|
||||
<a href="{{ '/'|url }}">Hallo</a>
|
||||
</li>
|
||||
{%- for href, title in [
|
||||
['/events' , 'Veranstaltungen'],
|
||||
['https://c3woc.de/impressum/', 'Impressum']
|
||||
] %}
|
||||
<li
|
||||
|
|
9
templates/sitemap.xml
Normal file
9
templates/sitemap.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet href="{{ 'css/sitemap.min.css'|asseturl }}" type="text/css" ?>
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
{%- for page in [site.root] if page != this recursive %}
|
||||
{%- if not page.hide_from_global_index %}
|
||||
<url><loc>{{ page|url(external=true) }}</loc></url>
|
||||
{{- loop(page.children) }}
|
||||
{%- endif %}
|
||||
{%- endfor %}
|
||||
</urlset>
|
Loading…
Reference in a new issue