Added 36c3 design

This commit is contained in:
Sebastian 2019-12-19 16:08:01 +01:00
parent 34a1143676
commit 20b375a492
14 changed files with 397 additions and 1 deletions

View File

@ -226,6 +226,7 @@ POSTS = (
("posts/*.html", "posts", "post.tmpl"),
)
PAGES = (
("pages/36c3/*.md", "", "page_36c3.tmpl"),
("pages/*.rst", "", "page.tmpl"),
("pages/*.md", "", "page.tmpl"),
("pages/*.txt", "", "page.tmpl"),
@ -345,7 +346,7 @@ COMPILERS = {
# Nikola supports logo display. If you have one, you can put the URL here.
# Final output is <img src="LOGO_URL" id="logo" alt="BLOG_TITLE">.
# The URL may be relative to the site root.
LOGO_URL = '/logo.svg'
LOGO_URL = '/assets/logo.svg'
# If you want to hide the title of your website (for example, if your logo
# already contains the text), set this to False.

19
pages/36c3/index.md Normal file
View File

@ -0,0 +1,19 @@
.. title: C3Space at the 36C6
.. slug: 36c3
.. date: 2019-12-16 13:29:40 UTC+01:00
.. tags:
.. category: events
.. link:
.. description:
.. type: text
Like last year's CSOC the assembly is intended as place to hang out (and to show of projects)
for everyone interested in space exploration, space travel, satellites, cubesats,
satellite tracking, diy astronomy, amateur rocketry ... you name it.
The goal is to bring all the different people hacking on space topics in our community in one place,
explore existing projects and come up with new ideas to hack where no congress has hacked before.
#Foo
Please be aware, that we aim to provide a safe environment for all galactic life forms
(although we are only able to provide an oxygen atmosphere). We come in peace!

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 36 KiB

View File

@ -0,0 +1,54 @@
@font-face {
font-family: 'Blackout Zwo Uhr Nachts';
src: url('blackout_zwo_uhr_nachts-webfont.woff2') format('woff2'),
url('blackout_zwo_uhr_nachts-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Blackout Midnight';
src: url('blackout_midnight_umlauts-webfont.woff2') format('woff2'),
url('blackout_midnight_umlauts-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
body {
background-image: url('/assets/36c3/background.png');
background-repeat: repeat-y;
color: #D0D0CE;
background-color: #000000;
}
.entry-title {
font-family: 'Blackout Zwo Uhr Nachts';
transform:rotateZ(1.5deg);
}
.entry-title .u-url {
color: #FE5000;
}
/* Links */
:link {
color: #00BB31;
text-decoration: none;
}
:visited {
color: #00BB31;
}
#menu ul,
#menu ul li,
.postpromonav .tags,
.postpromonav .tags li,
.pager,
.pager li,
#toptranslations ul,
#toptranslations ul li {
font-family: 'Blackout Midnight';
}

View File

@ -0,0 +1,12 @@
/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on December 19, 2019 */
@font-face {
font-family: 'blackout_midnightumlautsRg';
src: url('blackout_midnight_umlauts-webfont.woff2') format('woff2'),
url('blackout_midnight_umlauts-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}

View File

@ -221,6 +221,10 @@ body {
text-align: center;
}
#logo {
width: 100%;
}
/* Links */
:link {
color: #119ad4;

View File

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -101,6 +101,9 @@
<link href="/assets/css/ipython.min.css" rel="stylesheet" type="text/css">
<link href="/assets/css/nikola_ipython.css" rel="stylesheet" type="text/css">
{% endif %}
{% if event_css %}
<link href="{{ event_css }}" rel="stylesheet" type="text/css">
{% endif %}
{% endmacro %}
{# This function is deprecated; use feed_helper directly. #}

View File

@ -0,0 +1,3 @@
{% set logo_url = '/assets/36c3/logo.svg' %}
{% set event_css = '/assets/css/36c3/event.css' %}
{% extends 'story.tmpl' %}