2013-11-23 21:53:52 +01:00
|
|
|
<!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">
|
2013-11-21 21:15:26 +01:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
|
|
|
<title>
|
2013-11-21 22:33:40 +01:00
|
|
|
|
|
|
|
{% if paginator.previous_page %}
|
2013-11-21 21:15:26 +01:00
|
|
|
Page {{ paginator.page }} ¦ {{ page.title }}
|
2013-11-21 22:33:40 +01:00
|
|
|
{% elsif page.path contains '_posts' %}
|
2013-11-21 21:15:26 +01:00
|
|
|
{{ page.title }} ¦ {{ site.name }}
|
2013-11-21 22:33:40 +01:00
|
|
|
{% else %}
|
|
|
|
{{ page.title }} ¦ {{ site.description }}
|
2013-11-21 21:15:26 +01:00
|
|
|
{% endif %}
|
2013-11-21 22:33:40 +01:00
|
|
|
|
2013-11-21 21:15:26 +01:00
|
|
|
</title>
|
|
|
|
|
|
|
|
{% if page.description %}
|
|
|
|
<meta name="description" content="{{ page.description }}">
|
|
|
|
{% else %}
|
|
|
|
<meta name="description" content="{{ site.description }}" />
|
|
|
|
{% endif %}
|
2013-12-01 14:57:38 +01:00
|
|
|
<meta name="author" content="{{ site.author }}">
|
2013-11-21 21:15:26 +01:00
|
|
|
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
|
|
<meta name="HandheldFriendly" content="True">
|
|
|
|
<meta name="MobileOptimized" content="320">
|
2013-11-22 00:35:07 +01:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2013-11-21 21:15:26 +01:00
|
|
|
<meta http-equiv="cleartype" content="on">
|
2013-12-01 14:57:38 +01:00
|
|
|
|
2013-11-21 21:15:26 +01:00
|
|
|
<link rel="stylesheet" href="/assets/css/kremalicious3.min.css">
|
|
|
|
{% if page.style %}
|
|
|
|
<link rel="stylesheet" href="/assets/css/{{ page.style }}">
|
|
|
|
{% endif %}
|
|
|
|
|
2013-12-11 22:56:01 +01:00
|
|
|
<!-- TypeKit -->
|
2013-11-21 21:15:26 +01:00
|
|
|
<script data-cfasync="false" src="//use.typekit.com/msu4qap.js"></script>
|
|
|
|
<script data-cfasync="false">try{Typekit.load();}catch(e){}</script>
|
2013-12-11 22:56:01 +01:00
|
|
|
|
|
|
|
<!-- Picturefill -->
|
|
|
|
<script src="/assets/js/picturefill.min.js" async></script>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Canonical URL -->
|
|
|
|
{% capture canonical %}{{ site.url }}{% if site.permalink contains '.html' %}{{ page.url }}{% else %}{{ page.url | remove:'index.html' }}{% endif %}{% endcapture %}
|
|
|
|
<link rel="canonical" href="{{ canonical }}">
|
|
|
|
|
|
|
|
<link rel="alternate" href="{{ site.url }}/feed/" type="application/rss+xml" title="Posts Feed"/>
|
|
|
|
|
|
|
|
<!-- Windows 8 Metro Tile Image -->
|
|
|
|
<meta name="msapplication-TileImage" content="{{ site.url }}/metro-tile.png"/>
|
|
|
|
<meta name="msapplication-TileColor" content="#015565"/>
|
2013-11-21 21:15:26 +01:00
|
|
|
|
2013-11-23 21:53:52 +01:00
|
|
|
{% if paginator %}
|
|
|
|
<script>
|
|
|
|
var total = {{ paginator.total_pages }};
|
|
|
|
</script>
|
|
|
|
{% endif %}
|
2013-12-01 14:57:38 +01:00
|
|
|
|
2013-11-21 21:15:26 +01:00
|
|
|
<!-- Twitter Cards -->
|
|
|
|
<meta name="twitter:card" content="summary">
|
|
|
|
<meta name="twitter:site" content="@kremaliciouscom">
|
|
|
|
<meta name="twitter:creator" content="@kremalicious">
|
|
|
|
{% if page.title %}
|
|
|
|
<meta name="twitter:title" content="{{ page.title }}">
|
|
|
|
{% else %}
|
|
|
|
<meta name="twitter:title" content="{{ site.title }}">
|
|
|
|
{% endif %}
|
|
|
|
{% if page.url %}
|
|
|
|
<meta name="twitter:url" content="{{ site.url }}{{ page.url }}">
|
|
|
|
{% endif %}
|
|
|
|
{% if page.description %}
|
|
|
|
<meta name="twitter:description" content="{{ page.description }}">
|
|
|
|
{% else %}
|
|
|
|
<meta name="twitter:description" content="{{ site.description }}">
|
|
|
|
{% endif %}
|
|
|
|
{% if page.image %}
|
|
|
|
<meta name="twitter:image:src" content="{{ site.url }}/media/{{ page.image }}">
|
|
|
|
{% else %}
|
2013-12-11 22:56:01 +01:00
|
|
|
<meta name="twitter:image:src" content="{{ site.url }}/kremalicious1024.png">
|
2013-11-21 21:15:26 +01:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
</head>
|