forked from Fediversity/Fediversity
add past events and list them on a page
This commit is contained in:
parent
61b2d07b1d
commit
23462e3110
|
@ -7,6 +7,7 @@ in
|
|||
imports = lib.nixFiles ./.;
|
||||
|
||||
collections.news.type = cfg.content-types.article;
|
||||
collections.events.type = cfg.content-types.event;
|
||||
|
||||
pages.index = { config, link, ... }: {
|
||||
title = "Welcome to the Fediversity project";
|
||||
|
@ -57,6 +58,17 @@ in
|
|||
- ${article.date} [${article.title}](${link article})
|
||||
'') sorted)
|
||||
}
|
||||
|
||||
# Events
|
||||
|
||||
${
|
||||
let
|
||||
sorted = with lib; reverseList (sortOn (entry: entry.start-date) cfg.collections.events.entry);
|
||||
in
|
||||
lib.join "\n" (map (article: ''
|
||||
- ${article.start-date} [${article.title}](${link article})
|
||||
'') sorted)
|
||||
}
|
||||
'';
|
||||
outputs.html = (cfg.templates.html.page config).override {
|
||||
html.head.title.text = "Fediversity";
|
||||
|
|
16
website/content/events.nix
Normal file
16
website/content/events.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
pages.events = { link, ... }: rec {
|
||||
title = "Events";
|
||||
description = "Events related to the Fediverse and NixOS";
|
||||
summary = description;
|
||||
body =
|
||||
with lib;
|
||||
let
|
||||
events = map (event: "- [${event.start-date} ${event.title}](${link event})") config.collections.events.entry;
|
||||
in
|
||||
''
|
||||
${join "\n" events}
|
||||
'';
|
||||
};
|
||||
}
|
24
website/content/events/owc-annual-conference-2024.nix
Normal file
24
website/content/events/owc-annual-conference-2024.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ ... }:
|
||||
{
|
||||
collections.events.entry = { ... }: {
|
||||
title = "OW2con 2024";
|
||||
description = "OW2con is the annual European open source conference in Paris";
|
||||
start-date = "2024-06-11";
|
||||
end-date = "2024-06-12";
|
||||
start-time = "09:00";
|
||||
end-time = "18:00";
|
||||
location = "Paris-Chatillon";
|
||||
body = ''
|
||||
OW2con is the European open source conference organized by OW2.
|
||||
An international meeting of developpers, IT companies, academics and non-profit organizations, OW2con brings together the entire open source community, during two days of presentations ranging from tech topics to business and ethical issues of open source.
|
||||
It also offers a unique opportunity to establish contact with peers through friendly networking sessions.
|
||||
OW2con is [open](https://www.ngi.eu/event/open-source-community-annual-conference-2024/) to all, the event is free and all sessions are held in English.
|
||||
|
||||
The OW2con’24 call for presentations is open.
|
||||
This year we are giving the highlight on the theme of open source funding:
|
||||
What are the current solutions for innovators, start-ups or ISVs to finance their development?
|
||||
Private or public financing?
|
||||
Are national and European public policies up to the challenges?
|
||||
'';
|
||||
};
|
||||
}
|
18
website/content/events/publicspaces-conference-2024.nix
Normal file
18
website/content/events/publicspaces-conference-2024.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ ... }:
|
||||
{
|
||||
collections.events.entry = { ... }: {
|
||||
title = "PublicSpaces Conference 2024";
|
||||
description = "A conference by PublicSpaces, Taking Back the Internet.";
|
||||
start-date = "2024-06-06";
|
||||
end-date = "2024-06-07";
|
||||
start-time = "09:00";
|
||||
end-time = "18:00";
|
||||
location = "Pakhuis de Zwijger - Amsterdam";
|
||||
body = ''
|
||||
On June 6th and 7th, PublicSpaces and Waag Futurelab proudly present the fourth edition of the PublicSpaces conference under the theme 'Empowering the Internet'.
|
||||
Held at Pakhuis de Zwijger, this two-day event will feature panels, keynotes, roundtable discussions, lectures, as well as art and cultural showcases, all aimed at collectively shaping the rules for a more inclusive internet.
|
||||
Join us as we navigate towards a digital landscape where everyone has a voice.
|
||||
For more information, check out the [website](https://publicspaces.net/2024/02/01/save-the-date-publicspaces-conferentie-2024/)
|
||||
'';
|
||||
};
|
||||
}
|
25
website/content/events/waag-state-internet-2024.nix
Normal file
25
website/content/events/waag-state-internet-2024.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ ... }:
|
||||
{
|
||||
collections.events.entry = { ... }: {
|
||||
title = "State of the Internet 2024";
|
||||
description = "The State of the Internet 2024 by Waag";
|
||||
start-date = "2024-05-16";
|
||||
end-date = "2024-05-16";
|
||||
start-time = "18:00";
|
||||
end-time = "20:00";
|
||||
location = "OBA Oosterdok - Amsterdam";
|
||||
body = ''
|
||||
Join us at the State of the Internet 2024, where Waag Futurelab, alongside the Municipality of Amsterdam and the OBA, delves into the depths of the online realm.
|
||||
Featuring Kim van Sparrentak, Member of the European Parliament, discussing Europe's efforts to regulate Big Tech and enhance digital rights.
|
||||
Explore the impact of pivotal European laws like the GDPR and AI Act while celebrating 30 years of Waag Futurelab's dedication to democratizing technology access for all.
|
||||
|
||||
The event takes place at:
|
||||
|
||||
OBA Oosterdok <br>
|
||||
Oosterdokskade 143 <br>
|
||||
1011 DK Amsterdam
|
||||
|
||||
Registration available [here](https://waag.org/nl/event/de-staat-van-het-internet-2024-met-kim-van-sparrentak/).
|
||||
'';
|
||||
};
|
||||
}
|
|
@ -31,6 +31,9 @@ in
|
|||
})
|
||||
(lib.take 3 sorted);
|
||||
}
|
||||
{
|
||||
page = pages.events;
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
title: "Events"
|
||||
meta_title: "Events"
|
||||
description: "Events related to the fediverse and NixOS."
|
||||
---
|
|
@ -1,18 +0,0 @@
|
|||
---
|
||||
title: "OW2con 2024"
|
||||
meta_title: ""
|
||||
description: "OW2con is the annual European open source conference in Paris"
|
||||
date: 2024-05-11T09:00:00Z
|
||||
categories: ["Event", "Conference"]
|
||||
image: "/images/image-placeholder.png"
|
||||
author: "Laurens Hof"
|
||||
draft: false
|
||||
date_start: 2024-06-11
|
||||
date_end: 2024-06-12
|
||||
datetime_start: 2024-06-11 09:00
|
||||
datetime_end: 2024-06-12 18:00
|
||||
location: Paris-Chatillon
|
||||
---
|
||||
|
||||
OW2con is the European open source conference organized by OW2. An international meeting of developpers, IT companies, academics and non-profit organizations, OW2con brings together the entire open source community, during two days of presentations ranging from tech topics to business and ethical issues of open source. It also offers a unique opportunity to establish contact with peers through friendly networking sessions. OW2con is [open](https://www.ngi.eu/event/open-source-community-annual-conference-2024/) to all, the event is free and all sessions are held in English.
|
||||
The OW2con’24 call for presentations is open. This year we are giving the highlight on the theme of open source funding: what are the current solutions for innovators, start-ups or ISVs to finance their development? private or public financing? Are national and European public policies up to the challenges?
|
|
@ -1,18 +0,0 @@
|
|||
---
|
||||
title: "PublicSpaces Conference 2024"
|
||||
meta_title: ""
|
||||
date: 2024-05-11T14:00:00+02:00
|
||||
description: "A conference by PublicSpaces, Taking Back the Internet."
|
||||
categories: ["Event", "Conference"]
|
||||
image: "/images/image-placeholder.png"
|
||||
author: "Laurens Hof"
|
||||
draft: false
|
||||
date_start: 2024-06-06
|
||||
date_end: 2024-06-07
|
||||
datetime_start: 2024-06-06 09:00
|
||||
datetime_end: 2024-06-07 18:00
|
||||
location: Pakhuis de Zwijger - Amsterdam
|
||||
---
|
||||
w
|
||||
On June 6th and 7th, PublicSpaces and Waag Futurelab proudly present the fourth edition of the PublicSpaces conference under the theme 'Empowering the Internet'. Held at Pakhuis de Zwijger, this two-day event will feature panels, keynotes, roundtable discussions, lectures, as well as art and cultural showcases, all aimed at collectively shaping the rules for a more inclusive internet. Join us as we navigate towards a digital landscape where everyone has a voice. For more information, check out the [website](https://publicspaces.net/2024/02/01/save-the-date-publicspaces-conferentie-2024/)
|
||||
|
|
@ -1,25 +0,0 @@
|
|||
---
|
||||
title: "State of the Internet 2024"
|
||||
meta_title: ""
|
||||
description: "The State of the Internet 2024 by Waag"
|
||||
date: 2024-04-10T16:00:00Z
|
||||
image: "/images/image-placeholder.png"
|
||||
categories: ["Event", "Webinar"]
|
||||
author: "Laurens Hof"
|
||||
draft: false
|
||||
date_start: 2024-05-16
|
||||
date_end: 2024-05-16
|
||||
datetime_start: 2024-05-16 18:00
|
||||
datetime_end: 2024-05-16 20:00
|
||||
location: OBA Oosterdok - Amsterdam
|
||||
---
|
||||
|
||||
Join us at the State of the Internet 2024, where Waag Futurelab, alongside the Municipality of Amsterdam and the OBA, delves into the depths of the online realm. Featuring Kim van Sparrentak, Member of the European Parliament, discussing Europe's efforts to regulate Big Tech and enhance digital rights. Explore the impact of pivotal European laws like the GDPR and AI Act while celebrating 30 years of Waag Futurelab's dedication to democratizing technology access for all.
|
||||
|
||||
The event takes place at:
|
||||
|
||||
OBA Oosterdok <br>
|
||||
Oosterdokskade 143 <br>
|
||||
1011 DK Amsterdam
|
||||
|
||||
Registration available [here](https://waag.org/nl/event/de-staat-van-het-internet-2024-met-kim-van-sparrentak/)
|
|
@ -1,7 +1,6 @@
|
|||
{ config, options, lib, ... }:
|
||||
let
|
||||
inherit (lib)
|
||||
mkOption
|
||||
inherit (lib) mkOption
|
||||
types
|
||||
;
|
||||
cfg = config;
|
||||
|
|
Loading…
Reference in a new issue