Files
demo-alarms/templates/base.html
Andros Fenollosa 10d615a4d1 Add demo information section and source code links
- Add informative section listing Django LiveView demo features
- Move feature description below action buttons
- Add footer with links to Django LiveView website and source code
- Upgrade to django-liveview 2.1.7 from PyPI
- Remove local templatetags (now included in package)
2025-12-09 08:31:35 +01:00

26 lines
1.1 KiB
HTML

{% load static %}
{% load liveview %}
<!DOCTYPE html>
<html lang="en" data-room="{% liveview_room_uuid %}" data-theme="light" data-controller="page">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Home - Alert System</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@1.0.2/css/bulma.min.css">
<script src="{% static 'liveview/liveview.min.js' %}" defer></script>
</head>
<body class="has-background-white">
<div id="notifications" class="notifications-container" style="position: fixed; top: 20px; right: 20px; z-index: 1000; width: 300px;"></div>
<div id="modal-container"></div>
{% block content %}{% endblock %}
<footer class="footer mt-6">
<div class="content has-text-centered">
<p>
Built with <a href="https://django-liveview.andros.dev/" target="_blank" rel="noopener noreferrer"><strong>Django LiveView</strong></a>
| <a href="https://github.com/Django-LiveView/demo-alarms" target="_blank" rel="noopener noreferrer">Source Code</a>
</p>
</div>
</footer>
</body>
</html>