From 374690bb2173103b6b11d50e370cc97ff0520853 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=20Marc=C3=A9n?= Date: Thu, 26 Aug 2021 18:41:36 +0200 Subject: [PATCH] feat: support for custom head content (#59) --- _includes/custom-head.html | 6 ++++++ _includes/head.html | 1 + 2 files changed, 7 insertions(+) create mode 100644 _includes/custom-head.html diff --git a/_includes/custom-head.html b/_includes/custom-head.html new file mode 100644 index 0000000..dfbd09a --- /dev/null +++ b/_includes/custom-head.html @@ -0,0 +1,6 @@ +{% comment %} + Placeholder to allow defining custom head, in principle, you can add anything here, e.g. favicons: + + 1. Head over to https://realfavicongenerator.net/ to add your own favicons. + 2. Customize default _includes/custom-head.html in your source directory and insert the given code snippet. +{% endcomment %} \ No newline at end of file diff --git a/_includes/head.html b/_includes/head.html index 66cca12..f0dd9c2 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -14,4 +14,5 @@ {%- include extensions/google-analytics.html -%} {%- endif -%} {%- include extensions/code-highlight.html -%} + {%- include custom-head.html -%}