aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html34
1 files changed, 6 insertions, 28 deletions
diff --git a/templates/index.html b/templates/index.html
index ca7d1b1..fd23cc2 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -1,29 +1,7 @@
-<html>
- <head>
- <title>octopus | index</title>
- <link href="/static/main.css" rel="stylesheet">
- </head>
- <body>
- <div class="wrapper">
- <header>
- <div class="nav">
- <img src="/static/octopus.png" />
- <h1>{{ base.sitename }}</h1>
- </div>
- <div class="nav">
- <a href="">Overview</a>
- <a href="">File Browser</a>
- <a href="">Wiki</a>
- </div>
- </header>
+{% extends "core.html" %}
- <div class="wrap">
- <div class="content">
- {{ readme }}
- </div>
- </div>
-
-
- </div>
- </body>
-</html>
+{% block content %}
+
+{{ readme }}
+
+{% endblock %}