first commit
This commit is contained in:
commit
92adaa14c9
13
.gitignore
vendored
Normal file
13
.gitignore
vendored
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# Generated files by hugo
|
||||||
|
/public/
|
||||||
|
/resources/_gen/
|
||||||
|
/assets/jsconfig.json
|
||||||
|
hugo_stats.json
|
||||||
|
|
||||||
|
# Executable may be added to repository
|
||||||
|
hugo.exe
|
||||||
|
hugo.darwin
|
||||||
|
hugo.linux
|
||||||
|
|
||||||
|
# Temporary lock file while building
|
||||||
|
/.hugo_build.lock
|
24
.woodpecker.yml
Normal file
24
.woodpecker.yml
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
pipeline:
|
||||||
|
version_check:
|
||||||
|
image: klakegg/hugo
|
||||||
|
commands:
|
||||||
|
- echo "Checking Hugo version."
|
||||||
|
- hugo version
|
||||||
|
- echo "current dir"
|
||||||
|
- pwd
|
||||||
|
- ls -la
|
||||||
|
build:
|
||||||
|
image: klakegg/hugo
|
||||||
|
commands:
|
||||||
|
- hugo
|
||||||
|
upload:
|
||||||
|
image: plugins/s3
|
||||||
|
settings:
|
||||||
|
bucket: mziesel-com
|
||||||
|
region: eu-central-1
|
||||||
|
access_key:
|
||||||
|
from_secret: aws_acces_key
|
||||||
|
secret_key:
|
||||||
|
from_secret: aws_secret_key
|
||||||
|
source: public/**/*
|
||||||
|
target: /public
|
6
archetypes/default.md
Normal file
6
archetypes/default.md
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
|
date: {{ .Date }}
|
||||||
|
draft: true
|
||||||
|
---
|
||||||
|
|
BIN
assets/img/Mans_Ziesel_Portrait.jpg
Normal file
BIN
assets/img/Mans_Ziesel_Portrait.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.3 MiB |
35
config/_default/config.toml
Normal file
35
config/_default/config.toml
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
# -- Site Configuration --
|
||||||
|
# Refer to the theme docs for more details about each of these parameters.
|
||||||
|
# https://blowfish.page/docs/getting-started/
|
||||||
|
|
||||||
|
theme = "blowfish"
|
||||||
|
baseURL = "https://mziesel.com/"
|
||||||
|
defaultContentLanguage = "nl"
|
||||||
|
|
||||||
|
# pluralizeListTitles = "true" # hugo function useful for non-english languages, find out more in https://gohugo.io/getting-started/configuration/#pluralizelisttitles
|
||||||
|
|
||||||
|
enableRobotsTXT = true
|
||||||
|
paginate = 10
|
||||||
|
summaryLength = 0
|
||||||
|
|
||||||
|
buildDrafts = false
|
||||||
|
buildFuture = false
|
||||||
|
|
||||||
|
# googleAnalytics = "G-XXXXXXXXX"
|
||||||
|
|
||||||
|
[imaging]
|
||||||
|
anchor = 'Center'
|
||||||
|
|
||||||
|
[taxonomies]
|
||||||
|
tag = "tags"
|
||||||
|
category = "categories"
|
||||||
|
author = "authors"
|
||||||
|
series = "series"
|
||||||
|
|
||||||
|
[sitemap]
|
||||||
|
changefreq = 'weekly'
|
||||||
|
filename = 'sitemap.xml'
|
||||||
|
priority = 0.5
|
||||||
|
|
||||||
|
[outputs]
|
||||||
|
home = ["HTML", "RSS", "JSON"]
|
63
config/_default/languages.en.toml
Normal file
63
config/_default/languages.en.toml
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
languageCode = "en"
|
||||||
|
languageName = "English"
|
||||||
|
displayName = "EN"
|
||||||
|
isoCode = "en"
|
||||||
|
weight = 1
|
||||||
|
rtl = false
|
||||||
|
|
||||||
|
title = "Blowfish"
|
||||||
|
# logo = "img/logo.png"
|
||||||
|
# description = "My awesome website"
|
||||||
|
# copyright = "Copy, _right?_ :thinking_face:"
|
||||||
|
|
||||||
|
dateFormat = "2 January 2006"
|
||||||
|
|
||||||
|
# [author]
|
||||||
|
# name = "Your name here"
|
||||||
|
# image = "img/blowfish_logo.png"
|
||||||
|
# headline = "I'm only human"
|
||||||
|
# bio = "A little bit about you"
|
||||||
|
# links = [
|
||||||
|
# { email = "mailto:hello@your_domain.com" },
|
||||||
|
# { link = "https://link-to-some-website.com/" },
|
||||||
|
# { amazon = "https://www.amazon.com/hz/wishlist/ls/wishlist-id" },
|
||||||
|
# { apple = "https://www.apple.com" },
|
||||||
|
# { blogger = "https://username.blogspot.com/" },
|
||||||
|
# { codepen = "https://codepen.io/username" },
|
||||||
|
# { dev = "https://dev.to/username" },
|
||||||
|
# { discord = "https://discord.gg/invitecode" },
|
||||||
|
# { dribbble = "https://dribbble.com/username" },
|
||||||
|
# { facebook = "https://facebook.com/username" },
|
||||||
|
# { flickr = "https://www.flickr.com/photos/username/" },
|
||||||
|
# { foursquare = "https://foursquare.com/username" },
|
||||||
|
# { github = "https://github.com/username" },
|
||||||
|
# { gitlab = "https://gitlab.com/username" },
|
||||||
|
# { google = "https://www.google.com/" },
|
||||||
|
# { hashnode = "https://username.hashnode.dev" },
|
||||||
|
# { instagram = "https://instagram.com/username" },
|
||||||
|
# { keybase = "https://keybase.io/username" },
|
||||||
|
# { kickstarter = "https://www.kickstarter.com/profile/username" },
|
||||||
|
# { lastfm = "https://lastfm.com/user/username" },
|
||||||
|
# { linkedin = "https://linkedin.com/in/username" },
|
||||||
|
# { mastodon = "https://mastodon.instance/@username" },
|
||||||
|
# { medium = "https://medium.com/username" },
|
||||||
|
# { microsoft = "https://www.microsoft.com/" },
|
||||||
|
# { orcid = "https://orcid.org/userid" },
|
||||||
|
# { patreon = "https://www.patreon.com/username" },
|
||||||
|
# { pinterest = "https://pinterest.com/username" },
|
||||||
|
# { reddit = "https://reddit.com/user/username" },
|
||||||
|
# { researchgate = "https://www.researchgate.net/profile/username" },
|
||||||
|
# { slack = "https://workspace.url/team/userid" },
|
||||||
|
# { snapchat = "https://snapchat.com/add/username" },
|
||||||
|
# { soundcloud = "https://soundcloud.com/username" },
|
||||||
|
# { stack-overflow = "https://stackoverflow.com/users/userid/username" },
|
||||||
|
# { steam = "https://steamcommunity.com/profiles/userid" },
|
||||||
|
# { telegram = "https://t.me/username" },
|
||||||
|
# { tiktok = "https://tiktok.com/@username" },
|
||||||
|
# { tumblr = "https://username.tumblr.com" },
|
||||||
|
# { twitch = "https://twitch.tv/username" },
|
||||||
|
# { twitter = "https://twitter.com/username" },
|
||||||
|
# { whatsapp = "https://wa.me/phone-number" },
|
||||||
|
# { youtube = "https://youtube.com/username" },
|
||||||
|
# { ko-fi = "https://ko-fi.com/username" },
|
||||||
|
# ]
|
63
config/_default/languages.nl.toml
Normal file
63
config/_default/languages.nl.toml
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
languageCode = "nl"
|
||||||
|
languageName = "Nederlands"
|
||||||
|
displayName = "NL"
|
||||||
|
isoCode = "nl"
|
||||||
|
weight = 1
|
||||||
|
rtl = false
|
||||||
|
|
||||||
|
title = "Mans Ziesel"
|
||||||
|
# logo = "img/blowfish_logo.png"
|
||||||
|
description = "My awesome website"
|
||||||
|
# copyright = "Copy, _right?_ :thinking_face:"
|
||||||
|
|
||||||
|
dateFormat = "2 January 2006"
|
||||||
|
|
||||||
|
[author]
|
||||||
|
name = "Mans Ziesel"
|
||||||
|
image = "img/Mans_Ziesel_Portrait.jpg"
|
||||||
|
headline = "ICT'er en student bij ROC van Twente"
|
||||||
|
bio = "A little bit about you"
|
||||||
|
links = [
|
||||||
|
{ email = "mailto:mans@mziesel.com" },
|
||||||
|
# { link = "https://link-to-some-website.com/" },
|
||||||
|
# { amazon = "https://www.amazon.com/hz/wishlist/ls/wishlist-id" },
|
||||||
|
# { apple = "https://www.apple.com" },
|
||||||
|
# { blogger = "https://username.blogspot.com/" },
|
||||||
|
# { codepen = "https://codepen.io/username" },
|
||||||
|
# { dev = "https://dev.to/username" },
|
||||||
|
# { discord = "https://discord.gg/invitecode" },
|
||||||
|
# { dribbble = "https://dribbble.com/username" },
|
||||||
|
# { facebook = "https://facebook.com/username" },
|
||||||
|
# { flickr = "https://www.flickr.com/photos/username/" },
|
||||||
|
# { foursquare = "https://foursquare.com/username" },
|
||||||
|
{ github = "https://github.com/mansziesel" },
|
||||||
|
# { gitlab = "https://gitlab.com/username" },
|
||||||
|
# { google = "https://www.google.com/" },
|
||||||
|
# { hashnode = "https://username.hashnode.dev" },
|
||||||
|
# { instagram = "https://instagram.com/username" },
|
||||||
|
# { keybase = "https://keybase.io/username" },
|
||||||
|
# { kickstarter = "https://www.kickstarter.com/profile/username" },
|
||||||
|
# { lastfm = "https://lastfm.com/user/username" },
|
||||||
|
{ linkedin = "https://linkedin.com/in/mansziesel" },
|
||||||
|
# { mastodon = "https://mastodon.instance/@username" },
|
||||||
|
# { medium = "https://medium.com/username" },
|
||||||
|
# { microsoft = "https://www.microsoft.com/" },
|
||||||
|
# { orcid = "https://orcid.org/userid" },
|
||||||
|
# { patreon = "https://www.patreon.com/username" },
|
||||||
|
# { pinterest = "https://pinterest.com/username" },
|
||||||
|
# { reddit = "https://reddit.com/user/username" },
|
||||||
|
# { researchgate = "https://www.researchgate.net/profile/username" },
|
||||||
|
# { slack = "https://workspace.url/team/userid" },
|
||||||
|
# { snapchat = "https://snapchat.com/add/username" },
|
||||||
|
# { soundcloud = "https://soundcloud.com/username" },
|
||||||
|
# { stack-overflow = "https://stackoverflow.com/users/userid/username" },
|
||||||
|
# { steam = "https://steamcommunity.com/profiles/userid" },
|
||||||
|
# { telegram = "https://t.me/username" },
|
||||||
|
# { tiktok = "https://tiktok.com/@username" },
|
||||||
|
# { tumblr = "https://username.tumblr.com" },
|
||||||
|
# { twitch = "https://twitch.tv/username" },
|
||||||
|
# { twitter = "https://twitter.com/username" },
|
||||||
|
# { whatsapp = "https://wa.me/phone-number" },
|
||||||
|
# { youtube = "https://youtube.com/username" },
|
||||||
|
# { ko-fi = "https://ko-fi.com/username" },
|
||||||
|
]
|
13
config/_default/markup.toml
Normal file
13
config/_default/markup.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# -- Markup --
|
||||||
|
# These settings are required for the theme to function.
|
||||||
|
|
||||||
|
[goldmark]
|
||||||
|
[goldmark.renderer]
|
||||||
|
unsafe = true
|
||||||
|
|
||||||
|
[highlight]
|
||||||
|
noClasses = false
|
||||||
|
|
||||||
|
[tableOfContents]
|
||||||
|
startLevel = 2
|
||||||
|
endLevel = 4
|
69
config/_default/menus.en.toml
Normal file
69
config/_default/menus.en.toml
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
# -- Main Menu --
|
||||||
|
# The main menu is displayed in the header at the top of the page.
|
||||||
|
# Acceptable parameters are name, pageRef, page, url, title, weight.
|
||||||
|
#
|
||||||
|
# The simplest menu configuration is to provide:
|
||||||
|
# name = The name to be displayed for this menu link
|
||||||
|
# pageRef = The identifier of the page or section to link to
|
||||||
|
#
|
||||||
|
# By default the menu is ordered alphabetically. This can be
|
||||||
|
# overridden by providing a weight value. The menu will then be
|
||||||
|
# ordered by weight from lowest to highest.
|
||||||
|
|
||||||
|
#[[main]]
|
||||||
|
# name = "Blog"
|
||||||
|
# pageRef = "posts"
|
||||||
|
# weight = 10
|
||||||
|
|
||||||
|
#[[main]]
|
||||||
|
# name = "Parent"
|
||||||
|
# weight = 20
|
||||||
|
|
||||||
|
#[[main]]
|
||||||
|
# name = "example sub-menu 1"
|
||||||
|
# parent = "Parent"
|
||||||
|
# pageRef = "posts"
|
||||||
|
# weight = 20
|
||||||
|
|
||||||
|
#[[main]]
|
||||||
|
# name = "example sub-menu 2"
|
||||||
|
# parent = "Parent"
|
||||||
|
# pageRef = "posts"
|
||||||
|
# weight = 20
|
||||||
|
|
||||||
|
#[[subnavigation]]
|
||||||
|
# name = "An interesting topic"
|
||||||
|
# pageRef = "tags/interesting-topic"
|
||||||
|
# weight = 10
|
||||||
|
|
||||||
|
#[[subnavigation]]
|
||||||
|
# name = "My Awesome Category"
|
||||||
|
# pre = "github"
|
||||||
|
# pageRef = "categories/awesome"
|
||||||
|
# weight = 20
|
||||||
|
|
||||||
|
#[[main]]
|
||||||
|
# name = "Categories"
|
||||||
|
# pageRef = "categories"
|
||||||
|
# weight = 20
|
||||||
|
|
||||||
|
#[[main]]
|
||||||
|
# name = "Tags"
|
||||||
|
# pageRef = "tags"
|
||||||
|
# weight = 30
|
||||||
|
|
||||||
|
|
||||||
|
# -- Footer Menu --
|
||||||
|
# The footer menu is displayed at the bottom of the page, just before
|
||||||
|
# the copyright notice. Configure as per the main menu above.
|
||||||
|
|
||||||
|
|
||||||
|
# [[footer]]
|
||||||
|
# name = "Tags"
|
||||||
|
# pageRef = "tags"
|
||||||
|
# weight = 10
|
||||||
|
|
||||||
|
# [[footer]]
|
||||||
|
# name = "Categories"
|
||||||
|
# pageRef = "categories"
|
||||||
|
# weight = 20
|
69
config/_default/menus.nl.toml
Normal file
69
config/_default/menus.nl.toml
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
# -- Main Menu --
|
||||||
|
# The main menu is displayed in the header at the top of the page.
|
||||||
|
# Acceptable parameters are name, pageRef, page, url, title, weight.
|
||||||
|
#
|
||||||
|
# The simplest menu configuration is to provide:
|
||||||
|
# name = The name to be displayed for this menu link
|
||||||
|
# pageRef = The identifier of the page or section to link to
|
||||||
|
#
|
||||||
|
# By default the menu is ordered alphabetically. This can be
|
||||||
|
# overridden by providing a weight value. The menu will then be
|
||||||
|
# ordered by weight from lowest to highest.
|
||||||
|
|
||||||
|
#[[main]]
|
||||||
|
# name = "Blog"
|
||||||
|
# pageRef = "posts"
|
||||||
|
# weight = 10
|
||||||
|
|
||||||
|
#[[main]]
|
||||||
|
# name = "Parent"
|
||||||
|
# weight = 20
|
||||||
|
|
||||||
|
#[[main]]
|
||||||
|
# name = "example sub-menu 1"
|
||||||
|
# parent = "Parent"
|
||||||
|
# pageRef = "posts"
|
||||||
|
# weight = 20
|
||||||
|
|
||||||
|
#[[main]]
|
||||||
|
# name = "example sub-menu 2"
|
||||||
|
# parent = "Parent"
|
||||||
|
# pageRef = "posts"
|
||||||
|
# weight = 20
|
||||||
|
|
||||||
|
#[[subnavigation]]
|
||||||
|
# name = "An interesting topic"
|
||||||
|
# pageRef = "tags/interesting-topic"
|
||||||
|
# weight = 10
|
||||||
|
|
||||||
|
#[[subnavigation]]
|
||||||
|
# name = "My Awesome Category"
|
||||||
|
# pre = "github"
|
||||||
|
# pageRef = "categories/awesome"
|
||||||
|
# weight = 20
|
||||||
|
|
||||||
|
#[[main]]
|
||||||
|
# name = "Categories"
|
||||||
|
# pageRef = "categories"
|
||||||
|
# weight = 20
|
||||||
|
|
||||||
|
#[[main]]
|
||||||
|
# name = "Tags"
|
||||||
|
# pageRef = "tags"
|
||||||
|
# weight = 30
|
||||||
|
|
||||||
|
|
||||||
|
# -- Footer Menu --
|
||||||
|
# The footer menu is displayed at the bottom of the page, just before
|
||||||
|
# the copyright notice. Configure as per the main menu above.
|
||||||
|
|
||||||
|
|
||||||
|
# [[footer]]
|
||||||
|
# name = "Tags"
|
||||||
|
# pageRef = "tags"
|
||||||
|
# weight = 10
|
||||||
|
|
||||||
|
# [[footer]]
|
||||||
|
# name = "Categories"
|
||||||
|
# pageRef = "categories"
|
||||||
|
# weight = 20
|
3
config/_default/module.toml
Normal file
3
config/_default/module.toml
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
[hugoVersion]
|
||||||
|
extended = false
|
||||||
|
min = "0.87.0"
|
138
config/_default/params.toml
Normal file
138
config/_default/params.toml
Normal file
@ -0,0 +1,138 @@
|
|||||||
|
# -- Theme Options --
|
||||||
|
# These options control how the theme functions and allow you to
|
||||||
|
# customise the display of your website.
|
||||||
|
#
|
||||||
|
# Refer to the theme docs for more details about each of these parameters.
|
||||||
|
# https://blowfish.page/docs/configuration/#theme-parameters
|
||||||
|
|
||||||
|
colorScheme = "blowfish"
|
||||||
|
defaultAppearance = "dark" # valid options: light or dark
|
||||||
|
autoSwitchAppearance = true
|
||||||
|
|
||||||
|
enableSearch = false
|
||||||
|
enableCodeCopy = true
|
||||||
|
|
||||||
|
# mainSections = ["section1", "section2"]
|
||||||
|
# robots = ""
|
||||||
|
|
||||||
|
disableImageOptimization = false
|
||||||
|
|
||||||
|
# defaultBackgroundImage = "IMAGE.jpg" # used as default for background images
|
||||||
|
|
||||||
|
# highlightCurrentMenuArea = true
|
||||||
|
smartTOC = true
|
||||||
|
smartTOCHideUnfocusedChildren = true
|
||||||
|
|
||||||
|
[header]
|
||||||
|
layout = "basic" # valid options: basic, fixed, fixed-fill, fixed-fill-blur
|
||||||
|
|
||||||
|
[footer]
|
||||||
|
showMenu = true
|
||||||
|
showCopyright = true
|
||||||
|
showThemeAttribution = true
|
||||||
|
showAppearanceSwitcher = false
|
||||||
|
showScrollToTop = true
|
||||||
|
|
||||||
|
[homepage]
|
||||||
|
layout = "profile" # valid options: page, profile, hero, card, background, custom
|
||||||
|
#homepageImage = "IMAGE.jpg" # used in: hero, and card
|
||||||
|
showRecent = false
|
||||||
|
showRecentItems = 5
|
||||||
|
showMoreLink = false
|
||||||
|
showMoreLinkDest = "/posts"
|
||||||
|
cardView = false
|
||||||
|
cardViewScreenWidth = false
|
||||||
|
layoutBackgroundBlur = false # only used when layout equals background
|
||||||
|
|
||||||
|
[article]
|
||||||
|
showDate = true
|
||||||
|
showViews = false
|
||||||
|
showLikes = false
|
||||||
|
showDateUpdated = false
|
||||||
|
showAuthor = true
|
||||||
|
showHero = false
|
||||||
|
# heroStyle = "basic" # valid options: basic, big, background, thumbAndBackground
|
||||||
|
layoutBackgroundBlur = true # only used when heroStyle equals background or thumbAndBackground
|
||||||
|
layoutBackgroundHeaderSpace = true # only used when heroStyle equals background
|
||||||
|
showBreadcrumbs = false
|
||||||
|
showDraftLabel = true
|
||||||
|
showEdit = false
|
||||||
|
# editURL = "https://github.com/username/repo/"
|
||||||
|
editAppendPath = true
|
||||||
|
seriesOpened = false
|
||||||
|
showHeadingAnchors = true
|
||||||
|
showPagination = true
|
||||||
|
invertPagination = false
|
||||||
|
showReadingTime = true
|
||||||
|
showTableOfContents = false
|
||||||
|
showTaxonomies = false
|
||||||
|
showAuthorsBadges = false
|
||||||
|
showWordCount = true
|
||||||
|
showSummary = true
|
||||||
|
# sharingLinks = [ "linkedin", "twitter", "reddit", "pinterest", "facebook", "email"]
|
||||||
|
|
||||||
|
[list]
|
||||||
|
showHero = false
|
||||||
|
# heroStyle = "background" # valid options: basic, big, background, thumbAndBackground
|
||||||
|
layoutBackgroundBlur = true # only used when heroStyle equals background or thumbAndBackground
|
||||||
|
layoutBackgroundHeaderSpace = true # only used when heroStyle equals background
|
||||||
|
showBreadcrumbs = false
|
||||||
|
showSummary = false
|
||||||
|
showViews = false
|
||||||
|
showLikes = false
|
||||||
|
showTableOfContents = false
|
||||||
|
showCards = false
|
||||||
|
groupByYear = true
|
||||||
|
cardView = false
|
||||||
|
cardViewScreenWidth = false
|
||||||
|
constrainItemsWidth = false
|
||||||
|
|
||||||
|
[sitemap]
|
||||||
|
excludedKinds = ["taxonomy", "term"]
|
||||||
|
|
||||||
|
[taxonomy]
|
||||||
|
showTermCount = true
|
||||||
|
showHero = false
|
||||||
|
# heroStyle = "background" # valid options: basic, big, background, thumbAndBackground
|
||||||
|
showBreadcrumbs = false
|
||||||
|
showViews = false
|
||||||
|
showLikes = false
|
||||||
|
showTableOfContents = false
|
||||||
|
cardView = false
|
||||||
|
|
||||||
|
[term]
|
||||||
|
showHero = false
|
||||||
|
# heroStyle = "background" # valid options: basic, big, background, thumbAndBackground
|
||||||
|
showBreadcrumbs = false
|
||||||
|
showViews = false
|
||||||
|
showLikes = false
|
||||||
|
showTableOfContents = true
|
||||||
|
groupByYear = false
|
||||||
|
cardView = false
|
||||||
|
cardViewScreenWidth = false
|
||||||
|
|
||||||
|
[firebase]
|
||||||
|
# apiKey = "XXXXXX"
|
||||||
|
# authDomain = "XXXXXX"
|
||||||
|
# projectId = "XXXXXX"
|
||||||
|
# storageBucket = "XXXXXX"
|
||||||
|
# messagingSenderId = "XXXXXX"
|
||||||
|
# appId = "XXXXXX"
|
||||||
|
# measurementId = "XXXXXX"
|
||||||
|
|
||||||
|
[fathomAnalytics]
|
||||||
|
# site = "ABC12345"
|
||||||
|
# domain = "llama.yoursite.com"
|
||||||
|
|
||||||
|
[buymeacoffee]
|
||||||
|
# identifier = ""
|
||||||
|
# globalWidget = true
|
||||||
|
# globalWidgetMessage = "Hello"
|
||||||
|
# globalWidgetColor = "#FFDD00"
|
||||||
|
# globalWidgetPosition = "Right"
|
||||||
|
|
||||||
|
[verification]
|
||||||
|
# google = ""
|
||||||
|
# bing = ""
|
||||||
|
# pinterest = ""
|
||||||
|
# yandex = ""
|
0
content/.gitkeep
Normal file
0
content/.gitkeep
Normal file
0
data/.gitkeep
Normal file
0
data/.gitkeep
Normal file
0
layouts/.gitkeep
Normal file
0
layouts/.gitkeep
Normal file
0
static/.gitkeep
Normal file
0
static/.gitkeep
Normal file
Loading…
Reference in New Issue
Block a user