1
0
mirror of https://github.com/tiyn/amphora-wiki.git synced 2025-10-09 17:37:58 +02:00

initial commit

This commit is contained in:
TiynGER
2020-05-30 01:46:10 +02:00
parent 1c57f74541
commit 51682d00f0
15 changed files with 499 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
Test Entry Title 3
This is a markdown file
- list entry
- list entry
- list entry
# md-header
more content

View File

@@ -0,0 +1,10 @@
Test Entry Title 3
This is a markdown file
- list entry
- list entry
- list entry
# md-header
more content

View File

@@ -0,0 +1,10 @@
Test Entry Title 3
This is a markdown file
- list entry
- list entry
- list entry
# md-header
more content

9
src/templates/error.html Normal file
View File

@@ -0,0 +1,9 @@
{% extends "template.html" %}
{% block content %}
<div class="container">
<div class="important">
Error<br>
<span>{{ errorcode }}</span>
</div>
</div>
{% endblock %}

View File

@@ -0,0 +1,32 @@
<html>
<head>
<title>{{ title }}</title>
<link href="{{ url_for('static', filename='css/' + style + '.css') }}" rel="stylesheet" type="text/css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width", initial-scale=1.0>
</head>
<body>
<!-- Menu -->
<div class="main-menu-dropdown">
<!-- <img class="logo" src="/static/images/logo.png"> -->
<span>{{ title }}</span>
<input type="checkbox" id="main-menu-check">
<label for="main-menu-check" class="show-menu">&#9776;</label>
<div class="main-menu">
<a href="/">Startpage</a>
<label for="main-menu-check" class="hide-menu">X</label>
</div>
</div>
<!-- Menu -->
<!-- Content -->
{% block content %}
{% endblock %}
<!-- Content -->
<footer>
<div class="center">
Dieser Blog enthält kein Javascript oder PHP.<br>
Dies ist eine Instanz vom <a href="https://github.com/tiyn/tiyny-wiki">Tiyny-Wiki</a>.
</div>
</footer>
</body>
</html>