Removed social icons for now and added CloudFlare analytics back
This commit is contained in:
parent
568c5d5379
commit
879ea7791b
26
config.toml
26
config.toml
@ -52,25 +52,25 @@ use = "katex" # options: "katex", "mathjax". default is "katex".
|
||||
|
||||
## Social links
|
||||
# use 'fab' when brand icons, use 'fas' when standard solid icons.
|
||||
[[params.socialIcons]]
|
||||
icon = "fab fa-linkedin"
|
||||
title = "Linkedin"
|
||||
url = "https://de.linkedin.com/"
|
||||
#[[params.socialIcons]]
|
||||
#icon = "fab fa-linkedin"
|
||||
#title = "Linkedin"
|
||||
#url = "https://de.linkedin.com/"
|
||||
|
||||
[[params.socialIcons]]
|
||||
icon = "fab fa-github"
|
||||
title = "GitHub"
|
||||
url = "https://github.com/lxndrblz/anatole/"
|
||||
url = "https://github.com/glennrice/"
|
||||
|
||||
[[params.socialIcons]]
|
||||
icon = "fab fa-instagram"
|
||||
title = "instagram"
|
||||
url = "https://www.instagram.com/"
|
||||
#[[params.socialIcons]]
|
||||
#icon = "fab fa-instagram"
|
||||
#title = "instagram"
|
||||
#url = "https://www.instagram.com/"
|
||||
|
||||
[[params.socialIcons]]
|
||||
icon = "fas fa-envelope"
|
||||
title = "e-mail"
|
||||
url = "mailto:mail@alexbilz.com"
|
||||
#[[params.socialIcons]]
|
||||
#icon = "fas fa-envelope"
|
||||
#title = "e-mail"
|
||||
#url = "mailto:mail@alexbilz.com"
|
||||
|
||||
## Menu items
|
||||
|
||||
|
18
layouts/partials/footer.html
Normal file
18
layouts/partials/footer.html
Normal file
@ -0,0 +1,18 @@
|
||||
{{ $js := resources.Get "js/jquery.js" }}
|
||||
{{ $secureJS := $js | resources.Minify | resources.Fingerprint }}
|
||||
<script type="text/javascript"
|
||||
src="{{ $secureJS.Permalink }}"
|
||||
integrity="{{ $secureJS.Data.Integrity }}"
|
||||
crossorigin="anonymous"></script>
|
||||
{{ $migrate := resources.Get "js/jquery-migrate.js" }}
|
||||
{{ $appear := resources.Get "js/jquery-appear.js" }}
|
||||
{{ $js := slice $migrate $appear | resources.Concat "js/bundle.js" }}
|
||||
{{ $secureJS := $js | resources.Minify | resources.Fingerprint }}
|
||||
<script type="text/javascript"
|
||||
src="{{ $secureJS.Permalink }}"
|
||||
integrity="{{ $secureJS.Data.Integrity }}"
|
||||
crossorigin="anonymous"></script>
|
||||
<script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "7b36ad5d27814467a62fe8eb6bbad21b"}'></script>
|
||||
{{- partial "medium-zoom.html" . -}}
|
||||
{{- partial "math.html" . -}}
|
||||
{{- template "_internal/google_analytics_async.html" . -}}
|
Loading…
Reference in New Issue
Block a user