diff --git a/data/icons.yaml b/data/icons.yaml index 812f725..96c667a 100644 --- a/data/icons.yaml +++ b/data/icons.yaml @@ -9,6 +9,8 @@ github: > +hextra: + hugo: > diff --git a/hugo.toml b/hugo.toml index ddf6f3d..284c2c3 100644 --- a/hugo.toml +++ b/hugo.toml @@ -23,6 +23,9 @@ defaultContentLanguage = 'en' [[module.mounts]] source = "assets" target = "assets" + [[module.mounts]] + source = "static" + target = "static" [[module.mounts]] source = "hugo_stats.json" target = "assets/watching/hugo_stats.json" diff --git a/layouts/partials/favicons.html b/layouts/partials/favicons.html index c9a6749..d24f63a 100644 --- a/layouts/partials/favicons.html +++ b/layouts/partials/favicons.html @@ -1,10 +1,7 @@ - - - - - - - - - - + + + + + + + diff --git a/layouts/partials/navbar.html b/layouts/partials/navbar.html index e408a4c..ccc9acc 100644 --- a/layouts/partials/navbar.html +++ b/layouts/partials/navbar.html @@ -3,7 +3,7 @@ - {{ partial "utils/icon.html" (dict "name" "hugo" "attributes" "height=20") }} + {{ partial "utils/icon.html" (dict "name" "hextra" "attributes" "height=20") }} {{ .Site.Title }} diff --git a/static/android-chrome-192x192.png b/static/android-chrome-192x192.png new file mode 100644 index 0000000..d76867e 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..ce27064 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..ac9839e 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..bbf65e2 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..7cc3d8b Binary files /dev/null and b/static/favicon-32x32.png differ diff --git a/static/favicon-dark.svg b/static/favicon-dark.svg new file mode 100644 index 0000000..e4fe155 --- /dev/null +++ b/static/favicon-dark.svg @@ -0,0 +1 @@ + diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000..16449d0 Binary files /dev/null and b/static/favicon.ico differ diff --git a/static/favicon.svg b/static/favicon.svg new file mode 100644 index 0000000..c317941 --- /dev/null +++ b/static/favicon.svg @@ -0,0 +1 @@ + diff --git a/static/site.webmanifest b/static/site.webmanifest new file mode 100644 index 0000000..7b897c9 --- /dev/null +++ b/static/site.webmanifest @@ -0,0 +1,19 @@ +{ + "name": "Hextra", + "short_name": "Hextra", + "icons": [ + { + "src": "/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "theme_color": "#000000", + "background_color": "#000000", + "display": "standalone" +}