Lerndatenbank/lernplattform/templates/index.html

82 lines
3.3 KiB
HTML
Raw Permalink Normal View History

2024-08-05 16:36:41 +02:00
<!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>
2024-08-05 16:36:41 +02:00
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" />
2024-08-08 11:55:21 +02:00
<link href="../static/style.css" rel="stylesheet"/>
<script src="../static/javascript.js"></script>
2024-08-05 16:36:41 +02:00
</head>
<body>
{% include 'nav.html' %}
2024-08-05 16:36:41 +02:00
<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">
2024-08-06 20:11:36 +02:00
2024-08-08 11:55:21 +02:00
{% include 'block_login.html' %}
2024-08-06 20:11:36 +02:00
2024-08-05 16:36:41 +02:00
</div>
<!--
2024-08-05 16:36:41 +02:00
<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>
-->
2024-08-05 16:36:41 +02:00
</div>
<!-- Main Content -->
<div class="col-12 col-md-6 main-content mb-3">
2024-08-08 11:55:21 +02:00
{% if not page or page == '' or page == 'index' %}
{% include 'block_content_index.html' %}
{% elif page == 'register' %}
{% include 'block_register.html' %}
{% endif %}
2024-08-05 16:36:41 +02:00
</div>
<!-- Right Sidebar -->
<div class="col-12 col-md-3 mb-3">
<!-- Who to Follow -->
2024-08-08 11:55:21 +02:00
{% include 'block_lernfelder.html' %}
2024-08-05 16:36:41 +02:00
<!-- Today's News -->
<div class="news p-3">
<h6>Datenbank - Inhalte</h6>
2024-08-05 16:36:41 +02:00
<ul class="list-unstyled">
<li class="mb-2">
Lernfelder <small class="light">3</small>
2024-08-05 16:36:41 +02:00
</li>
<li class="mb-2">
Fragen RettSan <small class="light">38</small>
2024-08-05 16:36:41 +02:00
</li>
<li class="mb-2">
Fragen NotSan <small class="light">40</small>
2024-08-05 16:36:41 +02:00
</li>
</ul>
</div>
</div>
</div>
</div>
<footer class="footer text-center py-3 mt-3">
2024-08-05 16:36:41 +02:00
<div class="container">
<small>© 2024 Manuel Weiser. Alle Rechte vorbehalten.</small>
2024-08-05 16:36:41 +02:00
</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>