blob: 049b71be486218f476f0099ccbe5c013e1256e2c (
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
|
<!doctype html>
<html lang="{{ settings.html_language }}">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>{{ album.title }}</title>
<meta name="description" content="">
<meta name="author" content="{{ album.author }}">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="{{ theme.url }}/css/skeleton.css">
<link rel="stylesheet" href="{{ theme.url }}/css/colorbox.css">
<link rel="stylesheet" href="{{ theme.url }}/css/style.css">
{% block extra_head %}{% endblock extra_head %}
{% include 'analytics.html' %}
</head>
<body>
{% include 'decrypt.html' %}
{% include 'gtm.html' %}
<div class="container">
<div class="three columns">
<div class="sidebar">
<h1><a href="{{ album.index_url }}">
{% if settings.site_logo %}
<img src="{{ theme.url }}/{{ settings.site_logo }}" alt="{{ index_title }}">
{% else %}
{{ index_title }}
{% endif %}
</a></h1>
{% include 'links.html' %}
{% include 'footer.html' %}
</div>
</div>
<div id="main" role="main" class="nine columns offset-by-three">
<header>
{% include 'breadcrumb.html' %}
{% if album.breadcrumb %}
<hr>
{% endif %}
</header>
{% block content %}{% endblock %}
{% if album.description %}
<div id="description" class="row">
{{ album.description }}{%endif%}{% if settings.edit_enabled %} <a style="font-size: 66%;" href="{{ settings.edit_cgi_script }}?index={{ album.index_url }}&image=folder&id={{ settings.gallery_id }}">{{ settings.edit_string }}</a>{% if album.description %}{% endif %}
</div>
{% endif %}
</div>
</div>
{% block footer %}{% endblock %}
{% include 'piwik.html' %}
</body>
</html>
|