diff --git a/config/_default/languages.en.toml b/config/_default/languages.en.toml index e6d33f6..5abf062 100644 --- a/config/_default/languages.en.toml +++ b/config/_default/languages.en.toml @@ -9,17 +9,14 @@ title = "Blog:Taco" isoCode = "en" rtl = false dateFormat = "2 January 2006" - # logo = "img/logo.png" - # secondaryLogo = "img/secondary-logo.png" description = "A place for the exploits of a Dragon" - # copyright = "Copy, _right?_ :thinking_face:" [params.author] name = "Taco" image = "img/pfp.png" imageQuality = 96 - headline = "Doing things is what keeps us sane" - bio = "Dragon that does things." + headline = "Doing things is what keeps us sane." + bio = "A dragon that does things." links = [ { gitea = "https://git.toomuchtaco.net" }, { bluesky = "https://bsky.app/profile/xerotacovix.bsky.social" }, diff --git a/config/_default/params.toml b/config/_default/params.toml index 961ff64..c8cc34d 100644 --- a/config/_default/params.toml +++ b/config/_default/params.toml @@ -9,13 +9,14 @@ colorScheme = "fire" defaultAppearance = "dark" # valid options: light or dark autoSwitchAppearance = true +enableRobotsTXT = true + opengraph_io_api_key = "bb9fc05a-0dbc-4748-87f7-b2bb698ae5a9" enableA11y = false enableSearch = true enableCodeCopy = true enableStructuredBreadcrumbs = false -# enableStyledScrollbar = true # disable to use native scrollbar style (defaults to true) replyByEmail = false diff --git a/layouts/robots.txt b/layouts/robots.txt new file mode 100644 index 0000000..5ee1de0 --- /dev/null +++ b/layouts/robots.txt @@ -0,0 +1,9 @@ +{{ if hugo.IsProduction }} + {{ range $robot := .Site.Params.robots }} + User-agent: {{ $robot }} + Disallow: / + {{end}} +{{ else }} + User-agent: * + Disallow: / +{{ end }} \ No newline at end of file diff --git a/static/android-chrome-192x192.png b/static/android-chrome-192x192.png new file mode 100644 index 0000000..23e87f9 Binary files /dev/null and b/static/android-chrome-192x192.png differ diff --git a/static/android-chrome-512x512.png b/static/android-chrome-512x512.png new file mode 100644 index 0000000..fb6de62 Binary files /dev/null and b/static/android-chrome-512x512.png differ diff --git a/static/apple-touch-icon.png b/static/apple-touch-icon.png new file mode 100644 index 0000000..7a34727 Binary files /dev/null and b/static/apple-touch-icon.png differ diff --git a/static/favicon-16x16.png b/static/favicon-16x16.png new file mode 100644 index 0000000..418816f Binary files /dev/null and b/static/favicon-16x16.png differ diff --git a/static/favicon-32x32.png b/static/favicon-32x32.png new file mode 100644 index 0000000..f95c330 Binary files /dev/null and b/static/favicon-32x32.png differ diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000..265ac8d Binary files /dev/null and b/static/favicon.ico differ diff --git a/static/site.webmanifest b/static/site.webmanifest new file mode 100644 index 0000000..45dc8a2 --- /dev/null +++ b/static/site.webmanifest @@ -0,0 +1 @@ +{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} \ No newline at end of file