15 lines
409 B
HTML
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}} |