-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhead.html
30 lines (30 loc) · 1.16 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
26
27
28
29
30
<head>
{%- if include.homepage -%}
<title>{{ page.title }}</title>
{%- else -%}
{%- if page.section -%}
<title>{{ page.title }} - {{ page.section }} - Open Rails</title>
{%- else -%}
<title>{{ page.title }} - Open Rails</title>
{%- endif -%}
{%- endif -%}
{%- seo title=false -%}
{%- feed_meta -%}
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
{%- if jekyll.environment == 'production' and site.google_analytics -%}
{%- include google-analytics.html -%}
{%- endif -%}
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" type="text/css">
<link rel="stylesheet" href="{{ "/assets/template.css" | relative_url }}">
{%- if include.homepage -%}
<link rel="stylesheet" href="{{ "/assets/homepage.css" | relative_url }}">
{%- endif -%}
{%- if page.use_iframe -%}
<link rel="stylesheet" href="{{ "/assets/iframe.css" | relative_url }}" >
{%- endif -%}
{%- if page.content_explorer -%}
<link rel="stylesheet" href="{{ "/assets/content-explorer.css" | relative_url }}" >
{%- endif -%}
</head>