_layout.html 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. {{ if ga }}
  15. {{ template "_ga" . }}
  16. {{ end }}
  17. </head>
  18. <body>
  19. <section class="page-cover" id="home">
  20. <div class="container">
  21. <div class="center-title">
  22. <h1>{{ noescape .pageTitle }}</h1>
  23. </div>
  24. </div>
  25. </section>
  26. {{ embed }}
  27. <footer>
  28. <div class="container text-center">
  29. <div class="copyright-text">
  30. <p>
  31. По всем вопросам, предложениям и пожеланиям обращаться по адресу электронной почты<br>
  32. <a href="mailto:info@dmitriygnatenko.ru">info@dmitriygnatenko.ru</a>
  33. </p>
  34. <hr>
  35. <p>&copy; {{ now.UTC.Year }} Дмитрий Гнатенко</p>
  36. </div>
  37. </div>
  38. </footer>
  39. <a href="#home" class="backtop">&uarr;</a>
  40. <script src="/static/app/js/html5/html5shiv.min.js?v={{ $v }}"></script>
  41. <script src="/static/app/js/html5/respond.min.js?v={{ $v }}"></script>
  42. <script src="/static/app/js/jquery/jquery-2.2.4.min.js?v={{ $v }}"></script>
  43. {{ block "custom_bottom_static" . }}{{ end }}
  44. </body>
  45. </html>