blob: 286ae883c2715fde31326759812b306af4399361 (
plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
{% load i18n %}<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>{% block title %}{{PROJECT_NAME}}{% endblock %}</title>
{% if MOBILE %}<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">{% endif %}
{% block og %}
<meta property="og:title"
content="{{PROJECT_NAME}}{% if current_feature %} - {{current_feature.name|cut:'"'}}{% endif %}" />
<meta property="og:type" content="article" />
{% if current_feature %}
<meta property="og:url" content="{{current_site}}{% if tiny %}/ty/{{tiny}}{% endif %}" />
{% if current_feature.image %}
<meta property="og:image" content="{{current_site}}{{current_feature.image.picture.url}}" />
{% elif PROJECT_IMAGE %}
<meta property="og:image" content="{{PROJECT_IMAGE}}" />
{% endif %}
<meta property="og:description"
content="{{current_feature.text_description|cut:'"'}}" />
{% else %}
<meta property="og:url" content="{{current_site}}" />
{% if PROJECT_IMAGE %}
<meta property="og:image" content="{{PROJECT_IMAGE}}" />
{% endif %}
{% endif %}
{% endblock %}
{% block extra_head %}
{% endblock %}
</head>
<body {% block body_id %}{% endblock %} {% block body_class %}{% endblock %}>
{% block extrabody %}
{% endblock %}
{% block body %}
<div id="header">
{% block header %}
{% endblock %}
</div>
<div id="sidebar">
{% block sidebar %}
{% endblock %}
</div>
<div id="content">
{% block content %}
{% endblock %}
</div>
<div id="footer">
{% block footer %}
{% endblock %}
</div>
{% endblock %}
</body>
</html>
|