diff --git a/_config.yml b/_config.yml index b267d4b..3157c9c 100644 --- a/_config.yml +++ b/_config.yml @@ -33,8 +33,8 @@ excerpt_separator: # Social Links rss: rss -twitter_username: digitaladapt -#github_username: digitaladapt +#twitter_username: digitaladapt +github_username: digitaladapt #bitbucket_username: digitaladapt # "Copy ID" from user menu, may need to enable developer mode to see option #discord_id_number: "570971366833127425" @@ -55,6 +55,11 @@ twitter_username: digitaladapt # - username: digitaladapt # instance: example.com +# custom additions to head/body +# for example, this style will put the page heading on top of the banner image. +#custom_head_html: '' +#custom_body_html: '' + # Build Settings destination: public plugins: diff --git a/_includes/head.html b/_includes/head.html index bf0d92b..e5d66cb 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -24,3 +24,7 @@ {%- if site.matomo_url -%} {%- include matomo.html -%} {%- endif -%} + +{%- if site.custom_head_html -%} + {{ site.custom_head_html }} +{%- endif -%} diff --git a/_includes/scripts.html b/_includes/scripts.html index 57cf275..6f07b40 100644 --- a/_includes/scripts.html +++ b/_includes/scripts.html @@ -8,3 +8,7 @@ + +{%- if site.custom_body_html -%} + {{ site.custom_body_html }} +{%- endif -%}