Files
godot-website/pages/events.html
2023-10-16 15:54:27 +02:00

54 lines
1.3 KiB
HTML

---
permalink: /events/index.html
layout: default
title: "Events - Godot Engine"
description: "This page lists the upcoming and previous Godot community events."
---
{% include header.html %}
<link rel="stylesheet" href="/assets/css/events.css">
<style>
#past {
margin-top: 30px;
}
</style>
<div class="head">
<div class="container flex eqsize responsive">
<div class="main">
<h1 class="intro-title">Events</h1>
<p class="small">
You can meet Godot developers at various professional and casual events.<br />
Sometimes our team also organizes meetups and conferences.
</p>
</div>
</div>
</div>
<div class="container">
<h2 id="upcoming">Upcoming events</h2>
{% assign upcoming_events = site.event | where: "date_passed", "false" | sort: 'date' %}
{% if upcoming_events == empty %}
<p>There are currently no future events planned.</p>
{% else %}
{% include events/events-list.html events=upcoming_events %}
{% endif %}
<h2 id="past">Past events</h2>
{% assign past_events = site.event | where: "date_passed", "true" | sort: 'date' | reverse %}
{% if past_events == empty %}
<p>There are currently no past events.</p>
{% else %}
{% include events/events-list.html events=past_events %}
{% endif %}
</div>
{% include footer.html %}