mirror of
https://github.com/13hannes11/hugo-coder-timeline.git
synced 2024-09-04 00:50:58 +02:00
And notice shortcodes (#537)
* Added information panel shortcodes (#437) * Added information panel shortcodes * Fixed dark mixin * Moved mixin location to correct location Co-authored-by: Luiz F. A. de Prá <luizdepra@users.noreply.github.com> * Fix SCSS styling * Update generated files * Fix notice HTML * Fix Makefile * Rename JS file * Adsd emoji support for lang selectors * Fix notices and other things * Fix JS on template * Update example content * Update images * Update generated files * Fix netlify preview * Fix netlify preview build * Fix netlify theme path Co-authored-by: Jian Liew <jianloongliew@gmail.com>
This commit is contained in:
committed by
GitHub
parent
32ffc536aa
commit
ed1c854df2
@@ -7,7 +7,9 @@ paginate = 20
|
||||
pygmentsStyle = "b2"
|
||||
pygmentsCodeFences = true
|
||||
pygmentsCodeFencesGuessSyntax = true
|
||||
disqusShortname = "yourdiscussshortname"
|
||||
enableEmoji = true
|
||||
# Enable Disqus comments
|
||||
# disqusShortname = "yourdiscussshortname"
|
||||
|
||||
[params]
|
||||
author = "John Doe"
|
||||
@@ -22,8 +24,9 @@ hideFooter = false
|
||||
hideCredits = false
|
||||
hideCopyright = false
|
||||
since = 2019
|
||||
# Git Commit in Footer, uncomment the line below to enable it.
|
||||
# Git Commit in Footer, uncomment the line below to enable it
|
||||
commit = "https://github.com/luizdepra/hugo-coder/tree/"
|
||||
# Right To Left, shift content direction for languagues such as Arabic
|
||||
rtl = false
|
||||
# Specify light/dark colorscheme
|
||||
# Supported values:
|
||||
@@ -36,7 +39,7 @@ hideColorSchemeToggle = false
|
||||
# Series see also post count
|
||||
maxSeeAlsoItems = 5
|
||||
# Enable Twemoji
|
||||
enableTwemoji = true
|
||||
enableTwemoji = false
|
||||
# Custom CSS
|
||||
customCSS = []
|
||||
# Custom SCSS
|
||||
@@ -45,35 +48,31 @@ customSCSS = []
|
||||
customJS = []
|
||||
|
||||
# If you want to use fathom(https://usefathom.com) for analytics, add this section
|
||||
[params.fathomAnalytics]
|
||||
siteID = "ABCDE"
|
||||
# Default value is cdn.usefathom.com, overwrite this if you are self-hosting
|
||||
serverURL = "analytics.example.com"
|
||||
# [params.fathomAnalytics]
|
||||
# siteID = "ABCDE"
|
||||
# serverURL = "analytics.example.com" # Default value is cdn.usefathom.com, overwrite this if you are self-hosting
|
||||
|
||||
# If you want to use plausible(https://plausible.io) for analytics, add this section
|
||||
[params.plausibleAnalytics]
|
||||
domain = "example.com"
|
||||
# Default value is plausible.io, overwrite this if you are self-hosting or using a custom domain
|
||||
serverURL = "analytics.example.com"
|
||||
# [params.plausibleAnalytics]
|
||||
# domain = "example.com"
|
||||
# serverURL = "analytics.example.com" # Default value is plausible.io, overwrite this if you are self-hosting or using a custom domain
|
||||
|
||||
# If you want to use goatcounter(https://goatcounter.com) for analytics, add this section
|
||||
[params.goatCounter]
|
||||
code = "code"
|
||||
# [params.goatCounter]
|
||||
# code = "code"
|
||||
|
||||
# If you want to use Cloudflare Web Analytics(https://cloudflare.com) for analytics, add this section
|
||||
[params.cloudflare]
|
||||
token = "token"
|
||||
# [params.cloudflare]
|
||||
# token = "token"
|
||||
|
||||
# If you want to use Matomo(https://matomo.org) for analytics, add this section
|
||||
[params.matomo]
|
||||
# Default value is "1", overwrite this if you are cloud-hosting
|
||||
siteID = "ABCDE"
|
||||
# For cloud-hosting, use provided URL, e.g. example.matomo.cloud
|
||||
serverURL = "analytics.example.com"
|
||||
# [params.matomo]
|
||||
# siteID = "ABCDE" # Default value is "1", overwrite this if you are cloud-hosting
|
||||
# serverURL = "analytics.example.com" # For cloud-hosting, use provided URL, e.g. example.matomo.cloud
|
||||
|
||||
# If you want to use Google Tag Manager(https://analytics.google.com/) for analytics, add this section
|
||||
[params.googleTagManager]
|
||||
id = "gid"
|
||||
# [params.googleTagManager]
|
||||
# id = "gid"
|
||||
|
||||
# If you want to implement a Content-Security-Policy, add this section
|
||||
[params.csp]
|
||||
@@ -137,7 +136,7 @@ rel = "alternate"
|
||||
type = "application/rss+xml"
|
||||
|
||||
[languages.en]
|
||||
languageName = "English"
|
||||
languageName = ":uk:"
|
||||
|
||||
[[languages.en.menu.main]]
|
||||
name = "About"
|
||||
@@ -152,7 +151,7 @@ url = "posts/"
|
||||
[[languages.en.menu.main]]
|
||||
name = "Projects"
|
||||
weight = 3
|
||||
url = "https://luizdepra.dev"
|
||||
url = "projects/"
|
||||
|
||||
[[languages.en.menu.main]]
|
||||
name = "Contact me"
|
||||
@@ -160,7 +159,7 @@ weight = 5
|
||||
url = "contact/"
|
||||
|
||||
[languages.pt-br]
|
||||
languageName = "Português"
|
||||
languageName = ":brazil:"
|
||||
title = "João Ninguém"
|
||||
|
||||
[languages.pt-br.params]
|
||||
@@ -183,7 +182,7 @@ url = "posts/"
|
||||
[[languages.pt-br.menu.main]]
|
||||
name = "Projetos"
|
||||
weight = 3
|
||||
url = "https://luizdepra.dev"
|
||||
url = "projects/"
|
||||
|
||||
[[languages.pt-br.menu.main]]
|
||||
name = "Contato"
|
||||
|
||||
Reference in New Issue
Block a user