Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 22 additions & 2 deletions _data/calendar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -895,9 +895,29 @@
- title: Geschäftsführende Versammlung
datum: "2025-06-11"
uhrzeit: "20.00h"
ort: "tbd"
ort: "Raum Franklin, 1.OG/ZG, Collective Incubator, Jülicher Str. 209q-s, 52070 Aachen"

- title: Geschäftsführende Versammlung
datum: "2025-06-25"
uhrzeit: "20.00h"
ort: "Raum 5.31, 5.OG, Super C, Templergraben 57, 52062 Aachen"
ort: "Raum 5.31, 5.OG, Super C, Templergraben 57, 52062 Aachen"

- title: Geschäftsführende Versammlung
datum: "2025-07-09"
uhrzeit: "20.00h"
ort: "Raum 4.29, 4.OG, Super C, Templergraben 57, 52062 Aachen"

- title: Geschäftsführende Versammlung
datum: "2025-07-23"
uhrzeit: "20.00h"
ort: "Raum 4.29, 4.OG, Super C, Templergraben 57, 52062 Aachen"

- title: Geschäftsführende Versammlung
datum: "2025-08-06"
uhrzeit: "20.00h"
ort: "Raum 4.29, 4.OG, Super C, Templergraben 57, 52062 Aachen"

- title: Geschäftsführende Versammlung
datum: "2025-08-20"
uhrzeit: "20.00h"
ort: "Raum 4.29, 4.OG, Super C, Templergraben 57, 52062 Aachen"
2 changes: 1 addition & 1 deletion _data/members.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
- name: Ecurie Aix
type: Mitglied
since: 2017
image: img/members/ecurie.jpg
image: img/members/ecurie2025_small.jpg
link: http://ecurie-aix.de/
order: ecurie
description: |
Expand Down
2 changes: 1 addition & 1 deletion _data/persons.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
boardmember: true

- name: Jannis Bergmann
function: "3. Vorsitzende"
function: "3. Vorsitzender"
active: true
image: "img/persons/jannis-bergmann25.jpg"
order: 0_vorstand_3
Expand Down
6 changes: 3 additions & 3 deletions aboutus.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
layout: aboutuspage
title: Über uns
titleimg375: img/aboutus/gruppenbild_375x400.jpg
titleimg690: img/aboutus/gruppenbild_690x400.jpg
titleimg1110: img/aboutus/gruppenbild_1110x400.jpg
titleimg375: img/aboutus/gruppenbild_375x400.JPG
titleimg690: img/aboutus/gruppenbild_690x400.JPG
titleimg1110: img/aboutus/gruppenbild_1110x400.JPG
slogan: Gemeinsam Träume verwirklichen.
abouttext: |
Wir sind circa 400 Studierende der RWTH und FH-Aachen, die neben ihrem Studium Wettbewerbe bestreiten, Ideen realisieren und sich für Nachhaltigkeit und Soziales einsetzen.
Expand Down
6 changes: 3 additions & 3 deletions calendar.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
layout: page
title: Kalender
titleimg375: img/aboutus/gruppenbild_375x400.jpg
titleimg690: img/aboutus/gruppenbild_690x400.jpg
titleimg1110: img/aboutus/gruppenbild_1110x400.jpg
titleimg375: img/aboutus/gruppenbild2025_375x400.JPG
titleimg690: img/aboutus/gruppenbild2025_690x400.JPG
titleimg1110: img/aboutus/gruppenbild2025_1110x400.JPG
slogan: Termine
---

Expand Down
Binary file added img/aboutus/gruppenbild2025_1110x400.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/aboutus/gruppenbild2025_375x400.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/aboutus/gruppenbild2025_690x400.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 42 additions & 0 deletions img/cropImages.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Re-import needed modules and redefine the function due to kernel reset
from PIL import Image

# Redefine the function for cropping and resizing
def crop_to_aspect_and_resize(image, target_width, target_height):
target_ratio = target_width / target_height
img_width, img_height = image.size
img_ratio = img_width / img_height

if img_ratio > target_ratio:
new_width = int(img_height * target_ratio)
offset = (img_width - new_width) // 2
crop_box = (offset, 0, offset + new_width, img_height)
else:
new_height = int(img_width / target_ratio)
offset = (img_height - new_height) // 2
crop_box = (0, offset, img_width, offset + new_height)

cropped_image = image.crop(crop_box)
resized_image = cropped_image.resize((target_width, target_height), Image.Resampling.LANCZOS)
return resized_image

# Reload the uploaded image
input_path = "C:/Users/pauli/Webseite-Jekyll/img/aboutus/gruppenbild.jpg"
original_image = Image.open(input_path)

# Define target sizes again
sizes = [(1110, 400), (690, 400), (375, 400)]

# Process and save images
resized_new_images = []
for width, height in sizes:
resized_image = crop_to_aspect_and_resize(original_image, width, height)
output_path = f"C:/Users/pauli/Webseite-Jekyll/img/aboutus/gruppenbild_cropped_{width}x{height}.jpg"
resized_image.save(output_path)
resized_new_images.append(output_path)


if __name__ == "main":
print("Resized images saved at:")
for img_path in resized_new_images:
print(img_path)
Binary file added img/members/ecurie2025.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/members/ecurie2025_small.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.