2024-03-27 20:10:58 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>{{.Title}}</title>
|
2024-05-02 19:14:10 +00:00
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
href="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.8.0/build/styles/default.min.css"
|
|
|
|
/>
|
|
|
|
<script
|
|
|
|
defer
|
|
|
|
src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.8.0/build/highlight.min.js"
|
|
|
|
></script>
|
|
|
|
<script
|
|
|
|
defer
|
|
|
|
src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"
|
|
|
|
></script>
|
|
|
|
<script
|
|
|
|
defer
|
|
|
|
src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"
|
|
|
|
></script>
|
|
|
|
<script
|
|
|
|
defer
|
|
|
|
src="https://cdn.jsdelivr.net/npm/dompurify@3.0.6/dist/purify.min.js"
|
|
|
|
></script>
|
|
|
|
|
|
|
|
<link href="/static/general.css" rel="stylesheet" />
|
2024-03-27 20:10:58 +00:00
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Roboto:wght@400;500&display=swap" rel="stylesheet">
|
2024-04-23 07:22:58 +00:00
|
|
|
<link
|
|
|
|
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap"
|
|
|
|
rel="stylesheet" />
|
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
href="https://cdn.jsdelivr.net/npm/tw-elements/css/tw-elements.min.css" />
|
|
|
|
<script src="https://cdn.tailwindcss.com/3.3.0"></script>
|
|
|
|
<script>
|
|
|
|
tailwind.config = {
|
|
|
|
darkMode: "class",
|
|
|
|
theme: {
|
|
|
|
fontFamily: {
|
|
|
|
sans: ["Roboto", "sans-serif"],
|
|
|
|
body: ["Roboto", "sans-serif"],
|
|
|
|
mono: ["ui-monospace", "monospace"],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
corePlugins: {
|
|
|
|
preflight: false,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
2024-03-27 20:10:58 +00:00
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
|
2024-04-23 07:22:58 +00:00
|
|
|
<script src="https://unpkg.com/htmx.org@1.9.12" integrity="sha384-ujb1lZYygJmzgSwoxRggbCHcjc0rB2XoQrxeTUQyRjrOnlCoYta87iKBWq3EsdM2" crossorigin="anonymous"></script>
|
2024-03-27 20:10:58 +00:00
|
|
|
</head>
|