You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.0 KiB
32 lines
1.0 KiB
1 week ago
|
<!--
|
||
|
Copyright (C) 2024-2025 Simon Quigley <tsimonq2@ubuntu.com>
|
||
|
|
||
|
This program is free software: you can redistribute it and/or modify
|
||
|
it under the terms of the GNU General Public License as published by
|
||
|
the Free Software Foundation, either version 3 of the License, or
|
||
|
(at your option) any later version.
|
||
|
...
|
||
|
-->
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>{{ PAGE_TITLE }}</title>
|
||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css">
|
||
|
<link rel="stylesheet"
|
||
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
|
||
|
</head>
|
||
|
<body class="bg-light">
|
||
|
<nav class="navbar navbar-expand-lg navbar-light bg-white border-bottom mb-3">
|
||
|
<div class="container-fluid">
|
||
|
<a class="navbar-brand" href="/">Lubuntu CI</a>
|
||
|
</div>
|
||
|
</nav>
|
||
|
<div class="mt-2 px-5">
|
||
|
{{BLOCK content}}
|
||
|
</div>
|
||
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
||
|
<script src="/static/main.js"></script>
|
||
|
</body>
|
||
|
</html>
|