19 lines
560 B
HTML
19 lines
560 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ .Site.Title }}</title>
|
|
<meta name="description" content="{{ .Site.Params.description }}">
|
|
<style>
|
|
{{ readFile "themes/loravega/static/css/style.css" | safeCSS }}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{{ block "main" . }}{{ end }}
|
|
<footer>
|
|
<p>lora.vegas — Las Vegas Meshtastic community <a href="https://git.eeqj.de/sneak/lora.vegas" class="contribute-link">[Contribute]</a></p>
|
|
</footer>
|
|
</body>
|
|
</html>
|