This commit is contained in:
parent
1969926aae
commit
71aca4ea14
7 changed files with 25 additions and 2 deletions
|
@ -166,7 +166,7 @@
|
|||
object-fit: cover;
|
||||
border-radius: 10px;
|
||||
margin-bottom: 20px;
|
||||
margin-top: 50px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
/* ========================
|
||||
|
|
|
@ -16,6 +16,8 @@ Der Fachschaftsrat ist häufig die **erste Anlaufstelle** bei Problemen oder Fra
|
|||
|
||||
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
|
||||
|
||||
Zusätzlich nimmt der Fachschaftsrat auch die **kulturellen und sozialen Belange** der Studierenden wahr. Er organisiert regelmäßig:
|
||||
|
|
|
@ -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.
|
||||
|
||||
{{< image src="/images/panorama-teich.jpg" alt="Wide-angle panorama of the pond at the Andreas Pfitzmann Building" >}}
|
||||
|
||||
## \[celebration] Cultural and Social Activities
|
||||
|
||||
In addition, the Student Council addresses the **cultural and social interests** of students. It regularly organizes:
|
||||
|
|
|
@ -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.
|
||||
|
||||
{{< image src="/images/panorama-fakultaet.jpg" alt="Panoramaaufnahme des Andreas-Pfitzmann-Baus der TU Dresden" >}}
|
||||
|
||||
## \[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)
|
||||
|
|
|
@ -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 master’s degree.
|
||||
|
||||
{{< image src="/images/panorama-fakultaet.jpg" alt="Panoramic view of the Andreas Pfitzmann Building at TU Dresden" >}}
|
||||
|
||||
## \[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)
|
||||
|
|
15
layouts/shortcodes/image.html
Normal file
15
layouts/shortcodes/image.html
Normal 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;">
|
|
@ -6,7 +6,7 @@ backend:
|
|||
api_root: https://git.ifsr.de/api/v1
|
||||
base_url: https://git.ifsr.de
|
||||
auth_endpoint: https://git.ifsr.de/login/oauth/authorize
|
||||
media_folder: "static/images"
|
||||
media_folder: "assets/images"
|
||||
public_folder: "/images"
|
||||
|
||||
collections:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue