mirror of
https://github.com/Sped0n/bridget.git
synced 2026-04-14 10:09:31 -07:00
* feat: refactor condition for checking `site.Params.bundled` - Add default condition for checking if `site.Params.bundled` is true or false * refactor: update info page content * chore: update site description * refactor: refactor variable assignments and return statement in menu template - Change the variable assignment from `.DirName` to `.Identifier` in the file `layouts/_default/single.json` - Change the variable assignments in the file `layouts/partials/function/currentMenuItem.html`: - From `$dirName := ""` to `$identifier := ""` - From `$id := -1` to `$title := ""` and `$weight := -1` - From `$dirName = .Identifier` to `$identifier = .Identifier`, `$title = .Title`, and `$weight = .Weight` - Change the return statement in the file `layouts/partials/function/currentMenuItem.html` from `(dict "DirName" $dirName "ID" $id)` to `(dict "Identifier" $identifier "Title" $title "Weight" $weight)` * feat: update nav links structure for current link styling - Remove javascript code related to setting current link style and title - Update nav links to use updated HTML structure for current link styling * feat: update page titles and meta tags in layout files - Update the `baseof.html` layout to include the current page title in the `<title>` tag - Add OpenGraph meta tags for the page title and description in `meta.html` layout
73 lines
1.9 KiB
TOML
73 lines
1.9 KiB
TOML
# description of the site (will be placed in meta)
|
|
description = "Bridget is a minimal Hugo theme designed for photographers/visual artists."
|
|
# use bundled js and css
|
|
# * if you want to build the js and css from scratch, set this to false and run `npm install` and `npm run build`
|
|
# * tldr: set this to false if you want to develop and edit the js and css
|
|
bundled = false
|
|
|
|
# whether to use favicon resource links
|
|
# generate these with https://realfavicongenerator.net
|
|
favicon = true
|
|
# modern SVG favicon to use in place of older style .png and .ico files
|
|
svgFavicon = "/dot.svg"
|
|
# fallback png favicon for unsupported browsers
|
|
svgFaviconFallback = "/dot.png"
|
|
|
|
# resize options for dynamic resolution, please refer to https://gohugo.io/content-management/image-processing/#image-processing-options
|
|
loResOpt = "800x webp Lanczos q60"
|
|
hiResOpt = "2500x webp Lanczos q75"
|
|
|
|
# page config
|
|
[page]
|
|
# unified alt text for all images in the page
|
|
unifiedAlt = ''
|
|
|
|
# Site verification code for Google/Bing/Yandex/Pinterest/Baidu
|
|
[verification]
|
|
google = ""
|
|
bing = ""
|
|
yandex = ""
|
|
pinterest = ""
|
|
baidu = ""
|
|
so = ""
|
|
sogou = ""
|
|
|
|
# Analytics config
|
|
[analytics]
|
|
enable = true
|
|
# Google Analytics
|
|
[analytics.google]
|
|
id = ""
|
|
# whether to anonymize IP
|
|
anonymizeIP = true
|
|
# Fathom Analytics
|
|
[analytics.fathom]
|
|
id = ""
|
|
# server url for your tracker if you're self hosting
|
|
server = ""
|
|
# Baidu Analytics
|
|
[analytics.baidu]
|
|
id = ""
|
|
# Umami Analytics
|
|
[analytics.umami]
|
|
data_website_id = "44a4a42d-ec8e-44c9-a38c-7533929e9845"
|
|
src = "https://umami.sped0nwen.com/script.js"
|
|
data_host_url = ""
|
|
data_domains = "bridget-demo.sped0nwen.com"
|
|
# Plausible Analytics
|
|
[analytics.plausible]
|
|
data_domain = ""
|
|
src = ""
|
|
# Cloudflare Analytics
|
|
[analytics.cloudflare]
|
|
token = ""
|
|
# Splitbee Analytics
|
|
[analytics.splitbee]
|
|
enable = false
|
|
# no cookie mode
|
|
No_cookie = true
|
|
# respect the do not track setting of the browser
|
|
Do_not_track = true
|
|
# token(optional), more info on https://splitbee.io/docs/embed-the-script
|
|
data_token = ""
|