added support for customization.
This commit is contained in:
+7
-2
@@ -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:
|
||||
|
||||
@@ -23,3 +23,7 @@
|
||||
{%- if site.matomo_url -%}
|
||||
{%- include matomo.html -%}
|
||||
{%- endif -%}
|
||||
|
||||
{%- if site.custom_head_html -%}
|
||||
{{ site.custom_head_html }}
|
||||
{%- endif -%}
|
||||
|
||||
@@ -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 -%}
|
||||
|
||||
Reference in New Issue
Block a user