mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-11 23:55:16 +01:00
96 lines
3.1 KiB
HTML
96 lines
3.1 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 }} ¦ {{ page.title }}
|
|
{% elsif page.path contains '_posts' %}
|
|
{{ page.title }} ¦ {{ site.name }}
|
|
{% else %}
|
|
{{ page.title }} ¦ {{ site.description }}
|
|
{% endif %}
|
|
|
|
</title>
|
|
|
|
{% if page.description %}
|
|
<meta name="description" content="{{ page.description }}">
|
|
{% else %}
|
|
<meta name="description" content="{{ site.description }}" />
|
|
{% 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 %}
|
|
|
|
<script src="/assets/js/picturefill.min.js" async></script>
|
|
|
|
<script data-cfasync="false" src="//use.typekit.com/msu4qap.js"></script>
|
|
<script data-cfasync="false">try{Typekit.load();}catch(e){}</script>
|
|
|
|
{% if paginator %}
|
|
<script>
|
|
var total = {{ paginator.total_pages }};
|
|
</script>
|
|
{% endif %}
|
|
|
|
<link rel="canonical" href="{{ page.url }}" />
|
|
|
|
<!-- 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 %}
|
|
<!-- <meta name="twitter:image:src" content="{{ site.url }}/media/logo.png"> -->
|
|
{% endif %}
|
|
|
|
</head> |