calling the category and page pages alive again

This commit is contained in:
mb@mb 2018-02-01 20:59:42 +01:00
parent 754ebdc127
commit 66572aead9
5 changed files with 8 additions and 7 deletions

@ -1 +1 @@
Subproject commit 4ded3cbc6c9899acbed83a146107c8244c56f882
Subproject commit d91a9e910bffb850ecb597f5c77241678f197e24

View File

@ -10,8 +10,8 @@
{% from 'syndication.html' import syndication with context %}
{{ syndication(article) }}
<link rel="stylesheet" type="text/css" href="{{ THEME_STATIC_DIR }}css/pygment.css" />
<link rel="stylesheet" type="text/css" href="{{ THEME_STATIC_DIR }}css/{{ CSS_FILE }}" />
<link rel="stylesheet" type="text/css" href="/{{ THEME_STATIC_DIR }}css/pygment.css" />
<link rel="stylesheet" type="text/css" href="/{{ THEME_STATIC_DIR }}css/{{ CSS_FILE }}" />
{% endblock head %}
</head>

View File

@ -1,6 +1,7 @@
{% extends "index.html" %}
{% block content_title %}
<h1>{{ category }}</h1>
<h1>Category: {{ category }}</h1>
<hr>
{% for p in pages %}
{% if p.slug == category %}
<div id="title">{{ p.content }}</div>

View File

@ -52,14 +52,14 @@
{% if article.category %}
<div class="categories">
<span itemprop="articleSection">
<a href="{{ SITEURL }}/{{ article.category.url }}" rel="category">{{ article.category }}</a>
<a href="/{{ article.category.url }}" rel="category">{{ article.category }}</a>
</span>
</div>
{% endif %} {% if article.tags %}
<div class="tags">
Tags: {% for tag in article.tags %}
<span itemprop="keywords">
<a href="{{ SITEURL }}/{{ tag.url }}" rel="tag">{{ tag }}</a>
<a href="/{{ tag.url }}" rel="tag">{{ tag }}</a>
</span> {% endfor %}
</div>
{% endif %}

View File

@ -1,7 +1,7 @@
{% extends "base.html" %}
{% block title %}{{ page.title }}{%endblock%}
{% block content %}
<div id ="page-content">
<div id="page-content">
{{ page.content }}
{% if page.modified %}