summaryrefslogtreecommitdiff
path: root/template/index.tpl
blob: 66570bbda2d39d3c3864dc6c3442bb2391622436 (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
<!DOCTYPE html>
<html lang="{$lang|default:'pl'}">
  <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}

    {$content}

    {foreach from=$scripts item=script}
    <script src="_js/{$script}" type="text/javascript"></script>
    {/foreach}

  </body>
</html>