haccvoc stage: add attac logo

This commit is contained in:
stuebinm 2021-08-18 20:28:39 +02:00
parent 22f49203c2
commit 3fc7b51428
No known key found for this signature in database
GPG key ID: 8FBE8AAD32FA12B7

View file

@ -1,9 +1,13 @@
import ./default.nix {
let
pkgs = import <nixpkgs> {};
in import ./default.nix {
inherit pkgs;
# the jekyll config (converted to json)
config = {
# to make jekyll happy
baseurl = "";
meta = {
title = "noIAA Livestream dings";
description = "Die Workshops auf der noIAA Gegenkonferenz als Livestream";
@ -27,8 +31,23 @@ import ./default.nix {
};
footer = {
text = "für mehr <a href='https://ccc.de'>chaos</a> in der welt!";
text = ''
content by <a href='https://www.attac-muenchen.org/startseite'>attac München</a>
| livestream by <a href='https://hacc.earth'>hacc</a>
'';
imprint = "lalala was ist ein Impressum?";
};
};
overlays = {
"favicon.ico" = pkgs.fetchurl {
url = "https://www.attac.de/typo3conf/ext/integration_project/Resources/Public/_Default/Build/img/favicons/favicon-32x32.png";
sha256 = "19k3nd9rlvlqk0daq3mq3xrnxm9y89688v2y997714dv26hzan61";
};
"logo.png" = pkgs.fetchurl {
url = "https://www.attac.de/typo3conf/ext/integration_project/Resources/Public/_Default/Build/img/logo/Attac_Logo_desk.png";
sha256 = "0w1m3kwavfxvrrddmzbivy8vgwkf3gq49n8s9jzdbqjm6mica0qi";
};
};
}