Lindenii Project Forge
Login

server

Lindenii Forge’s main backend daemon
Commit info
ID
2f39f46dfcb14e7800af3a3ed4ae419d5629775a
Author
Runxi Yu <me@runxiyu.org>
Author date
Mon, 10 Feb 2025 17:00:15 +0800
Committer
Runxi Yu <me@runxiyu.org>
Committer date
Mon, 10 Feb 2025 17:00:15 +0800
Actions
base.html: Initialize for later use
{{- define "base" -}}
<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<meta name="viewport" content="width=device-width, initial-scale=1" />
		<link rel="stylesheet" href="/static/style.css" />
		<title>{{ block "title" . }}Lindenii Forge{{ end }}</title>
	</head>
	<body class="{{ block "body-class" . }}{{ end }}">
		<header>
			<a id="site-title" href="/">
				{{ block "forge-title" . }}
					Lindenii Forge
				{{ end }}
			</a>
			<span id="header-userinfo" href="/">
			</span>
		</header>
		<main>
		{{ block "main" . }}
		{{ end }}
		</main>
	</body>
</html>
{{- end -}}