~chipaca/unity-lens-video/custom-user-agent

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{% extends "xhtml1-strict.html" %}

{% block css %}
{% endblock css %}

{% block javascript %}
{% endblock javascript %}

{% block title %}{% endblock %}

{% block body %}

<div id="nav">
    <a href="/"><span>home</span></a> ;
    <a href="#"><span>rules</span></a> ;
    <a href="#"><span>login</span></a> ;
    <a href="#"><span>post</span></a>
    <br/>
    <a href="#"><span>top 50</span></a> ;
    <a href="#"><span>latest 50</span></a> ;
    <a href="#"><span>random</span></a> ;
    <a href="#"><span>search</span></a>
</div>

<div class="hr"></div>

<div id="content">

    <h2>{% block pagetitle %}{% endblock %}</h2>

    {% block content %}{% endblock %}

</div>

<div class="hr"></div>


{% endblock body %}