-
Notifications
You must be signed in to change notification settings - Fork 0
Work Package Pages
Each of the seven work packages has both a public page and an internal page.
Location: site/wp1/index.md … site/wp7/index.md
URL: /wp1/ … /wp7/
Minimal frontmatter:
---
layout: page
title: "WP1: AI for artistic performances"
---Content is written in Markdown below. The page can include the events_wp_pages.html include to show WP-specific events:
{% include events_wp_pages.html wp="WP1" %}Location: site/internal/wp1/index.md … site/internal/wp7/index.md
URL: /internal/wp1/ … /internal/wp7/
---
layout: internal
title: "Internal – WP1: AI for artistic performances"
---The internal layout requires a password before showing content. The default password hash is stored in _config.yml as internal_password_hash. Pages can override this with a password_hash frontmatter field.
The internal layout uses the browser's SubtleCrypto API to hash the user's input and compare it client-side against the stored SHA-256 hash. There is no server involved — this is a lightweight access barrier, not cryptographic security.
Location: internal/index.md
The top-level internal page (/internal/) uses layout: internal and links to all internal WP pages, funding documents, and meeting minutes.
Meeting pages use the meeting layout:
---
layout: meeting
meeting_title: "Board Meeting #3"
meeting_date: 2026-04-15
meeting_start: "10:00"
meeting_end: "12:00"
meeting_location: "University of Oslo"
---Board meetings are stored in internal/ subfolders and listed via _includes/board_meetings.html and _includes/council_meetings.html.