Push Jekyll site files into a subdirectory to avoid confusing them with actual dots script files

This commit is contained in:
Danielle McLean 2020-06-18 12:00:16 +10:00
parent b9d9939c7f
commit 0207b7da11
Signed by: 00dani
GPG key ID: 9DDE1EDE01E3A605
12 changed files with 5 additions and 9 deletions

20
site/_includes/head.html Normal file
View file

@ -0,0 +1,20 @@
<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>