diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1d2917b3..147381e4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,7 +8,7 @@ jobs: if: ${{ github.actor == 'dependabot[bot]' }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: "${{ github.head_ref }}" - name: Install dependencies and Build Theme diff --git a/.github/workflows/firebase-preview.yml b/.github/workflows/firebase-preview.yml index 6f4e1494..7b93c9c0 100644 --- a/.github/workflows/firebase-preview.yml +++ b/.github/workflows/firebase-preview.yml @@ -12,7 +12,7 @@ jobs: ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true' - name: Check out code into the Go module directory - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true # Fetch Hugo themes (true OR recursive) fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod diff --git a/.github/workflows/firebase-production.yml b/.github/workflows/firebase-production.yml index 601854b8..168369ec 100644 --- a/.github/workflows/firebase-production.yml +++ b/.github/workflows/firebase-production.yml @@ -14,7 +14,7 @@ jobs: ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true' - name: Check out code into the Go module directory - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true # Fetch Hugo themes (true OR recursive) fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 8a627682..6ec702d6 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -37,7 +37,7 @@ jobs: wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_Linux-64bit.deb \ && sudo dpkg -i ${{ runner.temp }}/hugo.deb - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: recursive - name: Setup Pages diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 25e3dd9e..14cdafe0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: group: ${{ github.workflow }}-${{ github.ref }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true fetch-depth: 0 diff --git a/config.toml b/config.toml index 9a2632ec..dffca122 100644 --- a/config.toml +++ b/config.toml @@ -2,4 +2,4 @@ [module.hugoVersion] extended = true min = "0.87.0" - max = "0.117.0" \ No newline at end of file + max = "0.118.2" \ No newline at end of file diff --git a/config/_default/params.toml b/config/_default/params.toml index 0e2f91ab..7ac39c58 100644 --- a/config/_default/params.toml +++ b/config/_default/params.toml @@ -71,7 +71,6 @@ disableImageOptimization = true showTaxonomies = false showAuthorsBadges = false showWordCount = true - showSummary = true # sharingLinks = [ "linkedin", "twitter", "reddit", "pinterest", "facebook", "email", "whatsapp", "telegram"] [list] diff --git a/exampleSite/config/_default/params.toml b/exampleSite/config/_default/params.toml index b6bb3fa4..ce797c16 100644 --- a/exampleSite/config/_default/params.toml +++ b/exampleSite/config/_default/params.toml @@ -70,7 +70,6 @@ smartTOCHideUnfocusedChildren = false showTaxonomies = true showAuthorsBadges = true showWordCount = false - showSummary = true sharingLinks = [ "linkedin", "twitter", "reddit", "whatsapp", "telegram", "pinterest", "facebook", "email"] [list] diff --git a/exampleSite/content/docs/configuration/index.md b/exampleSite/content/docs/configuration/index.md index ed2f308f..b0eb4a29 100644 --- a/exampleSite/content/docs/configuration/index.md +++ b/exampleSite/content/docs/configuration/index.md @@ -229,7 +229,6 @@ Many of the article defaults here can be overridden on a per article basis by sp | `article.showAuthorsBadges` | `false` | Whether the `authors` taxonomies are are displayed in the article or list header. This requires the setup of `multiple authors` and the `authors` taxonomy. Check [this page]({{< ref "multi-author" >}}) for more details on how to configure that feature. | | `article.showWordCount` | `false` | Whether or not article word counts are displayed. | | `article.showComments` | `false` | Whether or not the [comments partial]({{< ref "partials#comments" >}}) is included after the article footer. | -| `article.showSummary` | `false` | Whether or not article summaries are displayed on list pages. If a summary is not provided in the [front matter]({{< ref "front-matter" >}}), one will be auto generated using the `summaryLength` parameter in the [site configuration](#site-configuration). | | `article.sharingLinks` | _Not set_ | Which sharing links to display at the end of each article. When not provided, or set to `false` no links will be displayed. Available values are: "linkedin", "twitter", "reddit", "pinterest", "facebook", "email", "whatsapp", and "telegram" | ### List diff --git a/exampleSite/content/docs/getting-started/index.md b/exampleSite/content/docs/getting-started/index.md index 9c6abf68..6c021a9e 100644 --- a/exampleSite/content/docs/getting-started/index.md +++ b/exampleSite/content/docs/getting-started/index.md @@ -228,7 +228,8 @@ The theme also supports nested menus. In order to use them you just need to defi ### Sub-Navigation menu -Additionally, you can also configure a sub-navigation menu. Just define new menu entries as `subnavigation` in `menu.toml`. This will render a second line with caregories below the main header menu. +Additionally, you can also configure a sub-navigation menu. Just define new menu entries as `subnavigation` in `menus.toml`. +This will render a second line with sub-categories below the main header menu. ```toml # config/_default/menus.toml @@ -244,7 +245,7 @@ Additionally, you can also configure a sub-navigation menu. Just define new menu weight = 20 ``` - +The default `name` is the `pageRef` title cased. ## Thumbnails & Backgrounds diff --git a/exampleSite/content/docs/shortcodes/index.md b/exampleSite/content/docs/shortcodes/index.md index 9199925a..84091d30 100644 --- a/exampleSite/content/docs/shortcodes/index.md +++ b/exampleSite/content/docs/shortcodes/index.md @@ -204,6 +204,7 @@ The `figure` shortcode accepts six parameters: | `caption` | Markdown for the image caption, which will be displayed below the image. | | `class` | Additional CSS classes to apply to the image. | | `href` | URL that the image should be linked to. | +| `nozoom` | `nozoom=true` disables the image "zoom" functionality. This is most useful in combination with a `href` link. | | `default` | Special parameter to revert to default Hugo `figure` behaviour. Simply provide `default=true` and then use normal [Hugo shortcode syntax](https://gohugo.io/content-management/shortcodes/#figure). | diff --git a/exampleSite/content/users/50-nuances-octets.fr/feature.jpg b/exampleSite/content/users/50-nuances-octets.fr/feature.jpg index 93ece9ad..5c4a19ad 100644 Binary files a/exampleSite/content/users/50-nuances-octets.fr/feature.jpg and b/exampleSite/content/users/50-nuances-octets.fr/feature.jpg differ diff --git a/exampleSite/content/users/bbagwang.com/feature.jpg b/exampleSite/content/users/bbagwang.com/feature.jpg index 38b16847..a7fef06e 100644 Binary files a/exampleSite/content/users/bbagwang.com/feature.jpg and b/exampleSite/content/users/bbagwang.com/feature.jpg differ diff --git a/exampleSite/content/users/blog.muffn.io/feature.jpg b/exampleSite/content/users/blog.muffn.io/feature.jpg index fac66059..0ec0a982 100644 Binary files a/exampleSite/content/users/blog.muffn.io/feature.jpg and b/exampleSite/content/users/blog.muffn.io/feature.jpg differ diff --git a/exampleSite/content/users/chris.banes.dev/feature.jpg b/exampleSite/content/users/chris.banes.dev/feature.jpg index 9d213d45..ed912509 100644 Binary files a/exampleSite/content/users/chris.banes.dev/feature.jpg and b/exampleSite/content/users/chris.banes.dev/feature.jpg differ diff --git a/exampleSite/content/users/ciicadalab.github.io/feature.jpg b/exampleSite/content/users/ciicadalab.github.io/feature.jpg index 2f4f1388..8a87b604 100644 Binary files a/exampleSite/content/users/ciicadalab.github.io/feature.jpg and b/exampleSite/content/users/ciicadalab.github.io/feature.jpg differ diff --git a/exampleSite/content/users/clemsau.com/feature.jpg b/exampleSite/content/users/clemsau.com/feature.jpg index 581e2507..472d172c 100644 Binary files a/exampleSite/content/users/clemsau.com/feature.jpg and b/exampleSite/content/users/clemsau.com/feature.jpg differ diff --git a/exampleSite/content/users/code-chimp.com/feature.jpg b/exampleSite/content/users/code-chimp.com/feature.jpg index b96414c3..93daed63 100644 Binary files a/exampleSite/content/users/code-chimp.com/feature.jpg and b/exampleSite/content/users/code-chimp.com/feature.jpg differ diff --git a/exampleSite/content/users/dizzytech.de/feature.jpg b/exampleSite/content/users/dizzytech.de/feature.jpg index 7c68d6ad..99345db0 100644 Binary files a/exampleSite/content/users/dizzytech.de/feature.jpg and b/exampleSite/content/users/dizzytech.de/feature.jpg differ diff --git a/exampleSite/content/users/halcyonstraits.com/feature.jpg b/exampleSite/content/users/halcyonstraits.com/feature.jpg index 4c264d7e..e2cdbf84 100644 Binary files a/exampleSite/content/users/halcyonstraits.com/feature.jpg and b/exampleSite/content/users/halcyonstraits.com/feature.jpg differ diff --git a/exampleSite/content/users/hellstabber.github.io/feature.jpg b/exampleSite/content/users/hellstabber.github.io/feature.jpg index 8c85162c..ee9c901e 100644 Binary files a/exampleSite/content/users/hellstabber.github.io/feature.jpg and b/exampleSite/content/users/hellstabber.github.io/feature.jpg differ diff --git a/exampleSite/content/users/insidemordecai.com/feature.jpg b/exampleSite/content/users/insidemordecai.com/feature.jpg index d2107526..61d28a9b 100644 Binary files a/exampleSite/content/users/insidemordecai.com/feature.jpg and b/exampleSite/content/users/insidemordecai.com/feature.jpg differ diff --git a/exampleSite/content/users/jahsehj.github.io/feature.jpg b/exampleSite/content/users/jahsehj.github.io/feature.jpg index 14666cf6..60b19d4f 100644 Binary files a/exampleSite/content/users/jahsehj.github.io/feature.jpg and b/exampleSite/content/users/jahsehj.github.io/feature.jpg differ diff --git a/exampleSite/content/users/jam.dsg.li/feature.jpg b/exampleSite/content/users/jam.dsg.li/feature.jpg index eecdac21..0e3f3f01 100644 Binary files a/exampleSite/content/users/jam.dsg.li/feature.jpg and b/exampleSite/content/users/jam.dsg.li/feature.jpg differ diff --git a/exampleSite/content/users/jamiemoxon.tech/feature.jpg b/exampleSite/content/users/jamiemoxon.tech/feature.jpg new file mode 100644 index 00000000..f2717bbc Binary files /dev/null and b/exampleSite/content/users/jamiemoxon.tech/feature.jpg differ diff --git a/exampleSite/content/users/jamiemoxon.tech/index.md b/exampleSite/content/users/jamiemoxon.tech/index.md new file mode 100644 index 00000000..4f17722b --- /dev/null +++ b/exampleSite/content/users/jamiemoxon.tech/index.md @@ -0,0 +1,13 @@ +--- + title: "jamiemoxon.tech" + tags: [Personal site] + externalUrl: "https://jamiemoxon.tech" + date: 9941-08-08 + showDate: false + showAuthor: false + showReadingTime: false + showEdit: false + showLikes: false + showViews: false + layoutBackgroundHeaderSpace: false + --- diff --git a/exampleSite/content/users/jundimubarok.com/feature.jpg b/exampleSite/content/users/jundimubarok.com/feature.jpg index 4dc0e253..979af0eb 100644 Binary files a/exampleSite/content/users/jundimubarok.com/feature.jpg and b/exampleSite/content/users/jundimubarok.com/feature.jpg differ diff --git a/exampleSite/content/users/marupanda.art-marucomics/feature.jpg b/exampleSite/content/users/marupanda.art-marucomics/feature.jpg index fc571e08..fc6a4219 100644 Binary files a/exampleSite/content/users/marupanda.art-marucomics/feature.jpg and b/exampleSite/content/users/marupanda.art-marucomics/feature.jpg differ diff --git a/exampleSite/content/users/mucahitkurtlar.github.io/feature.jpg b/exampleSite/content/users/mucahitkurtlar.github.io/feature.jpg index b68d77bc..b63353c3 100644 Binary files a/exampleSite/content/users/mucahitkurtlar.github.io/feature.jpg and b/exampleSite/content/users/mucahitkurtlar.github.io/feature.jpg differ diff --git a/exampleSite/content/users/nikarashihatsu.github.io/feature.jpg b/exampleSite/content/users/nikarashihatsu.github.io/feature.jpg index e8e3e3e9..d8a1da16 100644 Binary files a/exampleSite/content/users/nikarashihatsu.github.io/feature.jpg and b/exampleSite/content/users/nikarashihatsu.github.io/feature.jpg differ diff --git a/exampleSite/content/users/niklas-hartmann-dev.de/feature.jpg b/exampleSite/content/users/niklas-hartmann-dev.de/feature.jpg index 8b2e48c6..8e896bdb 100644 Binary files a/exampleSite/content/users/niklas-hartmann-dev.de/feature.jpg and b/exampleSite/content/users/niklas-hartmann-dev.de/feature.jpg differ diff --git a/exampleSite/content/users/pacochan.net/feature.jpg b/exampleSite/content/users/pacochan.net/feature.jpg index 3c5459f4..4c8ed706 100644 Binary files a/exampleSite/content/users/pacochan.net/feature.jpg and b/exampleSite/content/users/pacochan.net/feature.jpg differ diff --git a/exampleSite/content/users/rdgo.dev/feature.jpg b/exampleSite/content/users/rdgo.dev/feature.jpg index f9760916..65b5eb88 100644 Binary files a/exampleSite/content/users/rdgo.dev/feature.jpg and b/exampleSite/content/users/rdgo.dev/feature.jpg differ diff --git a/exampleSite/content/users/sdehm.dev/feature.jpg b/exampleSite/content/users/sdehm.dev/feature.jpg index cca6da09..c420997d 100644 Binary files a/exampleSite/content/users/sdehm.dev/feature.jpg and b/exampleSite/content/users/sdehm.dev/feature.jpg differ diff --git a/exampleSite/content/users/shenshu.fun/feature.jpg b/exampleSite/content/users/shenshu.fun/feature.jpg index b6187ce9..039a2171 100644 Binary files a/exampleSite/content/users/shenshu.fun/feature.jpg and b/exampleSite/content/users/shenshu.fun/feature.jpg differ diff --git a/exampleSite/content/users/spelucin.me/feature.jpg b/exampleSite/content/users/spelucin.me/feature.jpg index 5218782c..6363592b 100644 Binary files a/exampleSite/content/users/spelucin.me/feature.jpg and b/exampleSite/content/users/spelucin.me/feature.jpg differ diff --git a/exampleSite/content/users/talkdimsum.com/feature.jpg b/exampleSite/content/users/talkdimsum.com/feature.jpg index d38d423b..610daa1b 100644 Binary files a/exampleSite/content/users/talkdimsum.com/feature.jpg and b/exampleSite/content/users/talkdimsum.com/feature.jpg differ diff --git a/exampleSite/content/users/technicat.com/feature.jpg b/exampleSite/content/users/technicat.com/feature.jpg index f1874aec..6f3b1322 100644 Binary files a/exampleSite/content/users/technicat.com/feature.jpg and b/exampleSite/content/users/technicat.com/feature.jpg differ diff --git a/exampleSite/content/users/users.json b/exampleSite/content/users/users.json index f0fc88a1..d4939c3c 100644 --- a/exampleSite/content/users/users.json +++ b/exampleSite/content/users/users.json @@ -405,5 +405,12 @@ "tags": [ "Personal site" ] + }, + { + "title": "jamiemoxon.tech", + "url": "https://jamiemoxon.tech", + "tags": [ + "Personal site" + ] } ] diff --git a/exampleSite/content/users/vkmki001.github.io/feature.jpg b/exampleSite/content/users/vkmki001.github.io/feature.jpg index dee79aef..8b70bcd3 100644 Binary files a/exampleSite/content/users/vkmki001.github.io/feature.jpg and b/exampleSite/content/users/vkmki001.github.io/feature.jpg differ diff --git a/exampleSite/content/users/weaxsey.org/feature.jpg b/exampleSite/content/users/weaxsey.org/feature.jpg index 9e5ffc03..b59efa37 100644 Binary files a/exampleSite/content/users/weaxsey.org/feature.jpg and b/exampleSite/content/users/weaxsey.org/feature.jpg differ diff --git a/exampleSite/resources/_gen/images/users/50-nuances-octets.fr/feature_hubb9cc62a97d728e29f47c2b3784e6793_59448_1200x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/50-nuances-octets.fr/feature_hubb9cc62a97d728e29f47c2b3784e6793_59448_1200x0_resize_q75_box.jpg new file mode 100644 index 00000000..a57f1255 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/50-nuances-octets.fr/feature_hubb9cc62a97d728e29f47c2b3784e6793_59448_1200x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/50-nuances-octets.fr/feature_hubb9cc62a97d728e29f47c2b3784e6793_59448_600x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/50-nuances-octets.fr/feature_hubb9cc62a97d728e29f47c2b3784e6793_59448_600x0_resize_q75_box.jpg new file mode 100644 index 00000000..1026cd88 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/50-nuances-octets.fr/feature_hubb9cc62a97d728e29f47c2b3784e6793_59448_600x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/bbagwang.com/feature_huf617df85cbdf766471862484ce724509_88279_1200x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/bbagwang.com/feature_huf617df85cbdf766471862484ce724509_88279_1200x0_resize_q75_box.jpg new file mode 100644 index 00000000..21e3463f Binary files /dev/null and b/exampleSite/resources/_gen/images/users/bbagwang.com/feature_huf617df85cbdf766471862484ce724509_88279_1200x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/bbagwang.com/feature_huf617df85cbdf766471862484ce724509_88279_600x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/bbagwang.com/feature_huf617df85cbdf766471862484ce724509_88279_600x0_resize_q75_box.jpg new file mode 100644 index 00000000..dffffcab Binary files /dev/null and b/exampleSite/resources/_gen/images/users/bbagwang.com/feature_huf617df85cbdf766471862484ce724509_88279_600x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/blog.muffn.io/feature_hu5d745330d55f15165f3a29230e3abc80_177053_1200x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/blog.muffn.io/feature_hu5d745330d55f15165f3a29230e3abc80_177053_1200x0_resize_q75_box.jpg new file mode 100644 index 00000000..1840de55 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/blog.muffn.io/feature_hu5d745330d55f15165f3a29230e3abc80_177053_1200x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/blog.muffn.io/feature_hu5d745330d55f15165f3a29230e3abc80_177053_600x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/blog.muffn.io/feature_hu5d745330d55f15165f3a29230e3abc80_177053_600x0_resize_q75_box.jpg new file mode 100644 index 00000000..e22eb6a4 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/blog.muffn.io/feature_hu5d745330d55f15165f3a29230e3abc80_177053_600x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/chris.banes.dev/feature_hubec6d47dda574183a481c7ca0507ecc4_94112_1200x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/chris.banes.dev/feature_hubec6d47dda574183a481c7ca0507ecc4_94112_1200x0_resize_q75_box.jpg new file mode 100644 index 00000000..7327fc63 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/chris.banes.dev/feature_hubec6d47dda574183a481c7ca0507ecc4_94112_1200x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/chris.banes.dev/feature_hubec6d47dda574183a481c7ca0507ecc4_94112_600x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/chris.banes.dev/feature_hubec6d47dda574183a481c7ca0507ecc4_94112_600x0_resize_q75_box.jpg new file mode 100644 index 00000000..e2376aed Binary files /dev/null and b/exampleSite/resources/_gen/images/users/chris.banes.dev/feature_hubec6d47dda574183a481c7ca0507ecc4_94112_600x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/ciicadalab.github.io/feature_hua1c0945693b199f3f4aef872261a1b2c_132519_1200x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/ciicadalab.github.io/feature_hua1c0945693b199f3f4aef872261a1b2c_132519_1200x0_resize_q75_box.jpg new file mode 100644 index 00000000..54f04433 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/ciicadalab.github.io/feature_hua1c0945693b199f3f4aef872261a1b2c_132519_1200x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/ciicadalab.github.io/feature_hua1c0945693b199f3f4aef872261a1b2c_132519_600x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/ciicadalab.github.io/feature_hua1c0945693b199f3f4aef872261a1b2c_132519_600x0_resize_q75_box.jpg new file mode 100644 index 00000000..74dd0023 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/ciicadalab.github.io/feature_hua1c0945693b199f3f4aef872261a1b2c_132519_600x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/clemsau.com/feature_hub4a0afcc2c7a8f52b85eecdb2db4e171_70181_1200x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/clemsau.com/feature_hub4a0afcc2c7a8f52b85eecdb2db4e171_70181_1200x0_resize_q75_box.jpg new file mode 100644 index 00000000..e8bfd8e2 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/clemsau.com/feature_hub4a0afcc2c7a8f52b85eecdb2db4e171_70181_1200x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/clemsau.com/feature_hub4a0afcc2c7a8f52b85eecdb2db4e171_70181_600x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/clemsau.com/feature_hub4a0afcc2c7a8f52b85eecdb2db4e171_70181_600x0_resize_q75_box.jpg new file mode 100644 index 00000000..07db6727 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/clemsau.com/feature_hub4a0afcc2c7a8f52b85eecdb2db4e171_70181_600x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/dizzytech.de/feature_hu3f309c465f8b51442c560faa6ac1b0c9_37450_1200x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/dizzytech.de/feature_hu3f309c465f8b51442c560faa6ac1b0c9_37450_1200x0_resize_q75_box.jpg new file mode 100644 index 00000000..61029c0a Binary files /dev/null and b/exampleSite/resources/_gen/images/users/dizzytech.de/feature_hu3f309c465f8b51442c560faa6ac1b0c9_37450_1200x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/dizzytech.de/feature_hu3f309c465f8b51442c560faa6ac1b0c9_37450_600x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/dizzytech.de/feature_hu3f309c465f8b51442c560faa6ac1b0c9_37450_600x0_resize_q75_box.jpg new file mode 100644 index 00000000..a3e76878 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/dizzytech.de/feature_hu3f309c465f8b51442c560faa6ac1b0c9_37450_600x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/halcyonstraits.com/feature_hufeff5861cd44d80d57aa16edfcfa80c1_61477_1200x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/halcyonstraits.com/feature_hufeff5861cd44d80d57aa16edfcfa80c1_61477_1200x0_resize_q75_box.jpg new file mode 100644 index 00000000..9dba2630 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/halcyonstraits.com/feature_hufeff5861cd44d80d57aa16edfcfa80c1_61477_1200x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/halcyonstraits.com/feature_hufeff5861cd44d80d57aa16edfcfa80c1_61477_600x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/halcyonstraits.com/feature_hufeff5861cd44d80d57aa16edfcfa80c1_61477_600x0_resize_q75_box.jpg new file mode 100644 index 00000000..d31658cd Binary files /dev/null and b/exampleSite/resources/_gen/images/users/halcyonstraits.com/feature_hufeff5861cd44d80d57aa16edfcfa80c1_61477_600x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/hellstabber.github.io/feature_hu5fce489ec4e66f3dfcfa4d440fe0e935_92342_1200x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/hellstabber.github.io/feature_hu5fce489ec4e66f3dfcfa4d440fe0e935_92342_1200x0_resize_q75_box.jpg new file mode 100644 index 00000000..0f71b44e Binary files /dev/null and b/exampleSite/resources/_gen/images/users/hellstabber.github.io/feature_hu5fce489ec4e66f3dfcfa4d440fe0e935_92342_1200x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/hellstabber.github.io/feature_hu5fce489ec4e66f3dfcfa4d440fe0e935_92342_600x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/hellstabber.github.io/feature_hu5fce489ec4e66f3dfcfa4d440fe0e935_92342_600x0_resize_q75_box.jpg new file mode 100644 index 00000000..207bba5a Binary files /dev/null and b/exampleSite/resources/_gen/images/users/hellstabber.github.io/feature_hu5fce489ec4e66f3dfcfa4d440fe0e935_92342_600x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/insidemordecai.com/feature_hu23437e47f85e6a5a532ca77a90152181_34771_1200x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/insidemordecai.com/feature_hu23437e47f85e6a5a532ca77a90152181_34771_1200x0_resize_q75_box.jpg new file mode 100644 index 00000000..a7bc86b3 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/insidemordecai.com/feature_hu23437e47f85e6a5a532ca77a90152181_34771_1200x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/insidemordecai.com/feature_hu23437e47f85e6a5a532ca77a90152181_34771_600x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/insidemordecai.com/feature_hu23437e47f85e6a5a532ca77a90152181_34771_600x0_resize_q75_box.jpg new file mode 100644 index 00000000..70655cc9 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/insidemordecai.com/feature_hu23437e47f85e6a5a532ca77a90152181_34771_600x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/jahsehj.github.io/feature_hu87f61157e56628b67553cd6059af1754_58837_1200x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/jahsehj.github.io/feature_hu87f61157e56628b67553cd6059af1754_58837_1200x0_resize_q75_box.jpg new file mode 100644 index 00000000..5128a85c Binary files /dev/null and b/exampleSite/resources/_gen/images/users/jahsehj.github.io/feature_hu87f61157e56628b67553cd6059af1754_58837_1200x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/jahsehj.github.io/feature_hu87f61157e56628b67553cd6059af1754_58837_600x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/jahsehj.github.io/feature_hu87f61157e56628b67553cd6059af1754_58837_600x0_resize_q75_box.jpg new file mode 100644 index 00000000..b3dcea7d Binary files /dev/null and b/exampleSite/resources/_gen/images/users/jahsehj.github.io/feature_hu87f61157e56628b67553cd6059af1754_58837_600x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/jamiemoxon.tech/feature_huae5104590381bd7c7b01ef26f7989da7_51571_1200x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/jamiemoxon.tech/feature_huae5104590381bd7c7b01ef26f7989da7_51571_1200x0_resize_q75_box.jpg new file mode 100644 index 00000000..dd86b058 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/jamiemoxon.tech/feature_huae5104590381bd7c7b01ef26f7989da7_51571_1200x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/jamiemoxon.tech/feature_huae5104590381bd7c7b01ef26f7989da7_51571_600x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/jamiemoxon.tech/feature_huae5104590381bd7c7b01ef26f7989da7_51571_600x0_resize_q75_box.jpg new file mode 100644 index 00000000..82631e47 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/jamiemoxon.tech/feature_huae5104590381bd7c7b01ef26f7989da7_51571_600x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/jundimubarok.com/feature_huab38ee3d014334bc3396bcc9fd262169_55305_1200x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/jundimubarok.com/feature_huab38ee3d014334bc3396bcc9fd262169_55305_1200x0_resize_q75_box.jpg new file mode 100644 index 00000000..29fb3346 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/jundimubarok.com/feature_huab38ee3d014334bc3396bcc9fd262169_55305_1200x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/jundimubarok.com/feature_huab38ee3d014334bc3396bcc9fd262169_55305_600x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/jundimubarok.com/feature_huab38ee3d014334bc3396bcc9fd262169_55305_600x0_resize_q75_box.jpg new file mode 100644 index 00000000..f36c1815 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/jundimubarok.com/feature_huab38ee3d014334bc3396bcc9fd262169_55305_600x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/marupanda.art-marucomics/feature_huc5aaf213382a21cb2bc00ac3f4b7b1c3_80338_1200x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/marupanda.art-marucomics/feature_huc5aaf213382a21cb2bc00ac3f4b7b1c3_80338_1200x0_resize_q75_box.jpg new file mode 100644 index 00000000..aaea2185 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/marupanda.art-marucomics/feature_huc5aaf213382a21cb2bc00ac3f4b7b1c3_80338_1200x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/marupanda.art-marucomics/feature_huc5aaf213382a21cb2bc00ac3f4b7b1c3_80338_600x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/marupanda.art-marucomics/feature_huc5aaf213382a21cb2bc00ac3f4b7b1c3_80338_600x0_resize_q75_box.jpg new file mode 100644 index 00000000..48cdfc9b Binary files /dev/null and b/exampleSite/resources/_gen/images/users/marupanda.art-marucomics/feature_huc5aaf213382a21cb2bc00ac3f4b7b1c3_80338_600x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/mucahitkurtlar.github.io/feature_hu02b9e29b0094b5c54390a8bb099d2791_31820_1200x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/mucahitkurtlar.github.io/feature_hu02b9e29b0094b5c54390a8bb099d2791_31820_1200x0_resize_q75_box.jpg new file mode 100644 index 00000000..7ecc7be7 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/mucahitkurtlar.github.io/feature_hu02b9e29b0094b5c54390a8bb099d2791_31820_1200x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/mucahitkurtlar.github.io/feature_hu02b9e29b0094b5c54390a8bb099d2791_31820_600x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/mucahitkurtlar.github.io/feature_hu02b9e29b0094b5c54390a8bb099d2791_31820_600x0_resize_q75_box.jpg new file mode 100644 index 00000000..e3510a23 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/mucahitkurtlar.github.io/feature_hu02b9e29b0094b5c54390a8bb099d2791_31820_600x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/nikarashihatsu.github.io/feature_hu0d9cf90b406b1222ddd652eef32745bf_68395_1200x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/nikarashihatsu.github.io/feature_hu0d9cf90b406b1222ddd652eef32745bf_68395_1200x0_resize_q75_box.jpg new file mode 100644 index 00000000..71b11d93 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/nikarashihatsu.github.io/feature_hu0d9cf90b406b1222ddd652eef32745bf_68395_1200x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/nikarashihatsu.github.io/feature_hu0d9cf90b406b1222ddd652eef32745bf_68395_600x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/nikarashihatsu.github.io/feature_hu0d9cf90b406b1222ddd652eef32745bf_68395_600x0_resize_q75_box.jpg new file mode 100644 index 00000000..4761fc7d Binary files /dev/null and b/exampleSite/resources/_gen/images/users/nikarashihatsu.github.io/feature_hu0d9cf90b406b1222ddd652eef32745bf_68395_600x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/niklas-hartmann-dev.de/feature_hue453472b5d0e77f88836c664c240a40c_92046_1200x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/niklas-hartmann-dev.de/feature_hue453472b5d0e77f88836c664c240a40c_92046_1200x0_resize_q75_box.jpg new file mode 100644 index 00000000..38873979 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/niklas-hartmann-dev.de/feature_hue453472b5d0e77f88836c664c240a40c_92046_1200x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/niklas-hartmann-dev.de/feature_hue453472b5d0e77f88836c664c240a40c_92046_600x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/niklas-hartmann-dev.de/feature_hue453472b5d0e77f88836c664c240a40c_92046_600x0_resize_q75_box.jpg new file mode 100644 index 00000000..b3ab2097 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/niklas-hartmann-dev.de/feature_hue453472b5d0e77f88836c664c240a40c_92046_600x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/pacochan.net/feature_hu562533344f27bc89771c0b22699cd5fd_80652_1200x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/pacochan.net/feature_hu562533344f27bc89771c0b22699cd5fd_80652_1200x0_resize_q75_box.jpg new file mode 100644 index 00000000..7e14372d Binary files /dev/null and b/exampleSite/resources/_gen/images/users/pacochan.net/feature_hu562533344f27bc89771c0b22699cd5fd_80652_1200x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/pacochan.net/feature_hu562533344f27bc89771c0b22699cd5fd_80652_600x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/pacochan.net/feature_hu562533344f27bc89771c0b22699cd5fd_80652_600x0_resize_q75_box.jpg new file mode 100644 index 00000000..1e0de857 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/pacochan.net/feature_hu562533344f27bc89771c0b22699cd5fd_80652_600x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/rdgo.dev/feature_hu8ec9c161a94bd588f924cee6edf989be_27024_1200x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/rdgo.dev/feature_hu8ec9c161a94bd588f924cee6edf989be_27024_1200x0_resize_q75_box.jpg new file mode 100644 index 00000000..4ce9306d Binary files /dev/null and b/exampleSite/resources/_gen/images/users/rdgo.dev/feature_hu8ec9c161a94bd588f924cee6edf989be_27024_1200x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/rdgo.dev/feature_hu8ec9c161a94bd588f924cee6edf989be_27024_600x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/rdgo.dev/feature_hu8ec9c161a94bd588f924cee6edf989be_27024_600x0_resize_q75_box.jpg new file mode 100644 index 00000000..008f15e6 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/rdgo.dev/feature_hu8ec9c161a94bd588f924cee6edf989be_27024_600x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/sdehm.dev/feature_hu5d53cd9e3d2e3c3861538da8b5455f9a_62858_1200x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/sdehm.dev/feature_hu5d53cd9e3d2e3c3861538da8b5455f9a_62858_1200x0_resize_q75_box.jpg new file mode 100644 index 00000000..b695fba8 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/sdehm.dev/feature_hu5d53cd9e3d2e3c3861538da8b5455f9a_62858_1200x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/sdehm.dev/feature_hu5d53cd9e3d2e3c3861538da8b5455f9a_62858_600x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/sdehm.dev/feature_hu5d53cd9e3d2e3c3861538da8b5455f9a_62858_600x0_resize_q75_box.jpg new file mode 100644 index 00000000..c7866dcd Binary files /dev/null and b/exampleSite/resources/_gen/images/users/sdehm.dev/feature_hu5d53cd9e3d2e3c3861538da8b5455f9a_62858_600x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/shenshu.fun/feature_huc8ed9b7fdd7602d43c590254347e5e43_89415_1200x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/shenshu.fun/feature_huc8ed9b7fdd7602d43c590254347e5e43_89415_1200x0_resize_q75_box.jpg new file mode 100644 index 00000000..f6b8f9d2 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/shenshu.fun/feature_huc8ed9b7fdd7602d43c590254347e5e43_89415_1200x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/shenshu.fun/feature_huc8ed9b7fdd7602d43c590254347e5e43_89415_600x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/shenshu.fun/feature_huc8ed9b7fdd7602d43c590254347e5e43_89415_600x0_resize_q75_box.jpg new file mode 100644 index 00000000..8b3386a5 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/shenshu.fun/feature_huc8ed9b7fdd7602d43c590254347e5e43_89415_600x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/spelucin.me/feature_hua932214a9cffc40c9d4969f4532fdbbc_40849_1200x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/spelucin.me/feature_hua932214a9cffc40c9d4969f4532fdbbc_40849_1200x0_resize_q75_box.jpg new file mode 100644 index 00000000..05c8d332 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/spelucin.me/feature_hua932214a9cffc40c9d4969f4532fdbbc_40849_1200x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/spelucin.me/feature_hua932214a9cffc40c9d4969f4532fdbbc_40849_600x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/spelucin.me/feature_hua932214a9cffc40c9d4969f4532fdbbc_40849_600x0_resize_q75_box.jpg new file mode 100644 index 00000000..309c7168 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/spelucin.me/feature_hua932214a9cffc40c9d4969f4532fdbbc_40849_600x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/talkdimsum.com/feature_hu01ef8d7856fc3dd333bca9a83988fdee_72052_1200x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/talkdimsum.com/feature_hu01ef8d7856fc3dd333bca9a83988fdee_72052_1200x0_resize_q75_box.jpg new file mode 100644 index 00000000..1da4724e Binary files /dev/null and b/exampleSite/resources/_gen/images/users/talkdimsum.com/feature_hu01ef8d7856fc3dd333bca9a83988fdee_72052_1200x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/talkdimsum.com/feature_hu01ef8d7856fc3dd333bca9a83988fdee_72052_600x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/talkdimsum.com/feature_hu01ef8d7856fc3dd333bca9a83988fdee_72052_600x0_resize_q75_box.jpg new file mode 100644 index 00000000..a803a562 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/talkdimsum.com/feature_hu01ef8d7856fc3dd333bca9a83988fdee_72052_600x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/technicat.com/feature_huc91dcc04d74d083c4a888ce8e6e9670c_80229_1200x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/technicat.com/feature_huc91dcc04d74d083c4a888ce8e6e9670c_80229_1200x0_resize_q75_box.jpg new file mode 100644 index 00000000..47922bc3 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/technicat.com/feature_huc91dcc04d74d083c4a888ce8e6e9670c_80229_1200x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/technicat.com/feature_huc91dcc04d74d083c4a888ce8e6e9670c_80229_600x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/technicat.com/feature_huc91dcc04d74d083c4a888ce8e6e9670c_80229_600x0_resize_q75_box.jpg new file mode 100644 index 00000000..08783b91 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/technicat.com/feature_huc91dcc04d74d083c4a888ce8e6e9670c_80229_600x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/vkmki001.github.io/feature_hude30833d0e9d531e1f9e1f9cbede5193_156952_1200x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/vkmki001.github.io/feature_hude30833d0e9d531e1f9e1f9cbede5193_156952_1200x0_resize_q75_box.jpg new file mode 100644 index 00000000..43f27d7d Binary files /dev/null and b/exampleSite/resources/_gen/images/users/vkmki001.github.io/feature_hude30833d0e9d531e1f9e1f9cbede5193_156952_1200x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/vkmki001.github.io/feature_hude30833d0e9d531e1f9e1f9cbede5193_156952_600x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/vkmki001.github.io/feature_hude30833d0e9d531e1f9e1f9cbede5193_156952_600x0_resize_q75_box.jpg new file mode 100644 index 00000000..1e6f8e98 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/vkmki001.github.io/feature_hude30833d0e9d531e1f9e1f9cbede5193_156952_600x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/weaxsey.org/feature_hu37fe428673f68343b4042e83d4b283c7_73993_1200x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/weaxsey.org/feature_hu37fe428673f68343b4042e83d4b283c7_73993_1200x0_resize_q75_box.jpg new file mode 100644 index 00000000..9b191c07 Binary files /dev/null and b/exampleSite/resources/_gen/images/users/weaxsey.org/feature_hu37fe428673f68343b4042e83d4b283c7_73993_1200x0_resize_q75_box.jpg differ diff --git a/exampleSite/resources/_gen/images/users/weaxsey.org/feature_hu37fe428673f68343b4042e83d4b283c7_73993_600x0_resize_q75_box.jpg b/exampleSite/resources/_gen/images/users/weaxsey.org/feature_hu37fe428673f68343b4042e83d4b283c7_73993_600x0_resize_q75_box.jpg new file mode 100644 index 00000000..ac2a2cec Binary files /dev/null and b/exampleSite/resources/_gen/images/users/weaxsey.org/feature_hu37fe428673f68343b4042e83d4b283c7_73993_600x0_resize_q75_box.jpg differ diff --git a/layouts/partials/home/hero.html b/layouts/partials/home/hero.html index c9a09c42..b654a6fc 100644 --- a/layouts/partials/home/hero.html +++ b/layouts/partials/home/hero.html @@ -34,7 +34,7 @@ {{ . | markdownify | emojify }} {{ end }} -
+
{{ with .Site.Author.links }}
{{ range $links := . }} diff --git a/layouts/shortcodes/figure.html b/layouts/shortcodes/figure.html index a9a4a15b..c916c9dc 100644 --- a/layouts/shortcodes/figure.html +++ b/layouts/shortcodes/figure.html @@ -7,6 +7,7 @@ {{ $caption := .Get "caption" }} {{ $href := .Get "href" }} {{ $class := .Get "class" }} + {{ $nozoom := .Get "nozoom" | default false }} {{ if findRE "^https?" $url.Scheme }}
{{ $altText }} @@ -24,13 +25,13 @@ {{ with $href }}{{ end }} {{ if $disableImageOptimization }} {{ $altText }} {{ else }} {{ else }}
- {{ $altText }} + {{ $altText }} {{ with $caption }}
{{ . | markdownify }}
{{ end }}
{{ end }} diff --git a/package.json b/package.json index 6376be43..bcf1baef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hugo-blowfish-theme", - "version": "2.40.1", + "version": "2.41.0", "description": "Blowfish theme for Hugo", "scripts": { "fullinstall": "npm run preinstall && npm install && npm run postinstall",