Skip to content

Commit

Permalink
add info about MUM 2025
Browse files Browse the repository at this point in the history
  • Loading branch information
mrieser committed Jan 9, 2025
1 parent cf1e079 commit ab2b212
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 2 deletions.
5 changes: 3 additions & 2 deletions config/collections/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ const getAllGalleryItems = collection => {

/** All future events. */
const getFutureEvents = collection => {
const now = new Date()
const now = new Date();
const events = collection.getFilteredByGlob('./src/conferences/*/*.md').filter(p => p.data.date >= now);
return events.reverse();
};

/** All past events. */
const getPastEvents = collection => {
const now = new Date()
const now = new Date();
const events = collection.getFilteredByGlob('./src/conferences/*/*.md').filter(p => p.data.date < now);
return events.reverse();
};
Expand All @@ -59,5 +59,6 @@ module.exports = {
getAllJobs,
getAllGalleryItems,
getPastEvents,
getFutureEvents,
onlyMarkdown
};
35 changes: 35 additions & 0 deletions src/conferences/mum2025/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
permalink: /conferences/mum2025.html
title: 'MATSim User Meeting 2025'
description: 'The MATSim User Meeting 2025 takes place on June 12-13, 2025 in Munich, Germany.'
layout: event
date: 2025-06-12
date_display: June 12-13, 2025
location: Munich, Germany
---

<div class="lead">

The MATSim Association plans to hold a MATSim User Meeting 2025 after the [heart-conference](https://www.heart2025.vtk.ed.tum.de)
in Munich, Germany, in June 2025. We are currently organizing the event and will update this page when more information becomes available.

</div>

<div class="grid border" data-layout="50-50">

<div>

## Submissions

Once submission is open, we will add a link here.
</div>

<div>

## Registration

Once registration is possible, we will add a link here.

</div>
</div>

0 comments on commit ab2b212

Please sign in to comment.