14 lines
612 B
HTML
14 lines
612 B
HTML
|
|
{% extends "base.html" %}
|
||
|
|
{% block title %}Noch nicht da — 3D-Druck-AG{% endblock %}
|
||
|
|
{% block content %}
|
||
|
|
<div class="card" style="text-align: center; max-width: 700px; margin: 3rem auto;">
|
||
|
|
<h1>Noch nicht implementiert</h1>
|
||
|
|
<p>Diese Funktion ist im Konzept vorgesehen, aber noch nicht gebaut.</p>
|
||
|
|
<p style="color: var(--text-light); font-size: 0.9rem; margin-top: 1rem;">
|
||
|
|
Stand: Etappe 1. Welche Etappe was baut, siehst du in
|
||
|
|
<code>docs/etappen.md</code>.
|
||
|
|
</p>
|
||
|
|
<p style="margin-top: 1rem;"><a href="/" class="btn btn-primary">Zur Startseite</a></p>
|
||
|
|
</div>
|
||
|
|
{% endblock %}
|