1
0
mirror of https://github.com/aquatix/digimarks.git synced 2025-12-07 00:15:10 +01:00

Base template, which the children extend from

This commit is contained in:
2016-07-17 14:28:29 +02:00
parent cfbb266056
commit 23d367a3d2
3 changed files with 46 additions and 26 deletions

View File

@@ -1,15 +1,7 @@
<!doctype html>
<html>
<head>
<title>digimarks bookmarks service</title>
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='css/bootstrap.min.css') }}" />
</head>
<body>
<div class="container">
<div class="row">
<div class="page-header">
<h1>Bookmarks</h1>
</div>
{% extends "base.html" %}
{% block title %}Bookmarks{% endblock %}
{% block pagetitle %}Bookmarks{% endblock %}
{% block pagecontent %}
<ul class="thumbnails">
{% for bookmark in object_list %}
<li class="span6">
@@ -28,7 +20,4 @@
{% if page > 1 %}<a href="./?page={{ page - 1 }}">Previous</a>{% endif %}
{% if pagination.get_pages() > page %}<a href="./?page={{ page + 1 }}">Next</a>{% endif %}
</div>
</div>
</div>
</body>
</html>
{% endblock %}