66 lines
2.0 KiB
HTML
66 lines
2.0 KiB
HTML
<!doctype html>
|
|
<html lang="en" class="no-js">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
|
|
<title>{{ title }}</title>
|
|
<meta name="description" content="">
|
|
<meta name="author" content="{{ author }}">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<link rel="shortcut icon" href="/favicon.ico">
|
|
<link rel="stylesheet" href="{{ theme.path }}/css/style.css?v=2">
|
|
<!-- <link rel="stylesheet" media="handheld" href="css/handheld.css?v=2"> -->
|
|
<!--[if lt IE 9]>
|
|
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
|
<![endif]-->
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
<header>
|
|
<h1>{{ title }}</h1>
|
|
</header>
|
|
|
|
<div id="main" role="main">
|
|
{% if albums %}
|
|
<h1>Albums</h1>
|
|
<ul id="albums">
|
|
{% for album in albums %}
|
|
<li><a href="{{ album.path }}">
|
|
<img src="{{ album.thumb }}" class="album_thumb" alt="{{ album.name }}" title="{{ album.name }}" />
|
|
<span class="album_title">{{ album.name }}</span></a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
|
|
{% if images %}
|
|
<h1>Images</h1>
|
|
<ul id="images">
|
|
{% for image in images %}
|
|
<li><a href="{{ image.file }}">
|
|
<img src="{{ image.thumb }}" alt="{{ image.file }}" /></a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
|
|
{% if description %}
|
|
<h1>Description</h1>
|
|
<p>{{ description }}</p>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<footer>
|
|
<p>© {{ author }} - Generated by sigal. </p>
|
|
</footer>
|
|
</div>
|
|
|
|
<!-- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script> -->
|
|
<!-- <script>!window.jQuery && document.write(unescape('%3Cscript src="js/libs/jquery-1.5.1.min.js"%3E%3C/script%3E'))</script> -->
|
|
<!-- <script src="js/plugins.js"></script> -->
|
|
<!-- <script src="js/script.js"></script> -->
|
|
</body>
|
|
</html>
|