Files
fnx_web/res/template/filesystem.html

37 lines
1.5 KiB
HTML
Raw Normal View History

2021-02-23 16:50:13 +01:00
{{define "filesystem"}}
<!DOCTYPE html>
2020-11-04 20:51:39 +01:00
<html lang="en">
<head>
2021-02-23 16:50:13 +01:00
<title>{{.Title}}</title>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
2024-08-27 01:29:09 +02:00
<meta name="robots" content="noindex, nofollow">
2022-06-07 14:43:01 +02:00
2024-02-16 11:55:12 +01:00
<link id="stylesheet_layout" rel="stylesheet" type="text/css" href="/res/style/layout.css?v{{cacheID}}"/>
2022-06-07 14:43:01 +02:00
<link id="stylesheet_theme" rel="stylesheet" type="text/css" href="/theme.css"/>
2020-11-04 20:51:39 +01:00
2021-02-23 16:50:13 +01:00
<link rel="icon" sizes="32x32" href="/res/img/pixeldrain_32.png" />
<link rel="icon" sizes="128x128" href="/res/img/pixeldrain_128.png" />
<link rel="icon" sizes="152x152" href="/res/img/pixeldrain_152.png" />
<link rel="icon" sizes="180x180" href="/res/img/pixeldrain_180.png" />
<link rel="icon" sizes="192x192" href="/res/img/pixeldrain_192.png" />
<link rel="icon" sizes="196x196" href="/res/img/pixeldrain_196.png" />
<link rel="icon" sizes="256x256" href="/res/img/pixeldrain_256.png" />
<link rel="apple-touch-icon" sizes="152x152" href="/res/img/pixeldrain_152.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/res/img/pixeldrain_180.png" />
<link rel="shortcut icon" sizes="196x196" href="/res/img/pixeldrain_196.png" />
2020-11-04 20:51:39 +01:00
2021-02-23 16:50:13 +01:00
{{ template "opengraph" .OGData }}
<script>
2021-12-09 22:33:02 +01:00
window.initial_node = {{.Other}};
2023-05-27 15:50:44 +02:00
window.user = {{.User}};
2021-02-23 16:50:13 +01:00
window.api_endpoint = '{{.APIEndpoint}}';
</script>
2020-11-04 20:51:39 +01:00
2022-10-11 14:42:24 +02:00
<script defer src='/res/svelte/filesystem.js?v{{cacheID}}'></script>
2025-01-31 23:06:00 +01:00
{{template "analytics"}}
2021-02-23 16:50:13 +01:00
</head>
<body></body>
2020-11-04 20:51:39 +01:00
</html>
2021-02-23 16:50:13 +01:00
{{end}}