- switch to bright/light color scheme - inline CSS in head for single-file deployment - show full mesh/signal URLs in monospace - reorganize meetups into upcoming/past sections - add Meshcore section - remove beginner explanatory content
19 lines
472 B
HTML
19 lines
472 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</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|