mirror of
https://github.com/minoplhy/crappy-reverie.git
synced 2024-11-14 21:36:57 +00:00
55 lines
1.7 KiB
HTML
55 lines
1.7 KiB
HTML
|
<!DOCTYPE html>
|
|||
|
<html>
|
|||
|
<head>
|
|||
|
<title>{% if page.title %}{{ page.title }} – {% endif %}{{ site.name }} – {{ site.description }}</title>
|
|||
|
{% seo %}
|
|||
|
{% include meta.html %}
|
|||
|
|
|||
|
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/style.css" />
|
|||
|
<link rel="alternate" type="application/rss+xml" title="{{ site.name }} - {{ site.description }}" href="{{ site.baseurl }}/feed.xml" />
|
|||
|
<link rel="canonical" href="{{ site.url }}{{ page.url }}" />
|
|||
|
|
|||
|
<meta name="theme-color" content="#673AAC">
|
|||
|
<script type="text/javascript">
|
|||
|
var host = "www.amitmerchant.com";
|
|||
|
if ((host == window.location.host) && (window.location.protocol != "https:"))
|
|||
|
window.location.protocol = "https";
|
|||
|
</script>
|
|||
|
</head>
|
|||
|
|
|||
|
<body>
|
|||
|
<div id="bar"></div>
|
|||
|
<div class="wrapper-masthead">
|
|||
|
<div class="container">
|
|||
|
<header class="masthead clearfix">
|
|||
|
<a href="{{ site.baseurl }}/" class="site-avatar"><img src="{{ site.avatar }}" /></a>
|
|||
|
|
|||
|
<div class="site-info">
|
|||
|
<h1 class="site-name"><a href="{{ site.baseurl }}/">{{ site.name }}</a></h1>
|
|||
|
<p class="site-description">{{ site.description }}</p>
|
|||
|
</div>
|
|||
|
|
|||
|
<nav>
|
|||
|
<a href="{{ site.baseurl }}/">Home</a>
|
|||
|
<a href="{{ site.baseurl }}/about">About</a>
|
|||
|
</nav>
|
|||
|
</header>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
|
|||
|
<div id="main" role="main" class="container">
|
|||
|
{{ content }}
|
|||
|
</div>
|
|||
|
|
|||
|
<div class="wrapper-footer">
|
|||
|
<div class="container">
|
|||
|
<footer class="footer">
|
|||
|
{% include svg-icons.html %}
|
|||
|
</footer>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
|
|||
|
{% include analytics.html %}
|
|||
|
</body>
|
|||
|
</html>
|