diff options
Diffstat (limited to 'source/_includes/head.html')
-rw-r--r-- | source/_includes/head.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/source/_includes/head.html b/source/_includes/head.html new file mode 100644 index 0000000..3b7a605 --- /dev/null +++ b/source/_includes/head.html @@ -0,0 +1,19 @@ +<!DOCTYPE HTML> +<html> +<head> + <meta charset="utf-8"> + <title>{% if page.title %}{{ page.title }} - {% endif %}{{ site.title }}</title> + <meta name="author" content="{{ site.author }}"> + + {% capture description %}{% if page.description %}{{ page.description }}{% else %}{{ content | raw_content }}{% endif %}{% endcapture %} + <meta name="description" content="{{ description | strip_html | condense_spaces | truncate:150 }}"> + {% if page.keywords %}<meta name="keywords" content="{{ page.keywords }}">{% endif %} + + <link href="{{ site.subscribe_rss }}" rel="alternate" title="{{site.title}}" type="application/atom+xml"> + <link rel="canonical" href="{{ canonical }}"> + <link href="{{ root_url }}/favicon.png" rel="icon"> + <link href="{{ root_url }}/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css"> + <script src="{{ root_url }}/javascripts/jquery.min.js"></script> + {% include custom/head.html %} + {% include google_analytics.html %} +</head>
\ No newline at end of file |