thallada.github.io/_layouts/default.html

79 lines
2.6 KiB
HTML
Raw Normal View History

2014-06-29 19:51:58 +00:00
<!DOCTYPE html>
<html lang="en">
2014-07-13 23:18:26 +00:00
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>{{ page.title }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1, max-scale=1">
2014-06-29 19:51:58 +00:00
2014-07-13 23:18:26 +00:00
<!-- 3rd party CSS -->
<link rel="stylesheet" href="/css/normalize.css">
<!-- Fix IE -->
<!--[if lt IE 9]>
2018-04-27 03:51:31 +00:00
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7/html5shiv.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/respond.js/1.4.2/respond.js"></script>
2014-07-13 23:18:26 +00:00
<![endif]-->
2014-06-29 19:51:58 +00:00
2014-07-13 23:18:26 +00:00
<!-- syntax highlighting CSS -->
<link rel="stylesheet" href="/css/syntax.css">
2020-01-05 23:09:53 +00:00
<link rel="stylesheet" href="/css/syntax_dark.css" media="(prefers-color-scheme: dark)">
2014-06-29 19:51:58 +00:00
2014-07-13 23:18:26 +00:00
<!-- Custom CSS -->
<link rel="stylesheet" href="/css/main.css">
2020-01-05 23:09:53 +00:00
<link rel="stylesheet" href="/css/main_dark.css" media="(prefers-color-scheme: dark)">
2014-06-29 19:51:58 +00:00
2014-07-13 23:18:26 +00:00
<!-- Web Fonts -->
2018-04-27 03:51:31 +00:00
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,400,300,700" rel="stylesheet" type="text/css">
2014-07-21 16:03:08 +00:00
2014-07-30 02:40:25 +00:00
<!-- RSS Feed -->
<link href="/feed.xml" rel="alternate" type="application/atom+xml">
2014-07-30 02:40:25 +00:00
2014-07-21 16:03:08 +00:00
<!-- Favicon -->
<link rel="shortcut icon" href="/favicon.png">
2014-07-30 03:18:33 +00:00
<!-- 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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-39880341-1', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
2020-01-05 23:09:53 +00:00
<script type="module" src="https://unpkg.com/dark-mode-toggle"></script>
2017-07-11 19:10:00 +00:00
{% seo %}
2014-07-13 23:18:26 +00:00
</head>
<body>
<div class="container">
<div class="row clearfix header">
<h1 class="title"><a href="/blog/">{{ site.name }}</a></h1>
2014-07-13 23:18:26 +00:00
<a class="extra" href="/">home</a>
</div>
{{ content }}
2014-07-30 03:10:18 +00:00
<div class="row clearfix rss">
2020-01-05 23:09:53 +00:00
<a class="rss" href="/feed.xml"><img src="/img/rss.png" alt="RSS" class="icon" /></a>
2014-07-30 03:10:18 +00:00
</div>
2014-07-13 23:18:26 +00:00
<div class="row clearfix footer">
<div class="column full contact">
<p class="contact-info">
<a href="mailto:tyler@hallada.net">tyler@hallada.net</a>
</p>
2014-06-29 19:51:58 +00:00
</div>
2014-07-13 23:18:26 +00:00
</div>
</div>
2020-01-05 23:09:53 +00:00
<div class="theme-toggle">
<dark-mode-toggle
id="dark-mode-toggle-1"
appearance="toggle"
2020-01-06 00:12:43 +00:00
light="Dark"
dark="Light"
2020-01-05 23:09:53 +00:00
permanent
></dark-mode-toggle>
</div>
2014-07-13 23:18:26 +00:00
</body>
2014-06-29 19:51:58 +00:00
</html>