mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-11 23:55:16 +01:00
109 lines
4.0 KiB
HTML
109 lines
4.0 KiB
HTML
<!DOCTYPE html>
|
|
<!--
|
|
___ ___
|
|
/__/\ /__/|
|
|
| |::\ | |:|
|
|
| |:|:\ | |:|
|
|
__|__|:|\:\ __| |:|
|
|
/__/::::| \:\ /__/\_|:|____
|
|
\ \:\~~\__\/ \ \:\/:::::/
|
|
\ \:\ \ \::/~~~~
|
|
\ \:\ \ \:\
|
|
\ \:\ \ \:\
|
|
\__\/ \__\/
|
|
|
|
YOU EARNED THE GEEK ACHIEVEMENT
|
|
FOR LOOKING AT MY SOURCE
|
|
|
|
But because of all the minimizing and caching
|
|
going on you better check out the code on
|
|
github
|
|
_____________________________________________
|
|
|
|
https://github.com/kremalicious/kremalicious3
|
|
|
|
_____________________________________________
|
|
-->
|
|
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
<title>
|
|
{% if paginator.previous_page %}
|
|
Page {{ paginator.page }} ¦ {{ site.name }}
|
|
{% elsif page.title %}
|
|
{{ page.title }} ¦ {{ site.name }}
|
|
{% else %}
|
|
{{ site.name }} ¦ {{ site.description }}
|
|
{% endif %}
|
|
</title>
|
|
|
|
{% if page.description %}
|
|
<meta name="description" content="{{ page.description }}">
|
|
{% elsif page.front_page %}
|
|
<meta name="description" content="{{ site.description }}">
|
|
{% else %}
|
|
<meta name="description" content="{{ page.excerpt | strip_html | strip_newlines }}" />
|
|
{% endif %}
|
|
<meta name="author" content="{% if page.author %}{{ page.author }}{% else %}{{ site.author.name }}{% endif %}">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="HandheldFriendly" content="True">
|
|
<meta name="MobileOptimized" content="320">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta http-equiv="cleartype" content="on">
|
|
|
|
<link rel="stylesheet" href="/assets/css/kremalicious3.min.css">
|
|
{% if page.style %}
|
|
<link rel="stylesheet" href="/assets/css/{{ page.style }}">
|
|
{% endif %}
|
|
|
|
<!-- TypeKit -->
|
|
<script src="//use.typekit.com/msu4qap.js"></script>
|
|
<script>try{Typekit.load();}catch(e){}</script>
|
|
|
|
<!-- Picturefill -->
|
|
<script src="/assets/js/picturefill.min.js" defer></script>
|
|
|
|
<!-- Canonical URL -->
|
|
<link rel="canonical" href="{{ site.url}}{{ page.url | replace:'index.html','' }}">
|
|
|
|
<!-- Atom feed -->
|
|
<link href="{{ site.url }}/feed/" rel="alternate" type="application/atom+xml" title="{{ site.name }} posts feed" />
|
|
|
|
<!-- Apple -->
|
|
<meta name="apple-mobile-web-app-title" content="kremalicious">
|
|
|
|
<!-- Touch Icons -->
|
|
<!-- <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/apple-touch-icon-152x152-precomposed.png"> -->
|
|
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/apple-touch-icon-144x144-precomposed.png">
|
|
<!-- <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/apple-touch-icon-120x120-precomposed.png"> -->
|
|
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/apple-touch-icon-114x114-precomposed.png">
|
|
<!-- <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/apple-touch-icon-76x76-precomposed.png"> -->
|
|
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/apple-touch-icon-72x72-precomposed.png">
|
|
<link rel="apple-touch-icon-precomposed" href="/apple-touch-icon-precomposed.png">
|
|
<!-- <link rel="shortcut icon" sizes="196x196" href="/touch-icon-196x196.png"> -->
|
|
<link rel="shortcut icon" href="/apple-touch-icon-precomposed.png">
|
|
<link rel="icon" href="/favicon.ico" sizes="16x16">
|
|
|
|
<!-- Windows 8 Metro Tile Image -->
|
|
<meta name="msapplication-TileImage" content="{{ site.url }}/metro-tile.png"/>
|
|
<meta name="msapplication-TileColor" content="#015565"/>
|
|
|
|
{% if paginator %}
|
|
<script>
|
|
var total = {{ paginator.total_pages }};
|
|
</script>
|
|
{% endif %}
|
|
|
|
<!-- OpenGraph -->
|
|
{% include opengraph.html %}
|
|
|
|
<!-- Twitter Cards -->
|
|
{% include twittercards.html %}
|
|
|
|
<!-- Google Authorship -->
|
|
<link href="https://plus.google.com/+MatthiasKretschmann" rel="author"/>
|
|
|
|
</head>
|