Browse code

Created repository.

DoubleBastionAdmin authored on 02/03/2022 00:26:46
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,47 @@
1
+<!DOCTYPE html>
2
+<html lang="en">
3
+<head>
4
+  <!-- Basic Page Needs
5
+ ================================================== -->
6
+  <meta charset="utf-8" />
7
+  <meta name="viewport" content="width=device-width,initial-scale=1">
8
+  <meta name="description" content="Font Awesome, the iconic font and CSS framework">
9
+  <meta name="author" content="Dave Gandy">
10
+  <meta http-equiv="X-UA-Compatible" content="IE=edge">
11
+  <link rel="shortcut icon" href="{{ page.relative_path }}assets/ico/favicon.ico">
12
+
13
+  <title>{% if page.title %}{{ page.title }}{% endif %}</title>
14
+
15
+  <style type="text/css">
16
+    html{
17
+      margin: 0;
18
+      height: 100%;
19
+      overflow: hidden;
20
+    }
21
+    iframe{
22
+      position: absolute;
23
+      left:0;
24
+      right:0;
25
+      bottom:0;
26
+      top:0;
27
+      border:0;
28
+    }
29
+  </style>
30
+
31
+  <script>
32
+    var _gaq = _gaq || [];
33
+    _gaq.push(['_setAccount', 'UA-30136587-1']);
34
+    _gaq.push(['_trackPageview']);
35
+
36
+    (function() {
37
+      var ga = document.createElement('script');
38
+//      ga.src = 'https://www.google-analytics.com/ga.js';
39
+      var s = document.scripts[0];
40
+      s.parentNode.insertBefore(ga, s);
41
+    })();
42
+  </script>
43
+</head>
44
+<body>
45
+  {{content}}
46
+</body>
47
+</html>