aboutsummaryrefslogtreecommitdiff
path: root/templates/repo.html
blob: aefa9626d2dfe26c986519a4d86f1b590c63f081 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>{{ project_name }} | /{{ project_name }}</title>
    <link href="../static/main.css" rel="stylesheet">
  </head>
  <body>
    <div class="header">
      <div class="title">
        <img class="logo" src="logo.png" />

        <div>
          <h1>/ <a href="">spacekookie</a> / <a href="">{{ project_name }}</a></h1>

          <p>
            A lightweight web frontend for git repositories
          </p>
        </div>

        <div>
          <a href="">RSS</a> <a href="">Clone</a> <a href="">Star</a>

        </div>
      </div>
      <div class="content">
        <div class="nav">
          <a class="nav-item" href="">readme</a>
          <a class="nav-item" href="">summary</a>
          <a class="nav-item" href="">tree</a>
          <a class="nav-item" href="">log</a>
          <a class="nav-item" href="">tags</a>
          <a class="nav-item" href="">branches</a>
          <a class="nav-item" href="">stats</a>
          <a class="nav-item" href="">contribute</a>
        </div>
        <p>
          <strong>webgit</strong> was created on 2019-11-29 at 21:20
          with commit <a href="">{{ first_commit }}</a>. Since then, <a href="">{{ num_commits }}
            commits</a> have been authered by
          <a href="">{{ num_contributors }} contributers</a>.
        </p>
        <div>
        </div>
      </div>
  </body>
</html>