1+ <!DOCTYPE html>
2+ < html lang ="{{ site.lang | default: "en-US " }}">
3+ < head >
4+ < meta charset ="UTF-8 ">
5+ < meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
6+ < meta name ="viewport " content ="width=device-width, initial-scale=1 ">
7+ < link rel ="apple-touch-icon " sizes ="57x57 " href ="/icons/apple-icon-57x57.png ">
8+ < link rel ="apple-touch-icon " sizes ="60x60 " href ="/icons/apple-icon-60x60.png ">
9+ < link rel ="apple-touch-icon " sizes ="72x72 " href ="/icons/apple-icon-72x72.png ">
10+ < link rel ="apple-touch-icon " sizes ="76x76 " href ="/icons/apple-icon-76x76.png ">
11+ < link rel ="apple-touch-icon " sizes ="114x114 " href ="/icons/apple-icon-114x114.png ">
12+ < link rel ="apple-touch-icon " sizes ="120x120 " href ="/icons/apple-icon-120x120.png ">
13+ < link rel ="apple-touch-icon " sizes ="144x144 " href ="/icons/apple-icon-144x144.png ">
14+ < link rel ="apple-touch-icon " sizes ="152x152 " href ="/icons/apple-icon-152x152.png ">
15+ < link rel ="apple-touch-icon " sizes ="180x180 " href ="/icons/apple-icon-180x180.png ">
16+ < link rel ="icon " type ="image/png " sizes ="192x192 " href ="/icons/android-icon-192x192.png ">
17+ < link rel ="icon " type ="image/png " sizes ="32x32 " href ="/icons/favicon-32x32.png ">
18+ < link rel ="icon " type ="image/png " sizes ="96x96 " href ="/icons/favicon-96x96.png ">
19+ < link rel ="icon " type ="image/png " sizes ="16x16 " href ="/icons/favicon-16x16.png ">
20+ < link rel ="manifest " href ="/icons/manifest.json ">
21+ < meta name ="msapplication-TileColor " content ="#ffffff ">
22+ < meta name ="msapplication-TileImage " content ="/icons/ms-icon-144x144.png ">
23+ < meta name ="theme-color " content ="#ffffff ">
24+ {% seo %}
25+ < link rel ="stylesheet " href ="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}">
26+ </ head >
27+ < body >
28+ < div class ="container-lg px-3 my-5 markdown-body ">
29+ {% if site.title and site.title != page.title %}
30+ < h1 > < a href ="{{ "/" | absolute_url }}"> {{ site.title }}</ a > </ h1 >
31+ {% endif %}
32+
33+ {{ content }}
34+
35+ {% if site.github.private != true and site.github.license %}
36+ < div class ="footer border-top border-gray-light mt-5 pt-3 text-right text-gray ">
37+ This site is open source. {% github_edit_link "Improve this page" %}.
38+ </ div >
39+ {% endif %}
40+ </ div >
41+ < script src ="https://cdnjs.cloudflare.com/ajax/libs/anchor-js/4.1.0/anchor.min.js " integrity ="sha256-lZaRhKri35AyJSypXXs4o6OPFTbTmUoltBbDCbdzegg= " crossorigin ="anonymous "> </ script >
42+ < script > anchors . add ( ) ; </ script >
43+ {% if site.google_analytics %}
44+ < script >
45+ ( function ( i , s , o , g , r , a , m ) { i [ 'GoogleAnalyticsObject' ] = r ; i [ r ] = i [ r ] || function ( ) {
46+ ( i [ r ] . q = i [ r ] . q || [ ] ) . push ( arguments ) } , i [ r ] . l = 1 * new Date ( ) ; a = s . createElement ( o ) ,
47+ m = s . getElementsByTagName ( o ) [ 0 ] ; a . async = 1 ; a . src = g ; m . parentNode . insertBefore ( a , m )
48+ } ) ( window , document , 'script' , '//www.google-analytics.com/analytics.js' , 'ga' ) ;
49+ ga ( 'create' , '{{ site.google_analytics }}' , 'auto' ) ;
50+ ga ( 'send' , 'pageview' ) ;
51+ </ script >
52+ {% endif %}
53+ </ body >
54+ </ html >
0 commit comments