From 3fc7b51428d1b3cc056330ac8df3e916eabd802d Mon Sep 17 00:00:00 2001 From: stuebinm Date: Wed, 18 Aug 2021 20:28:39 +0200 Subject: [PATCH] haccvoc stage: add attac logo --- pkgs/haccvoc-stage/example.nix | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/pkgs/haccvoc-stage/example.nix b/pkgs/haccvoc-stage/example.nix index 33eb030..4b14359 100644 --- a/pkgs/haccvoc-stage/example.nix +++ b/pkgs/haccvoc-stage/example.nix @@ -1,9 +1,13 @@ -import ./default.nix { +let pkgs = import {}; +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 chaos in der welt!"; + text = '' + content by attac München + | livestream by hacc + ''; 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"; + }; + }; }