Files
sigal/sigal/themes/default/index.html
2012-07-02 00:14:37 +02:00

72 lines
2.4 KiB
HTML

<!doctype html>
<html lang="en">
<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">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=PT+Sans">
<link rel="stylesheet" href="{{ theme.path }}/css/base.css">
<link rel="stylesheet" href="{{ theme.path }}/css/skeleton.css">
<link rel="stylesheet" href="{{ theme.path }}/css/style.css">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<header class="sixteen columns">
<h1>{{ title }}</h1>
<hr>
</header>
<div id="main" role="main" class="sixteen columns">
{% if albums %}
<div id="albums" class="row">
{% for album in albums %}
<div class="four columns thumbnail">
<a href="{{ album.path }}">
<img src="{{ album.thumb }}" class="album_thumb"
alt="{{ album.name }}" title="{{ album.name }}" /></a>
<span class="album_title">{{ album.title }}</span>
</div>
{% endfor %}
</div>
{% endif %}
{% if images %}
<div id="gallery" class="row">
<p>{{ paths }}</p>
{% for image in images %}
<div class="four columns thumbnail">
<a href="{{ image.file }}">
<img src="{{ image.thumb }}" alt="{{ image.file }}" /></a>
</div>
{% endfor %}
</div>
{% endif %}
{% if description %}
<div id="description" class="row">
<p>{{ description }}</p>
</div>
{% endif %}
</div>
<footer class="sixteen columns">
<p>{% if author %}&copy; {{ author }} - {% endif %}Generated by {{ sigal_link }}. </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="{{ theme.path }}/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>