add: simple css and navbar
This commit is contained in:
@@ -1,17 +1,18 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>wiki.tipsy.codes</title>
|
||||
</head>
|
||||
<body>
|
||||
<nav>
|
||||
<ol>
|
||||
<li><a href="/README.md">README</a></li>
|
||||
<li><a href="/thoughts.md">Thoughts</a></li>
|
||||
</ol>
|
||||
</nav>
|
||||
<div class="content">
|
||||
{% block body %}
|
||||
{% endblock %}
|
||||
</div>
|
||||
</body>
|
||||
<head>
|
||||
<title>wiki.tipsy.codes</title>
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="https://cdn.simplecss.org/simple.min.css"
|
||||
/>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<nav>
|
||||
<a href="/README.md">README</a>
|
||||
<a href="/thoughts.md">Thoughts</a>
|
||||
</nav>
|
||||
</header>
|
||||
<div class="content">{% block body %} {% endblock %}</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user