instance
This commit is contained in:
14
instance/cfg.py
Normal file
14
instance/cfg.py
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
import os
|
||||||
|
from envs import env
|
||||||
|
|
||||||
|
pages_root = 'data'
|
||||||
|
static_root = 'static'
|
||||||
|
default_template = 'page.html'
|
||||||
|
URL_PREFIX = "/"
|
||||||
|
FLATPAGES_EXTENSION = ".md"
|
||||||
|
FLATPAGES_AUTO_RELOAD = True
|
||||||
|
DEBUG = True
|
||||||
|
FLATPAGES_ROOT = os.path.abspath(pages_root)
|
||||||
|
DEFAULT_TEMPLATE = 'page.html'
|
||||||
|
PAGES_ROOT='data'
|
||||||
|
STATIC_ROOT='static'
|
||||||
25
instance/templates/layout.html
Normal file
25
instance/templates/layout.html
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
{# -*-jinja2-*- #}
|
||||||
|
<html>
|
||||||
|
<head></head>
|
||||||
|
<LINK href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet" type="text/css">
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12">
|
||||||
|
<nav class="breadcrumb" style="background-color: #FFF">
|
||||||
|
{% for b in post.links.breadcrumbs %}
|
||||||
|
<a href="{#url_for('page',name=b.path)#}{{b.url}}" class="breadcrumb-item">{{b.title}} </a>
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
67
instance/templates/page.html
Normal file
67
instance/templates/page.html
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
{# -*-jinja2-*- #}
|
||||||
|
{% extends "layout.html" %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
|
||||||
|
<h1>{{post.title}}</h1>
|
||||||
|
{{post.date}}
|
||||||
|
{% if post.links["subindexpages"] | length > 0 %}
|
||||||
|
<hr/>
|
||||||
|
<b id="up_head"> Unterseiten: </b>
|
||||||
|
<ul class="nav flex-column flex-sm-row " labeledby="up_head">
|
||||||
|
{% for d in post.links["subindexpages"] %}
|
||||||
|
<li class="nav-item">
|
||||||
|
<a href="{{d.url}}" class="nav-link">
|
||||||
|
<h6> {{d.title}} <small class="text-muted">{{d.desc}} </small> </h6>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{{ post.html|safe }}
|
||||||
|
|
||||||
|
|
||||||
|
{% if post.links["subpages"] |length > 0 %}
|
||||||
|
<ul class="nav flex-column flex-sm-row" labeledby="inf_head">
|
||||||
|
{% for d in post.sub_pages %}
|
||||||
|
<li class="nav-item">
|
||||||
|
<a href="{{d.url}}" class="nav-link text-info">
|
||||||
|
<h6> {{d.title}} <small class="text-muted">{{d.desc}} </small>
|
||||||
|
</h6>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if post.links["files"] |length > 0 %}
|
||||||
|
|
||||||
|
<hr/>
|
||||||
|
|
||||||
|
<b id="inf_head">Files:</b>
|
||||||
|
<ul>
|
||||||
|
{% for d in post.links.files %}
|
||||||
|
<li>
|
||||||
|
<a href="{{d.url}}">{{d.title}} </a>
|
||||||
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if post.links["images"] |length > 0 %}
|
||||||
|
|
||||||
|
<hr/>
|
||||||
|
|
||||||
|
<b id="inf_head">Images:</b>
|
||||||
|
<ul>
|
||||||
|
{% for d in post.links.images %}
|
||||||
|
<li>
|
||||||
|
<a href="{{d.url}}">{{d.title}} </a>
|
||||||
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% endblock %}
|
||||||
68
instance/templates/page_plain.html
Normal file
68
instance/templates/page_plain.html
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
{# -*-jinja2-*- #}
|
||||||
|
{% extends "layout.html" %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
|
||||||
|
<h1>{{post.title}}</h1>
|
||||||
|
{{post.date}}
|
||||||
|
{% if post.links["subindexpages"] | length > 0 %}
|
||||||
|
<hr/>
|
||||||
|
<b id="up_head"> Unterseiten: </b>
|
||||||
|
<ul class="nav flex-column flex-sm-row " labeledby="up_head">
|
||||||
|
{% for d in post.links["subindexpages"] %}
|
||||||
|
<li class="nav-item">
|
||||||
|
<a href="{{d.url}}" class="nav-link">
|
||||||
|
<h6> {{d.title}} <small class="text-muted">{{d.desc}} </small> </h6>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{{ post.html|safe }}
|
||||||
|
|
||||||
|
|
||||||
|
{% if post.links.subpages |length > 0 %}
|
||||||
|
hi
|
||||||
|
<ul class="nav flex-column flex-sm-row" labeledby="inf_head">
|
||||||
|
{% for d in post.links.subpages %}
|
||||||
|
<li class="nav-item">
|
||||||
|
<a href="{{d.url}}" class="nav-link text-info">
|
||||||
|
<h6> {{d.title}} <small class="text-muted">{{d.desc}} </small>
|
||||||
|
</h6>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if post.links["files"] |length > 0 %}
|
||||||
|
|
||||||
|
<hr/>
|
||||||
|
|
||||||
|
<b id="inf_head">Files:</b>
|
||||||
|
<ul>
|
||||||
|
{% for d in post.links.files %}
|
||||||
|
<li>
|
||||||
|
<a href="{{d.url}}">{{d.title}} </a>
|
||||||
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if post.links["images"] |length > 0 %}
|
||||||
|
|
||||||
|
<hr/>
|
||||||
|
|
||||||
|
<b id="inf_head">Images:</b>
|
||||||
|
<ul>
|
||||||
|
{% for d in post.links.images %}
|
||||||
|
<li>
|
||||||
|
<a href="{{d.url}}">{{d.title}} </a>
|
||||||
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% endblock %}
|
||||||
67
instance/templates/title.html
Normal file
67
instance/templates/title.html
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
{# -*-jinja2-*- #}
|
||||||
|
{% extends "layout.html" %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
|
||||||
|
<h1>{{post.title}}</h1>
|
||||||
|
{{post.date}}
|
||||||
|
{% if post.links["subindexpages"] | length > 0 %}
|
||||||
|
<hr/>
|
||||||
|
<b id="up_head"> Unterseiten: </b>
|
||||||
|
<ul class="nav flex-column flex-sm-row " labeledby="up_head">
|
||||||
|
{% for d in post.links["subindexpages"] %}
|
||||||
|
<li class="nav-item">
|
||||||
|
<a href="{{d.url}}" class="nav-link">
|
||||||
|
<h6> {{d.title}} <small class="text-muted">{{d.desc}} </small> </h6>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{{ post.html|safe }}
|
||||||
|
|
||||||
|
|
||||||
|
{% if post.links["subpages"] |length > 0 %}
|
||||||
|
<ul class="nav flex-column flex-sm-row" labeledby="inf_head">
|
||||||
|
{% for d in post.sub_pages %}
|
||||||
|
<li class="nav-item">
|
||||||
|
<a href="{{d.url}}" class="nav-link text-info">
|
||||||
|
<h6> {{d.title}} <small class="text-muted">{{d.desc}} </small>
|
||||||
|
</h6>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if post.links["files"] |length > 0 %}
|
||||||
|
|
||||||
|
<hr/>
|
||||||
|
|
||||||
|
<b id="inf_head">Files:</b>
|
||||||
|
<ul>
|
||||||
|
{% for d in post.links.files %}
|
||||||
|
<li>
|
||||||
|
<a href="{{d.url}}">{{d.title}} </a>
|
||||||
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if post.links["images"] |length > 0 %}
|
||||||
|
|
||||||
|
<hr/>
|
||||||
|
|
||||||
|
<b id="inf_head">Images:</b>
|
||||||
|
<ul>
|
||||||
|
{% for d in post.links.images %}
|
||||||
|
<li>
|
||||||
|
<a href="{{d.url}}">{{d.title}} </a>
|
||||||
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% endblock %}
|
||||||
Reference in New Issue
Block a user