Files
WingetRepoServer/html/master.html
2024-06-09 15:44:01 +03:00

15 lines
409 B
HTML

{{define "master"}}
<!DOCTYPE html>
<html>
<head>
{{if eq .Lang "heb"}}<link href="/public/hebrew.css" rel="stylesheet" type="text/css">{{end}}
<title>{{ .ElementsData.Title }}</title>
<link href="/public/mod.css" rel="stylesheet" type="text/css">
<script src="/public/script.js"></script>
</head>
<body {{if eq .BodyClass "m"}} class="m"{{end}}>
{{template "body" .}}
</body>
</html>
{{end}}