gitlin/views/header.html

24 行
837 B
HTML
Raw 通常表示 履歴

<!DOCTYPE html>
<html lang="en">
<head>
{{ if .title }}
<title>{{ .title }} - GotHub</title>
{{ else }}
<title>GotHub</title>
{{ end }}
<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">
</head>
<body>
<nav>
<div class="navbar">
2023-02-11 15:28:03 +09:00
<a href="/" style="text-decoration: none;" class="brand"><img src="/logo.svg" class="navbarImg" height="30" width="30" alt=""><b class="navbarSlogan">GotHub (alpha)</b></a>
<div class="navbarLinks">
<a href="/explore">Explore</a>
<a href="/privacy">Privacy</a>
2022-12-01 02:47:59 +09:00
<a href="https://codeberg.org/gothub/gothub">Source code</a>
</div>
</div>
</nav>