1
0
mirror of https://github.com/balkian/balkian.github.com.git synced 2024-09-27 18:31:43 +00:00

Fixed html titles

This commit is contained in:
J. Fernando Sánchez 2015-12-08 15:19:16 +01:00
parent 518b99a30d
commit 09a35b2595
5 changed files with 11 additions and 2 deletions

View File

@ -1,4 +1,7 @@
{% extends "base.html" %}
{% block content_title %}
{{ article.title }}
{% endblock %}
{% block content %}
<div class="postnav">
{% if article.prev_article %}

View File

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>{% block content_title %}{% endblock %}</title>
<title>{{ SITENAME }} - {% block content_title %}{% endblock %}</title>
<meta name="viewport" content="width=device-width">
<!-- syntax highlighting CSS -->

View File

@ -1,5 +1,8 @@
{% extends "base.html" %}
<!-- Pagination links -->
{% block content_title %}
balkian.com
{% endblock %}
{% block content %}
{% if articles_paginator.num_pages > 0 %}
<div class="pagination pag-top">

View File

@ -1,4 +1,7 @@
{% extends "base.html" %}
{% block content_title %}
{{ page.title }}
{% endblock %}
{% block content %}
{{ page.content }}
{% endblock %}

View File

@ -1,5 +1,5 @@
{% extends "index.html" %}
{% block title %}{{ SITENAME }} - {{ tag }}{% endblock %}
{% block content_title %}{{ SITENAME }} - {{ tag }}{% endblock %}
{% block pre_articles %}
<h1>Entries tagged: {{ tag }}</h1>
{% endblock %}