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