mirror of
https://github.com/kbenestad/mdcms.git
synced 2026-06-18 15:24:32 +00:00
42 lines
1.8 KiB
HTML
42 lines
1.8 KiB
HTML
<!-- mdcms v0.4 | DO NOT REMOVE THIS COMMENT -->
|
|
<!--
|
|
MD-CMS v0.4 — Renderer
|
|
|
|
Copyright 2026 Kristian Benestad | kbenestad.codeberg.page
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "Licence");
|
|
you may not use this file except in compliance with the Licence.
|
|
You may obtain a copy of the Licence at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the Licence is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the Licence for the specific language governing permissions and
|
|
limitations under the Licence.
|
|
-->
|
|
<!DOCTYPE html>
|
|
<html lang="en" data-theme="light">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>MD-CMS</title>
|
|
<meta name="description" content="">
|
|
<link rel="icon" href="assets/images/favicon.png">
|
|
<link rel="manifest" href="manifest.json">
|
|
<script>
|
|
if ('serviceWorker' in navigator) {
|
|
window.addEventListener('load', () => {
|
|
navigator.serviceWorker.register('./service-worker.js').catch(() => {});
|
|
});
|
|
}
|
|
</script>
|
|
|
|
<!-- Libraries (CDN) -->
|
|
<script src="https://cdn.jsdelivr.net/npm/js-yaml@4.1.0/dist/js-yaml.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/marked@12.0.0/marked.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/fuse.js@7.0.0/dist/fuse.min.js"></script>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.9.0/build/styles/github.min.css" id="hljs-light">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.9.0/build/styles/github-dark.min.css" id="hljs-dark" disabled>
|
|
<script src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.9.0/build/highlight.min.js"></script>
|