big refactor 1

This commit is contained in:
Andreas Stephanides
2017-08-30 15:35:25 +02:00
parent 434bfbff18
commit 2d0f074315
9 changed files with 226 additions and 138 deletions

View File

@@ -1,15 +1,16 @@
{# -*-jinja2-*- #}
<html>
<head></head>
<LINK href="/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<head></head>
<LINK href="{{ url_for('static', filename='bootstrap/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 pagebreadcrumbs %}
<a href="{{url_for('post',name=b.path)}}" class="breadcrumb-item">{{b.title}} </a>
<a href="{{url_for('page',name=b.path)}}" class="breadcrumb-item">{{b.title}} </a>
{% endfor %}
<a href="{{url_for('post',name=post.path)}}" class="breadcrumb-item active">{{post.title}} </a>
<a href="{{url_for('page',name=post.path)}}" class="breadcrumb-item active">{{post.title}} </a>
</nav>
{% block content %}