mirror of
https://github.com/kbenestad/mdcms.git
synced 2026-06-18 07:24:31 +00:00
Add kitchen-table index.html and search.json
This commit is contained in:
parent
ac310c6896
commit
9966090de3
2 changed files with 43 additions and 0 deletions
42
kitchen-table/index.html
Normal file
42
kitchen-table/index.html
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
<!-- 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>
|
||||
1
kitchen-table/search.json
Normal file
1
kitchen-table/search.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
placeholder
|
||||
Loading…
Reference in a new issue