all repos

mugit @ 9c9a18a

🐮 git server that your cow will love

mugit/web/templates/_head.html (view raw)

Oleksandr Smirnov Oleksandr Smirnov
olexsmir@gmail.com
ui: fix feeds, include links protocol, 3 months ago
1
{{ define "head" }}
2
  <meta charset="utf-8">
3
  <meta name="viewport" content="width=device-width, initial-scale=1">
4
  <link rel="stylesheet" href="/static/style.css" type="text/css">
5
  <link rel="icon" href="/static/favicon.svg">
6
  {{ if and .servername .gomod }}
7
  <meta name="go-import" content="{{ .servername}}/{{ .name }} git https://{{ .servername }}/{{ .name }}">
8
  {{ end }}
9
  {{ if and .servername .name }}
10
  <link rel="alternate" type="application/rss" href="https://{{ .servername }}/{{ .name }}/feed">
11
  {{ end }}
12
  {{ if .servername }}
13
  <link rel="alternate" type="application/rss" href="https://{{ .servername }}/index.xml">
14
  {{ end }}
15
{{ end }}