82 lines
3.3 KiB
HTML
82 lines
3.3 KiB
HTML
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Lernplattform EMT/Paramedic</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" />
|
|
<link href="../static/style.css" rel="stylesheet"/>
|
|
<script src="../static/javascript.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
{% include 'nav.html' %}
|
|
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<!-- Sidebar -->
|
|
<div class="col-12 col-md-3 sidebar mb-3">
|
|
<div class="profile-card text-center p-3">
|
|
|
|
{% include 'block_login.html' %}
|
|
|
|
</div>
|
|
<!--
|
|
<div class="list-group">
|
|
<a href="#" class="list-group-item list-group-item-action">Feed</a>
|
|
<a href="#" class="list-group-item list-group-item-action">Connections</a>
|
|
<a href="#" class="list-group-item list-group-item-action">Latest News</a>
|
|
<a href="#" class="list-group-item list-group-item-action">Events</a>
|
|
<a href="#" class="list-group-item list-group-item-action">Groups</a>
|
|
<a href="#" class="list-group-item list-group-item-action">Notifications</a>
|
|
<a href="#" class="list-group-item list-group-item-action">Settings</a>
|
|
</div>
|
|
-->
|
|
</div>
|
|
|
|
<!-- Main Content -->
|
|
<div class="col-12 col-md-6 main-content mb-3">
|
|
|
|
{% if not page or page == '' or page == 'index' %}
|
|
{% include 'block_content_index.html' %}
|
|
{% elif page == 'register' %}
|
|
{% include 'block_register.html' %}
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
<!-- Right Sidebar -->
|
|
<div class="col-12 col-md-3 mb-3">
|
|
<!-- Who to Follow -->
|
|
{% include 'block_lernfelder.html' %}
|
|
|
|
<!-- Today's News -->
|
|
<div class="news p-3">
|
|
<h6>Datenbank - Inhalte</h6>
|
|
<ul class="list-unstyled">
|
|
<li class="mb-2">
|
|
Lernfelder <small class="light">3</small>
|
|
</li>
|
|
<li class="mb-2">
|
|
Fragen RettSan <small class="light">38</small>
|
|
</li>
|
|
<li class="mb-2">
|
|
Fragen NotSan <small class="light">40</small>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<footer class="footer text-center py-3 mt-3">
|
|
<div class="container">
|
|
<small>© 2024 Manuel Weiser. Alle Rechte vorbehalten.</small>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.min.js"></script>
|
|
</body>
|
|
</html>
|