Skip to content

Work Package Pages

Alexander Refsum Jensenius edited this page Jun 21, 2026 · 3 revisions

Each of the seven work packages has both a public page and an internal page.

Public WP pages

Location: site/wp1/index.mdsite/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" %}

Internal WP pages

Location: site/internal/wp1/index.mdsite/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.

How authentication works

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.

Internal section index

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.

Board and council meetings

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.

Clone this wiki locally