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.
76 lines
3.1 KiB
76 lines
3.1 KiB
{% extends 'share_layout/base.html' %}
|
|
{% load blog_tags %}
|
|
|
|
{% block header %}
|
|
<title>{{ article.title }} | {{ SITE_DESCRIPTION }}</title>
|
|
<meta property="og:type" content="article"/>
|
|
<meta property="og:title" content="{{ article.title }}"/>
|
|
|
|
|
|
<meta property="og:description" content="{{ article.body|custom_markdown|striptags|truncatewords:1 }}"/>
|
|
<meta property="og:url"
|
|
content="{{ article.get_full_url }}"/>
|
|
<meta property="article:published_time" content="{% datetimeformat article.pub_time %}"/>
|
|
<meta property="article:modified_time" content="{% datetimeformat article.pub_time %}"/>
|
|
<meta property="article:author" content="{{ article.author.get_full_url }}"/>
|
|
<meta property="article:section" content="{{ article.category.name }}"/>
|
|
{% for t in article.tags.all %}
|
|
<meta property="article:tag" content="{{ t.name }}"/>
|
|
{% endfor %}
|
|
<meta property="og:site_name" content="{{ SITE_NAME }}"/>
|
|
|
|
<meta name="description" content="{{ article.body|custom_markdown|striptags|truncatewords:1 }}"/>
|
|
{% if article.tags %}
|
|
<meta name="keywords" content="{{ article.tags.all|join:"," }}"/>
|
|
{% else %}
|
|
<meta name="keywords" content="{{ SITE_KEYWORDS }}"/>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
{% block content %}
|
|
<div id="primary" class="site-content">
|
|
<div id="content" role="main">
|
|
{% load_article_detail article False user %}
|
|
|
|
{% if article.type == 'a' %}
|
|
<nav class="nav-single">
|
|
<h3 class="assistive-text">文章导航</h3>
|
|
{% if next_article %}
|
|
|
|
<span class="nav-previous"><a href="{{ next_article.get_absolute_url }}" rel="prev"><span
|
|
class="meta-nav">←</span> {{ next_article.title }}</a></span>
|
|
{% endif %}
|
|
{% if prev_article %}
|
|
<span class="nav-next"><a href="{{ prev_article.get_absolute_url }}"
|
|
rel="next">{{ prev_article.title }} <span
|
|
class="meta-nav">→</span></a></span>
|
|
{% endif %}
|
|
</nav><!-- .nav-single -->
|
|
{% endif %}
|
|
|
|
</div><!-- #content -->
|
|
{% if article.comment_status == "o" and OPEN_SITE_COMMENT %}
|
|
|
|
|
|
{% include 'comments/tags/comment_list.html' %}
|
|
{% if user.is_authenticated %}
|
|
{% include 'comments/tags/post_comment.html' %}
|
|
{% else %}
|
|
<div class="comments-area">
|
|
<h3 class="comment-meta">您还没有登录,请您<a
|
|
href="{% url "account:login" %}?next={{ request.get_full_path }}" rel="nofollow">登录</a>后发表评论。
|
|
</h3>
|
|
|
|
{% load oauth_tags %}
|
|
{% load_oauth_applications request %}
|
|
|
|
</div>
|
|
{% endif %}
|
|
{% endif %}
|
|
</div><!-- #primary -->
|
|
|
|
{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
{% load_sidebar user "p" %}
|
|
{% endblock %} |