You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.4 KiB
46 lines
1.4 KiB
{% extends 'share_layout/base.html' %}
|
|
{% load blog_tags %}
|
|
{% load cache %}
|
|
{% block header %}
|
|
{% if tag_name %}
|
|
{% if statuscode == '404' %}
|
|
<title>404 NotFound</title>
|
|
{% elif statuscode == '403' %}
|
|
<title>Permission Denied</title>
|
|
{% elif statuscode == '500' %}
|
|
<title>500 Error</title>
|
|
{% else %}
|
|
<title></title>
|
|
{% endif %}
|
|
{% comment %}<meta name="description" content="{{ page_type }}:{{ tag_name }}"/>{% endcomment %}
|
|
{% else %}
|
|
<title>{{ SITE_NAME }} | {{ SITE_DESCRIPTION }}</title>
|
|
{% endif %}
|
|
<meta name="description" content="{{ SITE_SEO_DESCRIPTION }}"/>
|
|
<meta name="keywords" content="{{ SITE_KEYWORDS }}"/>
|
|
<meta property="og:type" content="blog"/>
|
|
<meta property="og:title" content="{{ SITE_NAME }}"/>
|
|
<meta property="og:description" content="{{ SITE_DESCRIPTION }}"/>
|
|
<meta property="og:url" content="{{ SITE_BASE_URL }}"/>
|
|
<meta property="og:site_name" content="{{ SITE_NAME }}"/>
|
|
{% endblock %}
|
|
{% block content %}
|
|
<div id="primary" class="site-content">
|
|
<div id="content" role="main">
|
|
|
|
<header class="archive-header">
|
|
<h1 class="archive-title">{{ message }}</h1>
|
|
</header><!-- .archive-header -->
|
|
|
|
</div><!-- #content -->
|
|
</div><!-- #primary -->
|
|
|
|
{% endblock %}
|
|
|
|
|
|
{% block sidebar %}
|
|
{% load_sidebar user 'i' %}
|
|
{% endblock %}
|
|
|
|
|