summaryrefslogtreecommitdiffstats
path: root/askbot/skins/default/templates/question_widget.html
blob: 65ee8b647d4aeb0de7e893bf3e158c34c3ec7480 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
    <style type="text/css">
        {{settings.QUESTIONS_WIDGET_CSS|safe}}
    </style>
</head>
<body>
    {{settings.QUESTIONS_WIDGET_HEADER|safe}}
    <div id="container">
        <ul>
            {% for thread in threads %}
                <li><a href="{{settings.APP_URL}}{{ thread.get_absolute_url() }}">
                  {{ thread.title|escape }}</a></li>
            {% endfor %}
        </ul>
    </div> 
    {{settings.QUESTIONS_WIDGET_FOOTER|safe}}
</body>
</html>