_layout.html 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {{ $v := version }}<!doctype html>
  2. <head>
  3. <title>{{ .headTitle }}</title>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta name="description" content="{{ .headDescription }}">
  7. <meta name="keywords" content="{{ .headKeywords }}">
  8. <link href="/favicon.ico" rel="shortcut icon" type="image/x-icon" />
  9. <link href="/static/app/css/reset/reset.css?v={{ $v }}" rel="stylesheet">
  10. <link href="/static/app/css/bootstrap/bootstrap.min.css?v={{ $v }}" rel="stylesheet">
  11. <link href="/static/app/css/style.css?v={{ $v }}" rel="stylesheet">
  12. <link href="/static/app/css/color-red.css?v={{ $v }}" rel="stylesheet">
  13. {{ block "custom_head_static" . }}{{ end }}
  14. </head>
  15. <body>
  16. <section class="page-cover" id="home">
  17. <div class="container">
  18. <div class="center-title">
  19. <h1>{{ noescape .pageTitle }}</h1>
  20. </div>
  21. </div>
  22. </section>
  23. {{ embed }}
  24. <footer>
  25. <div class="container text-center">
  26. <div class="copyright-text">
  27. <p>
  28. По всем вопросам, предложениям и пожеланиям обращаться по адресу электронной почты<br>
  29. <a href="mailto:info@dmitriygnatenko.ru">info@dmitriygnatenko.ru</a>
  30. </p>
  31. <hr>
  32. <p>&copy; {{ now.UTC.Year }} Дмитрий Гнатенко</p>
  33. </div>
  34. </div>
  35. </footer>
  36. <a href="#home" class="backtop">&uarr;</a>
  37. <script src="/static/app/js/html5/html5shiv.min.js?v={{ $v }}"></script>
  38. <script src="/static/app/js/html5/respond.min.js?v={{ $v }}"></script>
  39. <script src="/static/app/js/jquery/jquery-2.2.4.min.js?v={{ $v }}"></script>
  40. {{ block "custom_bottom_static" . }}{{ end }}
  41. </body>
  42. </html>