124-webapp/templates/landing.html

16 lines
621 B
HTML
Raw Normal View History

2025-09-11 16:01:32 +02:00
<!-- templates/landing.html -->
2025-09-17 20:26:44 +02:00
{% extends "base.html" %}
{% block title %}Studio EinsZwoVier{% endblock %}
{% block content %}
<div class="container">
<a class="link-card" href="/about">Über uns</a>
<a class="link-card" href="/cost">Kostenrechner</a>
<a class="link-card" href="mailto:einszwovier@gvb-gymnasium.de">Kontakt: einszwovier@gvb-gymnasium.de</a>
<a class="link-card" href="https://gvb-gymnasium.de">iServ Login</a>
<a class="link-card" href="https://www.gvb-berlin.de">Schulseite</a>
<a class="link-card" href="https://outline.example.com">Wissenssammlung</a>
</div>
{% endblock %}