1
+ <!DOCTYPE html>
2
+ < html lang ="{{ site.lang | default: "en-US " }}">
3
+ < head >
4
+
5
+ {% if site.google_analytics %}
6
+ < script async src ="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }} "> </ script >
7
+ < script >
8
+ window . dataLayer = window . dataLayer || [ ] ;
9
+ function gtag ( ) { dataLayer . push ( arguments ) ; }
10
+ gtag ( 'js' , new Date ( ) ) ;
11
+ gtag ( 'config' , '{{ site.google_analytics }}' ) ;
12
+ </ script >
13
+ {% endif %}
14
+ < meta charset ="UTF-8 ">
15
+
16
+ {% seo %}
17
+ < link rel ="preconnect " href ="https://fonts.gstatic.com ">
18
+ < link rel ="preload " href ="https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap " as ="style " type ="text/css " crossorigin >
19
+ < meta name ="viewport " content ="width=device-width, initial-scale=1 ">
20
+ < meta name ="theme-color " content ="#157878 ">
21
+ < meta name ="apple-mobile-web-app-status-bar-style " content ="black-translucent ">
22
+ < link rel ="stylesheet " href ="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }} ">
23
+ </ head >
24
+ < body >
25
+ < a id ="skip-to-content " href ="#content "> Skip to the content.</ a >
26
+
27
+ < header class ="page-header " role ="banner ">
28
+ < h1 class ="project-name "> {{ page.title | default: site.title | default: site.github.repository_name }}</ h1 >
29
+ < h2 class ="project-tagline "> {{ page.description | default: site.description | default: site.github.project_tagline }}</ h2 >
30
+ {% if site.github.is_project_page %}
31
+ < a href ="{{ site.github.repository_url }} " class ="btn "> View on GitHub</ a >
32
+ {% endif %}
33
+ {% if site.show_downloads %}
34
+ < a href ="{{ site.github.zip_url }} " class ="btn "> Download .zip</ a >
35
+ < a href ="{{ site.github.tar_url }} " class ="btn "> Download .tar.gz</ a >
36
+ {% endif %}
37
+ </ header >
38
+
39
+ < main id ="content " class ="main-content " role ="main ">
40
+ {{ content }}
41
+
42
+ < footer class ="site-footer ">
43
+ {% if site.github.is_project_page %}
44
+ < span class ="site-footer-owner "> < a href ="{{ site.github.repository_url }} "> {{ site.github.repository_name }}</ a > is maintained by < a href ="{{ site.github.owner_url }} "> {{ site.github.owner_name }}</ a > .</ span >
45
+ {% endif %}
46
+ < a href ="{{ '/' | relative_url }} "> Back to main index page</ a >
47
+ </ footer >
48
+ </ main >
49
+ </ body >
50
+ </ html >
0 commit comments