-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
242f043
commit f2e1932
Showing
2 changed files
with
53 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,52 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<meta http-equiv="x-ua-compatible" content="ie=edge"> | ||
<meta name="description" content="{{ site.description }}" /> | ||
<title>{{ title }}</title> | ||
<meta name="author" content="{{ site.title_stub }}" /> | ||
<!-- Favicons --> | ||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> | ||
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"> | ||
|
||
<!-- Preconnect --> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link rel="preconnect" href="https://www.google-analytics.com" crossorigin> | ||
|
||
<!-- Homepage CSS --> | ||
<link rel="stylesheet" href="/css/main.css" type="text/css" media="screen, projection" /> | ||
|
||
<!-- Google Fonts --> | ||
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,700' rel='stylesheet' type='text/css'> | ||
|
||
<!-- JS --> | ||
<script defer type="text/javascript" src="/js/imagesloaded.pkgd.min.js"></script> | ||
<script defer type="text/javascript" src="/js/isotope.pkgd.min.js"></script> | ||
<script defer type="text/javascript" src="/js/packery-mode.pkgd.min.js"></script> | ||
<!--script defer type="text/javascript" src="/js/flowbite.js"></script--> | ||
<script defer type="text/javascript" src="/js/main.js"></script> | ||
|
||
<!-- Google Analytics --> | ||
<script> | ||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ | ||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), | ||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) | ||
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); | ||
ga('create', '{{site.google_analytics_id}}', 'auto'); | ||
ga('send', 'pageview'); | ||
</script> | ||
</head> | ||
<body class="bg-gray-100"> | ||
<div id="body-wrapper"> | ||
{{ content }} | ||
</div> | ||
</body> | ||
</html> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<meta http-equiv="x-ua-compatible" content="ie=edge"> | ||
<meta name="description" content="{{ site.description }}" /> | ||
<title>{{ title }}</title> | ||
<meta name="author" content="{{ site.title_stub }}" /> | ||
<!-- Favicons --> | ||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> | ||
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"> | ||
|
||
<!-- Preconnect --> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link rel="preconnect" href="https://www.google-analytics.com" crossorigin> | ||
|
||
<!-- Homepage CSS --> | ||
<link rel="stylesheet" href="/css/main.css" type="text/css" media="screen, projection" /> | ||
|
||
<!-- Google Fonts --> | ||
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,700' rel='stylesheet' type='text/css'> | ||
|
||
<!-- JS --> | ||
<script defer type="text/javascript" src="/js/imagesloaded.pkgd.min.js"></script> | ||
<script defer type="text/javascript" src="/js/isotope.pkgd.min.js"></script> | ||
<script defer type="text/javascript" src="/js/packery-mode.pkgd.min.js"></script> | ||
<script defer type="text/javascript" src="/js/main.js"></script> | ||
|
||
<!-- Google Analytics --> | ||
<script> | ||
(function (i, s, o, g, r, a, m) { | ||
i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () { | ||
(i[r].q = i[r].q || []).push(arguments) | ||
}, i[r].l = 1 * new Date(); a = s.createElement(o), | ||
m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m) | ||
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga'); | ||
ga('create', '{{site.google_analytics_id}}', 'auto'); | ||
ga('send', 'pageview'); | ||
</script> | ||
</head> | ||
|
||
<body class="bg-gray-100"> | ||
<div id="body-wrapper"> | ||
{{ content }} | ||
</div> | ||
</body> | ||
|
||
</html> |