added support for customization.

This commit is contained in:
2023-08-03 12:51:57 +00:00
parent dc95580312
commit d8cfc220d0
3 changed files with 15 additions and 2 deletions
+7 -2
View File
@@ -33,8 +33,8 @@ excerpt_separator: <!--more-->
# 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: '<style> header.major h1 { margin-top: -3em !important; position: relative; } </style>'
#custom_body_html: '<script> console.log("you can add stuff here."); </script>'
# Build Settings
destination: public
plugins:
+4
View File
@@ -23,3 +23,7 @@
{%- if site.matomo_url -%}
{%- include matomo.html -%}
{%- endif -%}
{%- if site.custom_head_html -%}
{{ site.custom_head_html }}
{%- endif -%}
+4
View File
@@ -8,3 +8,7 @@
<script defer src="{{ '/assets/js/brands.min.js' | relative_url }}"></script>
<script defer src="{{ '/assets/js/solid.min.js' | relative_url }}"></script>
<script defer src="{{ '/assets/js/fontawesome.min.js' | relative_url }}"></script>
{%- if site.custom_body_html -%}
{{ site.custom_body_html }}
{%- endif -%}