123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {{ $v := version }}<!doctype html>
- <head>
- <title>{{ .headTitle }}</title>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="description" content="{{ .headDescription }}">
- <meta name="keywords" content="{{ .headKeywords }}">
- <link href="/favicon.ico" rel="shortcut icon" type="image/x-icon" />
- <link href="/static/app/css/reset/reset.css?v={{ $v }}" rel="stylesheet">
- <link href="/static/app/css/bootstrap/bootstrap.min.css?v={{ $v }}" rel="stylesheet">
- <link href="/static/app/css/style.css?v={{ $v }}" rel="stylesheet">
- <link href="/static/app/css/color-red.css?v={{ $v }}" rel="stylesheet">
- {{ block "custom_head_static" . }}{{ end }}
- </head>
- <body>
- <section class="page-cover" id="home">
- <div class="container">
- <div class="center-title">
- <h1>{{ noescape .pageTitle }}</h1>
- </div>
- </div>
- </section>
- {{ embed }}
- <footer>
- <div class="container text-center">
- <div class="copyright-text">
- <p>
- По всем вопросам, предложениям и пожеланиям обращаться по адресу электронной почты<br>
- <a href="mailto:info@dmitriygnatenko.ru">info@dmitriygnatenko.ru</a>
- </p>
- <hr>
- <p>© {{ now.UTC.Year }} Дмитрий Гнатенко</p>
- </div>
- </div>
- </footer>
- <a href="#home" class="backtop">↑</a>
- <script src="/static/app/js/html5/html5shiv.min.js?v={{ $v }}"></script>
- <script src="/static/app/js/html5/respond.min.js?v={{ $v }}"></script>
- <script src="/static/app/js/jquery/jquery-2.2.4.min.js?v={{ $v }}"></script>
- {{ block "custom_bottom_static" . }}{{ end }}
- </body>
- </html>
|