Add new templates for Dienstleistungen, Kontakt, Projekte, and Team pages
- Created 'dienstleistungen.html' to showcase services offered, including inventory system, license management, support, consulting, security concepts, and training. - Created 'kontakt.html' for contact information, including email and phone details, along with a booking section for appointments. - Created 'projekte.html' to highlight current and past projects and clients, providing insights into collaborations with educational institutions. - Created 'team.html' to introduce the team structure, roles, and selected references in the educational sector.
This commit is contained in:
@@ -172,12 +172,12 @@
|
||||
></textarea>
|
||||
</div>
|
||||
<input type="hidden" name="action" value="create" />
|
||||
<button type="submit" class="submit-btn">Veroeffentlichen</button>
|
||||
<button type="submit" class="submit-btn">Veröffentlichen</button>
|
||||
</form>
|
||||
</aside>
|
||||
|
||||
<article>
|
||||
<h2 style="font-size: 1.2rem; color: #0f354d; margin: 0 0 0.8rem;">Veroeffentlichte Beitraege</h2>
|
||||
<h2 style="font-size: 1.2rem; color: #0f354d; margin: 0 0 0.8rem;">Veröffentlichte Beiträge</h2>
|
||||
<section class="posts-list">
|
||||
{% if posts %}
|
||||
{% for post in posts %}
|
||||
@@ -187,18 +187,18 @@
|
||||
<p>{{ post.excerpt }}</p>
|
||||
<div class="post-meta">
|
||||
<strong>Autor:</strong> {{ post.author }}<br />
|
||||
<strong>Veroeffentlicht:</strong> {{ post.created_at[:10] }}
|
||||
<strong>Veröffentlicht:</strong> {{ post.created_at[:10] }}
|
||||
</div>
|
||||
</div>
|
||||
<form method="POST" action="{{ url_for('admin_blog') }}" class="delete-form">
|
||||
<input type="hidden" name="action" value="delete" />
|
||||
<input type="hidden" name="post_id" value="{{ post.id }}" />
|
||||
<button type="submit" class="delete-btn" onclick="return confirm('Sicher?')">Loeschen</button>
|
||||
<button type="submit" class="delete-btn" onclick="return confirm('Sicher?')">Löschen</button>
|
||||
</form>
|
||||
</article>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<p>Noch keine Beitraege veroeffentlicht.</p>
|
||||
<p>Noch keine Beiträge veröffentlicht.</p>
|
||||
{% endif %}
|
||||
</section>
|
||||
</article>
|
||||
|
||||
Reference in New Issue
Block a user