summaryrefslogtreecommitdiff
path: root/pages/index.mustache
diff options
context:
space:
mode:
Diffstat (limited to 'pages/index.mustache')
-rw-r--r--pages/index.mustache25
1 files changed, 25 insertions, 0 deletions
diff --git a/pages/index.mustache b/pages/index.mustache
new file mode 100644
index 0000000..cc0a8f4
--- /dev/null
+++ b/pages/index.mustache
@@ -0,0 +1,25 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <title>Ircbrowse2</title>
+ <link rel="stylesheet" href="/style.css">
+</head>
+<body>
+ <div id="gridwrapper" data-page="index">
+ <main>
+ <h1>改めて ircbrowse</h1>
+ {{#networks}}
+ <h2>{{name}}</h2>
+ {{#channels}}
+ <a class="chanlink" href="/log/{{alias}}">{{name}}</a><br>
+ {{/channels}}
+ {{/networks}}
+ </main>
+ <footer>
+ An IRC log viewer by
+ <a href="https://tomsmeding.com">Tom Smeding</a>.
+ </footer>
+ </div>
+</body>
+</html>