From e804a8f0ccb6684f3ad18639431c768a1f5bc9af Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Tue, 4 Oct 2016 23:53:54 +1100 Subject: [PATCH] Point at the correct domain in production --- _includes/head.html | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 _includes/head.html diff --git a/_includes/head.html b/_includes/head.html new file mode 100644 index 0000000..8aa1250 --- /dev/null +++ b/_includes/head.html @@ -0,0 +1,20 @@ + + + + + + {% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %} + + + {% assign full_base_url = '' %} + {% if jekyll.environment == 'production' %} + {% assign full_base_url = site.url | append: site.baseurl %} + {% endif %} + + + + + {% if jekyll.environment == 'production' and site.google_analytics %} + {% include google-analytics.html %} + {% endif %} +