~widelands-dev/widelands-website/update_beautifulsoup4

« back to all changes in this revision

Viewing changes to pybb/templates/pybb/base.html

  • Committer: Holger Rapp
  • Date: 2009-02-25 16:55:36 UTC
  • Revision ID: sirver@kallisto.local-20090225165536-3abfhjx8qsgtzyru
- Added my hacked version of pybb. Remerging new versions is very difficult at this point :(

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% load i18n %}
 
2
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 
3
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ru" lang="ru">
 
4
<head>
 
5
    <title>pybb demo</title>
 
6
    <meta name="description" content="pybb demo" />
 
7
    <meta name="keywords" content="pybb" />
 
8
 
 
9
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
 
10
        
 
11
    <link href="{{ MEDIA_URL }}pybb/css/style.css" type="text/css" rel="stylesheet">
 
12
    <link rel="alternate" type="application/atom+xml" href="{% url pybb_feed "posts" %}" title="{% trans "Latest posts on forum" %}" />
 
13
    <link rel="alternate" type="application/atom+xml" href="{% url pybb_feed "topics" %}" title="{% trans "Latest topics on forum" %}" />
 
14
    <!--<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />-->
 
15
    <script type="text/javascript" src="{{ MEDIA_URL }}pybb/js/jquery.js"></script>
 
16
    <!--<script type="text/javascript" src="{{ MEDIA_URL }}pybb/js/rounded_corners.inc.js"></script>-->
 
17
    <!--<script type="text/javascript" src="{{ MEDIA_URL }}pybb/js/corners_init.js"></script>-->
 
18
 
 
19
    <!-- Highlightjs goodies -->
 
20
    <script type="text/javascript" src="{{ MEDIA_URL }}pybb/js/highlight.js"></script>
 
21
    <script type="text/javascript">
 
22
      hljs.initHighlightingOnLoad();
 
23
    </script>
 
24
    <link type="text/css" rel="stylesheet" href="{{ MEDIA_URL }}pybb/css/hljs_styles/idea.css" />
 
25
 
 
26
    {% block extra_meta %}{% endblock %}
 
27
    {% block head_extra %}{% endblock %}
 
28
</head>
 
29
<body>
 
30
    {% include 'pybb/head.html' %}
 
31
 
 
32
    <div class="content_box">
 
33
        <div class="content main-box">
 
34
        {% block content %}{% endblock %}
 
35
        </div>
 
36
    </div>
 
37
 
 
38
    {% include 'pybb/footer.html' %}
 
39
</body>
 
40
</html>