Shioriko/web/template/layout/header.html

15 lines
429 B
HTML

<!DOCTYPE html>
<html>
<head>
<!--Use the title variable to set the title of the page-->
<title>{{ .title }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="UTF-8" />
<script defer src="/static/bundle.js"></script>
<link rel="stylesheet" href="/static/bundle.css">
<script>
window.BASE_URL = {{ .base_url }}
</script>
</head>
<body>