63 lines
2.6 KiB
HTML
63 lines
2.6 KiB
HTML
{{define "base"}}<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{block "title" .}}Ridgway Systems{{end}}</title>
|
|
<meta name="description" content="{{block "meta-desc" .}}A homelab built on FreeBSD — from firewall to git server.{{end}}">
|
|
<!-- OpenGraph -->
|
|
<meta property="og:site_name" content="Ridgway Systems">
|
|
<meta property="og:title" content="{{block "og-title" .}}Ridgway Systems{{end}}">
|
|
<meta property="og:description" content="{{block "og-desc" .}}A homelab built on FreeBSD — from firewall to git server.{{end}}">
|
|
<meta property="og:type" content="{{block "og-type" .}}website{{end}}">
|
|
<meta property="og:url" content="{{block "og-url" .}}https://ridgwaysystems.org{{end}}">
|
|
<!-- Twitter/X card -->
|
|
<meta name="twitter:card" content="summary">
|
|
<meta name="twitter:title" content="{{block "tw-title" .}}Ridgway Systems{{end}}">
|
|
<meta name="twitter:description" content="{{block "tw-desc" .}}A homelab built on FreeBSD — from firewall to git server.{{end}}">
|
|
<link rel="icon" type="image/svg+xml" href="/static/favicon.svg">
|
|
<meta property="og:image" content="{{block "og-image" .}}https://ridgwaysystems.org/static/img/avatar.svg{{end}}">
|
|
<meta name="twitter:image" content="{{block "tw-image" .}}https://ridgwaysystems.org/static/img/avatar.svg{{end}}">
|
|
<link rel="stylesheet" href="/static/css/style.css">
|
|
<link rel="stylesheet" href="/static/css/syntax.css">
|
|
<link rel="alternate" type="application/rss+xml" title="Ridgway Systems" href="/blog/feed.xml">
|
|
</head>
|
|
<body>
|
|
<header class="site-header">
|
|
<nav class="nav">
|
|
<a href="/" class="nav-brand">ridgwaysystems.org</a>
|
|
<ul class="nav-links">
|
|
<li><a href="/blog">blog</a></li>
|
|
<li><a href="/changelog">changelog</a></li>
|
|
<li><a href="/infrastructure">infrastructure</a></li>
|
|
<li><a href="/status">status</a></li>
|
|
<li><a href="/about">about</a></li>
|
|
<li><a href="/hire" class="nav-hire">hire me</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
{{if .Banner}}
|
|
<div class="banner banner-{{.Banner.Level}}">
|
|
<a href="/status">{{.Banner.Message}} View status page →</a>
|
|
</div>
|
|
{{end}}
|
|
|
|
<main class="main-content">
|
|
{{block "content" .Inner}}{{end}}
|
|
</main>
|
|
|
|
<footer class="site-footer">
|
|
<p>
|
|
<a href="/">ridgwaysystems.org</a> —
|
|
running FreeBSD —
|
|
<a href="/changelog">changelog</a> —
|
|
<a href="/blog/feed.xml">RSS</a> —
|
|
<a href="https://git.ridgwaysystems.org">gitea</a> —
|
|
<a href="/hire">hire me</a>
|
|
</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|
|
{{end}}
|