added images and image preprocessing
Some checks failed
publish / publish (push) Has been cancelled

This commit is contained in:
Jannik Menzel 2025-06-26 14:10:36 +02:00
parent 1969926aae
commit 71aca4ea14
7 changed files with 25 additions and 2 deletions

View file

@ -166,7 +166,7 @@
object-fit: cover; object-fit: cover;
border-radius: 10px; border-radius: 10px;
margin-bottom: 20px; margin-bottom: 20px;
margin-top: 50px; margin-top: 20px;
} }
/* ======================== /* ========================

View file

@ -16,6 +16,8 @@ Der Fachschaftsrat ist häufig die **erste Anlaufstelle** bei Problemen oder Fra
jederzeit Unterstützung im Studium. jederzeit Unterstützung im Studium.
{{< image src="/images/panorama-teich.jpg" alt="Weitwinkeliges Panorama des Teichs am Andreas-Pfitzmann-Bau" >}}
## \[celebration] Kulturelle und soziale Aktivitäten ## \[celebration] Kulturelle und soziale Aktivitäten
Zusätzlich nimmt der Fachschaftsrat auch die **kulturellen und sozialen Belange** der Studierenden wahr. Er organisiert regelmäßig: Zusätzlich nimmt der Fachschaftsrat auch die **kulturellen und sozialen Belange** der Studierenden wahr. Er organisiert regelmäßig:

View file

@ -16,6 +16,8 @@ The Student Council is often the **first point of contact** for problems or ques
to support you at all times during your studies. to support you at all times during your studies.
{{< image src="/images/panorama-teich.jpg" alt="Wide-angle panorama of the pond at the Andreas Pfitzmann Building" >}}
## \[celebration] Cultural and Social Activities ## \[celebration] Cultural and Social Activities
In addition, the Student Council addresses the **cultural and social interests** of students. It regularly organizes: In addition, the Student Council addresses the **cultural and social interests** of students. It regularly organizes:

View file

@ -7,6 +7,8 @@ draft: false
Hier findest du eine Zusammenstellung von hilfreichen Informationen rund ums Informatikstudium egal ob du dich gerade dafür entscheidest, ins Ausland möchtest oder schon deinen Master planst. Hier findest du eine Zusammenstellung von hilfreichen Informationen rund ums Informatikstudium egal ob du dich gerade dafür entscheidest, ins Ausland möchtest oder schon deinen Master planst.
{{< image src="/images/panorama-fakultaet.jpg" alt="Panoramaaufnahme des Andreas-Pfitzmann-Baus der TU Dresden" >}}
## \[school] Studienangebot ## \[school] Studienangebot
> Das komplette Studienangebot an der Fakultät Informatik findest du hier: [Studiengänge der Fakultät Informatik](https://tu-dresden.de/ing/informatik/studium/studienangebot) > Das komplette Studienangebot an der Fakultät Informatik findest du hier: [Studiengänge der Fakultät Informatik](https://tu-dresden.de/ing/informatik/studium/studienangebot)

View file

@ -7,6 +7,8 @@ draft: false
Here you will find a collection of helpful information about studying computer science whether you are just deciding, planning to go abroad, or already working on your masters degree. Here you will find a collection of helpful information about studying computer science whether you are just deciding, planning to go abroad, or already working on your masters degree.
{{< image src="/images/panorama-fakultaet.jpg" alt="Panoramic view of the Andreas Pfitzmann Building at TU Dresden" >}}
## \[school] Degree Programs ## \[school] Degree Programs
> You can find the complete degree program offering at the Faculty of Computer Science here: [Degree Programs of the Faculty of Computer Science](https://tu-dresden.de/ing/informatik/studium/studienangebot) > You can find the complete degree program offering at the Faculty of Computer Science here: [Degree Programs of the Faculty of Computer Science](https://tu-dresden.de/ing/informatik/studium/studienangebot)

View file

@ -0,0 +1,15 @@
{{ $src := .Get "src" }}
{{ $alt := .Get "alt" | default "" }}
{{ $img := resources.Get $src }}
{{ if not $img }}
{{ errorf "Bild '%s' nicht gefunden. Achte darauf, dass es in /assets/ liegt." $src }}
{{ end }}
{{ $resized := $img.Resize "1000x" }}
<img
src="{{ $resized.RelPermalink }}"
alt="{{ $alt }}"
loading="lazy"
style="max-width: 100%; height: auto;">

View file

@ -6,7 +6,7 @@ backend:
api_root: https://git.ifsr.de/api/v1 api_root: https://git.ifsr.de/api/v1
base_url: https://git.ifsr.de base_url: https://git.ifsr.de
auth_endpoint: https://git.ifsr.de/login/oauth/authorize auth_endpoint: https://git.ifsr.de/login/oauth/authorize
media_folder: "static/images" media_folder: "assets/images"
public_folder: "/images" public_folder: "/images"
collections: collections: