|
| 1 | +<!DOCTYPE HTML> |
| 2 | +{% if site.lang %} |
| 3 | +<html lang="{{ site.lang }}"> |
| 4 | +{% else %} |
| 5 | +<html> |
| 6 | +{% endif %} |
| 7 | +<head> |
| 8 | + <meta charset="utf-8"> |
| 9 | + <title>{% if page.title %}{{ page.title }} - {% endif %}{{ site.title }}</title> |
| 10 | + <meta name="author" content="{{ site.author }}"> |
| 11 | + |
| 12 | + {% capture description %} |
| 13 | + {% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %} |
| 14 | + {% endcapture %} |
| 15 | + <meta name="description" content="{{ description }}"> |
| 16 | + {% if page.keywords %}<meta name="keywords" content="{{ page.keywords }}">{% endif %} |
| 17 | + |
| 18 | + <!-- http://t.co/dKP3o1e --> |
| 19 | + <meta name="HandheldFriendly" content="True"> |
| 20 | + <meta name="MobileOptimized" content="320"> |
| 21 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 22 | + |
| 23 | + <link href="{{ site.subscribe_rss }}" rel="alternate" title="{{site.title}}" type="application/atom+xml"> |
| 24 | + {% capture canonical %}{{ site.url }}{% if site.permalink contains '.html' %}{{ page.url }}{% else %}{{ page.url | remove:'index.html' }}{% endif %}{% endcapture %} |
| 25 | + <link rel="canonical" href="{{ canonical }}"> |
| 26 | + <link href="/favicon.png" rel="shortcut icon"> |
| 27 | + <link href="/css/screen.css" media="screen, projection" rel="stylesheet" type="text/css"> |
| 28 | + <link href="/css/font-awesome.min.css" media="screen, projection" rel="stylesheet" type="text/css"> |
| 29 | + <!--[if lt IE 9]><script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]--> |
| 30 | + <link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,400,700' rel='stylesheet' type='text/css'> |
| 31 | + <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> |
| 32 | + <script src="/js/slash.js"></script> |
| 33 | + |
| 34 | + <!--Fonts from Google"s Web font directory at http://google.com/webfonts --> |
| 35 | + <link href='http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800' rel='stylesheet' type='text/css'> |
| 36 | + |
| 37 | + {% include google_analytics.html %} |
| 38 | +</head> |
0 commit comments