forked from lawrennd/proceedings
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhead.html
25 lines (21 loc) · 1.47 KB
/
head.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
{%-capture description-%}
<p>This is the home page of {{ site.data.conference.short_name }} {{ site.data.conference.year }}.</p>
{%-include conference_description.html-%}
{%-endcapture-%}
<!-- Title, description and favicon -->
<title>{%-if page.title-%}{{ page.title }}{%-endif-%} | {{ site.title }}</title>
<meta name="description" content="{%-if page.excerpt-%}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{%-else-%}{{ description | strip_html | strip_newlines | truncate: 160}}{%-endif-%}">
<link rel="stylesheet" type="text/css" href="{{ site.style | prepend: "/assets/css/" | append: '.css' | relative_url}}" />
<link rel="shortcut icon" href="{{ site.style | prepend: '/assets/images/favicon-' | append: '.ico' | relative_url }}" type="image/x-icon">
<link rel="icon" href="{{ site.style | prepend: '/assets/images/favicon-' | append: '.ico' | relative_url }}" type="image/x-icon">
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ '/assets/rss/feed.xml' | relative_url }}" />
{%-include paper_twitter_meta.html-%}
{%-include paper_open_graph_meta.html-%}
{%-include google_tracking_code.html-%}
{%-include mathjax_code.html-%}
</head>