blob: 27286b04e7071160595c2471a3234e134e11e945 (
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
|
<!DOCTYPE html>
<html lang="{$lang|default:'en'}">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{if $title}{$title} - {/if}emkael.github.io</title>
<meta name="author" content="emkael" />
<meta name="description" content="emkael.github.io" />
<meta name="keywords" content="emkael, github, github pages, mkl" />
<base href="{$base|default:'/'}" />
{foreach from=$sheets item=sheet}
<link href="_css/{$sheet}" rel="stylesheet" />
{/foreach}
</head>
<body>
{$menu}
<div class="container">
{$content}
</div>
<div class="container" >
<hr />
<footer>
<p>
<address>
<span class="copy">©</span>
<a href="//emkael.info/">emkael</a>, 2016-2018
</address>
</footer>
</div>
{foreach from=$scripts item=script}
<script src="_js/{$script}" type="text/javascript"></script>
{/foreach}
</body>
</html>
|