diff options
author | Karl Hallsby <karl@hallsby.com> | 2020-09-27 17:45:13 -0500 |
---|---|---|
committer | Karl Hallsby <karl@hallsby.com> | 2020-09-27 17:45:13 -0500 |
commit | c6bf5f7c895287d2028f6024265913b59784a154 (patch) | |
tree | 3a298df17d9472a679411dd81ea00a1239652477 /_includes/head.html | |
parent | 50dafcddc0392b99b228824274b1b97d0e72e423 (diff) |
Bring all of jekyll-text-theme _includes into site
Diffstat (limited to '_includes/head.html')
-rw-r--r-- | _includes/head.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/_includes/head.html b/_includes/head.html new file mode 100644 index 0000000..35a3b19 --- /dev/null +++ b/_includes/head.html @@ -0,0 +1,24 @@ +<meta charset="utf-8"> +<meta http-equiv="X-UA-Compatible" content="IE=edge"> +<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> + +{%- include snippets/get-article-title.html article=page -%} +<title>{%- if __return -%}{{ __return }} - {{ site.title }}{%- else -%}{{ site.title }}{%- endif -%}</title> + +<meta name="description" content="{%- if page.excerpt -%}{{ page.excerpt | strip_html | strip_newlines | strip | truncate: 160 }}{%- else -%}{{ site.description }}{%- endif -%}"> +<link rel="canonical" href="{%- include snippets/page-url.html -%}"> + +{%- assign _paths_rss = site.paths.rss | default: site.data.variables.default.paths.rss -%} +{%- include snippets/get-nav-url.html path=_paths_rss -%} +<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ __return }}"> + +{%- include head/favicon.html -%} + +{%- include snippets/prepend-baseurl.html path='/assets/css/main.css' -%} +<link rel="stylesheet" href="{{ __return }}"> + +{%- include snippets/get-sources.html -%} +{%- assign _sources = __return -%} +<link rel="stylesheet" href="{{ _sources.font_awesome }}" > + +{%- include head/custom.html -%} |