Migrate settings to FSCK2025
This commit is contained in:
parent
74dc254272
commit
b51d91b578
|
@ -0,0 +1,5 @@
|
|||
FSCK2025 HTML5 Inofbeamer
|
||||
===============================
|
||||
|
||||
Shedule URL: https://cfp.ctbk.de/fsck-2025/schedule/export/schedule.json
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
@import "../styles/_base";
|
||||
|
||||
@import "../styles/_schedule";
|
||||
@import "../styles/_clock";
|
|
@ -1,4 +0,0 @@
|
|||
@import "../styles/_base";
|
||||
|
||||
@import "../styles/_schedule";
|
||||
@import "../styles/_clock";
|
|
@ -1,3 +0,0 @@
|
|||
@import "../styles/_base";
|
||||
|
||||
@import "../styles/_banner-speaker";
|
|
@ -1,3 +0,0 @@
|
|||
@import "../styles/_base";
|
||||
|
||||
@import "../styles/_banner-speaker";
|
|
@ -1,3 +0,0 @@
|
|||
@import "../styles/_base";
|
||||
|
||||
@import "../styles/_banner-talk";
|
|
@ -1,3 +0,0 @@
|
|||
@import "../styles/_base";
|
||||
|
||||
@import "../styles/_banner-talk";
|
|
@ -1,3 +0,0 @@
|
|||
@import "../styles/_base";
|
||||
|
||||
@import "../styles/_upcoming-talk";
|
|
@ -1,3 +0,0 @@
|
|||
@import "../styles/_base";
|
||||
|
||||
@import "../styles/_upcoming-talk";
|
|
@ -1,55 +0,0 @@
|
|||
'use strict';
|
||||
|
||||
|
||||
import * as fe from "../core/fetcher.js";
|
||||
|
||||
import * as ti from "../core/time.js";
|
||||
|
||||
import * as sc from "../core/screen.js";
|
||||
|
||||
// Import services
|
||||
import * as serv from "../services/service.js";
|
||||
|
||||
// Import views
|
||||
import * as domman from "../dom/schedule.js";
|
||||
import * as clk from "../dom/clock.js";
|
||||
|
||||
|
||||
// Empty JSON lists for data
|
||||
let storage = {
|
||||
scheduleData: undefined
|
||||
};
|
||||
|
||||
|
||||
let do_fetch = fe.configure({}, serv);
|
||||
|
||||
do_fetch(storage);
|
||||
|
||||
|
||||
|
||||
// Main Loop
|
||||
let screen_update = sc.configure(serv, domman);
|
||||
let clock_update = sc.configure(serv, clk);
|
||||
|
||||
|
||||
let cfg = {
|
||||
"roomName": "Bankettsaal",
|
||||
"music": {
|
||||
"artist": "luss",
|
||||
"title": "dub techno session #5",
|
||||
"licence": "CC-BY",
|
||||
"url": "https://lussdub.bandcamp.com/"
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
// Just do it
|
||||
function main_loop() {
|
||||
screen_update(storage, ti, cfg);
|
||||
clock_update(storage, ti, cfg);
|
||||
// update_screen();
|
||||
// setTimeout(main_loop, 1 * 1000);
|
||||
setTimeout(main_loop, 1 * 50);
|
||||
};
|
||||
|
||||
main_loop();
|
|
@ -1,55 +0,0 @@
|
|||
'use strict';
|
||||
|
||||
|
||||
import * as fe from "../core/fetcher.js";
|
||||
|
||||
import * as ti from "../core/time.js";
|
||||
|
||||
import * as sc from "../core/screen.js";
|
||||
|
||||
// Import services
|
||||
import * as serv from "../services/service.js";
|
||||
|
||||
// Import views
|
||||
import * as domman from "../dom/schedule.js";
|
||||
import * as clk from "../dom/clock.js";
|
||||
|
||||
|
||||
// Empty JSON lists for data
|
||||
let storage = {
|
||||
scheduleData: undefined
|
||||
};
|
||||
|
||||
|
||||
let do_fetch = fe.configure({}, serv);
|
||||
|
||||
do_fetch(storage);
|
||||
|
||||
|
||||
|
||||
// Main Loop
|
||||
let screen_update = sc.configure(serv, domman);
|
||||
let clock_update = sc.configure(serv, clk);
|
||||
|
||||
|
||||
let cfg = {
|
||||
"roomName": "Tanzsaal",
|
||||
"music": {
|
||||
"artist": "luss",
|
||||
"title": "dub techno session #5",
|
||||
"licence": "CC-BY",
|
||||
"url": "https://lussdub.bandcamp.com/"
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
// Just do it
|
||||
function main_loop() {
|
||||
screen_update(storage, ti, cfg);
|
||||
clock_update(storage, ti, cfg);
|
||||
// update_screen();
|
||||
// setTimeout(main_loop, 1 * 1000);
|
||||
setTimeout(main_loop, 1 * 50);
|
||||
};
|
||||
|
||||
main_loop();
|
|
@ -1,42 +0,0 @@
|
|||
'use strict';
|
||||
|
||||
|
||||
import * as fe from "../core/fetcher.js";
|
||||
|
||||
import * as ti from "../core/time.js";
|
||||
|
||||
import * as sc from "../core/screen.js";
|
||||
|
||||
// Import services
|
||||
import * as serv from "../services/service.js";
|
||||
|
||||
// Import views
|
||||
import * as dom from "../dom/speaker-info.js";
|
||||
|
||||
|
||||
// Empty JSON lists for data
|
||||
let storage = {
|
||||
scheduleData: undefined
|
||||
};
|
||||
|
||||
let cfg = {
|
||||
"roomName": "Bankettsaal"
|
||||
};
|
||||
|
||||
|
||||
|
||||
let do_fetch = fe.configure({}, serv);
|
||||
|
||||
do_fetch(storage);
|
||||
|
||||
|
||||
// Main Loop
|
||||
let screen_update = sc.configure(serv, dom);
|
||||
|
||||
// Just do it
|
||||
function main_loop() {
|
||||
screen_update(storage, ti, cfg);
|
||||
setTimeout(main_loop, 1 * 1000);
|
||||
};
|
||||
|
||||
main_loop();
|
|
@ -1,42 +0,0 @@
|
|||
'use strict';
|
||||
|
||||
|
||||
import * as fe from "../core/fetcher.js";
|
||||
|
||||
import * as ti from "../core/time.js";
|
||||
|
||||
import * as sc from "../core/screen.js";
|
||||
|
||||
// Import services
|
||||
import * as serv from "../services/service.js";
|
||||
|
||||
// Import views
|
||||
import * as dom from "../dom/speaker-info.js";
|
||||
|
||||
|
||||
// Empty JSON lists for data
|
||||
let storage = {
|
||||
scheduleData: undefined
|
||||
};
|
||||
|
||||
let cfg = {
|
||||
"roomName": "Tanzsaal"
|
||||
};
|
||||
|
||||
|
||||
|
||||
let do_fetch = fe.configure({}, serv);
|
||||
|
||||
do_fetch(storage);
|
||||
|
||||
|
||||
// Main Loop
|
||||
let screen_update = sc.configure(serv, dom);
|
||||
|
||||
// Just do it
|
||||
function main_loop() {
|
||||
screen_update(storage, ti, cfg);
|
||||
setTimeout(main_loop, 1 * 1000);
|
||||
};
|
||||
|
||||
main_loop();
|
|
@ -1,42 +0,0 @@
|
|||
'use strict';
|
||||
|
||||
|
||||
import * as fe from "../core/fetcher.js";
|
||||
|
||||
import * as ti from "../core/time.js";
|
||||
|
||||
import * as sc from "../core/screen.js";
|
||||
|
||||
// Import services
|
||||
import * as serv from "../services/service.js";
|
||||
|
||||
// Import views
|
||||
import * as dom from "../dom/talk-info.js";
|
||||
|
||||
|
||||
// Empty JSON lists for data
|
||||
let storage = {
|
||||
scheduleData: undefined
|
||||
};
|
||||
|
||||
let cfg = {
|
||||
"roomName": "Bankettsaal"
|
||||
};
|
||||
|
||||
|
||||
|
||||
let do_fetch = fe.configure({}, serv);
|
||||
|
||||
do_fetch(storage);
|
||||
|
||||
|
||||
// Main Loop
|
||||
let screen_update = sc.configure(serv, dom);
|
||||
|
||||
// Just do it
|
||||
function main_loop() {
|
||||
screen_update(storage, ti, cfg);
|
||||
setTimeout(main_loop, 1 * 1000);
|
||||
};
|
||||
|
||||
main_loop();
|
|
@ -1,42 +0,0 @@
|
|||
'use strict';
|
||||
|
||||
|
||||
import * as fe from "../core/fetcher.js";
|
||||
|
||||
import * as ti from "../core/time.js";
|
||||
|
||||
import * as sc from "../core/screen.js";
|
||||
|
||||
// Import services
|
||||
import * as serv from "../services/service.js";
|
||||
|
||||
// Import views
|
||||
import * as dom from "../dom/talk-info.js";
|
||||
|
||||
|
||||
// Empty JSON lists for data
|
||||
let storage = {
|
||||
scheduleData: undefined
|
||||
};
|
||||
|
||||
let cfg = {
|
||||
"roomName": "Tanzsaal"
|
||||
};
|
||||
|
||||
|
||||
|
||||
let do_fetch = fe.configure({}, serv);
|
||||
|
||||
do_fetch(storage);
|
||||
|
||||
|
||||
// Main Loop
|
||||
let screen_update = sc.configure(serv, dom);
|
||||
|
||||
// Just do it
|
||||
function main_loop() {
|
||||
screen_update(storage, ti, cfg);
|
||||
setTimeout(main_loop, 1 * 1000);
|
||||
};
|
||||
|
||||
main_loop();
|
|
@ -1,48 +0,0 @@
|
|||
'use strict';
|
||||
|
||||
|
||||
import * as fe from "../core/fetcher.js";
|
||||
|
||||
import * as ti from "../core/time.js";
|
||||
|
||||
import * as sc from "../core/screen.js";
|
||||
|
||||
// Import services
|
||||
import * as serv from "../services/service.js";
|
||||
|
||||
// Import views
|
||||
import * as dom from "../dom/upcoming-talk.js";
|
||||
|
||||
|
||||
// Empty JSON lists for data
|
||||
let storage = {
|
||||
scheduleData: undefined
|
||||
};
|
||||
|
||||
let cfg = {
|
||||
"roomName": "Bankettsaal",
|
||||
"music": {
|
||||
"artist": "luss",
|
||||
"title": "dub techno session #5",
|
||||
"licence": "CC-BY",
|
||||
"url": "https://lussdub.bandcamp.com/"
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
||||
let do_fetch = fe.configure({}, serv);
|
||||
|
||||
do_fetch(storage);
|
||||
|
||||
|
||||
// Main Loop
|
||||
let screen_update = sc.configure(serv, dom);
|
||||
|
||||
// Just do it
|
||||
function main_loop() {
|
||||
screen_update(storage, ti, cfg);
|
||||
setTimeout(main_loop, 1 * 1000);
|
||||
};
|
||||
|
||||
main_loop();
|
|
@ -1,48 +0,0 @@
|
|||
'use strict';
|
||||
|
||||
|
||||
import * as fe from "../core/fetcher.js";
|
||||
|
||||
import * as ti from "../core/time.js";
|
||||
|
||||
import * as sc from "../core/screen.js";
|
||||
|
||||
// Import services
|
||||
import * as serv from "../services/service.js";
|
||||
|
||||
// Import views
|
||||
import * as dom from "../dom/upcoming-talk.js";
|
||||
|
||||
|
||||
// Empty JSON lists for data
|
||||
let storage = {
|
||||
scheduleData: undefined
|
||||
};
|
||||
|
||||
let cfg = {
|
||||
"roomName": "Tanzsaal",
|
||||
"music": {
|
||||
"artist": "luss",
|
||||
"title": "dub techno session #5",
|
||||
"licence": "CC-BY",
|
||||
"url": "https://lussdub.bandcamp.com/"
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
||||
let do_fetch = fe.configure({}, serv);
|
||||
|
||||
do_fetch(storage);
|
||||
|
||||
|
||||
// Main Loop
|
||||
let screen_update = sc.configure(serv, dom);
|
||||
|
||||
// Just do it
|
||||
function main_loop() {
|
||||
screen_update(storage, ti, cfg);
|
||||
setTimeout(main_loop, 1 * 1000);
|
||||
};
|
||||
|
||||
main_loop();
|
|
@ -1,45 +0,0 @@
|
|||
'use strict';
|
||||
|
||||
|
||||
import * as fe from "../core/fetcher.js";
|
||||
|
||||
import * as ti from "../core/time.js";
|
||||
|
||||
import * as sc from "../core/screen.js";
|
||||
|
||||
// Import services
|
||||
import * as serv from "../services/service.js";
|
||||
|
||||
// Import views
|
||||
import * as domman from "../dom/voc-schedule-hall.js";
|
||||
|
||||
|
||||
// Empty JSON lists for data
|
||||
let storage = {
|
||||
scheduleData: undefined
|
||||
};
|
||||
|
||||
|
||||
let do_fetch = fe.configure({}, serv);
|
||||
|
||||
do_fetch(storage);
|
||||
|
||||
|
||||
|
||||
// Main Loop
|
||||
let screen_update = sc.configure(serv, domman);
|
||||
|
||||
|
||||
let cfg = {
|
||||
"roomName": "Bankettsaal",
|
||||
};
|
||||
|
||||
|
||||
// Just do it
|
||||
function main_loop() {
|
||||
screen_update(storage, ti, cfg);
|
||||
// update_screen();
|
||||
setTimeout(main_loop, 1 * 100);
|
||||
};
|
||||
|
||||
main_loop();
|
|
@ -1,45 +0,0 @@
|
|||
'use strict';
|
||||
|
||||
|
||||
import * as fe from "../core/fetcher.js";
|
||||
|
||||
import * as ti from "../core/time.js";
|
||||
|
||||
import * as sc from "../core/screen.js";
|
||||
|
||||
// Import services
|
||||
import * as serv from "../services/service.js";
|
||||
|
||||
// Import views
|
||||
import * as domman from "../dom/voc-schedule-hall.js";
|
||||
|
||||
|
||||
// Empty JSON lists for data
|
||||
let storage = {
|
||||
scheduleData: undefined
|
||||
};
|
||||
|
||||
|
||||
let do_fetch = fe.configure({}, serv);
|
||||
|
||||
do_fetch(storage);
|
||||
|
||||
|
||||
|
||||
// Main Loop
|
||||
let screen_update = sc.configure(serv, domman);
|
||||
|
||||
|
||||
let cfg = {
|
||||
"roomName": "Tanzsaal",
|
||||
};
|
||||
|
||||
|
||||
// Just do it
|
||||
function main_loop() {
|
||||
screen_update(storage, ti, cfg);
|
||||
// update_screen();
|
||||
setTimeout(main_loop, 1 * 100);
|
||||
};
|
||||
|
||||
main_loop();
|
|
@ -1,6 +1,6 @@
|
|||
baseURL = "https://files.chvoc.ch/"
|
||||
baseURL = "https://infobeamer.ctbk.de/"
|
||||
languageCode = 'de-DE'
|
||||
title = 'DGWK25'
|
||||
title = 'FSCK2025'
|
||||
|
||||
defaultContentLanguage = "en"
|
||||
|
||||
|
@ -16,6 +16,6 @@ disableKinds = ["taxonomy", "term", "RSS", "sitemap", "robotsTXT", "404"]
|
|||
[params]
|
||||
workerBaseURL = '/js/custom/core/'
|
||||
|
||||
scheduleURL = '/schedule.json'
|
||||
#scheduleURL = 'https://cfp.winterkongress.ch/wk25/schedule/export/schedule.json'
|
||||
# scheduleURL = '/schedule.json'
|
||||
scheduleURL = 'https://cfp.ctbk.de/fsck-2025/schedule/export/schedule.json'
|
||||
scheduleFetchInterval = 60
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
baseURL = "https://files.chvoc.ch/dgwk25/info/"
|
||||
baseURL = "https://infobeamer.ctbk.de/fsck2025/"
|
||||
|
||||
|
||||
[params]
|
||||
workerBaseURL = '/dgwk25/info/js/custom/core/'
|
||||
workerBaseURL = '/fsck2025/js/custom/core/'
|
||||
|
||||
scheduleURL = '/dgwk25/info/schedule.json'
|
||||
#scheduleURL = 'https://cfp.winterkongress.ch/wk25/schedule/export/schedule.json'
|
||||
# scheduleURL = '/fsck2025/schedule.json'
|
||||
scheduleURL = 'https://cfp.ctbk.de/fsck-2025/schedule/export/schedule.json'
|
||||
scheduleFetchInterval = 60
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
---
|
||||
title: "Schedule Hall 1: Festsaal"
|
||||
type: schedule-hall1
|
||||
---
|
|
@ -1,4 +0,0 @@
|
|||
---
|
||||
title: "Schedule Hall 2: Bankettsaal"
|
||||
type: schedule-hall2
|
||||
---
|
|
@ -1,4 +0,0 @@
|
|||
---
|
||||
title: "Schedule Hall 3: Tanzsaal"
|
||||
type: schedule-hall3
|
||||
---
|
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
title: "Schedule Kino 5: FSCK"
|
||||
type: schedule-kino5
|
||||
---
|
|
@ -1,4 +0,0 @@
|
|||
---
|
||||
title: "Speaker Info Hall 1: Festsaal"
|
||||
type: speaker-info-hall1
|
||||
---
|
|
@ -1,4 +0,0 @@
|
|||
---
|
||||
title: "Speaker Info Hall 2: Bankettsaal"
|
||||
type: speaker-info-hall2
|
||||
---
|
|
@ -1,4 +0,0 @@
|
|||
---
|
||||
title: "Speaker Info Hall 3: Tanzsaal"
|
||||
type: speaker-info-hall3
|
||||
---
|
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
title: "Speaker Info Kino5: FSCK"
|
||||
type: speaker-info-kino5
|
||||
---
|
|
@ -1,4 +0,0 @@
|
|||
---
|
||||
title: "Talk Info Hall 1: Festsaal"
|
||||
type: talk-info-hall1
|
||||
---
|
|
@ -1,4 +0,0 @@
|
|||
---
|
||||
title: "Talk Info Hall 2: Bankettsaal"
|
||||
type: talk-info-hall2
|
||||
---
|
|
@ -1,4 +0,0 @@
|
|||
---
|
||||
title: "Talk Info Hall 3: Tanzsaal"
|
||||
type: talk-info-hall3
|
||||
---
|
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
title: "Talk Info Kino 5: FSCK"
|
||||
type: talk-info-kino5
|
||||
---
|
|
@ -1,4 +0,0 @@
|
|||
---
|
||||
title: "Upcoming Talk Hall 1: Festsaal"
|
||||
type: upcoming-talk-hall1
|
||||
---
|
|
@ -1,4 +0,0 @@
|
|||
---
|
||||
title: "Upcoming Talk Hall 2: Bankettsaal"
|
||||
type: upcoming-talk-hall2
|
||||
---
|
|
@ -1,4 +0,0 @@
|
|||
---
|
||||
title: "Upcoming Talk Hall 3: Tanzsaal"
|
||||
type: upcoming-talk-hall3
|
||||
---
|
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
title: "Upcoming Talk Kino 5: FSCK"
|
||||
type: upcoming-talk-kino5
|
||||
---
|
|
@ -1,4 +0,0 @@
|
|||
---
|
||||
title: "VOC Schedule Hall 1: Festsaal"
|
||||
type: voc-schedule-hall1
|
||||
---
|
|
@ -1,4 +0,0 @@
|
|||
---
|
||||
title: "VOC Schedule Hall 2: Bankettsaal"
|
||||
type: voc-schedule-hall2
|
||||
---
|
|
@ -1,4 +0,0 @@
|
|||
---
|
||||
title: "VOC Schedule Hall 3: Tanzsaal"
|
||||
type: voc-schedule-hall3
|
||||
---
|
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
title: "VOC Schedule Kino 5: FSCK"
|
||||
type: voc-schedule-kino5
|
||||
---
|
|
@ -1,20 +0,0 @@
|
|||
{{ define "cssincludes" }}
|
||||
{{ $options := dict "targetPath" "schedule-hall2.css" "outputStyle" "compressed" "enableSourceMap" false -}}
|
||||
{{ $style := resources.Get "/css/custom/nodes/schedule-hall2.scss" | resources.ToCSS $options | resources.Minify | resources.Fingerprint -}}
|
||||
<link rel="stylesheet" href="{{ $style.Permalink }}" />
|
||||
{{ end }}
|
||||
|
||||
{{ define "jsincludes" }}
|
||||
{{ $externals := slice "htm" "preact" "luxon" }}
|
||||
{{ $buildOptions := dict "targetPath" "schedule-hall2.js" "externals" $externals }}
|
||||
{{ $nodejs := resources.Get "/js/custom/nodes/schedule-hall2.js" | js.Build $buildOptions | resources.Fingerprint }}
|
||||
<script src="{{ $nodejs.Permalink }}" integrity="{{ $nodejs.Data.Integrity }}" type="module"></script>
|
||||
{{ end }}
|
||||
|
||||
{{ define "main" }}
|
||||
<img class="header" src="{{ .Site.BaseURL }}/header.png">
|
||||
<main id="main">
|
||||
<!-- Dynamic content inserted here -->
|
||||
</main>
|
||||
<div id="clock"></div>
|
||||
{{ end }}
|
|
@ -1,20 +0,0 @@
|
|||
{{ define "cssincludes" }}
|
||||
{{ $options := dict "targetPath" "schedule-hall3.css" "outputStyle" "compressed" "enableSourceMap" false -}}
|
||||
{{ $style := resources.Get "/css/custom/nodes/schedule-hall3.scss" | resources.ToCSS $options | resources.Minify | resources.Fingerprint -}}
|
||||
<link rel="stylesheet" href="{{ $style.Permalink }}" />
|
||||
{{ end }}
|
||||
|
||||
{{ define "jsincludes" }}
|
||||
{{ $externals := slice "htm" "preact" "luxon" }}
|
||||
{{ $buildOptions := dict "targetPath" "schedule-hall3.js" "externals" $externals }}
|
||||
{{ $nodejs := resources.Get "/js/custom/nodes/schedule-hall3.js" | js.Build $buildOptions | resources.Fingerprint }}
|
||||
<script src="{{ $nodejs.Permalink }}" integrity="{{ $nodejs.Data.Integrity }}" type="module"></script>
|
||||
{{ end }}
|
||||
|
||||
{{ define "main" }}
|
||||
<img class="header" src="{{ .Site.BaseURL }}/header.png">
|
||||
<main id="main">
|
||||
<!-- Dynamic content inserted here -->
|
||||
</main>
|
||||
<div id="clock"></div>
|
||||
{{ end }}
|
|
@ -1,13 +1,13 @@
|
|||
{{ define "cssincludes" }}
|
||||
{{ $options := dict "targetPath" "schedule-hall1.css" "outputStyle" "compressed" "enableSourceMap" false -}}
|
||||
{{ $style := resources.Get "/css/custom/nodes/schedule-hall1.scss" | resources.ToCSS $options | resources.Minify | resources.Fingerprint -}}
|
||||
{{ $options := dict "targetPath" "schedule-kino5.css" "outputStyle" "compressed" "enableSourceMap" false -}}
|
||||
{{ $style := resources.Get "/css/custom/nodes/schedule-kino5.scss" | resources.ToCSS $options | resources.Minify | resources.Fingerprint -}}
|
||||
<link rel="stylesheet" href="{{ $style.Permalink }}" />
|
||||
{{ end }}
|
||||
|
||||
{{ define "jsincludes" }}
|
||||
{{ $externals := slice "htm" "preact" "luxon" }}
|
||||
{{ $buildOptions := dict "targetPath" "schedule-hall1.js" "externals" $externals }}
|
||||
{{ $nodejs := resources.Get "/js/custom/nodes/schedule-hall1.js" | js.Build $buildOptions | resources.Fingerprint }}
|
||||
{{ $buildOptions := dict "targetPath" "schedule-kino5.js" "externals" $externals }}
|
||||
{{ $nodejs := resources.Get "/js/custom/nodes/schedule-kino5.js" | js.Build $buildOptions | resources.Fingerprint }}
|
||||
<script src="{{ $nodejs.Permalink }}" integrity="{{ $nodejs.Data.Integrity }}" type="module"></script>
|
||||
{{ end }}
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
{{ define "cssincludes" }}
|
||||
{{ $options := dict "targetPath" "speaker-info-hall1.css" "outputStyle" "compressed" "enableSourceMap" false -}}
|
||||
{{ $style := resources.Get "/css/custom/nodes/speaker-info-hall1.scss" | resources.ToCSS $options | resources.Minify | resources.Fingerprint -}}
|
||||
<link rel="stylesheet" href="{{ $style.Permalink }}" />
|
||||
{{ end }}
|
||||
|
||||
{{ define "jsincludes" }}
|
||||
{{ $externals := slice "htm" "preact" "luxon" }}
|
||||
{{ $buildOptions := dict "targetPath" "speaker-info-hall1.js" "externals" $externals }}
|
||||
{{ $nodejs := resources.Get "/js/custom/nodes/speaker-info-hall1.js" | js.Build $buildOptions | resources.Fingerprint }}
|
||||
<script src="{{ $nodejs.Permalink }}" integrity="{{ $nodejs.Data.Integrity }}" type="module"></script>
|
||||
{{ end }}
|
||||
|
||||
{{ define "main" }}
|
||||
<img src="/bg.png">
|
||||
<main id="main">
|
||||
<!-- Dynamic content inserted here -->
|
||||
</main>
|
||||
{{ end }}
|
|
@ -1,19 +0,0 @@
|
|||
{{ define "cssincludes" }}
|
||||
{{ $options := dict "targetPath" "speaker-info-hall3.css" "outputStyle" "compressed" "enableSourceMap" false -}}
|
||||
{{ $style := resources.Get "/css/custom/nodes/speaker-info-hall3.scss" | resources.ToCSS $options | resources.Minify | resources.Fingerprint -}}
|
||||
<link rel="stylesheet" href="{{ $style.Permalink }}" />
|
||||
{{ end }}
|
||||
|
||||
{{ define "jsincludes" }}
|
||||
{{ $externals := slice "htm" "preact" "luxon" }}
|
||||
{{ $buildOptions := dict "targetPath" "speaker-info-hall3.js" "externals" $externals }}
|
||||
{{ $nodejs := resources.Get "/js/custom/nodes/speaker-info-hall3.js" | js.Build $buildOptions | resources.Fingerprint }}
|
||||
<script src="{{ $nodejs.Permalink }}" integrity="{{ $nodejs.Data.Integrity }}" type="module"></script>
|
||||
{{ end }}
|
||||
|
||||
{{ define "main" }}
|
||||
<img src="/bg.png">
|
||||
<main id="main">
|
||||
<!-- Dynamic content inserted here -->
|
||||
</main>
|
||||
{{ end }}
|
|
@ -1,13 +1,13 @@
|
|||
{{ define "cssincludes" }}
|
||||
{{ $options := dict "targetPath" "speaker-info-hall2.css" "outputStyle" "compressed" "enableSourceMap" false -}}
|
||||
{{ $style := resources.Get "/css/custom/nodes/speaker-info-hall2.scss" | resources.ToCSS $options | resources.Minify | resources.Fingerprint -}}
|
||||
{{ $options := dict "targetPath" "speaker-info-kino5.css" "outputStyle" "compressed" "enableSourceMap" false -}}
|
||||
{{ $style := resources.Get "/css/custom/nodes/speaker-info-kino5.scss" | resources.ToCSS $options | resources.Minify | resources.Fingerprint -}}
|
||||
<link rel="stylesheet" href="{{ $style.Permalink }}" />
|
||||
{{ end }}
|
||||
|
||||
{{ define "jsincludes" }}
|
||||
{{ $externals := slice "htm" "preact" "luxon" }}
|
||||
{{ $buildOptions := dict "targetPath" "speaker-info-hall2.js" "externals" $externals }}
|
||||
{{ $nodejs := resources.Get "/js/custom/nodes/speaker-info-hall2.js" | js.Build $buildOptions | resources.Fingerprint }}
|
||||
{{ $buildOptions := dict "targetPath" "speaker-info-kino5.js" "externals" $externals }}
|
||||
{{ $nodejs := resources.Get "/js/custom/nodes/speaker-info-kino5.js" | js.Build $buildOptions | resources.Fingerprint }}
|
||||
<script src="{{ $nodejs.Permalink }}" integrity="{{ $nodejs.Data.Integrity }}" type="module"></script>
|
||||
{{ end }}
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
{{ define "cssincludes" }}
|
||||
{{ $options := dict "targetPath" "talk-info-hall1.css" "outputStyle" "compressed" "enableSourceMap" false -}}
|
||||
{{ $style := resources.Get "/css/custom/nodes/talk-info-hall1.scss" | resources.ToCSS $options | resources.Minify | resources.Fingerprint -}}
|
||||
<link rel="stylesheet" href="{{ $style.Permalink }}" />
|
||||
{{ end }}
|
||||
|
||||
{{ define "jsincludes" }}
|
||||
{{ $externals := slice "htm" "preact" "luxon" }}
|
||||
{{ $buildOptions := dict "targetPath" "talk-info-hall1.js" "externals" $externals }}
|
||||
{{ $nodejs := resources.Get "/js/custom/nodes/talk-info-hall1.js" | js.Build $buildOptions | resources.Fingerprint }}
|
||||
<script src="{{ $nodejs.Permalink }}" integrity="{{ $nodejs.Data.Integrity }}" type="module"></script>
|
||||
{{ end }}
|
||||
|
||||
{{ define "main" }}
|
||||
<img src="/bg.png">
|
||||
<main id="main">
|
||||
<!-- Dynamic content inserted here -->
|
||||
</main>
|
||||
{{ end }}
|
|
@ -1,19 +0,0 @@
|
|||
{{ define "cssincludes" }}
|
||||
{{ $options := dict "targetPath" "talk-info-hall3.css" "outputStyle" "compressed" "enableSourceMap" false -}}
|
||||
{{ $style := resources.Get "/css/custom/nodes/talk-info-hall3.scss" | resources.ToCSS $options | resources.Minify | resources.Fingerprint -}}
|
||||
<link rel="stylesheet" href="{{ $style.Permalink }}" />
|
||||
{{ end }}
|
||||
|
||||
{{ define "jsincludes" }}
|
||||
{{ $externals := slice "htm" "preact" "luxon" }}
|
||||
{{ $buildOptions := dict "targetPath" "talk-info-hall3.js" "externals" $externals }}
|
||||
{{ $nodejs := resources.Get "/js/custom/nodes/talk-info-hall3.js" | js.Build $buildOptions | resources.Fingerprint }}
|
||||
<script src="{{ $nodejs.Permalink }}" integrity="{{ $nodejs.Data.Integrity }}" type="module"></script>
|
||||
{{ end }}
|
||||
|
||||
{{ define "main" }}
|
||||
<img src="/bg.png">
|
||||
<main id="main">
|
||||
<!-- Dynamic content inserted here -->
|
||||
</main>
|
||||
{{ end }}
|
|
@ -1,13 +1,13 @@
|
|||
{{ define "cssincludes" }}
|
||||
{{ $options := dict "targetPath" "talk-info-hall2.css" "outputStyle" "compressed" "enableSourceMap" false -}}
|
||||
{{ $style := resources.Get "/css/custom/nodes/talk-info-hall2.scss" | resources.ToCSS $options | resources.Minify | resources.Fingerprint -}}
|
||||
{{ $options := dict "targetPath" "talk-info-kino5.css" "outputStyle" "compressed" "enableSourceMap" false -}}
|
||||
{{ $style := resources.Get "/css/custom/nodes/talk-info-kino5.scss" | resources.ToCSS $options | resources.Minify | resources.Fingerprint -}}
|
||||
<link rel="stylesheet" href="{{ $style.Permalink }}" />
|
||||
{{ end }}
|
||||
|
||||
{{ define "jsincludes" }}
|
||||
{{ $externals := slice "htm" "preact" "luxon" }}
|
||||
{{ $buildOptions := dict "targetPath" "talk-info-hall2.js" "externals" $externals }}
|
||||
{{ $nodejs := resources.Get "/js/custom/nodes/talk-info-hall2.js" | js.Build $buildOptions | resources.Fingerprint }}
|
||||
{{ $buildOptions := dict "targetPath" "talk-info-kino5.js" "externals" $externals }}
|
||||
{{ $nodejs := resources.Get "/js/custom/nodes/talk-info-kino5.js" | js.Build $buildOptions | resources.Fingerprint }}
|
||||
<script src="{{ $nodejs.Permalink }}" integrity="{{ $nodejs.Data.Integrity }}" type="module"></script>
|
||||
{{ end }}
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
{{ define "cssincludes" }}
|
||||
{{ $options := dict "targetPath" "upcoming-talk-hall1.css" "outputStyle" "compressed" "enableSourceMap" false -}}
|
||||
{{ $style := resources.Get "/css/custom/nodes/upcoming-talk-hall1.scss" | resources.ToCSS $options | resources.Minify | resources.Fingerprint -}}
|
||||
<link rel="stylesheet" href="{{ $style.Permalink }}" />
|
||||
{{ end }}
|
||||
|
||||
{{ define "jsincludes" }}
|
||||
{{ $externals := slice "htm" "preact" "luxon" }}
|
||||
{{ $buildOptions := dict "targetPath" "upcoming-talk-hall1.js" "externals" $externals }}
|
||||
{{ $nodejs := resources.Get "/js/custom/nodes/upcoming-talk-hall1.js" | js.Build $buildOptions | resources.Fingerprint }}
|
||||
<script src="{{ $nodejs.Permalink }}" integrity="{{ $nodejs.Data.Integrity }}" type="module"></script>
|
||||
{{ end }}
|
||||
|
||||
{{ define "main" }}
|
||||
<img class="header" src="{{ .Site.BaseURL }}/header.png">
|
||||
<main id="main">
|
||||
<!-- Dynamic content inserted here -->
|
||||
</main>
|
||||
{{ end }}
|
|
@ -1,19 +0,0 @@
|
|||
{{ define "cssincludes" }}
|
||||
{{ $options := dict "targetPath" "upcoming-talk-hall3.css" "outputStyle" "compressed" "enableSourceMap" false -}}
|
||||
{{ $style := resources.Get "/css/custom/nodes/upcoming-talk-hall3.scss" | resources.ToCSS $options | resources.Minify | resources.Fingerprint -}}
|
||||
<link rel="stylesheet" href="{{ $style.Permalink }}" />
|
||||
{{ end }}
|
||||
|
||||
{{ define "jsincludes" }}
|
||||
{{ $externals := slice "htm" "preact" "luxon" }}
|
||||
{{ $buildOptions := dict "targetPath" "upcoming-talk-hall3.js" "externals" $externals }}
|
||||
{{ $nodejs := resources.Get "/js/custom/nodes/upcoming-talk-hall3.js" | js.Build $buildOptions | resources.Fingerprint }}
|
||||
<script src="{{ $nodejs.Permalink }}" integrity="{{ $nodejs.Data.Integrity }}" type="module"></script>
|
||||
{{ end }}
|
||||
|
||||
{{ define "main" }}
|
||||
<img class="header" src="{{ .Site.BaseURL }}/header.png">
|
||||
<main id="main">
|
||||
<!-- Dynamic content inserted here -->
|
||||
</main>
|
||||
{{ end }}
|
|
@ -1,13 +1,13 @@
|
|||
{{ define "cssincludes" }}
|
||||
{{ $options := dict "targetPath" "upcoming-talk-hall2.css" "outputStyle" "compressed" "enableSourceMap" false -}}
|
||||
{{ $style := resources.Get "/css/custom/nodes/upcoming-talk-hall2.scss" | resources.ToCSS $options | resources.Minify | resources.Fingerprint -}}
|
||||
{{ $options := dict "targetPath" "upcoming-talk-kino5.css" "outputStyle" "compressed" "enableSourceMap" false -}}
|
||||
{{ $style := resources.Get "/css/custom/nodes/upcoming-talk-kino5.scss" | resources.ToCSS $options | resources.Minify | resources.Fingerprint -}}
|
||||
<link rel="stylesheet" href="{{ $style.Permalink }}" />
|
||||
{{ end }}
|
||||
|
||||
{{ define "jsincludes" }}
|
||||
{{ $externals := slice "htm" "preact" "luxon" }}
|
||||
{{ $buildOptions := dict "targetPath" "upcoming-talk-hall2.js" "externals" $externals }}
|
||||
{{ $nodejs := resources.Get "/js/custom/nodes/upcoming-talk-hall2.js" | js.Build $buildOptions | resources.Fingerprint }}
|
||||
{{ $buildOptions := dict "targetPath" "upcoming-talk-kino5.js" "externals" $externals }}
|
||||
{{ $nodejs := resources.Get "/js/custom/nodes/upcoming-talk-kino5.js" | js.Build $buildOptions | resources.Fingerprint }}
|
||||
<script src="{{ $nodejs.Permalink }}" integrity="{{ $nodejs.Data.Integrity }}" type="module"></script>
|
||||
{{ end }}
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
{{ define "cssincludes" }}
|
||||
{{ $options := dict "targetPath" "default.css" "outputStyle" "compressed" "enableSourceMap" false -}}
|
||||
{{ $style := resources.Get "/css/custom/nodes/voc-schedule.scss" | resources.ToCSS $options | resources.Minify | resources.Fingerprint -}}
|
||||
<link rel="stylesheet" href="{{ $style.Permalink }}" />
|
||||
{{ end }}
|
||||
|
||||
{{ define "jsincludes" }}
|
||||
{{ $externals := slice "htm" "preact" "luxon" }}
|
||||
{{ $buildOptions := dict "targetPath" "voc-schedule-hall1.js" "externals" $externals }}
|
||||
{{ $nodejs := resources.Get "/js/custom/nodes/voc-schedule-hall1.js" | js.Build $buildOptions | resources.Fingerprint }}
|
||||
<script src="{{ $nodejs.Permalink }}" integrity="{{ $nodejs.Data.Integrity }}" type="module"></script>
|
||||
{{ end }}
|
|
@ -1,12 +0,0 @@
|
|||
{{ define "cssincludes" }}
|
||||
{{ $options := dict "targetPath" "default.css" "outputStyle" "compressed" "enableSourceMap" false -}}
|
||||
{{ $style := resources.Get "/css/custom/nodes/voc-schedule.scss" | resources.ToCSS $options | resources.Minify | resources.Fingerprint -}}
|
||||
<link rel="stylesheet" href="{{ $style.Permalink }}" />
|
||||
{{ end }}
|
||||
|
||||
{{ define "jsincludes" }}
|
||||
{{ $externals := slice "htm" "preact" "luxon" }}
|
||||
{{ $buildOptions := dict "targetPath" "voc-schedule-hall3.js" "externals" $externals }}
|
||||
{{ $nodejs := resources.Get "/js/custom/nodes/voc-schedule-hall3.js" | js.Build $buildOptions | resources.Fingerprint }}
|
||||
<script src="{{ $nodejs.Permalink }}" integrity="{{ $nodejs.Data.Integrity }}" type="module"></script>
|
||||
{{ end }}
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
{{ define "jsincludes" }}
|
||||
{{ $externals := slice "htm" "preact" "luxon" }}
|
||||
{{ $buildOptions := dict "targetPath" "voc-schedule-hall2.js" "externals" $externals }}
|
||||
{{ $nodejs := resources.Get "/js/custom/nodes/voc-schedule-hall2.js" | js.Build $buildOptions | resources.Fingerprint }}
|
||||
{{ $buildOptions := dict "targetPath" "voc-schedule-kino5.js" "externals" $externals }}
|
||||
{{ $nodejs := resources.Get "/js/custom/nodes/voc-schedule-kino5.js" | js.Build $buildOptions | resources.Fingerprint }}
|
||||
<script src="{{ $nodejs.Permalink }}" integrity="{{ $nodejs.Data.Integrity }}" type="module"></script>
|
||||
{{ end }}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue