Use Minima's default head.html partial, since it can load our stylesheet if we name it correctly
This commit is contained in:
parent
44176dc8c3
commit
73f6fca9fd
2 changed files with 0 additions and 20 deletions
|
@ -1,20 +0,0 @@
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
|
|
||||||
<title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
|
|
||||||
<meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
|
|
||||||
|
|
||||||
{% assign full_base_url = '' %}
|
|
||||||
{% if jekyll.environment == 'production' %}
|
|
||||||
{% assign full_base_url = site.url | append: site.baseurl %}
|
|
||||||
{% endif %}
|
|
||||||
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: full_base_url }}">
|
|
||||||
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: full_base_url }}">
|
|
||||||
<link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | prepend: full_base_url }}">
|
|
||||||
|
|
||||||
{% if jekyll.environment == 'production' and site.google_analytics %}
|
|
||||||
{% include google-analytics.html %}
|
|
||||||
{% endif %}
|
|
||||||
</head>
|
|
Loading…
Reference in a new issue