2022-11-06 04:34:34 +09:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2023-03-08 01:58:55 +09:00
|
|
|
<head>
|
2023-01-06 04:58:41 +09:00
|
|
|
{{ if .title }}
|
|
|
|
<title>{{ .title }} - GotHub</title>
|
|
|
|
{{ else }}
|
2022-11-06 04:34:34 +09:00
|
|
|
<title>GotHub</title>
|
2023-01-06 04:58:41 +09:00
|
|
|
{{ end }}
|
2023-03-08 20:02:54 +09:00
|
|
|
<link rel="stylesheet" href="/css/global.css">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
2023-03-08 01:58:55 +09:00
|
|
|
</head>
|
|
|
|
<body>
|
2022-11-06 04:34:34 +09:00
|
|
|
<nav>
|
2023-03-08 01:58:55 +09:00
|
|
|
<div class="navbar">
|
|
|
|
<a href="/" style="text-decoration: none" class="brand"
|
|
|
|
><img
|
|
|
|
src="/logo.svg"
|
|
|
|
class="navbarImg"
|
|
|
|
height="30"
|
|
|
|
width="30"
|
|
|
|
alt=""
|
2023-04-29 02:08:04 +09:00
|
|
|
><b class="navbar-slogan">GotHub ({{.branch}})</b></a
|
2023-03-08 01:58:55 +09:00
|
|
|
>
|
2023-04-03 01:07:37 +09:00
|
|
|
<div class="navbar-links">
|
2023-03-08 01:58:55 +09:00
|
|
|
<a href="/explore">Explore</a>
|
2023-03-10 19:08:11 +09:00
|
|
|
<a href="/about">About</a>
|
2023-03-08 01:58:55 +09:00
|
|
|
<a href="https://codeberg.org/gothub/gothub">Source code</a>
|
2022-11-06 04:34:34 +09:00
|
|
|
</div>
|
2023-03-08 01:58:55 +09:00
|
|
|
</div>
|
2022-11-06 04:34:34 +09:00
|
|
|
</nav>
|