change to hugo-blog-awesome theme
This commit is contained in:
parent
113e3650f1
commit
15b6142a8e
131 changed files with 5895 additions and 124 deletions
BIN
themes/hugo-blog-awesome/exampleSite/assets/avatar.jpg
Normal file
BIN
themes/hugo-blog-awesome/exampleSite/assets/avatar.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 86 KiB |
3
themes/hugo-blog-awesome/exampleSite/go.mod
Normal file
3
themes/hugo-blog-awesome/exampleSite/go.mod
Normal file
|
@ -0,0 +1,3 @@
|
|||
module github.com/hugo-sid/hugo-blog-awesome/exampleSite
|
||||
|
||||
go 1.22.0
|
2
themes/hugo-blog-awesome/exampleSite/go.sum
Normal file
2
themes/hugo-blog-awesome/exampleSite/go.sum
Normal file
|
@ -0,0 +1,2 @@
|
|||
github.com/hugo-sid/hugo-blog-awesome v1.13.1-0.20240307121217-f321f1c1d5f0 h1:1Ed+wKZkOlptWQia2wyZsSSDlL+EQDbV3xZ6ZC8ixJg=
|
||||
github.com/hugo-sid/hugo-blog-awesome v1.13.1-0.20240307121217-f321f1c1d5f0/go.mod h1:oRoqH9/bJDdyQqBoxI77O1oWAwVtn+fTng9MD3vR8A0=
|
|
@ -0,0 +1,5 @@
|
|||
go 1.22.0
|
||||
|
||||
use .
|
||||
use .. // Local theme clone resides in parent folder of example site
|
||||
// use ./themes/hugo-blog-awesome/ // Local theme clone resides in themes folder
|
454
themes/hugo-blog-awesome/exampleSite/hugo.toml
Normal file
454
themes/hugo-blog-awesome/exampleSite/hugo.toml
Normal file
|
@ -0,0 +1,454 @@
|
|||
title = "Awesome Hugo blog"
|
||||
baseURL = 'https://hba.sid.one/'
|
||||
|
||||
# This is what goes in <html lang="">
|
||||
languageCode = 'en-us'
|
||||
|
||||
# This defines how dates are formatted
|
||||
defaultContentLanguage = "en-gb"
|
||||
|
||||
# Enable emojis globally
|
||||
enableEmoji = true
|
||||
ignoreErrors = ["additional-script-loading-error"] # ignore error of loading additional scripts.
|
||||
|
||||
# traditional way: theme component resides in directory 'themes'
|
||||
theme = "hugo-blog-awesome"
|
||||
|
||||
# modern way: pull in theme component as hugo module
|
||||
#[module]
|
||||
# Uncomment the next line to build and serve using local theme clone declared in the named Hugo workspace:
|
||||
# workspace = "hugo-blog-awesome.work"
|
||||
#[module.hugoVersion]
|
||||
#extended = true
|
||||
#min = "0.87.0"
|
||||
#[[module.imports]]
|
||||
#path = "github.com/hugo-sid/hugo-blog-awesome"
|
||||
#disable = false
|
||||
|
||||
[services]
|
||||
# To enable Google Analytics 4 (gtag.js) provide G-MEASUREMENT_ID below.
|
||||
# To disable Google Analytics, simply leave the field empty or remove the next two lines
|
||||
[services.googleAnalytics]
|
||||
id = '' # G-MEASUREMENT_ID
|
||||
|
||||
# To enable Disqus comments, provide Disqus Shortname below.
|
||||
# To disable Disqus comments, simply leave the field empty or remove the next two lines
|
||||
[services.disqus]
|
||||
shortname = ''
|
||||
|
||||
# set markup.highlight.noClasses=false to enable code highlight
|
||||
[markup]
|
||||
[markup.highlight]
|
||||
noClasses = false
|
||||
[markup.goldmark.renderer]
|
||||
unsafe = true
|
||||
[markup.tableOfContents]
|
||||
startLevel = 2 # ToC starts from H2
|
||||
endLevel = 4 # ToC ends at H4
|
||||
ordered = false # generates <ul> instead of <ol>
|
||||
|
||||
############################## English language ################################
|
||||
[Languages.en-gb]
|
||||
languageName = "English"
|
||||
languageCode = "en-gb"
|
||||
contentDir = "content/en"
|
||||
weight = 1
|
||||
|
||||
[Languages.en-gb.menu]
|
||||
[[Languages.en-gb.menu.main]]
|
||||
# The page reference (pageRef) is useful for menu highlighting
|
||||
# When pageRef is set, setting `url` is optional; it will be used as a fallback if the page is not found.
|
||||
pageRef="/"
|
||||
name = 'Home'
|
||||
url = '/'
|
||||
weight = 10
|
||||
[[Languages.en-gb.menu.main]]
|
||||
pageRef="posts"
|
||||
name = 'Posts'
|
||||
url = '/posts/'
|
||||
weight = 20
|
||||
[[Languages.en-gb.menu.main]]
|
||||
pageRef="about"
|
||||
name = 'About'
|
||||
url = '/about/'
|
||||
weight = 30
|
||||
|
||||
[Languages.en-gb.params]
|
||||
sitename = "Awesome hugo blog"
|
||||
defaultColor = "dark" # set color mode: dark, light, auto
|
||||
# Setting it to 'auto' applies the color scheme based on the visitor's device color preference.If you don't specify anything, ignore this parameter, or leave it blank,
|
||||
# the default value is set to 'auto'.
|
||||
# You can take a look at layouts/index.html for more information.
|
||||
description = "Minimal Hugo blog theme with light and dark mode support"
|
||||
mainSections = ['posts']
|
||||
toc = true # set to false to disable table of contents 'globally'
|
||||
tocOpen = false # set to true to open table of contents by default
|
||||
goToTop = true # set to false to disable 'go to top' button
|
||||
additionalScripts = ['js/custom.js', 'js/custom-2.js']
|
||||
# Will try to load 'assets/js/custom.js' and 'assets/js/custom-2.js'.
|
||||
# Your custom scripts will be concatenated to one file `custom.js`.
|
||||
# When building for production it will be minified.
|
||||
# The file `custom.js` is loaded on each page (before body tag ends).
|
||||
dateFormat = "" # date format used to show dates on various pages. If nothing is specified, then "2 Jan 2006" format is used.
|
||||
# See https://gohugo.io/functions/format/#hugo-date-and-time-templating-reference for available date formats.
|
||||
rssFeedDescription = "summary" # available options: 1) summary 2) full
|
||||
# summary - includes a short summary of the blog post in the RSS feed. Generated using Hugo .Summary .
|
||||
# full - includes full blog post in the RSS feed. Generated using Hugo .Content .
|
||||
# By default (or if nothing is specified), summary is used.
|
||||
|
||||
[Languages.en-gb.params.author]
|
||||
avatar = "avatar.jpg" # put the file in assets folder; also ensure that image has same height and width
|
||||
# Note: image is not rendered if the resource(avatar image) is not found. No error is displayed.
|
||||
intro = "Awesome hugo blog"
|
||||
name = "Sidharth R"
|
||||
description = "A fast, minimalistic Hugo theme with light and dark mode support, for running a personal site or blog."
|
||||
|
||||
# Allow to override webmanifest options
|
||||
[Languages.en-gb.params.webmanifest]
|
||||
name = "sitename" # will use "params.sitename" or "title" by default
|
||||
short_name = "sitename" # same as name
|
||||
start_url = "/" # will use homepage url by default
|
||||
theme_color = "#434648" # default is "#434648" (base color of text). Also will override html `<meta name="theme-color" />`
|
||||
background_color = "#fff" # by default depend on "params.defaultColor" for "light" or "auto" will be set to "#fff" for dark will be "#131418" (color of dark mode background)
|
||||
display = "standalone"
|
||||
|
||||
############################## Italian language ################################
|
||||
[Languages.it]
|
||||
languageName = "Italian"
|
||||
languageCode = "it"
|
||||
contentDir = "content/it"
|
||||
weight = 2
|
||||
[Languages.it.menu]
|
||||
[[Languages.it.menu.main]]
|
||||
# The page reference (pageRef) is useful for menu highlighting
|
||||
# When pageRef is set, setting `url` is optional; it will be used as a fallback if the page is not found.
|
||||
pageRef="/"
|
||||
name = 'Inizio'
|
||||
url = '/'
|
||||
weight = 10
|
||||
[[Languages.it.menu.main]]
|
||||
pageRef="posts"
|
||||
name = 'Articoli'
|
||||
url = '/posts/'
|
||||
weight = 20
|
||||
[[Languages.it.menu.main]]
|
||||
pageRef="about"
|
||||
name = 'Chi Sono'
|
||||
url = '/about/'
|
||||
weight = 30
|
||||
|
||||
[Languages.it.params]
|
||||
sitename = "Awesome hugo blog"
|
||||
defaultColor = "dark" # set color mode: dark, light, auto
|
||||
# Setting it to 'auto' applies the color scheme based on the visitor's device color preference.If you don't specify anything, ignore this parameter, or leave it blank,
|
||||
# the default value is set to 'auto'.
|
||||
# You can take a look at layouts/index.html for more information.
|
||||
description = "Un tema Hugo veloce e minimalista con supporto per la modalità chiara e scura, per la gestione di un sito o di un blog personale"
|
||||
mainSections = ['posts']
|
||||
toc = true # set to false to disable table of contents 'globally'
|
||||
tocOpen = false # set to true to open table of contents by default
|
||||
goToTop = true # set to false to disable 'go to top' button
|
||||
additionalScripts = ['js/custom.js', 'js/custom-2.js']
|
||||
# Will try to load 'assets/js/custom.js' and 'assets/js/custom-2.js'.
|
||||
# Your custom scripts will be concatenated to one file `custom.js`.
|
||||
# When building for production it will be minified.
|
||||
# The file `custom.js` is loaded on each page (before body tag ends).
|
||||
dateFormat = "2 January 2006" # default date format used on various pages
|
||||
# See https://gohugo.io/functions/format/#hugo-date-and-time-templating-reference for available date formats.
|
||||
rssFeedDescription = "summary" # available options: 1) summary 2) full
|
||||
# summary - includes a short summary of the blog post in the RSS feed. Generated using Hugo .Summary .
|
||||
# full - includes full blog post in the RSS feed. Generated using Hugo .Content .
|
||||
# By default (or if nothing is specified), summary is used.
|
||||
|
||||
[Languages.it.params.author]
|
||||
avatar = "avatar.jpg" # put the file in assets folder; also ensure that image has same height and width
|
||||
# Note: image is not rendered if the resource(avatar image) is not found. No error is displayed.
|
||||
intro = "Awesome hugo blog"
|
||||
name = "Sidharth R"
|
||||
description = "Un tema Hugo veloce e minimalista con supporto per la modalità chiara e scura, per la gestione di un sito o di un blog personale."
|
||||
|
||||
# Allow to override webmanifest options
|
||||
[Languages.it.params.webmanifest]
|
||||
name = "sitename" # will use "params.sitename" or "title" by default
|
||||
short_name = "sitename" # same as name
|
||||
start_url = "/" # will use homepage url by default
|
||||
theme_color = "#434648" # default is "#434648" (base color of text). Also will override html `<meta name="theme-color" />`
|
||||
background_color = "#fff" # by default depend on "params.defaultColor" for "light" or "auto" will be set to "#fff" for dark will be "#131418" (color of dark mode background)
|
||||
display = "standalone"
|
||||
|
||||
############################## Russian language ################################
|
||||
[Languages.ru-ru]
|
||||
languageName = "Russian"
|
||||
languageCode = "ru-ru"
|
||||
contentDir = "content/ru"
|
||||
weight = 1
|
||||
|
||||
[Languages.ru-ru.menu]
|
||||
[[Languages.ru-ru.menu.main]]
|
||||
# The page reference (pageRef) is useful for menu highlighting
|
||||
# When pageRef is set, setting `url` is optional; it will be used as a fallback if the page is not found.
|
||||
pageRef="/"
|
||||
name = 'Главная'
|
||||
url = '/'
|
||||
weight = 10
|
||||
[[Languages.ru-ru.menu.main]]
|
||||
pageRef="posts"
|
||||
name = 'Записи'
|
||||
url = '/posts/'
|
||||
weight = 20
|
||||
[[Languages.ru-ru.menu.main]]
|
||||
pageRef="about"
|
||||
name = 'О проекте'
|
||||
url = '/about/'
|
||||
weight = 30
|
||||
|
||||
[Languages.ru-ru.params]
|
||||
sitename = "Превосходный hugo блог"
|
||||
defaultColor = "dark" # set color mode: dark, light, auto
|
||||
# Setting it to 'auto' applies the color scheme based on the visitor's device color preference.If you don't specify anything, ignore this parameter, or leave it blank,
|
||||
# the default value is set to 'auto'.
|
||||
# You can take a look at layouts/index.html for more information.
|
||||
description = "Минималистичная тема для блога на Hugo с поддержкой светлого и тёмного режима"
|
||||
mainSections = ['posts']
|
||||
toc = true # set to false to disable table of contents 'globally'
|
||||
tocOpen = false # set to true to open table of contents by default
|
||||
goToTop = true # set to false to disable 'go to top' button
|
||||
additionalScripts = ['js/custom.js', 'js/custom-2.js']
|
||||
# Will try to load 'assets/js/custom.js' and 'assets/js/custom-2.js'.
|
||||
# Your custom scripts will be concatenated to one file `custom.js`.
|
||||
# When building for production it will be minified.
|
||||
# The file `custom.js` is loaded on each page (before body tag ends).
|
||||
dateFormat = "" # date format used to show dates on various pages. If nothing is specified, then "2 Jan 2006" format is used.
|
||||
# See https://gohugo.io/functions/format/#hugo-date-and-time-templating-reference for available date formats.
|
||||
rssFeedDescription = "summary" # available options: 1) summary 2) full
|
||||
# summary - includes a short summary of the blog post in the RSS feed. Generated using Hugo .Summary .
|
||||
# full - includes full blog post in the RSS feed. Generated using Hugo .Content .
|
||||
# By default (or if nothing is specified), summary is used.
|
||||
|
||||
[Languages.ru-ru.params.author]
|
||||
avatar = "avatar.jpg" # put the file in assets folder; also ensure that image has same height and width
|
||||
# Note: image is not rendered if the resource(avatar image) is not found. No error is displayed.
|
||||
intro = "Превосходный hugo блог"
|
||||
name = "Sidharth R"
|
||||
description = "Быстрая, минималистичная тема для Hugo с поддержкой светлого и тёмного режима для использования на персональных сайтах и блогах."
|
||||
|
||||
# Allow to override webmanifest options
|
||||
[Languages.ru-ru.params.webmanifest]
|
||||
name = "sitename" # will use "params.sitename" or "title" by default
|
||||
short_name = "sitename" # same as name
|
||||
start_url = "/" # will use homepage url by default
|
||||
theme_color = "#434648" # default is "#434648" (base color of text). Also will override html `<meta name="theme-color" />`
|
||||
background_color = "#fff" # by default depend on "params.defaultColor" for "light" or "auto" will be set to "#fff" for dark will be "#131418" (color of dark mode background)
|
||||
display = "standalone"
|
||||
|
||||
############################## French language ################################
|
||||
[Languages.fr-fr]
|
||||
languageName = "French"
|
||||
languageCode = "fr-fr"
|
||||
contentDir = "content/fr"
|
||||
weight = 1
|
||||
|
||||
[Languages.fr-fr.menu]
|
||||
[[Languages.fr-fr.menu.main]]
|
||||
pageRef="/"
|
||||
name = 'Accueil'
|
||||
url = '/'
|
||||
weight = 10
|
||||
[[Languages.fr-fr.menu.main]]
|
||||
pageRef="posts"
|
||||
name = 'Articles'
|
||||
url = '/posts/'
|
||||
weight = 20
|
||||
[[Languages.fr-fr.menu.main]]
|
||||
pageRef="about"
|
||||
name = 'À propos'
|
||||
url = '/about/'
|
||||
weight = 30
|
||||
|
||||
[Languages.fr-fr.params]
|
||||
sitename = "Awesome hugo blog"
|
||||
defaultColor = "dark" # set color mode: dark, light, auto
|
||||
# Setting it to 'auto' applies the color scheme based on the visitor's device color preference.If you don't specify anything, ignore this parameter, or leave it blank,
|
||||
# the default value is set to 'auto'.
|
||||
# You can take a look at layouts/index.html for more information.
|
||||
description = "Thème minimal pour blog Hugo avec prise en charge des modes clair et sombre"
|
||||
mainSections = ['posts']
|
||||
toc = true # set to false to disable table of contents 'globally'
|
||||
tocOpen = false # set to true to open table of contents by default
|
||||
goToTop = true # set to false to disable 'go to top' button
|
||||
additionalScripts = ['js/custom.js', 'js/custom-2.js']
|
||||
# Will try to load 'assets/js/custom.js' and 'assets/js/custom-2.js'.
|
||||
# Your custom scripts will be concatenated to one file `custom.js`.
|
||||
# When building for production it will be minified.
|
||||
# The file `custom.js` is loaded on each page (before body tag ends).
|
||||
dateFormat = "" # date format used to show dates on various pages. If nothing is specified, then "2 Jan 2006" format is used.
|
||||
# See https://gohugo.io/functions/format/#hugo-date-and-time-templating-reference for available date formats.
|
||||
rssFeedDescription = "summary" # available options: 1) summary 2) full
|
||||
# summary - includes a short summary of the blog post in the RSS feed. Generated using Hugo .Summary .
|
||||
# full - includes full blog post in the RSS feed. Generated using Hugo .Content .
|
||||
# By default (or if nothing is specified), summary is used.
|
||||
|
||||
[Languages.fr-fr.params.author]
|
||||
avatar = "avatar.jpg" # put the file in assets folder; also ensure that image has same height and width
|
||||
# Note: image is not rendered if the resource(avatar image) is not found. No error is displayed.
|
||||
intro = "Awesome hugo blog"
|
||||
name = "Sidharth R"
|
||||
description = "Un thème Hugo rapide et minimaliste avec un mode clair et sombre, pour un site personnel ou un blog."
|
||||
|
||||
# Allow to override webmanifest options
|
||||
[Languages.fr-fr.params.webmanifest]
|
||||
name = "sitename" # will use "params.sitename" or "title" by default
|
||||
short_name = "sitename" # same as name
|
||||
start_url = "/" # will use homepage url by default
|
||||
theme_color = "#434648" # default is "#434648" (base color of text). Also will override html `<meta name="theme-color" />`
|
||||
background_color = "#fff" # by default depend on "params.defaultColor" for "light" or "auto" will be set to "#fff" for dark will be "#131418" (color of dark mode background)
|
||||
display = "standalone"
|
||||
|
||||
############################## German language ################################
|
||||
[Languages.de-de]
|
||||
languageName = "German"
|
||||
languageCode = "de-de"
|
||||
contentDir = "content/de"
|
||||
weight = 1
|
||||
|
||||
[Languages.de-de.menu]
|
||||
[[Languages.de-de.menu.main]]
|
||||
# The page reference (pageRef) is useful for menu highlighting
|
||||
# When pageRef is set, setting `url` is optional; it will be used as a fallback if the page is not found.
|
||||
pageRef="/"
|
||||
name = 'Startseite'
|
||||
url = '/'
|
||||
weight = 10
|
||||
[[Languages.de-de.menu.main]]
|
||||
pageRef="posts"
|
||||
name = 'Beiträge'
|
||||
url = '/posts/'
|
||||
weight = 20
|
||||
[[Languages.de-de.menu.main]]
|
||||
pageRef="about"
|
||||
name = 'Über mich'
|
||||
url = '/about/'
|
||||
weight = 30
|
||||
|
||||
[Languages.de-de.params]
|
||||
sitename = "Awesome hugo blog"
|
||||
defaultColor = "dark" # set color mode: dark, light, auto
|
||||
# Setting it to 'auto' applies the color scheme based on the visitor's device color preference.If you don't specify anything, ignore this parameter, or leave it blank,
|
||||
# the default value is set to 'auto'.
|
||||
# You can take a look at layouts/index.html for more information.
|
||||
description = "Minimales Hugo-Blog-Theme mit hellem und dunklem Modus"
|
||||
mainSections = ['posts']
|
||||
toc = true # set to false to disable table of contents 'globally'
|
||||
tocOpen = false # set to true to open table of contents by default
|
||||
goToTop = true # set to false to disable 'go to top' button
|
||||
additionalScripts = ['js/custom.js', 'js/custom-2.js']
|
||||
# Will try to load 'assets/js/custom.js' and 'assets/js/custom-2.js'.
|
||||
# Your custom scripts will be concatenated to one file `custom.js`.
|
||||
# When building for production it will be minified.
|
||||
# The file `custom.js` is loaded on each page (before body tag ends).
|
||||
dateFormat = "" # date format used to show dates on various pages. If nothing is specified, then "2 Jan 2006" format is used.
|
||||
# See https://gohugo.io/functions/format/#hugo-date-and-time-templating-reference for available date formats.
|
||||
rssFeedDescription = "summary" # available options: 1) summary 2) full
|
||||
# summary - includes a short summary of the blog post in the RSS feed. Generated using Hugo .Summary .
|
||||
# full - includes full blog post in the RSS feed. Generated using Hugo .Content .
|
||||
# By default (or if nothing is specified), summary is used.
|
||||
|
||||
[Languages.de-de.params.author]
|
||||
avatar = "avatar.jpg" # put the file in assets folder; also ensure that image has same height and width
|
||||
# Note: image is not rendered if the resource(avatar image) is not found. No error is displayed.
|
||||
intro = "Awesome hugo blog"
|
||||
name = "Sidharth R"
|
||||
description = "Ein schnelles, minimalistisches Hugo-Theme mit hellem und dunklem Modus, für eine persönliche Website oder Blog."
|
||||
|
||||
# Allow to override webmanifest options
|
||||
[Languages.de-de.params.webmanifest]
|
||||
name = "sitename" # will use "params.sitename" or "title" by default
|
||||
short_name = "sitename" # same as name
|
||||
start_url = "/" # will use homepage url by default
|
||||
theme_color = "#434648" # default is "#434648" (base color of text). Also will override html `<meta name="theme-color" />`
|
||||
background_color = "#fff" # by default depend on "params.defaultColor" for "light" or "auto" will be set to "#fff" for dark will be "#131418" (color of dark mode background)
|
||||
display = "standalone"
|
||||
|
||||
############################## Brazilian language ################################
|
||||
[Languages.pt-br]
|
||||
languageName = "Brazilian"
|
||||
languageCode = "pt-br"
|
||||
contentDir = "content/br"
|
||||
weight = 1
|
||||
|
||||
[Languages.pt-br.menu]
|
||||
[[Languages.pt-br.menu.main]]
|
||||
# The page reference (pageRef) is useful for menu highlighting
|
||||
# When pageRef is set, setting `url` is optional; it will be used as a fallback if the page is not found.
|
||||
pageRef="/"
|
||||
name = 'Início'
|
||||
url = '/'
|
||||
weight = 10
|
||||
[[Languages.pt-br.menu.main]]
|
||||
pageRef="posts"
|
||||
name = 'Publicações'
|
||||
url = '/posts/'
|
||||
weight = 20
|
||||
[[Languages.pt-br.menu.main]]
|
||||
pageRef="about"
|
||||
name = 'Sobre'
|
||||
url = '/about/'
|
||||
weight = 30
|
||||
|
||||
[Languages.pt-br.params]
|
||||
sitename = "Awesome hugo blog"
|
||||
defaultColor = "dark" # set color mode: dark, light, auto
|
||||
# Setting it to 'auto' applies the color scheme based on the visitor's device color preference.If you don't specify anything, ignore this parameter, or leave it blank,
|
||||
# the default value is set to 'auto'.
|
||||
# You can take a look at layouts/index.html for more information.
|
||||
description = "Um tema Hugo veloz e minimalista com suporte a modo claro e escuro para rodar um blog ou site pessoal"
|
||||
mainSections = ['posts']
|
||||
toc = true # set to false to disable table of contents 'globally'
|
||||
tocOpen = false # set to true to open table of contents by default
|
||||
goToTop = true # set to false to disable 'go to top' button
|
||||
additionalScripts = ['js/custom.js', 'js/custom-2.js']
|
||||
# Will try to load 'assets/js/custom.js' and 'assets/js/custom-2.js'.
|
||||
# Your custom scripts will be concatenated to one file `custom.js`.
|
||||
# When building for production it will be minified.
|
||||
# The file `custom.js` is loaded on each page (before body tag ends).
|
||||
dateFormat = "2 January 2006" # date format used to show dates on various pages. If nothing is specified, then "2 Jan 2006" format is used.
|
||||
# See https://gohugo.io/functions/format/#hugo-date-and-time-templating-reference for available date formats.
|
||||
rssFeedDescription = "summary" # available options: 1) summary 2) full
|
||||
# summary - includes a short summary of the blog post in the RSS feed. Generated using Hugo .Summary .
|
||||
# full - includes full blog post in the RSS feed. Generated using Hugo .Content .
|
||||
# By default (or if nothing is specified), summary is used.
|
||||
|
||||
[Languages.pt-br.params.author]
|
||||
avatar = "avatar.jpg" # put the file in assets folder; also ensure that image has same height and width
|
||||
# Note: image is not rendered if the resource(avatar image) is not found. No error is displayed.
|
||||
intro = "Awesome hugo blog"
|
||||
name = "Sidharth R"
|
||||
description = "Um tema Hugo veloz e minimalista com suporte a modo claro e escuro para rodar um blog ou site pessoal"
|
||||
|
||||
# Allow to override webmanifest options
|
||||
[Languages.pt-br.params.webmanifest]
|
||||
name = "sitename" # will use "params.sitename" or "title" by default
|
||||
short_name = "sitename" # same as name
|
||||
start_url = "/" # will use homepage url by default
|
||||
theme_color = "#434648" # default is "#434648" (base color of text). Also will override html `<meta name="theme-color" />`
|
||||
background_color = "#fff" # by default depend on "params.defaultColor" for "light" or "auto" will be set to "#fff" for dark will be "#131418" (color of dark mode background)
|
||||
display = "standalone"
|
||||
|
||||
###################################################################
|
||||
|
||||
# Allow to override `browserconfig.xml` params (configuration for windows embedded browsers)
|
||||
[params.browserconfig]
|
||||
TileColor = "#2d89ef" # default windows 10 blue tile color
|
||||
|
||||
[[params.socialIcons]]
|
||||
name = "github"
|
||||
url = "https://github.com/hugo-sid"
|
||||
|
||||
[[params.socialIcons]]
|
||||
name = "twitter"
|
||||
url = "https://twitter.com"
|
||||
|
||||
[[params.socialIcons]]
|
||||
name = "Rss"
|
||||
url = "/index.xml"
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue