all repos — legit-config @ 500907e27222f4bda6dfd3dd2b8cc28f6f709a0d

Configs for my instance of [legit](https://git.icyphox.sh/legit)

templates/index.html (view raw)

 1{{ define "index" }}
 2<html>
 3  {{ template "head" . }}
 4
 5  <header>
 6    <h1>
 7      {{ .meta.Title }} @<a href="https://5ika.ch/" class="u-url">5ika.ch</a>
 8    </h1>
 9    <h2>{{ .meta.Description }}</h2>
10  </header>
11  <body>
12    <main>
13      <div class="index">
14        {{ range .info }}
15        <div class="index-name">
16          <a href="/{{ .Name }}">{{ .DisplayName }}</a>
17        </div>
18        <div class="desc">{{ .Desc }}</div>
19        <div>{{ .Idle }}</div>
20        {{ end }}
21      </div>
22    </main>
23    <p class='disclaimer'>Love CLI ? See this through SSH with <span class='cmd'>ssh -p 1917 5ika.ch</span>.</p>
24  </body>
25</html>
26{{ end }}