aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2019-12-10 16:52:14 +0100
committerKatharina Fey <kookie@spacekookie.de>2019-12-10 16:52:14 +0100
commita7851bb2a8583773fed590b34191715b7ec2d713 (patch)
treebbcc27102c549f3ea4ce4dcf2984e4fc56435a8c /templates
Initial code dump of Rust and templates
Diffstat (limited to 'templates')
-rw-r--r--templates/#index.html#48
-rw-r--r--templates/logo.pngbin0 -> 56915 bytes
-rw-r--r--templates/repo.html47
3 files changed, 95 insertions, 0 deletions
diff --git a/templates/#index.html# b/templates/#index.html#
new file mode 100644
index 0000000..54da102
--- /dev/null
+++ b/templates/#index.html#
@@ -0,0 +1,48 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8" />
+ <title>webgit | /spacekookie/webgit</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="">webgit</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="">acab00</a>. Since then, <a href="">125
+ commits</a> have been authered by
+ <a href="">3 contributers</a>.
+ </p>
+ <div>
+
+ </div>
+ </div>
+ </body>
+</html>
diff --git a/templates/logo.png b/templates/logo.png
new file mode 100644
index 0000000..a706d7c
--- /dev/null
+++ b/templates/logo.png
Binary files differ
diff --git a/templates/repo.html b/templates/repo.html
new file mode 100644
index 0000000..aefa962
--- /dev/null
+++ b/templates/repo.html
@@ -0,0 +1,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>