summaryrefslogtreecommitdiffstats
path: root/askbot/skins/default/templates/question.html
blob: b2462faf699351d4d4fb861fedd887e0d08aeb02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% extends "two_column_body.html" %}
<!-- question.html -->
{% block title %}{% spaceless %}{{ question.get_question_title()|escape }}{% endspaceless %}{% endblock %}
{% block meta_description %}
        <meta name="description" content="{{question.summary|striptags|escape}}" />
{% endblock %}
{% block keywords %}{{thread.tagname_meta_generator()}}{% endblock %}
{% block forestyle %}
    <link rel="canonical" href="{{settings.APP_URL|strip_path}}{{question.get_absolute_url()}}" />
    <link rel="stylesheet" type="text/css" href="{{'/js/wmd/wmd.css'|media}}" />
{% endblock %}
{% block content %}
    {# ==== BEGIN: question/content.html ==== #}
    {% include "question/content.html" %}
    {# ==== END: question/content.html ==== #}
{% endblock %}
{% block sidebar %}
    {%include "question/sidebar.html" %}
{% endblock %}
{% block endjs %}
    {%include "question/javascript.html" %}
{% endblock %}