Updated design of the site as well as added new event

This commit is contained in:
Bashy 2026-02-10 17:35:59 +01:00
parent 1e33326b03
commit 6b0249f5dc
13 changed files with 433 additions and 47 deletions

View file

@ -18,6 +18,18 @@
logo: /images/site/partners/HackmanClub.png
bio:
- title: "Friendly Events"
list:
- enable: false
name: REAM
url: https://www.linkedin.com/company/dcg40264/posts/?feedView=all
logo: /images/site/partners/REAM.png
bio: "REAM (Read and Examine Articles en Masse) is a type of get together where we talk about an article that was voted on by regular members. You can think of it like a book club, but instead of books, we read articles. They are (usually) much shorter than books, and there are lots to talk about and discuss."
- enable: false
name: DefCon Group Cluj
url: https://www.linkedin.com/company/dcg40264/posts/?feedView=all
logo: /images/site/partners/defcon.jpg
bio: "Bringing together Cluj hackers and security professionals to learn, collaborate, and network in an open space."
- title: "Venue"
list:
- enable: false
name: REAM

View file

@ -1,8 +1,8 @@
---
title: "First OpenAlt Romania Meetup"
author: Bashy
author: "OpenAlt Romania"
date: 2026-01-16 18:00:00
description: First ever OpenAlt Romania meetup. The meeting will take place on 16th January 2026 at 6PM. The meeting location will be TBD.
description: First ever OpenAlt Romania meetup. The meeting will take place on 16th January 2026 at 6PM. The meeting location will be at Broadridge.
categories:
- "Events"
tags:
@ -13,9 +13,24 @@ event:
date: "16th January 2026"
time: "6 PM"
place:
name: "TBD"
link: "https://openalt.org"
---
name: "Broadridge"
link: "https://maps.app.goo.gl/sDkLTFna7XbgVqgk8"
program:
- name: "Welcome to OpenAlt"
speaker:
name: "Viski Barbora"
url: https://bashynx.com/
length: 15
- name: "What is Git?"
speaker:
name: "Kovács György"
url: http://gyuri.world/
length: 30
- name: "FOSS in Education"
speaker:
name: "Natsakis Tassos"
url: https://natsakis.com
length: 60
video: '<iframe title="OpenAlt Romania #1 - January 2026" width="560" height="315" src="https://vhsky.cz/videos/embed/bSdLQJV81PfBvzbHn75qLX" allow="fullscreen" sandbox="allow-same-origin allow-scripts allow-popups allow-forms" style="border: 0px;"></iframe>'
---
First in a series of meetups focused on Free and Open Source Technologies, where you can socialize with like-minded individuals and learn something new.
Were currently looking for Speakers whod like to give a talk on any interesting topic related to Free and Open Source Software, Hardware, Data, or other technologies. If you have something exciting to share, sign up [here](http://speakers.openalt.ro/)

View file

@ -0,0 +1,18 @@
---
title: "OpenAlt Romania #2"
author: "OpenAlt Romania"
date: 2026-03-12 18:00:00
description: Second OpenAlt Romania meetup.
categories:
- "Events"
tags:
- "OpenAlt Romania"
- "IRL Events"
- "Events"
event:
date: "12th March 2026"
time: "6 PM"
place: "TBD"
program: "TBD"
video: "TBD"
---

51
source/rss2.xml Normal file
View file

@ -0,0 +1,51 @@
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
<title>{{ config.title }}</title>
<link>{{ url }}</link>
{% if icon %}
<image>
<url>{{ icon }}</url>
<title>{{ config.title }}</title>
<link>{{ url }}</link>
</image>
{% endif %}
<atom:link href="{{ feed_url | uriencode }}" rel="self" type="application/rss+xml"/>
{% if config.feed.hub %}<atom:link href="{{ config.feed.hub | uriencode }}" rel="hub"/>{% endif %}
<description>{{ config.description }}</description>
<pubDate>{% if posts.first().updated %}{{ posts.first().updated.toDate().toUTCString() }}{% else %}{{ posts.first().date.toDate().toUTCString() }}{% endif %}</pubDate>
<generator>http://hexo.io/</generator>
{% for post in posts.toArray() %}
<item>
<title>{{ post.title }}</title>
<link>{{ post.permalink | uriencode }}</link>
<guid>{{ post.permalink | uriencode }}</guid>
<pubDate>{{ post.date.toDate().toUTCString() }}</pubDate>
{% if post.description %}
<description>{{ post.description }}</description>
{% elif post.intro %}
<description>{{ post.intro }}</description>
{% elif post.excerpt %}
<description>{{ post.excerpt }}</description>
{% endif %}
{% if post.photos %}
<enclosure url="{{ url + post.photos[0] | uriencode }}" type="image/jpeg"/>
{% endif %}
{% if config.feed.content and post.content %}
<content:encoded><![CDATA[{{ post.content | noControlChars | safe }}]]></content:encoded>
{% endif %}
{% for category in post.categories.toArray() %}
<category domain="{{ url + category.path | uriencode }}">{{ category.name }}</category>
{% endfor %}
{% for tag in post.tags.toArray() %}
<category domain="{{ url + tag.path | uriencode }}">{{ tag.name }}</category>
{% endfor %}
{% if post.comments %}
<comments>{{ post.permalink | uriencode }}#disqus_thread</comments>
{% endif %}
</item>
{% endfor %}
</channel>
</rss>