Sentry/assets/twig/layout.twig

35 lines
1.2 KiB
Twig
Raw Normal View History

2022-05-25 14:28:19 -04:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<link rel="stylesheet" href="./styles/skeleton-2.0.4.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<link rel="stylesheet" href="./styles/sentry.css">
2022-05-25 14:28:19 -04:00
<title>Sentry System Monitor</title>
<script src="./js/sentry.js" charset="utf-8"></script>
2022-05-25 14:28:19 -04:00
{% block scripts %}{% endblock %}
</head>
<body>
<div class="container">
{% block content %}{% endblock %}
</div>
<footer id="footer">
<div class="container fluid">
<div class="row">
2022-08-23 19:16:49 -04:00
<div class="columns three">
<p class="faded-text no-margin u-text-center">Sentry v<span id="app-version"></span></p>
</div>
2022-05-25 14:28:19 -04:00
<div class="columns six">
2022-08-23 19:16:49 -04:00
<p class="no-margin u-text-center">Developed by Bit Goblin free of charge.</p>
</div>
<div class="columns three">
<p class="no-margin u-text-center"><a href="https://git.metaunix.net/BitGoblin/Sentry">Source code</a></p>
2022-05-25 14:28:19 -04:00
</div>
</div>
</div>
</footer>
</body>
</html>