d4bfe0756f
The css file is built to a file with (short) checksum in the file name, to be nicely cacheable. The actual file name is compiled into the binary and sent to the templates as a variable.
19 lines
375 B
Smarty
19 lines
375 B
Smarty
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>{{title}}</title>
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
|
{{{csslink}}}
|
|
</head>
|
|
<body>
|
|
{{> head}}
|
|
<h1>{{title}}</h1>
|
|
|
|
<div class="group">
|
|
{{#photos}}
|
|
<p class="item"><a href="/details/{{id}}"><img src="/img/{{id}}/s"></a></p>
|
|
{{/photos}}
|
|
</div>
|
|
</body>
|
|
</html>
|