-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path@layout.latte
More file actions
54 lines (41 loc) · 1.75 KB
/
@layout.latte
File metadata and controls
54 lines (41 loc) · 1.75 KB
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>
<head>
<meta charset="utf-8">
<title>{ifset $title}{$title}{/ifset} | {$template->setting('projectName')}</title>
<meta name="description" content="{#description}{$template->setting('seoDescription')}{/#}">
<meta name="keywords" content="{#keywords}{$template->setting('seoKeywords')}{/#}">
<link rel="stylesheet" media="all" href="{$basePath}/css/bootstrap-responsive.css">
<link rel="stylesheet" media="all" href="{$basePath}/css/bootstrap.css">
<link rel="stylesheet" media="all" href="{$basePath}/css/core.css">
<link rel="alternate" type="application/rss+xml" title="{$template->setting('seoDescription')}" href="{$baseUrl}{plink Rss:}" />
{#head}{/#}
</head>
<body>
<div class="container-narrow">
<div class="masthead">
<h1 class="muted"><a href="{$basePath}/">{$template->setting('projectName')}</a></h1>
<h2>{$template->setting('projectDesc')}</h2>
<br class="clearfix" />
<br>
</div>
<hr>
{control flashMessage}
{include #content}
<hr />
<div class="footer">
<p class="alert alert-success" style="text-align: center; padding-top: 10px;">
<img src="/img/github.png" width="30" /> Tento web nic neskrývá. <a href="https://github.com/flame-org/Blog" target="_blank">Jeho zdrojový kód najdete na Githubu</a>.</p>
<p class="pull-left">
© 2013 Created by <a href="http://jsifalda.name/" target="_blank">JSifalda</a>
| Powered by <a href="http://projects.jsifalda.name/flame/" target="_blank">Flame:Blog</a>
</p>
<p class="pull-right">{if $user->isLoggedIn()}<a n:href=":Back:Post:">Admin</a>{else}<a n:href="Sign:in"> Sign in</a>{/if}</p>
<br class="clearfix" />
</div>
</div>
{#scripts}
<script src="{$basePath}/js/netteForms.js"></script>
{/#}
</body>
</html>