diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000..021c8a9e --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,16 @@ +After you have read the [instructions for adding a theme](https://github.com/gohugoio/hugoThemesSiteBuilder/blob/main/README.md#adding-a-theme), please make sure: + +- [ ] your theme.toml [is complete](https://github.com/gohugoio/hugoThemesSiteBuilder/blob/main/README.md#theme-configuration) + - [ ] name + - [ ] license + - [ ] licenselink + - [ ] description + - [ ] homepage + - [ ] demosite (if one exists) + - [ ] tags + - [ ] features + - [ ] authors/author (depending on whether the theme has multiple or a single author) + - [ ] original (if the theme is a fork) +- [ ] you're using [absolute paths for images](https://github.com/gohugoio/hugoThemesSiteBuilder/blob/main/README.md#use-absolute-paths-for-images) in your README +- [ ] you've got [appropriate thumbnail and screenshot images](https://github.com/gohugoio/hugoThemesSiteBuilder/blob/main/README.md#media) +- [ ] your theme comes with an [appropriate license](https://github.com/gohugoio/hugoThemesSiteBuilder/blob/main/README.md#2-license) diff --git a/.github/workflows/update-themes.yml b/.github/workflows/update-themes.yml index 96ff79dc..5ce08139 100644 --- a/.github/workflows/update-themes.yml +++ b/.github/workflows/update-themes.yml @@ -4,29 +4,39 @@ on: - cron: "0 0 * * *" workflow_dispatch: env: - HUGO_VERSION: "v0.119.0" + HUGO_VERSION: "v0.125.6" jobs: build: runs-on: ubuntu-latest + # Use bash shell for all steps in the workflow + defaults: + run: + shell: bash env: HUGO_CACHEDIR: /tmp/hugo_cache GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - - uses: actions/checkout@v3 - - uses: actions/setup-go@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 with: go-version: "^1.21.0" - name: Update submodules - shell: bash working-directory: ./cmd/hugothemesitebuilder run: | - git config --global user.email "bep@users.noreply.github.com" - git config --global user.name "bep" go install github.com/gohugoio/hugo@${{ env.HUGO_VERSION }} go run main.go build -skipSiteBuild -cleanCache cd build hugo mod get hugo mod tidy + - name: Commit & push changes + # Check the github.ref context to determine the current branch name. if it is 'refs/heads/main', then commit and push the changes. + # This allows experimenting/debugging GitHub actions without concerns about committing changes. + # For example, changes can be made to this workflow in a separate branch and a workflow run can be triggered manually (workflow_dispatch). + # For more information, see https://docs.github.com/en/actions/learn-github-actions/contexts + if: ${{ github.ref == 'refs/heads/main' }} + run: | + git config --global user.email "bep@users.noreply.github.com" + git config --global user.name "bep" git add . git commit -am "[Bot] Update themes" git push --force-with-lease diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..01cff755 --- /dev/null +++ b/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2024 The Hugo Authors. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/cmd/hugothemesitebuilder/build/cache/githubrepos.json b/cmd/hugothemesitebuilder/build/cache/githubrepos.json index 3c92330b..e49def16 100644 --- a/cmd/hugothemesitebuilder/build/cache/githubrepos.json +++ b/cmd/hugothemesitebuilder/build/cache/githubrepos.json @@ -11,20 +11,20 @@ "github.com/17ms/yuan": { "id": 687570449, "created_at": "2023-09-05T16:15:43Z", - "updated_at": "2023-12-06T15:40:07Z", + "updated_at": "2024-03-21T03:19:46Z", "name": "yuan", "description": "Fast and minimalistic SPA theme for Hugo", "html_url": "https://github.com/17ms/yuan", - "stargazers_count": 1 + "stargazers_count": 2 }, "github.com/1bl4z3r/hermit-V2": { "id": 656079852, "created_at": "2023-06-20T08:12:22Z", - "updated_at": "2024-02-10T10:58:05Z", + "updated_at": "2024-05-15T06:48:54Z", "name": "hermit-V2", - "description": "Continuing Hermit's legacy to be minimal and fast theme. OG : https://github.com/Track3/hermit", + "description": "Continuing Hermit's legacy to be minimal and fast theme", "html_url": "https://github.com/1bl4z3r/hermit-V2", - "stargazers_count": 38 + "stargazers_count": 65 }, "github.com/2-REC/hugo-myportfolio-theme": { "id": 148112554, @@ -47,52 +47,52 @@ "github.com/4s3ti/hugo-theme-hello-4s3ti": { "id": 492198943, "created_at": "2022-05-14T11:39:58Z", - "updated_at": "2023-11-23T23:11:47Z", + "updated_at": "2024-04-26T21:11:26Z", "name": "hugo-theme-hello-4s3ti", "description": "Pretty basic theme for Hugo that covers all of the essentials. All you have to do is start typing!", - "html_url": "https://github.com/4s3ti/hugo-theme-hello-4s3ti", - "stargazers_count": 19 + "html_url": "https://github.com/coolapso/hugo-theme-hello-4s3ti", + "stargazers_count": 21 }, "github.com/4s3ti/terminalcv": { "id": 495062258, "created_at": "2022-05-22T13:05:35Z", - "updated_at": "2024-02-14T03:30:57Z", + "updated_at": "2024-05-12T11:34:13Z", "name": "terminalcv", "description": "An easy to setup and (almost) fully customizable command line style CV theme for HUGO", - "html_url": "https://github.com/4s3ti/terminalcv", - "stargazers_count": 78 + "html_url": "https://github.com/coolapso/terminalcv", + "stargazers_count": 95 }, "github.com/526avijitgupta/gokarna": { "id": 369759352, "created_at": "2021-05-22T08:45:30Z", - "updated_at": "2024-02-14T02:25:51Z", + "updated_at": "2024-05-09T12:04:23Z", "name": "gokarna", "description": "A minimal opinionated theme for Hugo", "html_url": "https://github.com/526avijitgupta/gokarna", - "stargazers_count": 283 + "stargazers_count": 305 }, "github.com/64bitpandas/amethyst": { "id": 583773651, "created_at": "2022-12-30T21:48:22Z", - "updated_at": "2024-02-14T19:54:29Z", + "updated_at": "2024-05-12T12:08:09Z", "name": "amethyst", "description": "📓 obsidian-compatible notes theme for hugo, built from quartz and hugo-book", "html_url": "https://github.com/64bitpandas/amethyst", - "stargazers_count": 81 + "stargazers_count": 106 }, "github.com/7ma7X/HugoTeX": { "id": 268434902, "created_at": "2020-06-01T05:41:04Z", - "updated_at": "2024-02-05T02:56:39Z", + "updated_at": "2024-05-12T16:43:18Z", "name": "HugoTeX", "description": "LaTeX style hugo theme", "html_url": "https://github.com/kaisugi/HugoTeX", - "stargazers_count": 86 + "stargazers_count": 93 }, "github.com/AlexFinn/simple-a": { "id": 20995016, "created_at": "2014-06-19T09:30:36Z", - "updated_at": "2023-01-23T13:09:51Z", + "updated_at": "2024-03-16T12:19:26Z", "name": "simple-a", "description": "Minimalistic Hugo theme", "html_url": "https://github.com/alxschwarz/simple-a", @@ -101,20 +101,20 @@ "github.com/AmazingRise/hugo-theme-diary": { "id": 220989613, "created_at": "2019-11-11T13:40:14Z", - "updated_at": "2024-02-02T09:11:11Z", + "updated_at": "2024-05-14T22:41:12Z", "name": "hugo-theme-diary", "description": "Moments piled up. A Hugo theme ported from SumiMakito/hexo-theme-Journal.", "html_url": "https://github.com/AmazingRise/hugo-theme-diary", - "stargazers_count": 483 + "stargazers_count": 517 }, "github.com/AminZibayi/Corporio": { "id": 533509671, "created_at": "2022-09-06T21:36:13Z", - "updated_at": "2024-01-18T12:29:35Z", + "updated_at": "2024-04-13T03:46:14Z", "name": "Corporio", "description": "Enterprise level corporation website template leveraging latest technologies making it secure, fast, and SEO-ready — by default.", "html_url": "https://github.com/AminZibayi/Corporio", - "stargazers_count": 12 + "stargazers_count": 14 }, "github.com/AngeloStavrow/indigo": { "id": 144703412, @@ -137,11 +137,11 @@ "github.com/Binary-Eater/hugo-theme-ghci": { "id": 443954166, "created_at": "2022-01-03T05:47:23Z", - "updated_at": "2023-12-10T09:06:32Z", + "updated_at": "2024-05-10T07:37:08Z", "name": "hugo-theme-ghci", "description": "Hugo GHCi theme : GHCi-like theme with selectable color schemes.", "html_url": "https://github.com/Binary-Eater/hugo-theme-ghci", - "stargazers_count": 3 + "stargazers_count": 2 }, "github.com/Bonzdev/alexa-portfolio": { "id": 432098033, @@ -155,38 +155,47 @@ "github.com/CaiJimmy/hugo-theme-stack/v3": { "id": 289457038, "created_at": "2020-08-22T09:16:55Z", - "updated_at": "2024-02-15T11:44:09Z", + "updated_at": "2024-05-15T17:11:50Z", "name": "hugo-theme-stack", "description": "Card-style Hugo theme designed for bloggers", "html_url": "https://github.com/CaiJimmy/hugo-theme-stack", - "stargazers_count": 4081 + "stargazers_count": 4441 + }, + "github.com/ElecBrandy/freshpink": { + "id": 772008671, + "created_at": "2024-03-14T11:08:35Z", + "updated_at": "2024-03-19T11:14:10Z", + "name": "freshpink", + "description": "", + "html_url": "https://github.com/ElecBrandy/freshpink", + "stargazers_count": 0 }, "github.com/EmielH/hallo-hugo": { "id": 155071757, "created_at": "2018-10-28T13:02:54Z", - "updated_at": "2024-01-24T03:02:44Z", + "updated_at": "2024-03-30T11:41:26Z", "name": "hallo-hugo", "description": "Hallo is a single-page Hugo theme to introduce yourself.", "html_url": "https://github.com/EmielH/hallo-hugo", - "stargazers_count": 101 + "stargazers_count": 102 }, "github.com/EmielH/stip-hugo": { "id": 178725944, "created_at": "2019-03-31T18:25:34Z", - "updated_at": "2023-07-26T17:56:04Z", + "updated_at": "2024-03-30T11:41:23Z", "name": "stip-hugo", "description": "Stip is a single-page Hugo theme to introduce yourself, based on Material Design's tap target design pattern.", "html_url": "https://github.com/EmielH/stip-hugo", - "stargazers_count": 20 + "stargazers_count": 21 }, "github.com/EmielH/tale-hugo": { "id": 142682503, "created_at": "2018-07-28T14:12:03Z", - "updated_at": "2024-02-02T07:51:53Z", + "updated_at": "2024-05-09T09:54:19Z", "name": "tale-hugo", "description": "A port of the Tale theme for Hugo. Tale is a minimal theme curated for storytellers.", "html_url": "https://github.com/EmielH/tale-hugo", - "stargazers_count": 247 + "stargazers_count": 248 }, "github.com/ExchangeRate-API/strange-case": { "id": 66580052, @@ -200,61 +209,61 @@ "github.com/FarseaSH/hugo-theme-moments": { "id": 392914495, "created_at": "2021-08-05T05:30:33Z", - "updated_at": "2024-02-15T16:37:59Z", + "updated_at": "2024-05-11T07:45:19Z", "name": "hugo-theme-moments", - "description": "", + "description": "A Hugo theme designed for micro-blogging. 专为动态发布设计的moments主题", "html_url": "https://github.com/FarseaSH/hugo-theme-moments", - "stargazers_count": 82 + "stargazers_count": 104 }, "github.com/Fastbyte01/KeepIt": { "id": 168930851, "created_at": "2019-02-03T09:52:26Z", - "updated_at": "2024-02-15T13:17:18Z", + "updated_at": "2024-05-15T20:20:32Z", "name": "KeepIt", "description": "The most powerful minimal Hugo theme.", "html_url": "https://github.com/Fastbyte01/KeepIt", - "stargazers_count": 258 + "stargazers_count": 266 }, "github.com/GDGToulouse/devfest-theme-hugo": { "id": 165132952, "created_at": "2019-01-10T21:22:23Z", - "updated_at": "2023-12-04T21:29:51Z", + "updated_at": "2024-04-12T15:22:57Z", "name": "devfest-theme-hugo", "description": "A theme for a conference website. Created for DevFest Toulouse 2019", "html_url": "https://github.com/GDGToulouse/devfest-theme-hugo", - "stargazers_count": 83 + "stargazers_count": 84 }, "github.com/HEIGE-PCloud/DoIt": { "id": 358233149, "created_at": "2021-04-15T11:24:30Z", - "updated_at": "2024-02-15T07:17:09Z", + "updated_at": "2024-05-15T15:14:10Z", "name": "DoIt", "description": "A clean, elegant and advanced blog theme for Hugo.", "html_url": "https://github.com/HEIGE-PCloud/DoIt", - "stargazers_count": 675 + "stargazers_count": 718 }, "github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind": { "id": 57165232, "created_at": "2016-04-26T22:09:15Z", - "updated_at": "2024-02-14T22:35:01Z", + "updated_at": "2024-05-15T23:16:42Z", "name": "hugo-blox-builder", "description": "😍 EASILY BUILD THE WEBSITE YOU WANT - NO CODE, JUST MARKDOWN BLOCKS! 使用块轻松创建任何类型的网站 - 无需代码。 一个应用程序,没有依赖项,没有 JS", "html_url": "https://github.com/HugoBlox/hugo-blox-builder", - "stargazers_count": 7635 + "stargazers_count": 7842 }, "github.com/HugoBlox/theme-academic-cv": { "id": 111604813, "created_at": "2017-11-21T21:47:01Z", - "updated_at": "2024-02-15T15:08:56Z", + "updated_at": "2024-05-15T18:48:58Z", "name": "theme-academic-cv", "description": "🎓 无需编写任何代码即可轻松创建漂亮的学术网站 Easily create a beautiful academic résumé or educational website using Hugo and GitHub. No code.", "html_url": "https://github.com/HugoBlox/theme-academic-cv", - "stargazers_count": 3408 + "stargazers_count": 3574 }, "github.com/Ice-Hazymoon/hugo-theme-luna": { "id": 486781027, "created_at": "2022-04-28T23:48:19Z", - "updated_at": "2024-01-23T19:27:51Z", + "updated_at": "2024-04-22T16:38:11Z", "name": "hugo-theme-luna", "description": "A simple, performance-first, SEO-friendly Hugo theme / 一个轻量,快速,SEO 友好的 Hugo 主题", "html_url": "https://github.com/Ice-Hazymoon/hugo-theme-luna", @@ -272,20 +281,20 @@ "github.com/J-Siu/hugo-theme-sk1": { "id": 275064335, "created_at": "2020-06-26T03:19:59Z", - "updated_at": "2024-02-02T11:36:29Z", + "updated_at": "2024-02-22T08:18:51Z", "name": "hugo-theme-sk1", "description": "Hugo Theme - SK1 (Skeleton 1)", "html_url": "https://github.com/J-Siu/hugo-theme-sk1", - "stargazers_count": 24 + "stargazers_count": 25 }, "github.com/J-Siu/hugo-theme-sk2": { "id": 275083827, "created_at": "2020-06-26T05:51:42Z", - "updated_at": "2023-09-13T03:51:35Z", + "updated_at": "2024-04-08T05:10:53Z", "name": "hugo-theme-sk2", "description": "Hugo Theme - SK2 (Skeleton 2) ", "html_url": "https://github.com/J-Siu/hugo-theme-sk2", - "stargazers_count": 8 + "stargazers_count": 9 }, "github.com/J-Siu/hugo-theme-sk3": { "id": 275693161, @@ -308,11 +317,20 @@ "github.com/JingWangTW/dark-theme-editor": { "id": 462245455, "created_at": "2022-02-22T10:26:06Z", - "updated_at": "2024-02-04T09:15:46Z", + "updated_at": "2024-05-11T05:45:00Z", "name": "dark-theme-editor", "description": "Hugo Theme - dark theme editor", "html_url": "https://github.com/JingWangTW/dark-theme-editor", - "stargazers_count": 12 + "stargazers_count": 18 + }, + "github.com/Junyi-99/hugo-theme-anubis2": { + "id": 743078889, + "created_at": "2024-01-14T09:01:57Z", + "updated_at": "2024-05-12T10:14:22Z", + "name": "hugo-theme-anubis2", + "description": "Anubis2 is a simple but elegant theme for Hugo blog engine", + "html_url": "https://github.com/Junyi-99/hugo-theme-anubis2", + "stargazers_count": 18 }, "github.com/KatamariJr/split-landing": { "id": 384190570, @@ -326,56 +344,56 @@ "github.com/Lednerb/bilberry-hugo-theme/v4": { "id": 108488686, "created_at": "2017-10-27T02:20:38Z", - "updated_at": "2024-02-15T12:59:03Z", + "updated_at": "2024-04-20T08:56:08Z", "name": "bilberry-hugo-theme", "description": "Premium theme for the hugo site builder. DEMO:", "html_url": "https://github.com/Lednerb/bilberry-hugo-theme", - "stargazers_count": 342 + "stargazers_count": 347 }, "github.com/LordMathis/hugo-theme-nightfall": { "id": 598748334, "created_at": "2023-02-07T18:26:12Z", - "updated_at": "2024-02-15T19:40:19Z", + "updated_at": "2024-05-10T07:16:49Z", "name": "hugo-theme-nightfall", "description": "Minimal dark theme for Hugo", "html_url": "https://github.com/LordMathis/hugo-theme-nightfall", - "stargazers_count": 60 + "stargazers_count": 66 }, "github.com/LordMathis/hugo-theme-nix": { "id": 69647603, "created_at": "2016-09-30T08:11:59Z", - "updated_at": "2024-02-08T16:57:56Z", + "updated_at": "2024-05-06T14:18:42Z", "name": "hugo-theme-nix", "description": "Nix is a simple, minimal theme for Hugo", "html_url": "https://github.com/LordMathis/hugo-theme-nix", - "stargazers_count": 129 + "stargazers_count": 130 }, "github.com/LucasVadilho/heyo-hugo-theme": { "id": 676115194, "created_at": "2023-08-08T13:15:24Z", - "updated_at": "2024-01-05T13:02:38Z", + "updated_at": "2024-05-11T16:13:08Z", "name": "heyo-hugo-theme", "description": "A theme for hugo", "html_url": "https://github.com/LucasVadilho/heyo-hugo-theme", - "stargazers_count": 15 + "stargazers_count": 17 }, "github.com/LukasJoswiak/etch": { "id": 264117296, "created_at": "2020-05-15T06:42:30Z", - "updated_at": "2024-02-14T06:15:36Z", + "updated_at": "2024-05-10T11:20:53Z", "name": "etch", "description": "A simple, responsive writing theme for Hugo.", "html_url": "https://github.com/LukasJoswiak/etch", - "stargazers_count": 279 + "stargazers_count": 288 }, "github.com/M1cR0xf7/kaslaanka": { "id": 440512474, "created_at": "2021-12-21T12:40:06Z", - "updated_at": "2024-02-13T21:32:29Z", + "updated_at": "2024-04-09T10:11:33Z", "name": "kaslaanka", "description": "A minimalist and text oriented blog/personal website theme for Hugo.", "html_url": "https://github.com/M1cR0xf7/kaslaanka", - "stargazers_count": 15 + "stargazers_count": 17 }, "github.com/MarcusVirg/forty": { "id": 111167907, @@ -389,47 +407,38 @@ "github.com/Masellum/hugo-theme-nostyleplease": { "id": 529136909, "created_at": "2022-08-26T06:09:41Z", - "updated_at": "2024-02-15T21:53:31Z", + "updated_at": "2024-05-14T07:58:25Z", "name": "hugo-theme-nostyleplease", "description": "a (nearly) no-CSS, fast, minimalist Hugo theme ported from riggraz/no-style-please.", "html_url": "https://github.com/g-hanwen/hugo-theme-nostyleplease", - "stargazers_count": 142 + "stargazers_count": 163 }, "github.com/McShelby/hugo-theme-relearn": { "id": 295128524, "created_at": "2020-09-13T10:34:08Z", - "updated_at": "2024-02-15T15:30:37Z", + "updated_at": "2024-05-09T12:05:08Z", "name": "hugo-theme-relearn", "description": "A theme for Hugo designed for documentation", "html_url": "https://github.com/McShelby/hugo-theme-relearn", - "stargazers_count": 283 + "stargazers_count": 322 }, "github.com/MeiK2333/github-style": { "id": 216473473, "created_at": "2019-10-21T03:53:00Z", - "updated_at": "2024-02-03T22:01:47Z", + "updated_at": "2024-05-15T07:37:10Z", "name": "github-style", "description": "", "html_url": "https://github.com/MeiK2333/github-style", - "stargazers_count": 475 + "stargazers_count": 512 }, "github.com/MichaelSchaecher/simple-dark": { - "id": 732767902, - "created_at": "2023-12-17T19:04:17Z", - "updated_at": "2023-12-22T19:24:38Z", + "id": 783078846, + "created_at": "2024-04-06T22:08:04Z", + "updated_at": "2024-05-14T13:22:37Z", "name": "simple-dark", - "description": "A dark theme that is simple yet bueatiful. Checkout the demo https://simple-dark.pages.dev/", + "description": "Theme for Hugo that is simple and dark.", "html_url": "https://github.com/MichaelSchaecher/simple-dark", - "stargazers_count": 0 - }, - "github.com/Mitrichius/hugo-theme-anubis": { - "id": 233350753, - "created_at": "2020-01-12T06:48:55Z", - "updated_at": "2024-02-12T21:49:14Z", - "name": "hugo-theme-anubis", - "description": "Anubis is a simple minimalist theme for Hugo blog engine", - "html_url": "https://github.com/Mitrichius/hugo-theme-anubis", - "stargazers_count": 399 + "stargazers_count": 2 }, "github.com/Morgscode/hugo-theme-spaced-blog": { "id": 595376431, @@ -443,11 +452,11 @@ "github.com/MunifTanjim/minimo": { "id": 91743121, "created_at": "2017-05-18T22:32:21Z", - "updated_at": "2024-02-09T19:38:42Z", + "updated_at": "2024-05-15T14:10:43Z", "name": "minimo", "description": "Minimo - Minimalist theme for Hugo", "html_url": "https://github.com/MunifTanjim/minimo", - "stargazers_count": 546 + "stargazers_count": 547 }, "github.com/Nigh/tinyworks": { "id": 333529510, @@ -470,7 +479,7 @@ "github.com/PippoRJ/hugo-refresh": { "id": 194754990, "created_at": "2019-07-01T23:19:32Z", - "updated_at": "2024-02-12T18:40:12Z", + "updated_at": "2024-04-04T13:56:05Z", "name": "hugo-refresh", "description": "", "html_url": "https://github.com/PippoRJ/hugo-refresh", @@ -479,11 +488,11 @@ "github.com/RCJacH/hugo-webslides": { "id": 201426894, "created_at": "2019-08-09T08:35:08Z", - "updated_at": "2024-02-14T15:01:50Z", + "updated_at": "2024-03-30T11:41:41Z", "name": "hugo-webslides", "description": "This is a Hugo template to create WebSlides presentation using markdown.", "html_url": "https://github.com/RCJacH/hugo-webslides", - "stargazers_count": 121 + "stargazers_count": 125 }, "github.com/RainerChiang/simpleness": { "id": 320826343, @@ -497,11 +506,11 @@ "github.com/RealOrangeOne/hugo-theme-revealjs": { "id": 116035639, "created_at": "2018-01-02T16:37:47Z", - "updated_at": "2023-08-27T21:07:41Z", + "updated_at": "2024-04-21T13:20:23Z", "name": "hugo-theme-revealjs", "description": "Use Hugo to build a presentation, powered by RevealJS", "html_url": "https://github.com/RealOrangeOne/hugo-theme-revealjs", - "stargazers_count": 46 + "stargazers_count": 45 }, "github.com/RononDex/interstellar-hugo": { "id": 437852543, @@ -524,56 +533,56 @@ "github.com/Somrat37/somrat": { "id": 236543601, "created_at": "2020-01-27T17:02:30Z", - "updated_at": "2024-02-09T13:08:06Z", + "updated_at": "2024-04-30T14:15:11Z", "name": "somrat-hugo-theme", "description": "A Hugo portfolio theme (archived)", "html_url": "https://github.com/somratpro/somrat-hugo-theme", - "stargazers_count": 144 + "stargazers_count": 145 }, "github.com/Sped0n/bridget": { "id": 611507123, "created_at": "2023-03-09T00:50:56Z", - "updated_at": "2024-02-05T19:12:55Z", + "updated_at": "2024-05-12T08:20:14Z", "name": "bridget", - "description": "Bridget is a minimal Hugo theme designed for photographers/visual artists.", + "description": "Bridget is a minimal Hugo theme for photographers/visual artists, powered by Solid.js.", "html_url": "https://github.com/Sped0n/bridget", - "stargazers_count": 18 + "stargazers_count": 36 }, "github.com/StaticMania/portio-hugo": { "id": 290140349, "created_at": "2020-08-25T07:05:28Z", - "updated_at": "2024-02-13T20:38:26Z", + "updated_at": "2024-05-06T21:07:28Z", "name": "portio-hugo", "description": "Portio Hugo is a simple, minimal and responsive Portfolio Hugo Theme. Portio Hugo is well organized, well-formatted, and named accordingly so it’s easy to change any and all of the design. Portio is built with Bootstrap 4. You can customize it very easily to fit your needs.", "html_url": "https://github.com/StaticMania/portio-hugo", - "stargazers_count": 437 + "stargazers_count": 445 }, "github.com/StaticMania/roxo-hugo": { "id": 245805105, "created_at": "2020-03-08T11:52:08Z", - "updated_at": "2024-01-30T12:29:43Z", + "updated_at": "2024-05-14T12:44:00Z", "name": "roxo-hugo", "description": "", "html_url": "https://github.com/StaticMania/roxo-hugo", - "stargazers_count": 163 + "stargazers_count": 172 }, "github.com/StefMa/hugo-fresh": { "id": 128991512, "created_at": "2018-04-10T20:32:30Z", - "updated_at": "2024-02-12T07:49:54Z", + "updated_at": "2024-05-13T08:29:00Z", "name": "hugo-fresh", "description": "Hugo Fresh Theme", "html_url": "https://github.com/StefMa/hugo-fresh", - "stargazers_count": 559 + "stargazers_count": 584 }, "github.com/SteveLane/hugo-icon": { "id": 104065827, "created_at": "2017-09-19T11:24:46Z", - "updated_at": "2023-05-27T10:07:12Z", + "updated_at": "2024-02-16T17:29:44Z", "name": "hugo-icon", "description": "Icon theme for Hugo", "html_url": "https://github.com/SteveLane/hugo-icon", - "stargazers_count": 88 + "stargazers_count": 87 }, "github.com/Tazeg/hugo-blog-jeffprod": { "id": 144332692, @@ -587,11 +596,11 @@ "github.com/ThemeTony/hugo-theme-tony": { "id": 260594120, "created_at": "2020-05-02T01:46:10Z", - "updated_at": "2024-01-25T16:10:59Z", + "updated_at": "2024-04-19T06:25:26Z", "name": "hugo-theme-tony", "description": " 【不更新新内容了 / Not Maintaining】An Elegant Hugo Theme Based on WordPress Theme Tony ✌️ | 一个简洁强大的 Hugo 博客主题", "html_url": "https://github.com/ThemeTony/hugo-theme-tony", - "stargazers_count": 26 + "stargazers_count": 27 }, "github.com/VVelox/hugo-dusky-neon-potato": { "id": 147290106, @@ -605,7 +614,7 @@ "github.com/Vimux/Binario": { "id": 131256286, "created_at": "2018-04-27T06:39:54Z", - "updated_at": "2024-02-02T17:17:40Z", + "updated_at": "2024-03-07T08:50:29Z", "name": "Binario", "description": "Responsive card-based \u0026 code-light Hugo theme", "html_url": "https://github.com/Vimux/Binario", @@ -614,25 +623,25 @@ "github.com/Vimux/mainroad": { "id": 76561407, "created_at": "2016-12-15T13:21:09Z", - "updated_at": "2024-02-15T03:48:27Z", + "updated_at": "2024-05-15T13:35:51Z", "name": "Mainroad", "description": "Responsive, simple, clean and content-focused Hugo theme based on the MH Magazine lite WordPress theme", "html_url": "https://github.com/Vimux/Mainroad", - "stargazers_count": 851 + "stargazers_count": 872 }, "github.com/WingLim/hugo-tania": { "id": 316264307, "created_at": "2020-11-26T15:06:12Z", - "updated_at": "2024-01-12T16:29:20Z", + "updated_at": "2024-04-30T05:49:43Z", "name": "hugo-tania", "description": "A simple theme for bloggers.", "html_url": "https://github.com/WingLim/hugo-tania", - "stargazers_count": 222 + "stargazers_count": 220 }, "github.com/Wivik/am-writing-hugo-theme": { "id": 726406835, "created_at": "2023-12-02T09:56:47Z", - "updated_at": "2023-12-02T23:59:16Z", + "updated_at": "2024-03-16T11:08:47Z", "name": "am-writing-hugo-theme", "description": "A Hugo theme for a writer who wants to expose their books", "html_url": "https://github.com/Wivik/am-writing-hugo-theme", @@ -641,11 +650,11 @@ "github.com/Wivik/vinyl-records-collection-theme": { "id": 680618633, "created_at": "2023-08-19T20:36:21Z", - "updated_at": "2023-12-28T12:19:44Z", + "updated_at": "2024-03-31T17:04:20Z", "name": "vinyl-records-collection-theme", "description": "A Hugo theme made for those who want to brat about their vinyl records collection.", "html_url": "https://github.com/Wivik/vinyl-records-collection-theme", - "stargazers_count": 3 + "stargazers_count": 4 }, "github.com/Xzya/hugo-material-blog": { "id": 130488118, @@ -659,11 +668,11 @@ "github.com/Yukuro/hugo-theme-shell": { "id": 386575752, "created_at": "2021-07-16T09:05:19Z", - "updated_at": "2024-02-04T19:27:58Z", + "updated_at": "2024-05-15T19:40:37Z", "name": "hugo-theme-shell", "description": "Hugo Shell theme : Terminal-like theme with selectable color schemes.", "html_url": "https://github.com/Yukuro/hugo-theme-shell", - "stargazers_count": 301 + "stargazers_count": 311 }, "github.com/aanupam23/hugo-sugoi": { "id": 248929788, @@ -686,20 +695,20 @@ "github.com/adityatelange/hugo-PaperMod": { "id": 281297416, "created_at": "2020-07-21T04:45:10Z", - "updated_at": "2024-02-15T22:01:02Z", + "updated_at": "2024-05-16T00:19:26Z", "name": "hugo-PaperMod", "description": " A fast, clean, responsive Hugo theme.", "html_url": "https://github.com/adityatelange/hugo-PaperMod", - "stargazers_count": 8127 + "stargazers_count": 8791 }, "github.com/adityatelange/hugo-index": { "id": 625463549, "created_at": "2023-04-09T07:22:09Z", - "updated_at": "2024-01-07T19:48:12Z", + "updated_at": "2024-05-09T02:56:01Z", "name": "hugo-index", "description": "Index is a hugo theme inspired by @GTFOBins", "html_url": "https://github.com/adityatelange/hugo-index", - "stargazers_count": 18 + "stargazers_count": 22 }, "github.com/aerohub/hugo-faq-theme": { "id": 68856818, @@ -722,65 +731,65 @@ "github.com/aerohub/hugo-orbit-theme": { "id": 69219857, "created_at": "2016-09-26T06:30:06Z", - "updated_at": "2024-02-07T19:43:53Z", + "updated_at": "2024-02-23T19:43:49Z", "name": "hugo-orbit-theme", "description": "Great looking resume/CV theme designed for developers.", "html_url": "https://github.com/aerohub/hugo-orbit-theme", - "stargazers_count": 252 + "stargazers_count": 250 }, "github.com/aerohub/hugrid": { "id": 65926114, "created_at": "2016-08-17T16:59:32Z", - "updated_at": "2024-01-14T11:47:52Z", + "updated_at": "2024-04-01T11:06:57Z", "name": "hugrid", "description": "Hugrid (Hugo+grid) is a simple grid theme for Hugo. It's a kind of boilerplate to perform anyone or anything quickly. Portfolio, collection, bookmarks, contacts and so on.", "html_url": "https://github.com/aerohub/hugrid", - "stargazers_count": 160 + "stargazers_count": 161 }, "github.com/airinghost/hugo-theme-icarus-lite": { "id": 417561632, "created_at": "2021-10-15T16:10:40Z", - "updated_at": "2024-01-05T07:43:10Z", + "updated_at": "2024-02-28T13:33:44Z", "name": "hugo-theme-icarus-lite", "description": "一款单栏 Hugo 主题(基于 Hexo 主题 Icarus 的卡片样式制作)。A single-column Hugo theme based on the Hexo theme Icarus's card style.", "html_url": "https://github.com/airinghost/hugo-theme-icarus-lite", - "stargazers_count": 26 + "stargazers_count": 27 }, "github.com/akatiggerx04/graysx-hugo": { "id": 533496386, "created_at": "2022-09-06T20:44:04Z", - "updated_at": "2024-02-15T10:29:46Z", + "updated_at": "2024-04-26T11:27:16Z", "name": "graysx-hugo", "description": "A Minimal Responsive Gray Hugo Theme", "html_url": "https://github.com/akatiggerx04/graysx-hugo", - "stargazers_count": 22 + "stargazers_count": 25 }, "github.com/alanorth/hugo-theme-bootstrap4-blog": { "id": 66769421, "created_at": "2016-08-28T13:23:53Z", - "updated_at": "2023-08-08T11:17:25Z", + "updated_at": "2024-03-10T13:22:56Z", "name": "hugo-theme-bootstrap4-blog", "description": "A blogging-centric Bootstrap v4 theme for the Hugo static site generator.", "html_url": "https://github.com/alanorth/hugo-theme-bootstrap4-blog", - "stargazers_count": 206 + "stargazers_count": 203 }, "github.com/alex-shpak/hugo-book": { "id": 147530276, "created_at": "2018-09-05T14:21:31Z", - "updated_at": "2024-02-15T20:29:01Z", + "updated_at": "2024-05-15T17:02:17Z", "name": "hugo-book", "description": "Hugo documentation theme as simple as plain book", "html_url": "https://github.com/alex-shpak/hugo-book", - "stargazers_count": 2652 + "stargazers_count": 2775 }, "github.com/alexandrevicenzi/soho": { "id": 239386232, "created_at": "2020-02-09T22:47:44Z", - "updated_at": "2023-04-29T03:10:03Z", + "updated_at": "2024-04-24T14:55:15Z", "name": "soho", "description": "Minimalist Hugo theme based on Hyde", "html_url": "https://github.com/alexandrevicenzi/soho", - "stargazers_count": 61 + "stargazers_count": 67 }, "github.com/allnightgrocery/hugo-theme-blueberry-detox": { "id": 34576989, @@ -812,11 +821,11 @@ "github.com/antedoro/arberia": { "id": 558979518, "created_at": "2022-10-28T18:29:35Z", - "updated_at": "2024-02-11T14:24:49Z", + "updated_at": "2024-05-14T08:10:42Z", "name": "arberia", "description": "Arberia Theme is a fully responsive tech-blogger theme for Hugo with 4 single post layout!", "html_url": "https://github.com/antedoro/arberia", - "stargazers_count": 14 + "stargazers_count": 15 }, "github.com/antonpolishko/hugo-stellar-theme": { "id": 136688643, @@ -830,7 +839,7 @@ "github.com/appernetic/hugo-nederburg-theme": { "id": 125446118, "created_at": "2018-03-16T01:18:29Z", - "updated_at": "2023-08-15T05:11:09Z", + "updated_at": "2024-03-25T02:52:22Z", "name": "hugo-nederburg-theme", "description": "Nederburg is a fast and secure hugo theme and is a port of the Tracks WP theme", "html_url": "https://github.com/appernetic/hugo-nederburg-theme", @@ -839,20 +848,20 @@ "github.com/apvarun/blist-hugo-theme": { "id": 386273576, "created_at": "2021-07-15T11:59:59Z", - "updated_at": "2024-02-10T09:17:06Z", + "updated_at": "2024-05-14T07:09:13Z", "name": "blist-hugo-theme", "description": "Blist is a clean and fast blog theme for your Hugo site.", "html_url": "https://github.com/apvarun/blist-hugo-theme", - "stargazers_count": 309 + "stargazers_count": 325 }, "github.com/apvarun/digital-garden-hugo-theme": { "id": 439232849, "created_at": "2021-12-17T06:26:49Z", - "updated_at": "2024-02-12T09:21:32Z", + "updated_at": "2024-05-08T12:03:50Z", "name": "digital-garden-hugo-theme", "description": "Build your own personal Digital Garden effortlessly with this Hugo theme", "html_url": "https://github.com/apvarun/digital-garden-hugo-theme", - "stargazers_count": 210 + "stargazers_count": 221 }, "github.com/apvarun/showcase-hugo-theme": { "id": 269150503, @@ -866,47 +875,47 @@ "github.com/apvarun/showfolio-hugo-theme": { "id": 361160940, "created_at": "2021-04-24T12:51:41Z", - "updated_at": "2024-02-06T07:27:35Z", + "updated_at": "2024-04-28T06:45:42Z", "name": "showfolio-hugo-theme", "description": "Modern portfolio theme for your Hugo site", "html_url": "https://github.com/apvarun/showfolio-hugo-theme", - "stargazers_count": 91 + "stargazers_count": 96 }, "github.com/asurbernardo/amperage": { "id": 213869590, "created_at": "2019-10-09T08:58:01Z", - "updated_at": "2024-01-12T01:04:20Z", + "updated_at": "2024-04-19T10:54:55Z", "name": "amperage", "description": "Blazing fast SEO optimized GoHugo theme with native AMP, structured data, search, service workers and i18n out of the box! :zap:", "html_url": "https://github.com/asurcodes/amperage", - "stargazers_count": 107 + "stargazers_count": 108 }, "github.com/athul/archie": { "id": 253427252, "created_at": "2020-04-06T07:35:38Z", - "updated_at": "2024-02-15T19:36:59Z", + "updated_at": "2024-05-12T07:11:20Z", "name": "archie", "description": "A minimal Hugo Theme", "html_url": "https://github.com/athul/archie", - "stargazers_count": 835 + "stargazers_count": 886 }, "github.com/austingebauer/devise": { "id": 193039721, "created_at": "2019-06-21T05:59:52Z", - "updated_at": "2024-02-14T00:14:00Z", + "updated_at": "2024-05-12T02:51:09Z", "name": "devise", "description": "A fast, minimal, responsive Hugo theme for blogs.", "html_url": "https://github.com/austingebauer/devise", - "stargazers_count": 92 + "stargazers_count": 93 }, "github.com/azmelanar/hugo-theme-pixyll": { "id": 26679163, "created_at": "2014-11-15T12:25:29Z", - "updated_at": "2023-12-11T06:17:36Z", + "updated_at": "2024-05-11T09:17:08Z", "name": "hugo-theme-pixyll", - "description": "A simple, beautiful Hugo theme that's mobile first.", + "description": "A simple, beautiful theme for Hugo.", "html_url": "https://github.com/azmelanar/hugo-theme-pixyll", - "stargazers_count": 178 + "stargazers_count": 179 }, "github.com/bake/solar-theme-hugo": { "id": 98172335, @@ -929,56 +938,56 @@ "github.com/barklan/hugo-dead-simple": { "id": 483326294, "created_at": "2022-04-19T16:34:44Z", - "updated_at": "2024-02-15T08:09:56Z", + "updated_at": "2024-04-26T06:15:05Z", "name": "hugo-dead-simple", "description": "Dead simple Hugo theme.", "html_url": "https://github.com/barklan/hugo-dead-simple", - "stargazers_count": 32 + "stargazers_count": 40 }, "github.com/bep/docuapi/v2": { "id": 71171466, "created_at": "2016-10-17T19:02:31Z", - "updated_at": "2024-02-15T13:18:49Z", + "updated_at": "2024-04-28T17:35:56Z", "name": "docuapi", "description": "Beautiful multilingual API documentation theme for Hugo", "html_url": "https://github.com/bep/docuapi", - "stargazers_count": 718 + "stargazers_count": 729 }, "github.com/bep/galleriesdeluxe": { "id": 661359382, "created_at": "2023-07-02T15:44:28Z", - "updated_at": "2024-01-30T22:01:13Z", + "updated_at": "2024-04-21T21:40:24Z", "name": "galleriesdeluxe", "description": "Multi gallery Hugo theme.", "html_url": "https://github.com/bep/galleriesdeluxe", - "stargazers_count": 24 + "stargazers_count": 25 }, "github.com/bep/gallerydeluxe": { "id": 538049920, "created_at": "2022-09-18T08:44:48Z", - "updated_at": "2024-02-15T19:25:12Z", + "updated_at": "2024-05-05T19:57:56Z", "name": "gallerydeluxe", "description": "Fast Hugo gallery theme/module suitable for lots of images.", "html_url": "https://github.com/bep/gallerydeluxe", - "stargazers_count": 115 + "stargazers_count": 120 }, "github.com/binokochumolvarghese/lightbi-hugo": { "id": 297092939, "created_at": "2020-09-20T14:23:17Z", - "updated_at": "2024-02-15T20:02:26Z", + "updated_at": "2024-05-12T05:57:52Z", "name": "lightbi-hugo", "description": "Lightbi is a minimal and clean blog theme for Hugo.", "html_url": "https://github.com/binokochumolvarghese/lightbi-hugo", - "stargazers_count": 47 + "stargazers_count": 60 }, "github.com/bjacquemet/personal-web": { "id": 172538739, "created_at": "2019-02-25T16:08:01Z", - "updated_at": "2023-12-24T15:18:33Z", + "updated_at": "2024-05-07T07:40:40Z", "name": "personal-web", "description": "Hugo Template for Freelancer Portfolio and Blog", "html_url": "https://github.com/bjacquemet/personal-web", - "stargazers_count": 118 + "stargazers_count": 122 }, "github.com/blankoworld/hugo_theme_adam_eve": { "id": 95039171, @@ -989,23 +998,14 @@ "html_url": "https://github.com/blankoworld/hugo_theme_adam_eve", "stargazers_count": 18 }, - "github.com/boratanrikulu/eternity": { - "id": 517383455, - "created_at": "2022-07-24T16:54:31Z", - "updated_at": "2024-02-11T05:13:20Z", - "name": "eternity", - "description": "A minimalist Hugo theme designed for portfolio sites.", - "html_url": "https://github.com/boratanrikulu/eternity", - "stargazers_count": 219 - }, "github.com/bowman2001/perplex": { "id": 489646455, "created_at": "2022-05-07T10:48:37Z", - "updated_at": "2024-02-13T03:53:53Z", + "updated_at": "2024-05-15T00:33:44Z", "name": "perplex", "description": "A Hugo theme to publish technical content (docs, news, blog, articles)", "html_url": "https://github.com/bowman2001/perplex", - "stargazers_count": 20 + "stargazers_count": 22 }, "github.com/brianreumere/plague": { "id": 435070411, @@ -1037,34 +1037,34 @@ "github.com/calintat/minimal": { "id": 96643512, "created_at": "2017-07-08T20:50:31Z", - "updated_at": "2024-02-08T19:50:14Z", + "updated_at": "2024-04-17T13:00:45Z", "name": "minimal", "description": "Personal blog theme powered by Hugo", "html_url": "https://github.com/calintat/minimal", - "stargazers_count": 397 + "stargazers_count": 400 }, "github.com/canhtran/maverick": { "id": 507482239, "created_at": "2022-06-26T05:04:55Z", - "updated_at": "2024-02-07T15:27:53Z", + "updated_at": "2024-03-18T13:57:48Z", "name": "maverick", "description": "A minimal hugo theme focus on content", "html_url": "https://github.com/canhtran/maverick", - "stargazers_count": 32 + "stargazers_count": 36 }, "github.com/canstand/compost": { "id": 410851914, "created_at": "2021-09-27T11:12:02Z", - "updated_at": "2024-02-12T16:55:20Z", + "updated_at": "2024-04-27T06:45:10Z", "name": "compost", "description": "Compost is a simple theme for Hugo built with tailwindcss.", "html_url": "https://github.com/canstand/compost", - "stargazers_count": 40 + "stargazers_count": 43 }, "github.com/capnfabs/paperesque": { "id": 210030800, "created_at": "2019-09-21T17:59:19Z", - "updated_at": "2024-02-05T01:33:02Z", + "updated_at": "2024-03-28T17:12:19Z", "name": "paperesque", "description": "A lightweight theme for Hugo (gohugo.io)", "html_url": "https://github.com/capnfabs/paperesque", @@ -1073,20 +1073,20 @@ "github.com/caressofsteel/hugo-story": { "id": 276523185, "created_at": "2020-07-02T01:52:50Z", - "updated_at": "2024-01-29T09:46:47Z", + "updated_at": "2024-05-11T02:31:48Z", "name": "hugo-story", "description": "A (modular, highly tweakable) responsive one-page Hugo template.", "html_url": "https://github.com/caressofsteel/hugo-story", - "stargazers_count": 168 + "stargazers_count": 183 }, "github.com/carsonip/hugo-theme-minos": { "id": 82418156, "created_at": "2017-02-18T21:48:02Z", - "updated_at": "2024-02-12T17:05:10Z", + "updated_at": "2024-04-18T18:14:38Z", "name": "hugo-theme-minos", "description": "A simple and retro styled Hugo theme ported from Hexo", "html_url": "https://github.com/carsonip/hugo-theme-minos", - "stargazers_count": 138 + "stargazers_count": 139 }, "github.com/cathelijne/hugo-theme-huguette": { "id": 482231386, @@ -1136,92 +1136,92 @@ "github.com/chipsenkbeil/grid-side": { "id": 40447662, "created_at": "2015-08-09T19:22:58Z", - "updated_at": "2023-06-22T15:28:51Z", + "updated_at": "2024-03-11T16:13:10Z", "name": "grid-side", "description": "Personal portfolio and blog for use by the Hugo generator.", "html_url": "https://github.com/chipsenkbeil/grid-side", - "stargazers_count": 31 + "stargazers_count": 32 }, "github.com/chipzoller/hugo-clarity": { "id": 256256206, "created_at": "2020-04-16T15:31:58Z", - "updated_at": "2024-02-09T21:21:16Z", + "updated_at": "2024-05-12T03:33:40Z", "name": "hugo-clarity", "description": "A theme for Hugo based on VMware Clarity", "html_url": "https://github.com/chipzoller/hugo-clarity", - "stargazers_count": 536 + "stargazers_count": 560 }, "github.com/chollinger93/ink-free": { "id": 270338664, "created_at": "2020-06-07T14:55:21Z", - "updated_at": "2024-01-19T08:01:59Z", + "updated_at": "2024-03-21T05:43:12Z", "name": "ink-free", "description": "Crisp, minimal personal website and blog theme Hugo, designed for a collaborative, open-source, privacy conscious blog.", "html_url": "https://github.com/chollinger93/ink-free", - "stargazers_count": 22 + "stargazers_count": 25 }, "github.com/chrede88/L1nkr": { "id": 703246563, "created_at": "2023-10-10T22:04:04Z", - "updated_at": "2024-02-11T23:46:00Z", + "updated_at": "2024-05-08T16:58:42Z", "name": "L1nkr", "description": "L1nkr - Simple LinkTree Hugo Theme", "html_url": "https://github.com/chrede88/L1nkr", - "stargazers_count": 9 + "stargazers_count": 10 }, "github.com/chrede88/qubt": { "id": 722222006, "created_at": "2023-11-22T17:40:10Z", - "updated_at": "2024-02-13T18:13:45Z", + "updated_at": "2024-05-08T17:59:02Z", "name": "qubt", "description": "Qubt - Personal blog theme for Hugo", "html_url": "https://github.com/chrede88/qubt", - "stargazers_count": 22 + "stargazers_count": 30 }, "github.com/chringel21/chringel-hugo-theme": { "id": 440856913, "created_at": "2021-12-22T12:52:08Z", - "updated_at": "2024-02-09T05:53:11Z", + "updated_at": "2024-04-05T10:39:25Z", "name": "chringel-hugo-theme", "description": "chringel - Privacy focused theme for Hugo", "html_url": "https://github.com/chringel21/chringel-hugo-theme", - "stargazers_count": 33 + "stargazers_count": 34 }, "github.com/clente/hugo-bearcub": { "id": 596196165, "created_at": "2023-02-01T17:08:46Z", - "updated_at": "2024-01-28T20:37:57Z", + "updated_at": "2024-05-14T23:18:36Z", "name": "hugo-bearcub", "description": "🐻 A lightweight Hugo theme based on Bear Blog and Hugo Bear Blog", "html_url": "https://github.com/clente/hugo-bearcub", - "stargazers_count": 67 + "stargazers_count": 86 }, "github.com/cloudwithchris/hugo-creator": { "id": 452811529, "created_at": "2022-01-27T19:11:24Z", - "updated_at": "2024-01-28T17:57:25Z", + "updated_at": "2024-03-16T22:27:53Z", "name": "hugo-creator", "description": "The Hugo Creator theme is a custom theme that I have built for the Hugo Static Site generator. It is designed for content creators (e.g. Bloggers, Podcasters and Vloggers), allowing you to worry less about your website and focus more on your content creation!", "html_url": "https://github.com/CloudWithChris/hugo-creator", - "stargazers_count": 3 + "stargazers_count": 5 }, "github.com/cncf/dot-org-hugo-theme": { "id": 657441391, "created_at": "2023-06-23T04:26:31Z", - "updated_at": "2024-02-04T18:56:45Z", + "updated_at": "2024-05-10T15:41:59Z", "name": "dot-org-hugo-theme", "description": "Hugo theme ideal for Organizations to use. Built initially for the TODO site redesign.", "html_url": "https://github.com/cncf/dot-org-hugo-theme", - "stargazers_count": 24 + "stargazers_count": 33 }, "github.com/cntrump/hugo-notepadium": { "id": 223706845, "created_at": "2019-11-24T07:16:14Z", - "updated_at": "2024-01-19T12:21:52Z", + "updated_at": "2024-04-29T16:02:29Z", "name": "hugo-notepadium", "description": "a fast gohugo theme, 100% JavaScript-free.", "html_url": "https://github.com/cntrump/hugo-notepadium", - "stargazers_count": 331 + "stargazers_count": 330 }, "github.com/coderzh/hugo-pacman-theme": { "id": 54326901, @@ -1235,20 +1235,20 @@ "github.com/colinwilson/lotusdocs": { "id": 556089040, "created_at": "2022-10-23T03:00:45Z", - "updated_at": "2024-02-13T03:57:32Z", + "updated_at": "2024-05-14T15:36:22Z", "name": "lotusdocs", "description": "📖 A free, lightweight, modern documentation theme for Hugo [WIP]", "html_url": "https://github.com/colinwilson/lotusdocs", - "stargazers_count": 202 + "stargazers_count": 271 }, "github.com/colorchestra/smol": { "id": 266912351, "created_at": "2020-05-26T01:03:46Z", - "updated_at": "2024-02-12T01:41:25Z", + "updated_at": "2024-05-04T12:30:09Z", "name": "smol", "description": "A minimal, monospaced blogging theme for Hugo that respects your privacy and is easy on your bandwidth.", "html_url": "https://github.com/colorchestra/smol", - "stargazers_count": 201 + "stargazers_count": 227 }, "github.com/cowboysmall-tools/hugo-business-frontpage-theme": { "id": 219859115, @@ -1262,29 +1262,29 @@ "github.com/cowboysmall-tools/hugo-devresume-theme": { "id": 219337339, "created_at": "2019-11-03T17:19:06Z", - "updated_at": "2024-02-06T00:49:48Z", + "updated_at": "2024-04-23T13:22:39Z", "name": "hugo-devresume-theme", "description": "A free resume/CV template made for software developers.", "html_url": "https://github.com/cowboysmall-tools/hugo-devresume-theme", - "stargazers_count": 253 + "stargazers_count": 258 }, "github.com/cristianmarint/sicily-hugo-theme": { "id": 302672989, "created_at": "2020-10-09T14:56:57Z", - "updated_at": "2023-08-06T06:24:58Z", + "updated_at": "2024-04-21T12:11:16Z", "name": "sicily-hugo-theme", "description": "Sicily Hugo Theme", "html_url": "https://github.com/cristianmarint/sicily-hugo-theme", - "stargazers_count": 21 + "stargazers_count": 22 }, "github.com/cssandstuff/hugo-theme-winning": { "id": 139923745, "created_at": "2018-07-06T02:33:01Z", - "updated_at": "2023-02-02T18:02:50Z", + "updated_at": "2024-04-22T17:30:53Z", "name": "hugo-theme-winning", "description": "", "html_url": "https://github.com/cssandstuff/hugo-theme-winning", - "stargazers_count": 52 + "stargazers_count": 51 }, "github.com/curtiscde/hugo-theme-dopetrope": { "id": 121020887, @@ -1298,11 +1298,11 @@ "github.com/curtiscde/hugo-theme-massively": { "id": 122748426, "created_at": "2018-02-24T14:39:43Z", - "updated_at": "2024-02-15T00:25:32Z", + "updated_at": "2024-05-03T07:01:54Z", "name": "hugo-theme-massively", "description": "Massively theme for Hugo static site generator", "html_url": "https://github.com/curtiscde/hugo-theme-massively", - "stargazers_count": 149 + "stargazers_count": 150 }, "github.com/cyevgeniy/monday-theme": { "id": 440619649, @@ -1316,7 +1316,7 @@ "github.com/d-kusk/minimage": { "id": 109487130, "created_at": "2017-11-04T10:52:19Z", - "updated_at": "2023-06-18T10:34:53Z", + "updated_at": "2024-04-29T13:36:23Z", "name": "minimage", "description": "Hugo's theme", "html_url": "https://github.com/dsk52/minimage", @@ -1361,11 +1361,11 @@ "github.com/darshanbaral/aafu": { "id": 174893518, "created_at": "2019-03-10T23:26:13Z", - "updated_at": "2023-10-24T03:16:40Z", + "updated_at": "2024-04-27T20:32:51Z", "name": "aafu", "description": "Portfolio theme with blog", "html_url": "https://github.com/darshanbaral/aafu", - "stargazers_count": 37 + "stargazers_count": 42 }, "github.com/darshanbaral/kitab": { "id": 187421524, @@ -1388,47 +1388,47 @@ "github.com/dataCobra/hugo-vitae": { "id": 228858366, "created_at": "2019-12-18T14:34:24Z", - "updated_at": "2024-02-06T10:53:23Z", + "updated_at": "2024-03-22T07:09:39Z", "name": "hugo-vitae", "description": "Vitae is a blog theme for Hugo that focuses on your content.", "html_url": "https://github.com/dataCobra/hugo-vitae", - "stargazers_count": 130 + "stargazers_count": 132 }, "github.com/davidhampgonsalves/hugo-black-and-light-theme": { "id": 78483943, "created_at": "2017-01-10T01:03:05Z", - "updated_at": "2024-02-02T17:21:03Z", + "updated_at": "2024-04-30T02:34:41Z", "name": "hugo-black-and-light-theme", "description": "A High contrast, text oriented, performant and Javascript-free theme for Hugo.", "html_url": "https://github.com/davidhampgonsalves/hugo-black-and-light-theme", - "stargazers_count": 183 + "stargazers_count": 186 }, "github.com/dchucks/agnes-hugo-theme": { "id": 679232978, "created_at": "2023-08-16T11:42:23Z", - "updated_at": "2024-02-08T23:07:41Z", + "updated_at": "2024-03-21T08:37:47Z", "name": "agnes-hugo-theme", "description": "Agnes is a free Landing Page theme for Hugo websites.", "html_url": "https://github.com/dchucks/agnes-hugo-theme", - "stargazers_count": 11 + "stargazers_count": 14 }, "github.com/derme302/triple-hyde": { "id": 197759969, "created_at": "2019-07-19T11:19:05Z", - "updated_at": "2024-02-15T04:41:50Z", + "updated_at": "2024-04-13T20:26:45Z", "name": "triple-hyde", "description": "A cool theme inspired by htr3n's fork of spf13's Hyde theme", "html_url": "https://github.com/derme302/triple-hyde", - "stargazers_count": 3 + "stargazers_count": 5 }, "github.com/devcows/hugo-universal-theme": { "id": 61122259, "created_at": "2016-06-14T12:47:40Z", - "updated_at": "2024-02-14T12:12:16Z", + "updated_at": "2024-05-15T15:38:18Z", "name": "hugo-universal-theme", "description": "Universal theme for Hugo, it stands out with its clean design and elegant typography.", "html_url": "https://github.com/devcows/hugo-universal-theme", - "stargazers_count": 731 + "stargazers_count": 755 }, "github.com/dewittn/hugo-html5up-alpha": { "id": 262763794, @@ -1442,11 +1442,20 @@ "github.com/dillonzq/LoveIt": { "id": 200158234, "created_at": "2019-08-02T03:27:11Z", - "updated_at": "2024-02-14T18:20:36Z", + "updated_at": "2024-05-15T00:46:08Z", "name": "LoveIt", "description": "❤️A clean, elegant but advanced blog theme for Hugo 一个简洁、优雅且高效的 Hugo 主题", "html_url": "https://github.com/dillonzq/LoveIt", - "stargazers_count": 3208 + "stargazers_count": 3297 + }, + "github.com/dipeshsingh253/saral": { + "id": 700282289, + "created_at": "2023-10-04T09:50:15Z", + "updated_at": "2024-04-05T14:51:51Z", + "name": "saral", + "description": "Saral, meaning \"simple\" in Hindi (सरल), is a minimalist and elegant Hugo theme designed for those who appreciate clean and straightforward aesthetics. Embrace simplicity without compromising style.", + "html_url": "https://github.com/dipeshsingh253/saral", + "stargazers_count": 4 }, "github.com/diwao/hestia-pure": { "id": 95651197, @@ -1478,11 +1487,11 @@ "github.com/docura/docura": { "id": 532579508, "created_at": "2022-09-04T15:28:18Z", - "updated_at": "2024-02-14T18:06:25Z", + "updated_at": "2024-05-05T20:06:56Z", "name": "docura", "description": "📖 A modular Hugo theme to build your next documentation site", "html_url": "https://github.com/docura/docura", - "stargazers_count": 51 + "stargazers_count": 58 }, "github.com/dplesca/purehugo": { "id": 20383015, @@ -1496,20 +1505,20 @@ "github.com/dsrkafuu/hugo-theme-fuji": { "id": 255303954, "created_at": "2020-04-13T11:11:20Z", - "updated_at": "2024-02-02T15:28:37Z", + "updated_at": "2024-04-28T01:37:56Z", "name": "hugo-theme-fuji", "description": "A minimal Hugo theme with nice theme color. | 一个主题色极简 Hugo 主题。", "html_url": "https://github.com/dsrkafuu/hugo-theme-fuji", - "stargazers_count": 361 + "stargazers_count": 364 }, "github.com/dzello/reveal-hugo": { "id": 131216648, "created_at": "2018-04-26T22:21:56Z", - "updated_at": "2024-02-09T23:09:37Z", + "updated_at": "2024-05-14T14:02:53Z", "name": "reveal-hugo", "description": "📽️ Create rich HTML-based presentations with Hugo and Reveal.js", - "html_url": "https://github.com/dzello/reveal-hugo", - "stargazers_count": 636 + "html_url": "https://github.com/joshed-io/reveal-hugo", + "stargazers_count": 655 }, "github.com/edavidaja/docter": { "id": 190885811, @@ -1523,11 +1532,11 @@ "github.com/eddiewebb/hugo-resume": { "id": 121309948, "created_at": "2018-02-12T22:23:50Z", - "updated_at": "2024-02-11T14:58:09Z", + "updated_at": "2024-05-02T00:45:38Z", "name": "hugo-resume", "description": "A Hugo theme ported from startbootrap.com's resume template", "html_url": "https://github.com/eddiewebb/hugo-resume", - "stargazers_count": 251 + "stargazers_count": 253 }, "github.com/eliasson/liquorice": { "id": 23052313, @@ -1541,11 +1550,11 @@ "github.com/elkan1788/hugo-theme-next": { "id": 295104944, "created_at": "2020-09-13T07:58:24Z", - "updated_at": "2023-12-12T09:14:05Z", + "updated_at": "2024-04-23T00:18:01Z", "name": "hugo-theme-next", "description": "Hugo's site theme.", "html_url": "https://github.com/elkan1788/hugo-theme-next", - "stargazers_count": 83 + "stargazers_count": 82 }, "github.com/ertuil/erblog": { "id": 224989291, @@ -1559,11 +1568,11 @@ "github.com/escalate/hugo-split-theme": { "id": 129046241, "created_at": "2018-04-11T06:36:48Z", - "updated_at": "2024-01-26T19:02:57Z", + "updated_at": "2024-04-06T20:40:11Z", "name": "hugo-split-theme", "description": "Port of Split template by One Page Love to Hugo", "html_url": "https://github.com/escalate/hugo-split-theme", - "stargazers_count": 65 + "stargazers_count": 67 }, "github.com/eshlox/simplicity": { "id": 109606758, @@ -1574,14 +1583,23 @@ "html_url": "https://github.com/eshlox/simplicity", "stargazers_count": 50 }, + "github.com/fauzanmy/pehtheme-hugo": { + "id": 704416328, + "created_at": "2023-10-13T08:01:59Z", + "updated_at": "2024-05-14T08:44:47Z", + "name": "pehtheme-hugo", + "description": "The Hugo theme is inspired by Material Design version 3, built with love using Tailwind CSS.", + "html_url": "https://github.com/fauzanmy/pehtheme-hugo", + "stargazers_count": 15 + }, "github.com/felicianotech/hugo-theme-lean-launch-page": { "id": 103211654, "created_at": "2017-09-12T02:24:39Z", - "updated_at": "2023-11-08T20:44:27Z", + "updated_at": "2024-05-14T09:05:56Z", "name": "hugo-theme-lean-launch-page", "description": "A theme for people creating pre-launch pages for a product or business. Allows you to have a landing page while collecting emails.", "html_url": "https://github.com/felicianotech/hugo-theme-lean-launch-page", - "stargazers_count": 30 + "stargazers_count": 32 }, "github.com/fiatjaf/classless-hugo": { "id": 128872437, @@ -1595,56 +1613,56 @@ "github.com/filipecarneiro/hugo-bootstrap-theme": { "id": 492466316, "created_at": "2022-05-15T11:23:56Z", - "updated_at": "2024-02-15T23:57:07Z", + "updated_at": "2024-05-13T22:21:17Z", "name": "hugo-bootstrap-theme", "description": "Hugo theme for a secure, blazing fast and SEO-ready static website, using Bootstrap 5.", "html_url": "https://github.com/filipecarneiro/hugo-bootstrap-theme", - "stargazers_count": 34 + "stargazers_count": 75 }, "github.com/floyd-li/hugo-theme-itheme": { "id": 610285593, "created_at": "2023-03-06T13:22:28Z", - "updated_at": "2024-02-04T13:45:56Z", + "updated_at": "2024-04-28T08:48:25Z", "name": "hugo-theme-itheme", "description": "An Apple style theme for hugo", "html_url": "https://github.com/floyd-li/hugo-theme-itheme", - "stargazers_count": 56 + "stargazers_count": 64 }, "github.com/fncnt/vncnt-hugo": { "id": 163980744, "created_at": "2019-01-03T14:05:32Z", - "updated_at": "2024-02-09T18:48:17Z", + "updated_at": "2024-05-04T20:40:04Z", "name": "vncnt-hugo", "description": "a simple theme for hugo.", "html_url": "https://github.com/fncnt/vncnt-hugo", - "stargazers_count": 59 + "stargazers_count": 63 }, "github.com/forestryio/hugo-theme-novela": { "id": 213727505, "created_at": "2019-10-08T18:56:51Z", - "updated_at": "2024-01-08T07:23:53Z", + "updated_at": "2024-04-26T09:26:34Z", "name": "hugo-theme-novela", "description": "Novela, the simplest way to start publishing with Hugo and Forestry.", "html_url": "https://github.com/forestryio/hugo-theme-novela", - "stargazers_count": 357 + "stargazers_count": 359 }, "github.com/fourtyone11/origin-hugo-theme": { "id": 242563620, "created_at": "2020-02-23T17:52:08Z", - "updated_at": "2024-02-15T10:35:25Z", + "updated_at": "2024-02-16T11:12:14Z", "name": "origin-hugo-theme", "description": "theme for hugo ssg mirror from gitlab: https://gitlab.com/asleeppiano/origin-hugo-theme", "html_url": "https://github.com/anparfenov/origin-hugo-theme", "stargazers_count": 44 }, - "github.com/frjo/hugo-theme-zen/v2": { + "github.com/frjo/hugo-theme-zen/v3": { "id": 84443022, "created_at": "2017-03-09T13:05:40Z", - "updated_at": "2024-02-12T19:23:14Z", + "updated_at": "2024-05-15T07:03:07Z", "name": "hugo-theme-zen", "description": "A fast and clean Hugo base theme with css-grid and Hugo pipes support.", "html_url": "https://github.com/frjo/hugo-theme-zen", - "stargazers_count": 247 + "stargazers_count": 257 }, "github.com/funkydan2/alpha-church": { "id": 131554115, @@ -1658,20 +1676,20 @@ "github.com/funkydan2/hugo-kiera": { "id": 130204294, "created_at": "2018-04-19T11:16:18Z", - "updated_at": "2024-01-24T06:00:40Z", + "updated_at": "2024-04-30T22:00:02Z", "name": "hugo-kiera", "description": "Kiera - A Hugo Theme for writing", "html_url": "https://github.com/funkydan2/hugo-kiera", - "stargazers_count": 66 + "stargazers_count": 69 }, "github.com/g1eny0ung/hugo-theme-dream": { "id": 105977401, "created_at": "2017-10-06T07:19:22Z", - "updated_at": "2024-02-09T20:51:58Z", + "updated_at": "2024-05-14T09:29:02Z", "name": "hugo-theme-dream", "description": "🌱 Hugo theme named Dream.", "html_url": "https://github.com/g1eny0ung/hugo-theme-dream", - "stargazers_count": 266 + "stargazers_count": 273 }, "github.com/garvincasimir/hugo-h5bp-simple": { "id": 39656460, @@ -1694,47 +1712,47 @@ "github.com/geschke/hugo-tikva": { "id": 156383869, "created_at": "2018-11-06T12:57:01Z", - "updated_at": "2023-02-16T15:02:32Z", + "updated_at": "2024-03-19T01:46:55Z", "name": "hugo-tikva", "description": "Tikva is a minimalistic Hugo theme, based on Bootstrap v4 CSS framework.", "html_url": "https://github.com/geschke/hugo-tikva", - "stargazers_count": 9 + "stargazers_count": 11 }, "github.com/gesquive/slate": { "id": 91744509, "created_at": "2017-05-18T22:56:52Z", - "updated_at": "2024-01-09T04:00:02Z", + "updated_at": "2024-04-22T17:30:53Z", "name": "slate", "description": "a single-page speed-dial theme for Hugo", "html_url": "https://github.com/gesquive/slate", - "stargazers_count": 146 + "stargazers_count": 148 }, "github.com/gethinode/hinode": { "id": 447086741, "created_at": "2022-01-12T05:20:40Z", - "updated_at": "2024-02-08T10:25:15Z", + "updated_at": "2024-05-15T14:04:05Z", "name": "hinode", "description": "A clean documentation and blog theme for your Hugo site based on Bootstrap 5", "html_url": "https://github.com/gethinode/hinode", - "stargazers_count": 95 + "stargazers_count": 116 }, "github.com/gethyas/doks": { "id": 255927625, "created_at": "2020-04-15T13:37:31Z", - "updated_at": "2024-02-14T18:06:46Z", + "updated_at": "2024-05-15T16:08:25Z", "name": "doks", - "description": "Build beautiful, accessible, high-performance documentation websites", + "description": "Everything you need to build a stellar documentation website. Fast, accessible, and easy to use.", "html_url": "https://github.com/gethyas/doks", - "stargazers_count": 1823 + "stargazers_count": 1956 }, "github.com/gevhaz/hugo-theme-notrack": { "id": 264459867, "created_at": "2020-05-16T14:52:41Z", - "updated_at": "2024-01-25T11:04:00Z", + "updated_at": "2024-04-25T06:42:44Z", "name": "hugo-theme-notrack", "description": "A libre hugo personal webpage theme without reliance on third parties and no tracking.", "html_url": "https://github.com/gevhaz/hugo-theme-notrack", - "stargazers_count": 35 + "stargazers_count": 37 }, "github.com/gizak/nofancy": { "id": 28990816, @@ -1745,15 +1763,6 @@ "html_url": "https://github.com/gizak/nofancy", "stargazers_count": 63 }, - "github.com/gkmngrgn/hugo-alageek-theme": { - "id": 147963873, - "created_at": "2018-09-08T19:32:11Z", - "updated_at": "2024-02-05T02:56:09Z", - "name": "hugo-alageek-theme", - "description": "A Cocoa Enhanced based theme. It's rewritten with Bootstrap 5.", - "html_url": "https://github.com/gkmngrgn/hugo-alageek-theme", - "stargazers_count": 62 - }, "github.com/gonnux/hugo-apps-theme": { "id": 155048745, "created_at": "2018-10-28T08:09:14Z", @@ -1766,25 +1775,25 @@ "github.com/goodroot/hugo-classic": { "id": 97069201, "created_at": "2017-07-13T02:02:26Z", - "updated_at": "2024-02-14T14:59:01Z", + "updated_at": "2024-05-12T02:41:37Z", "name": "hugo-classic", "description": "A simple and text-centric theme for Hugo.io", "html_url": "https://github.com/goodroot/hugo-classic", - "stargazers_count": 129 + "stargazers_count": 134 }, "github.com/google/docsy": { "id": 153180924, "created_at": "2018-10-15T20:59:47Z", - "updated_at": "2024-02-15T23:29:59Z", + "updated_at": "2024-05-15T19:24:52Z", "name": "docsy", "description": "A set of Hugo doc templates for launching open source content.", "html_url": "https://github.com/google/docsy", - "stargazers_count": 2398 + "stargazers_count": 2469 }, "github.com/guangmean/Niello": { "id": 163953752, "created_at": "2019-01-03T09:47:08Z", - "updated_at": "2023-03-13T09:23:37Z", + "updated_at": "2024-04-07T09:41:17Z", "name": "Niello", "description": "A Dark Theme for Hugo", "html_url": "https://github.com/guangmean/Niello", @@ -1793,11 +1802,11 @@ "github.com/guangzhengli/hugo-theme-ladder": { "id": 500423496, "created_at": "2022-06-06T12:25:21Z", - "updated_at": "2024-02-14T03:49:28Z", + "updated_at": "2024-05-09T03:32:18Z", "name": "hugo-theme-ladder", "description": "A fast, clean Hugo theme | 一个简单而优雅的 hugo 主题", "html_url": "https://github.com/guangzhengli/hugo-theme-ladder", - "stargazers_count": 125 + "stargazers_count": 144 }, "github.com/gundamew/hugo-bingo": { "id": 139309614, @@ -1811,11 +1820,11 @@ "github.com/gurusabarish/hugo-profile": { "id": 287894238, "created_at": "2020-08-16T07:19:04Z", - "updated_at": "2024-02-14T12:13:00Z", + "updated_at": "2024-05-14T16:35:40Z", "name": "hugo-profile", "description": "A highly customizable and mobile first Hugo template for personal portfolio and blog.", "html_url": "https://github.com/gurusabarish/hugo-profile", - "stargazers_count": 598 + "stargazers_count": 665 }, "github.com/gyorb/hugo-dusk": { "id": 89065581, @@ -1829,34 +1838,34 @@ "github.com/hadisinaee/avicenna": { "id": 194403815, "created_at": "2019-06-29T12:33:47Z", - "updated_at": "2024-02-06T14:32:50Z", + "updated_at": "2024-05-12T00:59:51Z", "name": "avicenna", "description": "a minimal academic page for Hugo", "html_url": "https://github.com/hadisinaee/avicenna", - "stargazers_count": 179 + "stargazers_count": 187 }, "github.com/half-duplex/hugo-arcana": { "id": 421251266, "created_at": "2021-10-26T02:23:08Z", - "updated_at": "2024-02-05T21:02:33Z", + "updated_at": "2024-05-07T16:21:59Z", "name": "hugo-arcana", "description": "Hugo port of the HTML5 UP Arcana template", "html_url": "https://github.com/half-duplex/hugo-arcana", - "stargazers_count": 25 + "stargazers_count": 26 }, "github.com/halogenica/beautifulhugo": { "id": 53404533, "created_at": "2016-03-08T10:44:16Z", - "updated_at": "2024-02-15T17:33:26Z", + "updated_at": "2024-05-12T04:31:43Z", "name": "beautifulhugo", "description": "Theme for the Hugo static website generator", "html_url": "https://github.com/halogenica/beautifulhugo", - "stargazers_count": 1081 + "stargazers_count": 1105 }, "github.com/hauke96/hugo-theme-hamburg": { "id": 146047737, "created_at": "2018-08-24T23:12:19Z", - "updated_at": "2023-03-20T15:11:42Z", + "updated_at": "2024-03-11T12:04:37Z", "name": "hugo-theme-hamburg", "description": "Simple and clean blog theme for hugo", "html_url": "https://github.com/hauke96/hugo-theme-hamburg", @@ -1865,16 +1874,16 @@ "github.com/hbstack/theme": { "id": 620620468, "created_at": "2023-03-29T03:26:18Z", - "updated_at": "2024-02-14T05:10:38Z", + "updated_at": "2024-05-15T01:54:51Z", "name": "theme", "description": "HB starter theme for blog, docs, digital garden, gallery and landing pages. HB 新手博客、文档、数字花园、图库和落地页主题。", "html_url": "https://github.com/hbstack/theme", - "stargazers_count": 66 + "stargazers_count": 72 }, "github.com/hbstack/theme-start": { "id": 689677682, "created_at": "2023-09-10T15:12:30Z", - "updated_at": "2024-01-30T02:13:06Z", + "updated_at": "2024-05-14T05:51:34Z", "name": "theme-start", "description": "Hugo theme for building your own start page.", "html_url": "https://github.com/hbstack/theme-start", @@ -1892,38 +1901,38 @@ "github.com/heksagonnet/piko": { "id": 464160522, "created_at": "2022-02-27T14:31:45Z", - "updated_at": "2024-02-14T09:04:32Z", + "updated_at": "2024-04-09T05:18:56Z", "name": "piko", "description": "Piko is a minimalistic and fast theme powered by Hugo for building a blog or portfolio.", "html_url": "https://github.com/heksagonnet/piko", - "stargazers_count": 37 + "stargazers_count": 41 }, "github.com/heyeshuang/hugo-theme-tokiwa": { "id": 253801518, "created_at": "2020-04-07T13:30:07Z", - "updated_at": "2024-02-13T06:46:32Z", + "updated_at": "2024-05-01T13:22:57Z", "name": "hugo-theme-tokiwa", "description": "a hugo theme", "html_url": "https://github.com/heyeshuang/hugo-theme-tokiwa", - "stargazers_count": 83 + "stargazers_count": 87 }, "github.com/hivickylai/hugo-theme-sam": { "id": 121534430, "created_at": "2018-02-14T16:37:53Z", - "updated_at": "2024-02-06T20:49:21Z", + "updated_at": "2024-04-10T10:35:20Z", "name": "hugo-theme-sam", "description": "A Simple and Minimalist theme for Hugo with a focus on typography and content.", "html_url": "https://github.com/victoriadrake/hugo-theme-sam", - "stargazers_count": 416 + "stargazers_count": 418 }, "github.com/homecat805/hugo-theme-walden": { "id": 572368453, "created_at": "2022-11-30T05:44:26Z", - "updated_at": "2023-09-24T07:51:08Z", + "updated_at": "2024-05-06T11:44:15Z", "name": "hugo-theme-walden", "description": "A hugo theme for personal website.", "html_url": "https://github.com/Homecat805/hugo-theme-walden", - "stargazers_count": 9 + "stargazers_count": 11 }, "github.com/hootan09/simple-cv": { "id": 492268375, @@ -1934,32 +1943,23 @@ "html_url": "https://github.com/hootan09/simple-cv", "stargazers_count": 7 }, - "github.com/hossainemruz/toha": { - "id": 254809249, - "created_at": "2020-04-11T06:42:21Z", - "updated_at": "2024-02-15T17:20:01Z", - "name": "toha", - "description": "A Hugo theme for personal portfolio", - "html_url": "https://github.com/hugo-toha/toha", - "stargazers_count": 896 - }, "github.com/hotjuicew/hugo-JuiceBar": { "id": 479781607, "created_at": "2022-04-09T16:25:35Z", - "updated_at": "2023-12-02T11:54:53Z", + "updated_at": "2024-03-30T23:38:44Z", "name": "hugo-JuiceBar", "description": "JuiceBar is a concise, elegan blog theme powered by Hugo.", "html_url": "https://github.com/hotjuicew/hugo-JuiceBar", - "stargazers_count": 12 + "stargazers_count": 18 }, "github.com/httpsecure/hugo-cat": { "id": 626535006, "created_at": "2023-04-11T16:57:20Z", - "updated_at": "2024-01-20T21:00:15Z", + "updated_at": "2024-04-08T14:50:46Z", "name": "hugo-cat", "description": "hugo theme", "html_url": "https://github.com/httpsecure/hugo-cat", - "stargazers_count": 18 + "stargazers_count": 19 }, "github.com/httpsecure/hugo-theme-red-rose": { "id": 545369071, @@ -1982,43 +1982,52 @@ "github.com/hugcis/hugo-astatine-theme": { "id": 133685145, "created_at": "2018-05-16T15:15:26Z", - "updated_at": "2024-02-05T22:26:09Z", + "updated_at": "2024-04-27T08:50:37Z", "name": "hugo-astatine-theme", "description": "An minimalist Hugo theme for Academics", "html_url": "https://github.com/hugcis/hugo-astatine-theme", - "stargazers_count": 41 + "stargazers_count": 44 }, "github.com/hugo-fixit/FixIt": { "id": 438849461, "created_at": "2021-12-16T03:35:27Z", - "updated_at": "2024-02-14T09:08:22Z", + "updated_at": "2024-05-15T08:49:02Z", "name": "FixIt", "description": "🔧 A clean, elegant but advanced blog theme for Hugo 一个简洁、优雅且高效的 Hugo 主题", "html_url": "https://github.com/hugo-fixit/FixIt", - "stargazers_count": 367 + "stargazers_count": 419 }, "github.com/hugo-next/hugo-theme-next": { "id": 488167192, "created_at": "2022-05-03T10:37:57Z", - "updated_at": "2024-02-15T13:33:12Z", + "updated_at": "2024-05-15T06:30:39Z", "name": "hugo-theme-next", "description": "Easily \u0026 powerful theme for Hugo engine.", "html_url": "https://github.com/hugo-next/hugo-theme-next", - "stargazers_count": 190 + "stargazers_count": 203 }, "github.com/hugo-sid/hugo-blog-awesome": { "id": 601457559, "created_at": "2023-02-14T05:18:30Z", - "updated_at": "2024-02-12T05:12:19Z", + "updated_at": "2024-05-15T15:32:28Z", "name": "hugo-blog-awesome", "description": "Fast, minimal blog with dark mode support.", "html_url": "https://github.com/hugo-sid/hugo-blog-awesome", - "stargazers_count": 291 + "stargazers_count": 330 + }, + "github.com/hugo-toha/toha/v4": { + "id": 254809249, + "created_at": "2020-04-11T06:42:21Z", + "updated_at": "2024-05-13T16:56:25Z", + "name": "toha", + "description": "A Hugo theme for personal portfolio", + "html_url": "https://github.com/hugo-toha/toha", + "stargazers_count": 936 }, "github.com/humrochagf/colordrop": { "id": 198533025, "created_at": "2019-07-24T01:14:27Z", - "updated_at": "2023-09-21T01:24:50Z", + "updated_at": "2024-05-13T01:43:41Z", "name": "colordrop", "description": "Customizable, monochromatic and minimalist hugo theme for personal blogs", "html_url": "https://github.com/humrochagf/colordrop", @@ -2045,11 +2054,11 @@ "github.com/ianrodrigues/hugo-tailwind-journal": { "id": 221896765, "created_at": "2019-11-15T10:04:57Z", - "updated_at": "2023-12-30T01:37:28Z", + "updated_at": "2024-03-30T11:48:56Z", "name": "hugo-tailwind-journal", "description": "A minimalist journal template for Hugo.", "html_url": "https://github.com/ianrodrigues/hugo-tailwind-journal", - "stargazers_count": 41 + "stargazers_count": 42 }, "github.com/ijsucceed/onepress": { "id": 162448756, @@ -2063,56 +2072,56 @@ "github.com/imfing/hextra": { "id": 668453226, "created_at": "2023-07-19T21:03:57Z", - "updated_at": "2024-02-16T00:19:49Z", + "updated_at": "2024-05-15T16:08:00Z", "name": "hextra", "description": "🔯 Modern, batteries-included Hugo theme for creating beautiful doc, blog and static websites", "html_url": "https://github.com/imfing/hextra", - "stargazers_count": 228 + "stargazers_count": 373 }, "github.com/ineesalmeida/almeida-cv": { "id": 287938234, "created_at": "2020-08-16T12:20:46Z", - "updated_at": "2024-02-15T13:19:38Z", + "updated_at": "2024-05-12T07:51:55Z", "name": "almeida-cv", "description": "Theme to build a customizeable printable CV with minor web responsiveness.", "html_url": "https://github.com/ineesalmeida/almeida-cv", - "stargazers_count": 160 + "stargazers_count": 170 }, "github.com/invinciblycool/lekh": { "id": 252413640, "created_at": "2020-04-02T09:39:53Z", - "updated_at": "2023-10-17T18:56:44Z", + "updated_at": "2024-05-04T15:36:20Z", "name": "lekh", "description": "Simple, text-focussed and a minimal personal portfolio hugo theme with dark mode and GoatCounter analytics(a great alternative to Google analytics)", "html_url": "https://github.com/ba11b0y/lekh", - "stargazers_count": 27 + "stargazers_count": 29 }, "github.com/isaksolheim/cyberscape": { "id": 565560665, "created_at": "2022-11-13T19:39:30Z", - "updated_at": "2024-02-08T23:49:44Z", + "updated_at": "2024-04-08T18:11:59Z", "name": "cyberscape", "description": "A lively and fun Hugo theme for creating personal websites 🌐", "html_url": "https://github.com/isaksolheim/cyberscape", - "stargazers_count": 6 + "stargazers_count": 10 }, "github.com/it-gro/hugo-theme-w3css-basic": { "id": 109979212, "created_at": "2017-11-08T13:26:44Z", - "updated_at": "2024-01-28T17:01:01Z", + "updated_at": "2024-05-13T14:10:32Z", "name": "hugo-theme-w3css-basic", "description": "", "html_url": "https://github.com/it-gro/hugo-theme-w3css-basic", - "stargazers_count": 56 + "stargazers_count": 60 }, "github.com/jacksalici/salinger-theme/v2": { "id": 438336865, "created_at": "2021-12-14T17:11:19Z", - "updated_at": "2024-02-06T03:46:31Z", + "updated_at": "2024-05-13T10:37:17Z", "name": "salinger-theme", "description": "A clean and minimalistic Hugo theme for personal blogs and portfolios. Built with TailwindCSS and DaisyUI.", "html_url": "https://github.com/jacksalici/salinger-theme", - "stargazers_count": 25 + "stargazers_count": 31 }, "github.com/jacobsun/edidor": { "id": 185605021, @@ -2144,34 +2153,34 @@ "github.com/jakewies/hugo-theme-codex": { "id": 269444058, "created_at": "2020-06-04T19:13:28Z", - "updated_at": "2024-01-04T16:46:42Z", + "updated_at": "2024-04-07T03:26:21Z", "name": "hugo-theme-codex", "description": "A minimal blog theme for Hugo 🍜", "html_url": "https://github.com/jakewies/hugo-theme-codex", - "stargazers_count": 334 + "stargazers_count": 335 }, "github.com/janraasch/hugo-bearblog": { "id": 291975591, "created_at": "2020-09-01T11:10:57Z", - "updated_at": "2024-02-15T23:09:15Z", + "updated_at": "2024-05-15T14:08:38Z", "name": "hugo-bearblog", "description": "🧸 A Hugo theme based on »Bear Blog«. Free, no-nonsense, super-fast blogging. This theme now includes a dark color scheme to support dark mode 🦉 ⬛️!", "html_url": "https://github.com/janraasch/hugo-bearblog", - "stargazers_count": 700 + "stargazers_count": 776 }, "github.com/janraasch/hugo-product-launch": { "id": 289950463, "created_at": "2020-08-24T14:26:28Z", - "updated_at": "2024-02-01T10:34:32Z", + "updated_at": "2024-04-02T07:48:42Z", "name": "hugo-product-launch", "description": "🚀 A Hugo theme for young start-ups, product launches, and »coming soon«-websites. Includes contact form \u0026 newsletter sign up via Netlify. Deploy with one click!", "html_url": "https://github.com/janraasch/hugo-product-launch", - "stargazers_count": 58 + "stargazers_count": 59 }, "github.com/jbub/ghostwriter": { "id": 34606336, "created_at": "2015-04-26T09:57:24Z", - "updated_at": "2024-01-27T05:16:00Z", + "updated_at": "2024-04-23T03:17:33Z", "name": "ghostwriter", "description": "A port of ghostwriter theme to Hugo.", "html_url": "https://github.com/jbub/ghostwriter", @@ -2180,11 +2189,11 @@ "github.com/jeblister/bulma": { "id": 87108069, "created_at": "2017-04-03T18:38:58Z", - "updated_at": "2023-12-16T12:05:24Z", + "updated_at": "2024-02-28T20:58:55Z", "name": "bulma", "description": "Bulma is a simple and a responsive Hugo theme that offers a traditional blog mixed with a landing page designed to bootstrap your frontend!.", "html_url": "https://github.com/jeblister/bulma", - "stargazers_count": 43 + "stargazers_count": 44 }, "github.com/jeremybise/twentynineteen-hugo": { "id": 181497207, @@ -2198,7 +2207,7 @@ "github.com/jesselau76/hugo-w3-simple": { "id": 156296660, "created_at": "2018-11-05T23:20:12Z", - "updated_at": "2023-08-10T05:33:50Z", + "updated_at": "2024-02-16T23:51:02Z", "name": "hugo-w3-simple", "description": "Hugo Theme", "html_url": "https://github.com/jesselau76/hugo-w3-simple", @@ -2207,20 +2216,20 @@ "github.com/jgazeau/shadocs": { "id": 329419621, "created_at": "2021-01-13T20:08:43Z", - "updated_at": "2024-01-22T02:23:49Z", + "updated_at": "2024-05-09T08:06:46Z", "name": "shadocs", "description": "Shadocs Theme for Hugo", "html_url": "https://github.com/jgazeau/shadocs", - "stargazers_count": 39 + "stargazers_count": 43 }, "github.com/jimfrenette/hugo-starter": { "id": 167275593, "created_at": "2019-01-24T00:35:10Z", - "updated_at": "2024-02-12T23:15:32Z", + "updated_at": "2024-04-04T18:56:05Z", "name": "hugo-starter", "description": "Hugo starter theme with webpack 5 ui build workflow", "html_url": "https://github.com/jimfrenette/hugo-starter", - "stargazers_count": 20 + "stargazers_count": 22 }, "github.com/jmablog/hugo-clinic-notes": { "id": 282247898, @@ -2243,61 +2252,52 @@ "github.com/jnjosh/internet-weblog": { "id": 52138865, "created_at": "2016-02-20T05:44:23Z", - "updated_at": "2023-12-06T19:29:59Z", + "updated_at": "2024-04-22T22:35:50Z", "name": "internet-weblog", "description": "internet weblog theme for Hugo", "html_url": "https://github.com/jnjosh/internet-weblog", - "stargazers_count": 41 + "stargazers_count": 40 }, "github.com/joeroe/risotto": { "id": 344763910, "created_at": "2021-03-05T09:45:15Z", - "updated_at": "2024-02-14T16:49:10Z", + "updated_at": "2024-05-15T08:53:20Z", "name": "risotto", "description": "A minimalist, responsive hugo theme inspired by terminal ricing aesthetics.", "html_url": "https://github.com/joeroe/risotto", - "stargazers_count": 276 + "stargazers_count": 332 }, "github.com/jonathanjanssens/hugo-casper3": { "id": 218465992, "created_at": "2019-10-30T07:18:04Z", - "updated_at": "2023-11-14T19:30:21Z", + "updated_at": "2024-03-15T00:53:34Z", "name": "hugo-casper3", "description": "Hugo port of the Casper 3 theme originally by Ghost.", "html_url": "https://github.com/jonathanjanssens/hugo-casper3", - "stargazers_count": 57 - }, - "github.com/joseph-mccarthy/hugo-bootstrap-freelancer-template": { - "id": 458968701, - "created_at": "2022-02-14T00:33:19Z", - "updated_at": "2023-11-27T10:33:28Z", - "name": "hugo-bootstrap-freelancer-template", - "description": "Hugo Bootstrap Freelancer Theme. Based on the startBootStrap Freelancer theme.", - "html_url": "https://github.com/joseph-mccarthy/hugo-bootstrap-freelancer-template", - "stargazers_count": 5 + "stargazers_count": 56 }, "github.com/josephhutch/aether": { "id": 125391209, "created_at": "2018-03-15T15:52:42Z", - "updated_at": "2024-01-27T04:29:10Z", + "updated_at": "2024-04-29T09:44:26Z", "name": "aether", "description": "A responsive and clean Hugo theme for blogs", "html_url": "https://github.com/josephhutch/aether", - "stargazers_count": 144 + "stargazers_count": 145 }, "github.com/jota-ele-ene/just-me": { "id": 449866919, "created_at": "2022-01-19T21:53:23Z", - "updated_at": "2023-08-01T13:54:20Z", + "updated_at": "2024-03-22T15:09:51Z", "name": "just-me", "description": "A minimal and fancy theme for Hugo to create Personal Pages.", "html_url": "https://github.com/jota-ele-ene/just-me", - "stargazers_count": 10 + "stargazers_count": 12 }, "github.com/joway/hugo-theme-yinyang": { "id": 156729664, "created_at": "2018-11-08T15:41:32Z", - "updated_at": "2024-02-13T15:01:13Z", + "updated_at": "2024-04-20T19:34:07Z", "name": "hugo-theme-yinyang", "description": "A black-white theme for Hugo.", "html_url": "https://github.com/joway/hugo-theme-yinyang", @@ -2306,29 +2306,29 @@ "github.com/jpanther/congo/v2": { "id": 394873267, "created_at": "2021-08-11T05:29:45Z", - "updated_at": "2024-02-15T20:06:32Z", + "updated_at": "2024-05-15T17:19:36Z", "name": "congo", "description": "A powerful, lightweight theme for Hugo built with Tailwind CSS.", "html_url": "https://github.com/jpanther/congo", - "stargazers_count": 1029 + "stargazers_count": 1109 }, "github.com/jpanther/lynx": { "id": 423043182, "created_at": "2021-10-31T03:26:52Z", - "updated_at": "2024-02-13T11:26:17Z", + "updated_at": "2024-05-15T21:06:52Z", "name": "lynx", "description": "A simple links theme for Hugo built with Tailwind CSS.", "html_url": "https://github.com/jpanther/lynx", - "stargazers_count": 276 + "stargazers_count": 322 }, "github.com/jpescador/hugo-future-imperfect": { "id": 54349132, "created_at": "2016-03-21T00:52:47Z", - "updated_at": "2024-02-06T13:41:58Z", + "updated_at": "2024-04-21T01:41:35Z", "name": "hugo-future-imperfect", "description": "A ported theme with some extras for the Hugo static website engine", "html_url": "https://github.com/jpescador/hugo-future-imperfect", - "stargazers_count": 310 + "stargazers_count": 314 }, "github.com/jrutheiser/hugo-lithium-theme": { "id": 58174822, @@ -2342,7 +2342,7 @@ "github.com/jsnjack/hugo-changelog-theme": { "id": 147115762, "created_at": "2018-09-02T19:35:09Z", - "updated_at": "2023-11-25T14:52:49Z", + "updated_at": "2024-05-07T12:19:44Z", "name": "hugo-changelog-theme", "description": "A Hugo changelog theme", "html_url": "https://github.com/jsnjack/hugo-changelog-theme", @@ -2360,11 +2360,11 @@ "github.com/jweslley/hugo-conference": { "id": 108731719, "created_at": "2017-10-29T12:19:33Z", - "updated_at": "2024-02-10T04:08:12Z", + "updated_at": "2024-02-20T00:46:43Z", "name": "hugo-conference", "description": "The easiest way to create websites for conference/events", "html_url": "https://github.com/jweslley/hugo-conference", - "stargazers_count": 43 + "stargazers_count": 44 }, "github.com/jyygithub/hugo-theme-onelou": { "id": 533585468, @@ -2378,47 +2378,47 @@ "github.com/kaiiiz/hugo-theme-monochrome": { "id": 335465577, "created_at": "2021-02-03T00:49:22Z", - "updated_at": "2024-02-13T13:31:08Z", + "updated_at": "2024-05-14T17:34:55Z", "name": "hugo-theme-monochrome", "description": "Monochrome is a fast, clean and responsive hugo theme", "html_url": "https://github.com/kaiiiz/hugo-theme-monochrome", - "stargazers_count": 151 + "stargazers_count": 164 }, "github.com/kakawait/hugo-tranquilpeak-theme": { "id": 55093419, "created_at": "2016-03-30T19:55:05Z", - "updated_at": "2024-02-04T07:32:29Z", + "updated_at": "2024-05-10T17:36:53Z", "name": "hugo-tranquilpeak-theme", "description": "A gorgeous responsive theme for Hugo blog framework", "html_url": "https://github.com/kakawait/hugo-tranquilpeak-theme", - "stargazers_count": 910 + "stargazers_count": 918 }, "github.com/kaushalmodi/hugo-bare-min-theme": { "id": 119444825, "created_at": "2018-01-29T21:33:59Z", - "updated_at": "2024-02-03T06:43:42Z", + "updated_at": "2024-04-02T17:36:13Z", "name": "hugo-bare-min-theme", "description": "A bare minimum theme for Hugo (https://gohugo.io) to help develop and debug Hugo sites -- https://hugo-bare-min.netlify.com/,", "html_url": "https://github.com/kaushalmodi/hugo-bare-min-theme", - "stargazers_count": 80 + "stargazers_count": 81 }, "github.com/kaushikgopal/henry-hugo": { "id": 384638080, "created_at": "2021-07-10T07:28:24Z", - "updated_at": "2024-01-19T22:05:05Z", + "updated_at": "2024-03-10T16:37:09Z", "name": "henry-hugo", "description": "Henry: Hugo theme meant for a gorgeous reading experience and packed with features", "html_url": "https://github.com/kaushikgopal/henry-hugo", - "stargazers_count": 45 + "stargazers_count": 49 }, "github.com/kc0bfv/autophugo": { "id": 247364981, "created_at": "2020-03-14T22:46:57Z", - "updated_at": "2024-02-01T21:52:38Z", + "updated_at": "2024-04-27T08:51:02Z", "name": "autophugo", "description": "AutoPhugo [ˌɔtoʊˈfjuːgəʊ] is a gallery/photoblog theme for Hugo that's a little more automatic than Phugo.", "html_url": "https://github.com/kc0bfv/autophugo", - "stargazers_count": 84 + "stargazers_count": 91 }, "github.com/kc0bfv/ticky_tacky_dark": { "id": 227217816, @@ -2432,11 +2432,11 @@ "github.com/kdevo/osprey-delight/v5": { "id": 223589504, "created_at": "2019-11-23T13:03:41Z", - "updated_at": "2024-01-08T21:24:07Z", + "updated_at": "2024-05-06T23:03:22Z", "name": "osprey-delight", "description": "Osprey Delight is the free-minded artist's choice for a clutter-free and blazingly fast single-page portfolio.", "html_url": "https://github.com/kdevo/osprey-delight", - "stargazers_count": 82 + "stargazers_count": 87 }, "github.com/keichi/vienna": { "id": 30228814, @@ -2450,47 +2450,56 @@ "github.com/khusika/FeelIt": { "id": 353868500, "created_at": "2021-04-02T01:14:12Z", - "updated_at": "2024-02-15T12:04:10Z", + "updated_at": "2024-05-06T19:29:55Z", "name": "FeelIt", "description": "A clean, elegant but advanced blog theme for Hugo", "html_url": "https://github.com/khusika/FeelIt", - "stargazers_count": 153 + "stargazers_count": 160 + }, + "github.com/kidlat2024/kidlat": { + "id": 769487707, + "created_at": "2024-03-09T08:05:35Z", + "updated_at": "2024-03-10T00:02:26Z", + "name": "kidlat", + "description": "Kidlat Hugo theme", + "html_url": "https://github.com/kidlat2024/kidlat", + "stargazers_count": 0 }, "github.com/kimcc/hugo-theme-noteworthy": { "id": 237806089, "created_at": "2020-02-02T17:12:38Z", - "updated_at": "2024-01-17T05:25:54Z", + "updated_at": "2024-04-17T18:40:25Z", "name": "hugo-theme-noteworthy", "description": "A minimalist Hugo theme for writers and bloggers", "html_url": "https://github.com/kimcc/hugo-theme-noteworthy", - "stargazers_count": 216 + "stargazers_count": 214 }, "github.com/kishaningithub/hugo-creative-portfolio-theme": { "id": 72625520, "created_at": "2016-11-02T09:44:46Z", - "updated_at": "2024-02-07T21:03:13Z", + "updated_at": "2024-04-21T11:02:29Z", "name": "hugo-creative-portfolio-theme", "description": "Port of the creative portfolio theme to Hugo", "html_url": "https://github.com/kishaningithub/hugo-creative-portfolio-theme", - "stargazers_count": 434 + "stargazers_count": 444 }, "github.com/kishaningithub/hugo-shopping-product-catalogue-simple": { "id": 133121316, "created_at": "2018-05-12T06:43:56Z", - "updated_at": "2023-11-05T00:34:33Z", + "updated_at": "2024-03-20T10:04:34Z", "name": "hugo-shopping-product-catalogue-simple", "description": "Hugo theme for shopping product catalogue", "html_url": "https://github.com/kishaningithub/hugo-shopping-product-catalogue-simple", - "stargazers_count": 52 + "stargazers_count": 55 }, "github.com/knadh/hugo-ink": { "id": 222624771, "created_at": "2019-11-19T06:28:58Z", - "updated_at": "2024-01-23T22:53:46Z", + "updated_at": "2024-04-11T19:48:57Z", "name": "hugo-ink", "description": "Crisp, minimal personal website and blog theme for Hugo", "html_url": "https://github.com/knadh/hugo-ink", - "stargazers_count": 393 + "stargazers_count": 394 }, "github.com/knokmki612/hugo-fill-and-stroke": { "id": 133405520, @@ -2504,7 +2513,7 @@ "github.com/koirand/pulp": { "id": 149974263, "created_at": "2018-09-23T10:34:53Z", - "updated_at": "2024-01-26T19:04:47Z", + "updated_at": "2024-05-15T19:50:29Z", "name": "pulp", "description": "Pulp is a Hugo theme for getting a simple, easy-to-read blog site.", "html_url": "https://github.com/koirand/pulp", @@ -2513,11 +2522,11 @@ "github.com/kritoke/darksimplicity": { "id": 32689807, "created_at": "2015-03-22T18:49:28Z", - "updated_at": "2020-06-20T01:53:34Z", + "updated_at": "2024-04-22T04:00:20Z", "name": "darksimplicity", "description": "A Dark Minimalist Theme for Hugo Built Using PostCSS and Lost Grid.", "html_url": "https://github.com/kritoke/darksimplicity", - "stargazers_count": 11 + "stargazers_count": 12 }, "github.com/lasseborly/anybodyhome": { "id": 67042780, @@ -2531,20 +2540,20 @@ "github.com/ldeso/hugo-flex": { "id": 171150963, "created_at": "2019-02-17T17:31:39Z", - "updated_at": "2024-02-05T21:05:42Z", + "updated_at": "2024-05-10T12:44:11Z", "name": "hugo-flex", "description": "A lightweight Hugo theme leveraging CSS Flexbox.", "html_url": "https://github.com/ldeso/hugo-flex", - "stargazers_count": 87 + "stargazers_count": 93 }, "github.com/leafee98/hugo-theme-flat": { "id": 486993794, "created_at": "2022-04-29T14:03:17Z", - "updated_at": "2024-02-13T07:21:59Z", + "updated_at": "2024-03-29T19:17:17Z", "name": "hugo-theme-flat", "description": "A hugo theme made in imitation of the wordpress theme Allium", "html_url": "https://github.com/leafee98/hugo-theme-flat", - "stargazers_count": 23 + "stargazers_count": 24 }, "github.com/leonardofaria/bento": { "id": 254985394, @@ -2567,34 +2576,25 @@ "github.com/leonstafford/accessible-minimalism-hugo-theme": { "id": 294286522, "created_at": "2020-09-10T02:55:26Z", - "updated_at": "2023-11-29T14:30:31Z", + "updated_at": "2024-05-01T08:29:24Z", "name": "accessible-minimalism-hugo-theme", "description": "Minimalist Hugo theme with a penchant for accessibility", "html_url": "https://github.com/leonstafford/accessible-minimalism-hugo-theme", - "stargazers_count": 59 + "stargazers_count": 58 }, "github.com/letItCurl/minimal_marketing": { "id": 732904686, "created_at": "2023-12-18T06:02:52Z", - "updated_at": "2024-02-04T09:07:34Z", + "updated_at": "2024-04-24T06:45:55Z", "name": "minimal_marketing", "description": "Basic hugo template for services and saas products using tailwind.", "html_url": "https://github.com/letItCurl/minimal_marketing", - "stargazers_count": 4 - }, - "github.com/lgaida/mediumish-gohugo-theme": { - "id": 151920601, - "created_at": "2018-10-07T08:26:20Z", - "updated_at": "2024-02-07T09:41:50Z", - "name": "mediumish-gohugo-theme", - "description": "A mediumish gohugo theme, ported from jekyll", - "html_url": "https://github.com/lgaida/mediumish-gohugo-theme", - "stargazers_count": 127 + "stargazers_count": 11 }, "github.com/lingxz/er": { "id": 131629350, "created_at": "2018-04-30T18:02:34Z", - "updated_at": "2023-10-02T14:14:15Z", + "updated_at": "2024-04-05T07:06:13Z", "name": "er", "description": ":snail: a hugo theme", "html_url": "https://github.com/lingxz/er", @@ -2603,20 +2603,20 @@ "github.com/liuzc/LeaveIt": { "id": 148449700, "created_at": "2018-09-12T08:46:04Z", - "updated_at": "2024-02-07T17:40:38Z", + "updated_at": "2024-04-28T05:38:45Z", "name": "LeaveIt", "description": "A simple, minimal, clean blog theme for hugo.", "html_url": "https://github.com/liuzc/LeaveIt", - "stargazers_count": 405 + "stargazers_count": 404 }, "github.com/loveminimal/hugo-theme-virgo": { "id": 505842068, "created_at": "2022-06-21T12:52:48Z", - "updated_at": "2024-01-29T07:34:32Z", + "updated_at": "2024-05-14T01:38:52Z", "name": "hugo-theme-virgo", "description": "A simple and pure theme.", "html_url": "https://github.com/loveminimal/hugo-theme-virgo", - "stargazers_count": 90 + "stargazers_count": 97 }, "github.com/lubang/hugo-hello-programmer-theme": { "id": 74281084, @@ -2630,47 +2630,47 @@ "github.com/luizdepra/hugo-coder": { "id": 121858752, "created_at": "2018-02-17T13:45:54Z", - "updated_at": "2024-02-14T16:21:54Z", + "updated_at": "2024-05-14T14:12:21Z", "name": "hugo-coder", "description": "A minimalist blog theme for hugo.", "html_url": "https://github.com/luizdepra/hugo-coder", - "stargazers_count": 2539 + "stargazers_count": 2624 }, "github.com/lukeorth/poison": { "id": 561766096, "created_at": "2022-11-04T12:51:34Z", - "updated_at": "2024-02-15T09:48:29Z", + "updated_at": "2024-05-06T15:44:48Z", "name": "poison", "description": "Professional Hugo theme for dev bloggers. Based on Mdo's classic Hyde theme.", "html_url": "https://github.com/lukeorth/poison", - "stargazers_count": 142 + "stargazers_count": 162 }, "github.com/lxndrblz/anatole": { "id": 254723453, "created_at": "2020-04-10T19:53:00Z", - "updated_at": "2024-02-15T06:15:34Z", + "updated_at": "2024-05-15T03:51:59Z", "name": "anatole", "description": "Anatole is a minimalistic two-column theme for Hugo.", "html_url": "https://github.com/lxndrblz/anatole", - "stargazers_count": 637 + "stargazers_count": 644 }, "github.com/manid2/hugo-xterm": { "id": 666105876, "created_at": "2023-07-13T18:15:30Z", - "updated_at": "2024-02-13T05:12:44Z", + "updated_at": "2024-05-08T03:08:22Z", "name": "hugo-xterm", "description": "Hugo theme designed for reading and printing text with dark and light modes.", "html_url": "https://github.com/manid2/hugo-xterm", - "stargazers_count": 24 + "stargazers_count": 30 }, "github.com/mansoorbarri/coming-soon": { "id": 686674596, "created_at": "2023-09-03T15:25:01Z", - "updated_at": "2024-02-09T17:42:59Z", + "updated_at": "2024-05-11T07:21:33Z", "name": "coming-soon", "description": "A simple hugo theme for your website pre-public look", "html_url": "https://github.com/mansoorbarri/coming-soon", - "stargazers_count": 4 + "stargazers_count": 7 }, "github.com/mansoorbarri/glim-midnight": { "id": 716819760, @@ -2684,11 +2684,11 @@ "github.com/maolonglong/hugo-simple": { "id": 722524339, "created_at": "2023-11-23T10:36:04Z", - "updated_at": "2024-02-15T17:32:58Z", + "updated_at": "2024-05-15T14:31:01Z", "name": "hugo-simple", "description": "A Hugo-theme based on Simple.css and Bear Blog", "html_url": "https://github.com/maolonglong/hugo-simple", - "stargazers_count": 3 + "stargazers_count": 18 }, "github.com/marcanuy/simpleit-hugo-theme": { "id": 143778607, @@ -2702,29 +2702,20 @@ "github.com/marketempower/axiom": { "id": 256073917, "created_at": "2020-04-16T01:02:50Z", - "updated_at": "2023-10-20T15:26:59Z", + "updated_at": "2024-04-09T10:53:54Z", "name": "axiom", "description": "Axiom - A Hugo Theme. GitTip: https://gitcoin.co/tip?username=jhauraw", "html_url": "https://github.com/marketempower/axiom", - "stargazers_count": 72 - }, - "github.com/matcornic/hugo-theme-learn": { - "id": 54111104, - "created_at": "2016-03-17T10:58:41Z", - "updated_at": "2024-02-13T13:00:36Z", - "name": "hugo-theme-learn", - "description": "Porting Grav Learn theme to Hugo", - "html_url": "https://github.com/matcornic/hugo-theme-learn", - "stargazers_count": 1576 + "stargazers_count": 74 }, "github.com/matsuyoshi30/harbor": { "id": 240560413, "created_at": "2020-02-14T17:12:07Z", - "updated_at": "2024-01-09T13:49:28Z", + "updated_at": "2024-04-05T08:50:24Z", "name": "harbor", "description": "Simple and minimal personal blog theme.", "html_url": "https://github.com/matsuyoshi30/harbor", - "stargazers_count": 184 + "stargazers_count": 185 }, "github.com/mattbutton/silhouette-hugo": { "id": 161894056, @@ -2738,20 +2729,20 @@ "github.com/mattstratton/castanet": { "id": 68838254, "created_at": "2016-09-21T16:52:43Z", - "updated_at": "2024-01-10T21:44:34Z", + "updated_at": "2024-03-24T15:45:10Z", "name": "castanet", "description": "A podcast-oriented theme for Hugo", "html_url": "https://github.com/mattstratton/castanet", - "stargazers_count": 112 + "stargazers_count": 115 }, "github.com/mavidser/hugo-rocinante": { "id": 245127512, "created_at": "2020-03-05T10:01:41Z", - "updated_at": "2024-01-05T09:04:07Z", + "updated_at": "2024-05-13T14:39:52Z", "name": "hugo-rocinante", "description": "Minimal and very lightweight hugo theme.", "html_url": "https://github.com/mavidser/hugo-rocinante", - "stargazers_count": 46 + "stargazers_count": 49 }, "github.com/mazgi/hugo-theme-techlog-simple": { "id": 151939789, @@ -2765,11 +2756,11 @@ "github.com/mbrt-yeah/uwe-uwe-hugo": { "id": 370148526, "created_at": "2021-05-23T20:13:30Z", - "updated_at": "2023-08-23T14:28:27Z", + "updated_at": "2024-03-30T16:27:30Z", "name": "uwe-uwe-hugo", "description": "A minimalist Hugo theme that helps you build fully responsive documentation websites for small projects.", "html_url": "https://github.com/mbrt-yeah/uwe-uwe-hugo", - "stargazers_count": 9 + "stargazers_count": 10 }, "github.com/mcrwfrd/hugo-frances-theme": { "id": 196294193, @@ -2792,20 +2783,20 @@ "github.com/meibenny/elephants": { "id": 115945790, "created_at": "2018-01-01T20:30:49Z", - "updated_at": "2023-11-16T07:37:16Z", + "updated_at": "2024-02-28T13:37:55Z", "name": "elephants", "description": "Minimal Hugo theme using the Ubuntu font", "html_url": "https://github.com/meibenny/elephants", - "stargazers_count": 25 + "stargazers_count": 24 }, "github.com/michaelneuper/hugo-texify3": { "id": 715491346, "created_at": "2023-11-07T08:53:08Z", - "updated_at": "2024-02-14T09:25:17Z", + "updated_at": "2024-05-11T12:17:12Z", "name": "hugo-texify3", "description": "A LaTeX-style hugo theme with the gruvbox color scheme for personal blogging", "html_url": "https://github.com/michaelneuper/hugo-texify3", - "stargazers_count": 26 + "stargazers_count": 36 }, "github.com/michimani/simplog": { "id": 326343129, @@ -2819,11 +2810,11 @@ "github.com/miguelsimoni/hugo-initio": { "id": 92842216, "created_at": "2017-05-30T14:34:35Z", - "updated_at": "2023-12-19T17:40:27Z", + "updated_at": "2024-03-04T20:29:13Z", "name": "hugo-initio", "description": "Hugo Theme port of Initio bootstrap template by GetTemplate", "html_url": "https://github.com/miguelsimoni/hugo-initio", - "stargazers_count": 81 + "stargazers_count": 82 }, "github.com/mikeblum/hugo-now": { "id": 96054125, @@ -2837,20 +2828,20 @@ "github.com/mismith0227/hugo_theme_pickles": { "id": 49237064, "created_at": "2016-01-07T23:27:46Z", - "updated_at": "2024-01-01T16:11:39Z", + "updated_at": "2024-05-01T14:30:09Z", "name": "hugo_theme_pickles", "description": "Modern, Simple and beautiful Hugo theme", "html_url": "https://github.com/mismith0227/hugo_theme_pickles", - "stargazers_count": 202 + "stargazers_count": 203 }, "github.com/mivinci/hugo-theme-minima": { "id": 387123645, "created_at": "2021-07-18T08:06:57Z", - "updated_at": "2024-01-25T16:39:35Z", + "updated_at": "2024-05-07T13:32:23Z", "name": "hugo-theme-minima", "description": "A clean and minimal Hugo theme.", "html_url": "https://github.com/mivinci/hugo-theme-minima", - "stargazers_count": 119 + "stargazers_count": 131 }, "github.com/mmrath/hugo-bootstrap": { "id": 45042153, @@ -2861,46 +2852,55 @@ "html_url": "https://github.com/hugo-bootstrap/hugo-bootstrap", "stargazers_count": 56 }, + "github.com/mohamedelhefni/zahi": { + "id": 757745382, + "created_at": "2024-02-14T22:16:35Z", + "updated_at": "2024-05-12T10:04:02Z", + "name": "zahi", + "description": "Arabic Hugo Template", + "html_url": "https://github.com/mohamedelhefni/zahi", + "stargazers_count": 13 + }, "github.com/monkeyWzr/hugo-theme-cactus": { "id": 278695182, "created_at": "2020-07-10T17:32:58Z", - "updated_at": "2024-02-03T19:02:27Z", + "updated_at": "2024-05-15T20:06:54Z", "name": "hugo-theme-cactus", "description": "Cactus theme for hugo", "html_url": "https://github.com/monkeyWzr/hugo-theme-cactus", - "stargazers_count": 511 + "stargazers_count": 515 }, "github.com/mrhelloboy/seven": { "id": 653916538, "created_at": "2023-06-15T02:48:32Z", - "updated_at": "2024-02-08T23:06:59Z", + "updated_at": "2024-05-14T11:55:43Z", "name": "seven", "description": "A clean and beautiful Hugo theme, which built using Tailwind CSS.", "html_url": "https://github.com/mrhelloboy/seven", - "stargazers_count": 15 + "stargazers_count": 22 }, "github.com/mrmierzejewski/hugo-theme-console": { "id": 259664401, "created_at": "2020-04-28T14:43:04Z", - "updated_at": "2024-02-15T21:08:38Z", + "updated_at": "2024-05-08T01:58:39Z", "name": "hugo-theme-console", "description": "A minimal, responsive and light theme for Hugo inspired by Linux console.", "html_url": "https://github.com/mrmierzejewski/hugo-theme-console", - "stargazers_count": 342 + "stargazers_count": 359 }, "github.com/nanxiaobei/hugo-paper": { "id": 116700454, "created_at": "2018-01-08T16:26:30Z", - "updated_at": "2024-02-15T20:06:32Z", + "updated_at": "2024-05-15T16:13:56Z", "name": "hugo-paper", "description": "🪺 A simple, clean, customizable Hugo theme", "html_url": "https://github.com/nanxiaobei/hugo-paper", - "stargazers_count": 1896 + "stargazers_count": 1992 }, "github.com/nanxstats/hugo-tanka": { "id": 115429784, "created_at": "2017-12-26T14:37:32Z", - "updated_at": "2023-12-16T14:34:04Z", + "updated_at": "2024-04-09T12:24:11Z", "name": "hugo-tanka", "description": "📝 A minimalist, text-oriented, and performant theme for Hugo/blogdown.", "html_url": "https://github.com/nanxstats/hugo-tanka", @@ -2909,16 +2909,16 @@ "github.com/naro143/hugo-coder-portfolio": { "id": 143425223, "created_at": "2018-08-03T12:33:46Z", - "updated_at": "2024-01-24T21:29:54Z", + "updated_at": "2024-02-29T07:32:11Z", "name": "hugo-coder-portfolio", "description": "It is a theme to have you know yourself than developed based on \"hugo-coder\".", "html_url": "https://github.com/naro143/hugo-coder-portfolio", - "stargazers_count": 156 + "stargazers_count": 157 }, "github.com/natarajmb/charaka-hugo-theme": { "id": 145614778, "created_at": "2018-08-21T20:17:16Z", - "updated_at": "2024-02-02T15:31:02Z", + "updated_at": "2024-04-15T07:11:37Z", "name": "charaka-hugo-theme", "description": "Minimalistic and Responsive blog theme for hugo", "html_url": "https://github.com/natarajmb/charaka-hugo-theme", @@ -2933,41 +2933,32 @@ "html_url": "https://github.com/nathancday/min_night", "stargazers_count": 20 }, - "github.com/negrel/hugo-theme-pico": { - "id": 262163303, - "created_at": "2020-05-07T21:34:09Z", - "updated_at": "2024-01-03T16:03:02Z", - "name": "hugo-theme-pico", - "description": ":black_circle: Pico is a minimalist, readable, responsive, light and beautiful Hugo theme.", - "html_url": "https://github.com/negrel/hugo-theme-pico", - "stargazers_count": 129 - }, - "github.com/nicokaiser/hugo-theme-gallery": { + "github.com/nicokaiser/hugo-theme-gallery/v4": { "id": 665672821, "created_at": "2023-07-12T18:23:08Z", - "updated_at": "2024-02-14T12:12:57Z", + "updated_at": "2024-05-14T18:28:38Z", "name": "hugo-theme-gallery", "description": "Gallery Theme for Hugo", "html_url": "https://github.com/nicokaiser/hugo-theme-gallery", - "stargazers_count": 146 + "stargazers_count": 215 }, "github.com/nightswinger/hugo-theme-coyote": { "id": 535262094, "created_at": "2022-09-11T10:26:48Z", - "updated_at": "2024-01-12T04:25:45Z", + "updated_at": "2024-04-29T08:02:39Z", "name": "hugo-theme-coyote", "description": "", "html_url": "https://github.com/nightswinger/hugo-theme-coyote", - "stargazers_count": 29 + "stargazers_count": 31 }, "github.com/niklasbuschmann/contrast-hugo": { "id": 196999964, "created_at": "2019-07-15T13:03:07Z", - "updated_at": "2023-09-03T19:51:37Z", + "updated_at": "2024-04-14T23:19:42Z", "name": "contrast-hugo", "description": "Minimalistic Hugo theme", "html_url": "https://github.com/niklasbuschmann/contrast-hugo", - "stargazers_count": 35 + "stargazers_count": 34 }, "github.com/nirocfz/arabica": { "id": 148265392, @@ -2981,43 +2972,43 @@ "github.com/nixentric/Lowkey-Hugo-Theme": { "id": 583892827, "created_at": "2022-12-31T10:48:22Z", - "updated_at": "2024-02-13T07:21:13Z", + "updated_at": "2024-05-09T20:15:27Z", "name": "Lowkey-Hugo-Theme", "description": "A Simple \u0026 Humble Hugo Themes", "html_url": "https://github.com/nixentric/Lowkey-Hugo-Theme", - "stargazers_count": 89 + "stargazers_count": 112 }, "github.com/nodejh/hugo-theme-cactus-plus": { "id": 79039278, "created_at": "2017-01-15T14:56:47Z", - "updated_at": "2024-02-05T17:13:49Z", + "updated_at": "2024-05-16T00:25:54Z", "name": "hugo-theme-mini", "description": "A fast, minimalist and responsive hugo theme for bloggers.", "html_url": "https://github.com/nodejh/hugo-theme-mini", - "stargazers_count": 679 + "stargazers_count": 702 }, "github.com/ntk148v/hugo-cuisine-book": { "id": 513742307, "created_at": "2022-07-14T03:09:42Z", - "updated_at": "2023-11-15T04:36:18Z", + "updated_at": "2024-03-31T03:53:15Z", "name": "hugo-cuisine-book", "description": "Cuisine Book - Made with Hugo", "html_url": "https://github.com/ntk148v/hugo-cuisine-book", - "stargazers_count": 10 + "stargazers_count": 12 }, "github.com/nunocoracao/blowfish/v2": { "id": 534798642, "created_at": "2022-09-09T20:38:52Z", - "updated_at": "2024-02-15T14:53:32Z", + "updated_at": "2024-05-15T14:20:25Z", "name": "blowfish", "description": "Personal Website \u0026 Blog Theme for Hugo", "html_url": "https://github.com/nunocoracao/blowfish", - "stargazers_count": 865 + "stargazers_count": 1076 }, "github.com/nurlansu/hugo-sustain": { "id": 71623522, "created_at": "2016-10-22T07:21:04Z", - "updated_at": "2024-02-15T13:17:43Z", + "updated_at": "2024-05-04T15:11:42Z", "name": "hugo-sustain", "description": "🦁 Personal blog theme built with Bootstrap, powered by Hugo.", "html_url": "https://github.com/suyundukov/hugo-sustain", @@ -3026,155 +3017,146 @@ "github.com/nusserstudios/tailbliss": { "id": 559039482, "created_at": "2022-10-28T22:19:46Z", - "updated_at": "2024-02-15T01:32:12Z", + "updated_at": "2024-05-14T14:07:51Z", "name": "tailbliss", "description": "TailBliss is a Hugo Starter theme built on TailwindCSS 3, and Alpine.JS.", "html_url": "https://github.com/nusserstudios/tailbliss", - "stargazers_count": 227 + "stargazers_count": 264 }, "github.com/okkur/syna": { "id": 102731022, "created_at": "2017-09-07T11:51:44Z", - "updated_at": "2023-12-06T21:40:04Z", + "updated_at": "2024-04-13T09:15:31Z", "name": "syna", "description": "Highly customizable open source theme for Hugo based static websites", "html_url": "https://github.com/okkur/syna", - "stargazers_count": 252 + "stargazers_count": 251 }, "github.com/olOwOlo/hugo-theme-even": { "id": 101626459, "created_at": "2017-08-28T09:20:45Z", - "updated_at": "2024-02-14T16:36:50Z", + "updated_at": "2024-05-14T14:07:29Z", "name": "hugo-theme-even", "description": "🚀 A super concise theme for Hugo https://hugo-theme-even.netlify.app", "html_url": "https://github.com/olOwOlo/hugo-theme-even", - "stargazers_count": 2000 + "stargazers_count": 2023 }, "github.com/onweru/compose": { "id": 236832189, "created_at": "2020-01-28T20:17:23Z", - "updated_at": "2024-02-15T13:19:35Z", + "updated_at": "2024-05-14T13:12:13Z", "name": "compose", "description": "A Hugo theme for documentation sites.", "html_url": "https://github.com/onweru/compose", - "stargazers_count": 289 + "stargazers_count": 306 }, "github.com/onweru/hugo-swift-theme": { "id": 170762804, "created_at": "2019-02-14T21:49:30Z", - "updated_at": "2024-01-27T15:23:45Z", + "updated_at": "2024-02-26T00:42:56Z", "name": "hugo-swift-theme", "description": "A simple open source theme for publishing with hugo", "html_url": "https://github.com/onweru/hugo-swift-theme", - "stargazers_count": 118 + "stargazers_count": 119 }, "github.com/onweru/newsroom": { "id": 202606752, "created_at": "2019-08-15T20:25:37Z", - "updated_at": "2024-02-07T11:27:15Z", + "updated_at": "2024-05-05T11:09:32Z", "name": "newsroom", "description": "A simple, minimalistic Hugo theme. View Demo here", "html_url": "https://github.com/onweru/newsroom", - "stargazers_count": 261 + "stargazers_count": 270 }, "github.com/opera7133/Blonde": { "id": 287219987, "created_at": "2020-08-13T08:10:34Z", - "updated_at": "2023-12-27T01:15:54Z", + "updated_at": "2024-04-08T12:08:29Z", "name": "Blonde", "description": "Blonde, A simple theme using Tailwind CSS.", "html_url": "https://github.com/opera7133/Blonde", - "stargazers_count": 107 + "stargazers_count": 108 }, "github.com/opera7133/tella": { "id": 326377881, "created_at": "2021-01-03T10:14:00Z", - "updated_at": "2024-02-01T07:42:57Z", + "updated_at": "2024-05-08T17:00:39Z", "name": "tella", "description": "Tella, A Hugo theme for Companies.", "html_url": "https://github.com/opera7133/tella", - "stargazers_count": 72 + "stargazers_count": 87 }, "github.com/opera7133/vnovel": { "id": 356821559, "created_at": "2021-04-11T09:15:14Z", - "updated_at": "2023-11-14T10:48:08Z", + "updated_at": "2024-03-29T22:46:31Z", "name": "vnovel", "description": "Pixiv-like theme for novels", "html_url": "https://github.com/opera7133/vnovel", - "stargazers_count": 14 + "stargazers_count": 18 }, "github.com/orf/bare-hugo-theme": { "id": 210163892, "created_at": "2019-09-22T14:49:03Z", - "updated_at": "2024-01-31T03:19:10Z", + "updated_at": "2024-05-06T23:52:26Z", "name": "bare-hugo-theme", "description": "A Hugo theme based on Bulma.io", "html_url": "https://github.com/orf/bare-hugo-theme", - "stargazers_count": 69 + "stargazers_count": 70 }, "github.com/pacollins/calligraphy": { "id": 473825609, "created_at": "2022-03-25T01:13:39Z", - "updated_at": "2024-01-14T02:10:48Z", + "updated_at": "2024-04-17T06:24:03Z", "name": "calligraphy", "description": "Calligraphy is a theme for Hugo static site generator focused on the beauty of it's content.", "html_url": "https://github.com/pacollins/calligraphy", - "stargazers_count": 24 - }, - "github.com/panr/hugo-theme-hello-friend": { - "id": 141738551, - "created_at": "2018-07-20T17:13:14Z", - "updated_at": "2024-02-03T00:46:20Z", - "name": "hugo-theme-hello-friend", - "description": "Pretty basic theme for Hugo that covers all of the essentials. All you have to do is start typing!", - "html_url": "https://github.com/panr/hugo-theme-hello-friend", - "stargazers_count": 1060 + "stargazers_count": 25 }, "github.com/panr/hugo-theme-terminal": { "id": 167872853, "created_at": "2019-01-27T23:58:03Z", - "updated_at": "2024-02-14T18:28:33Z", + "updated_at": "2024-05-15T19:56:06Z", "name": "hugo-theme-terminal", "description": "A simple, retro theme for Hugo", "html_url": "https://github.com/panr/hugo-theme-terminal", - "stargazers_count": 1896 + "stargazers_count": 1923 }, "github.com/parsiya/Hugo-Octopress": { "id": 50900827, "created_at": "2016-02-02T06:55:49Z", - "updated_at": "2024-02-04T01:15:53Z", + "updated_at": "2024-05-05T11:14:21Z", "name": "Hugo-Octopress", "description": "Port of the classic Octopress theme to Hugo", "html_url": "https://github.com/parsiya/Hugo-Octopress", - "stargazers_count": 146 + "stargazers_count": 149 }, "github.com/paulmartins/hugo-digital-garden-theme": { "id": 397395153, "created_at": "2021-08-17T21:26:04Z", - "updated_at": "2024-02-13T02:30:05Z", + "updated_at": "2024-05-03T15:35:27Z", "name": "hugo-digital-garden-theme", "description": "Hugo Theme for digital gardening projects.", "html_url": "https://github.com/paulmartins/hugo-digital-garden-theme", - "stargazers_count": 69 + "stargazers_count": 79 }, "github.com/pavel-pi/kiss-em": { "id": 253218912, "created_at": "2020-04-05T11:29:14Z", - "updated_at": "2022-06-03T12:33:27Z", + "updated_at": "2024-05-03T19:11:53Z", "name": "kiss-em", "description": "Even More simple Hugo blogging theme", "html_url": "https://github.com/pavel-pi/kiss-em", - "stargazers_count": 10 + "stargazers_count": 11 }, "github.com/pdevty/material-design": { "id": 35676282, "created_at": "2015-05-15T13:44:38Z", - "updated_at": "2023-04-14T02:02:52Z", + "updated_at": "2024-03-16T10:07:20Z", "name": "material-design", "description": "Simple Material Design Theme for Hugo", "html_url": "https://github.com/pdevty/material-design", - "stargazers_count": 56 + "stargazers_count": 55 }, "github.com/pdevty/polymer": { "id": 38299186, @@ -3188,11 +3170,11 @@ "github.com/peaceiris/hugo-theme-iris": { "id": 142685900, "created_at": "2018-07-28T14:56:18Z", - "updated_at": "2024-01-06T00:49:25Z", + "updated_at": "2024-05-14T11:20:22Z", "name": "hugo-theme-iris", "description": "Hugo IRIS Theme - Portfolio and Blog", "html_url": "https://github.com/peaceiris/hugo-theme-iris", - "stargazers_count": 66 + "stargazers_count": 67 }, "github.com/pfadfinder-konstanz/hugo-dpsg": { "id": 308394253, @@ -3206,29 +3188,29 @@ "github.com/ph-ph/chalk": { "id": 485888244, "created_at": "2022-04-26T17:40:06Z", - "updated_at": "2024-01-12T14:12:24Z", + "updated_at": "2024-04-17T12:01:29Z", "name": "chalk", "description": "Port of Jekyll theme \"Chalk\" to Hugo", "html_url": "https://github.com/ph-ph/chalk", - "stargazers_count": 8 + "stargazers_count": 7 }, "github.com/pjbakker/flexible-seo-hugo": { "id": 220705686, "created_at": "2019-11-09T21:25:03Z", - "updated_at": "2023-04-13T14:38:29Z", + "updated_at": "2024-04-01T19:56:05Z", "name": "flexible-seo-hugo", "description": "Flexible SEO-friendly theme for Hugo", "html_url": "https://github.com/pjbakker/flexible-seo-hugo", - "stargazers_count": 5 + "stargazers_count": 6 }, "github.com/plopcas/papaya": { "id": 236103215, "created_at": "2020-01-24T23:52:39Z", - "updated_at": "2024-01-11T18:07:14Z", + "updated_at": "2024-04-20T16:50:57Z", "name": "papaya", "description": "Minimalist Hugo theme with social buttons and analytics.", "html_url": "https://github.com/plopcas/papaya", - "stargazers_count": 30 + "stargazers_count": 33 }, "github.com/pravin/hugo-theme-prav": { "id": 230786786, @@ -3242,25 +3224,25 @@ "github.com/progrhyme/hugo-theme-bootie-docs": { "id": 34202318, "created_at": "2015-04-19T10:27:41Z", - "updated_at": "2023-08-06T06:22:07Z", + "updated_at": "2024-03-28T08:26:48Z", "name": "hugo-theme-bootie-docs", "description": "A simple Hugo theme for documentation", "html_url": "https://github.com/progrhyme/hugo-theme-bootie-docs", - "stargazers_count": 55 + "stargazers_count": 56 }, "github.com/puresyntax71/hugo-theme-chunky-poster": { "id": 228537867, "created_at": "2019-12-17T05:13:18Z", - "updated_at": "2023-12-26T16:24:24Z", + "updated_at": "2024-03-18T13:09:49Z", "name": "hugo-theme-chunky-poster", "description": "A simple, bootstrap 4 based hugo blog theme.", "html_url": "https://github.com/puresyntax71/hugo-theme-chunky-poster", - "stargazers_count": 107 + "stargazers_count": 108 }, "github.com/qqhann/hugo-primer": { "id": 134553022, "created_at": "2018-05-23T10:25:28Z", - "updated_at": "2023-12-11T15:54:29Z", + "updated_at": "2024-04-25T00:55:23Z", "name": "hugo-primer", "description": "Hugo theme based on GitHub's Primer CSS", "html_url": "https://github.com/qqpann/hugo-primer", @@ -3269,43 +3251,43 @@ "github.com/qub1750ul/hugo-simpleIntro": { "id": 463666210, "created_at": "2022-02-25T20:25:13Z", - "updated_at": "2023-09-30T05:56:59Z", + "updated_at": "2024-03-04T17:53:31Z", "name": "hugo-simpleIntro", "description": "Simple Theme For Hugo", "html_url": "https://github.com/qub1750ul/hugo-simpleIntro", - "stargazers_count": 7 + "stargazers_count": 6 }, "github.com/queensferryme/hugo-theme-texify": { "id": 198173400, "created_at": "2019-07-22T07:46:02Z", - "updated_at": "2024-01-21T03:17:17Z", + "updated_at": "2024-04-01T14:40:33Z", "name": "hugo-theme-texify", "description": "A minimal, latex-style hugo theme for personal blogging", "html_url": "https://github.com/queensferryme/hugo-theme-texify", - "stargazers_count": 126 + "stargazers_count": 133 }, "github.com/radity/raditian-free-hugo-theme": { "id": 229935377, "created_at": "2019-12-24T12:09:43Z", - "updated_at": "2024-01-19T16:47:49Z", + "updated_at": "2024-05-13T16:16:40Z", "name": "raditian-free-hugo-theme", "description": "Raditian Hugo Theme for Personal Websites", "html_url": "https://github.com/radity/raditian-free-hugo-theme", - "stargazers_count": 287 + "stargazers_count": 301 }, "github.com/rafed/BlogRa": { "id": 322850803, "created_at": "2020-12-19T13:12:22Z", - "updated_at": "2024-02-10T03:59:53Z", + "updated_at": "2024-05-07T13:45:26Z", "name": "BlogRa", "description": "The Ultimate Tech Blogging Hugo Theme", "html_url": "https://github.com/rafed/BlogRa", - "stargazers_count": 10 + "stargazers_count": 11 }, "github.com/rafed/ramium": { "id": 250547352, "created_at": "2020-03-27T13:53:21Z", - "updated_at": "2023-11-26T19:53:05Z", + "updated_at": "2024-04-11T08:08:41Z", "name": "ramium", "description": "A modern hugo theme for awesome blogs ", "html_url": "https://github.com/rafed/ramium", @@ -3314,29 +3296,29 @@ "github.com/razonyang/hugo-theme-bootstrap": { "id": 304332853, "created_at": "2020-10-15T13:20:45Z", - "updated_at": "2024-02-07T21:06:49Z", + "updated_at": "2024-05-09T16:58:11Z", "name": "hugo-theme-bootstrap", "description": "A fast, responsive, multipurpose and feature-rich Hugo theme.", "html_url": "https://github.com/razonyang/hugo-theme-bootstrap", - "stargazers_count": 449 + "stargazers_count": 477 }, "github.com/reuixiy/hugo-theme-meme": { "id": 201855709, "created_at": "2019-08-12T04:06:21Z", - "updated_at": "2024-02-11T23:53:04Z", + "updated_at": "2024-05-15T14:44:27Z", "name": "hugo-theme-meme", "description": "😝 You can’t spell awesome without MemE!", "html_url": "https://github.com/reuixiy/hugo-theme-meme", - "stargazers_count": 967 + "stargazers_count": 983 }, "github.com/rhazdon/hugo-theme-hello-friend-ng": { "id": 167668309, "created_at": "2019-01-26T08:46:36Z", - "updated_at": "2024-02-14T18:59:15Z", + "updated_at": "2024-05-15T15:12:33Z", "name": "hugo-theme-hello-friend-ng", "description": "Pretty basic theme for Hugo that covers all of the essentials. All you have to do is start typing!", "html_url": "https://github.com/rhazdon/hugo-theme-hello-friend-ng", - "stargazers_count": 1406 + "stargazers_count": 1424 }, "github.com/rhnvrm/bodhi": { "id": 265294756, @@ -3350,7 +3332,7 @@ "github.com/ribice/kiss": { "id": 108032467, "created_at": "2017-10-23T19:57:06Z", - "updated_at": "2023-11-26T20:34:40Z", + "updated_at": "2024-05-07T13:53:16Z", "name": "kiss", "description": "Stupidly simple Hugo blogging theme", "html_url": "https://github.com/ribice/kiss", @@ -3386,11 +3368,11 @@ "github.com/roninro/hugo-theme-puppet": { "id": 518779527, "created_at": "2022-07-28T09:19:40Z", - "updated_at": "2024-02-11T03:14:31Z", + "updated_at": "2024-05-01T03:03:43Z", "name": "hugo-theme-puppet", "description": "", "html_url": "https://github.com/roninro/hugo-theme-puppet", - "stargazers_count": 64 + "stargazers_count": 70 }, "github.com/rullmann/hugo-theme-terminal-cookbook": { "id": 477294858, @@ -3398,7 +3380,7 @@ "updated_at": "2023-08-02T07:24:02Z", "name": "hugo-theme-terminal-cookbook", "description": "", - "html_url": "https://github.com/rullmann/hugo-theme-terminal-cookbook", + "html_url": "https://github.com/stillbeben/hugo-theme-terminal-cookbook", "stargazers_count": 2 }, "github.com/runningstream/hugograyscale": { @@ -3413,20 +3395,20 @@ "github.com/rz3n/hugo-theme-freshstart": { "id": 285397747, "created_at": "2020-08-05T20:32:00Z", - "updated_at": "2024-01-02T14:58:53Z", + "updated_at": "2024-03-19T04:25:51Z", "name": "hugo-theme-freshstart", "description": "Simple start page theme for Hugo CMS", "html_url": "https://github.com/rz3n/hugo-theme-freshstart", - "stargazers_count": 24 + "stargazers_count": 23 }, "github.com/s4n7h0/hugo-theme-timeline": { "id": 302397876, "created_at": "2020-10-08T16:20:11Z", - "updated_at": "2023-10-07T08:17:50Z", + "updated_at": "2024-04-08T11:56:41Z", "name": "hugo-theme-timeline", "description": "Simple timeline theme for hugo", "html_url": "https://github.com/s4n7h0/hugo-theme-timeline", - "stargazers_count": 60 + "stargazers_count": 62 }, "github.com/saadnpq/npq-hugo": { "id": 254852946, @@ -3440,20 +3422,20 @@ "github.com/saey55/hugo-elate-theme": { "id": 74140600, "created_at": "2016-11-18T15:14:54Z", - "updated_at": "2023-12-18T17:18:25Z", + "updated_at": "2024-02-29T05:53:42Z", "name": "hugo-elate-theme", "description": "A one page parallax theme with animation for Hugo", "html_url": "https://github.com/saey55/hugo-elate-theme", - "stargazers_count": 190 + "stargazers_count": 193 }, "github.com/salcan/BeyondNothing": { "id": 135865634, "created_at": "2018-06-03T01:57:33Z", - "updated_at": "2023-08-06T06:26:30Z", + "updated_at": "2024-04-01T20:02:01Z", "name": "BeyondNothing", "description": "Hugo Theme", "html_url": "https://github.com/salcan/BeyondNothing", - "stargazers_count": 15 + "stargazers_count": 16 }, "github.com/salsysd/hugo-assembly": { "id": 139225614, @@ -3467,20 +3449,20 @@ "github.com/samrobbins85/hugo-developer-portfolio": { "id": 231086321, "created_at": "2019-12-31T12:37:03Z", - "updated_at": "2024-01-24T13:26:14Z", + "updated_at": "2024-05-01T11:42:00Z", "name": "hugo-developer-portfolio", "description": "A theme for a developer portfolio made with Hugo", "html_url": "https://github.com/samrobbins85/hugo-developer-portfolio", - "stargazers_count": 70 + "stargazers_count": 75 }, "github.com/sbruder/spectral": { "id": 111731614, "created_at": "2017-11-22T20:56:41Z", - "updated_at": "2024-02-09T14:14:31Z", + "updated_at": "2024-05-06T01:17:56Z", "name": "spectral", "description": "Port of html5up’s spectral theme to hugo", "html_url": "https://github.com/sbruder/spectral", - "stargazers_count": 57 + "stargazers_count": 62 }, "github.com/schmanat/hugo-highlights-theme": { "id": 60331934, @@ -3494,11 +3476,11 @@ "github.com/schnerring/hugo-theme-gruvbox": { "id": 375866848, "created_at": "2021-06-11T00:56:19Z", - "updated_at": "2024-02-12T20:21:53Z", + "updated_at": "2024-05-14T02:25:18Z", "name": "hugo-theme-gruvbox", "description": "A retro-looking Hugo theme inspired by gruvbox. The pastel colors are high contrast, easily distinguishable, pleasing to the eye, and feature light and dark color palettes.", "html_url": "https://github.com/schnerring/hugo-theme-gruvbox", - "stargazers_count": 130 + "stargazers_count": 148 }, "github.com/schollz/onetwothree": { "id": 109300927, @@ -3512,20 +3494,20 @@ "github.com/seanlane/gochowdown": { "id": 166714507, "created_at": "2019-01-20T22:05:30Z", - "updated_at": "2024-01-01T20:42:29Z", + "updated_at": "2024-03-25T04:00:53Z", "name": "gochowdown", "description": "Hugo theme based on the Jekyll chowdown theme", "html_url": "https://github.com/seanlane/gochowdown", - "stargazers_count": 70 + "stargazers_count": 71 }, "github.com/sefeng211/techlab-hugo-theme": { "id": 529923067, "created_at": "2022-08-28T16:52:02Z", - "updated_at": "2023-10-05T04:33:46Z", + "updated_at": "2024-03-10T21:11:00Z", "name": "techlab-hugo-theme", "description": "", "html_url": "https://github.com/sefeng211/techlab-hugo-theme", - "stargazers_count": 0 + "stargazers_count": 1 }, "github.com/serg/yourfolio": { "id": 135719431, @@ -3539,56 +3521,47 @@ "github.com/sergeyklay/gohugo-theme-ed": { "id": 474356339, "created_at": "2022-03-26T13:30:01Z", - "updated_at": "2024-02-07T18:18:08Z", + "updated_at": "2024-05-04T02:02:48Z", "name": "gohugo-theme-ed", "description": "Ed: A theme for Hugo Sites", "html_url": "https://github.com/sergeyklay/gohugo-theme-ed", - "stargazers_count": 36 + "stargazers_count": 40 }, "github.com/sergiobarriel/tophat-theme": { "id": 670530885, "created_at": "2023-07-25T09:00:52Z", - "updated_at": "2023-12-20T11:58:13Z", + "updated_at": "2024-04-08T06:48:45Z", "name": "tophat-theme", "description": "Top Hat it's a simple Hugo theme just for blogging.", "html_url": "https://github.com/sergiobarriel/tophat-theme", - "stargazers_count": 9 + "stargazers_count": 8 }, "github.com/serkodev/holy": { "id": 477097689, "created_at": "2022-04-02T15:40:18Z", - "updated_at": "2024-02-08T11:02:52Z", + "updated_at": "2024-05-11T15:36:15Z", "name": "holy", "description": "✨ A simple and clean Hugo theme", "html_url": "https://github.com/serkodev/holy", - "stargazers_count": 49 + "stargazers_count": 54 }, "github.com/setsevireon/photophobia": { "id": 387856009, "created_at": "2021-07-20T16:46:27Z", - "updated_at": "2024-01-17T18:14:19Z", + "updated_at": "2024-05-01T21:30:07Z", "name": "photophobia", "description": "A boring dark theme for Hugo.", "html_url": "https://github.com/setsevireon/photophobia", - "stargazers_count": 20 + "stargazers_count": 21 }, "github.com/shaform/hugo-theme-den": { "id": 141029583, "created_at": "2018-07-15T13:29:45Z", - "updated_at": "2024-01-17T00:36:35Z", + "updated_at": "2024-03-02T14:55:41Z", "name": "hugo-theme-den", "description": "A Simple Theme for Hugo", "html_url": "https://github.com/shaform/hugo-theme-den", - "stargazers_count": 44 - }, - "github.com/shenoybr/hugo-goa": { - "id": 70299290, - "created_at": "2016-10-08T02:59:24Z", - "updated_at": "2024-02-01T03:02:16Z", - "name": "hugo-goa", - "description": "Simple Minimalistic Theme for Hugo", - "html_url": "https://github.com/kaapiandcode/hugo-goa", - "stargazers_count": 258 + "stargazers_count": 46 }, "github.com/siegerts/hugo-theme-basic": { "id": 168743880, @@ -3611,11 +3584,11 @@ "github.com/slashformotion/hugo-tufte": { "id": 387035271, "created_at": "2021-07-17T20:56:11Z", - "updated_at": "2023-11-01T15:52:25Z", + "updated_at": "2024-04-22T15:47:34Z", "name": "hugo-tufte", "description": "pls use https://github.com/loikein/hugo-tufte", "html_url": "https://github.com/slashformotion/hugo-tufte", - "stargazers_count": 88 + "stargazers_count": 87 }, "github.com/softwareyoga/ronu-hugo-theme": { "id": 244429027, @@ -3629,11 +3602,11 @@ "github.com/spaghettiwews/hugonews": { "id": 213632806, "created_at": "2019-10-08T12:13:09Z", - "updated_at": "2023-07-25T19:32:27Z", + "updated_at": "2024-03-26T20:32:39Z", "name": "hugonews", "description": "hugo theme (based on https://news.ycombinator.com) for https://bookmarks.wews.co.zw", "html_url": "https://github.com/spaghettiwews/hugonews", - "stargazers_count": 60 + "stargazers_count": 61 }, "github.com/spech66/bootstrap-bp-hugo-startpage": { "id": 198188726, @@ -3647,11 +3620,11 @@ "github.com/spech66/bootstrap-bp-hugo-theme": { "id": 155002736, "created_at": "2018-10-27T19:44:58Z", - "updated_at": "2023-12-18T07:38:34Z", + "updated_at": "2024-05-10T16:29:06Z", "name": "bootstrap-bp-hugo-theme", "description": "Bootstrap based Hugo theme which provides out of the box best practices.", "html_url": "https://github.com/spech66/bootstrap-bp-hugo-theme", - "stargazers_count": 47 + "stargazers_count": 51 }, "github.com/spech66/flex-bp-hugo-cv": { "id": 310825047, @@ -3665,25 +3638,25 @@ "github.com/spech66/materialize-bp-hugo-theme": { "id": 210044768, "created_at": "2019-09-21T19:49:22Z", - "updated_at": "2023-06-12T03:47:50Z", + "updated_at": "2024-03-10T13:23:31Z", "name": "materialize-bp-hugo-theme", "description": "MaterializeCSS based Hugo theme which provides out of the box best practices.", "html_url": "https://github.com/spech66/materialize-bp-hugo-theme", - "stargazers_count": 20 + "stargazers_count": 19 }, "github.com/spf13/hyde": { "id": 20112077, "created_at": "2014-05-23T19:47:51Z", - "updated_at": "2024-02-13T21:46:57Z", + "updated_at": "2024-04-27T23:47:09Z", "name": "hyde", "description": "Port of Mdo's excellent theme to Hugo", "html_url": "https://github.com/spf13/hyde", - "stargazers_count": 534 + "stargazers_count": 540 }, "github.com/splch/hugo-simplecss": { "id": 482669984, "created_at": "2022-04-18T00:51:15Z", - "updated_at": "2023-10-06T12:13:19Z", + "updated_at": "2024-04-25T13:36:44Z", "name": "hugo-simplecss", "description": "", "html_url": "https://github.com/splch/hugo-simplecss", @@ -3692,11 +3665,11 @@ "github.com/spookey/slick": { "id": 161045594, "created_at": "2018-12-09T14:04:20Z", - "updated_at": "2024-01-31T20:17:27Z", + "updated_at": "2024-05-01T00:08:53Z", "name": "slick", "description": "A fast, minimal, responsive theme for Hugo which honours your privacy", "html_url": "https://github.com/spookey/slick", - "stargazers_count": 52 + "stargazers_count": 53 }, "github.com/st-wong/hugo-spectre-pixel-theme": { "id": 208091530, @@ -3710,20 +3683,20 @@ "github.com/sudorook/capsule": { "id": 105379544, "created_at": "2017-09-30T15:29:45Z", - "updated_at": "2023-04-11T15:21:26Z", + "updated_at": "2024-05-11T18:25:53Z", "name": "capsule", "description": "A Hugo theme based on the CSS-only Bulma framework.", "html_url": "https://github.com/sudorook/capsule", - "stargazers_count": 20 + "stargazers_count": 19 }, "github.com/surajmandalcell/potato-dark": { "id": 126984930, "created_at": "2018-03-27T12:45:26Z", - "updated_at": "2023-11-19T20:47:06Z", + "updated_at": "2024-04-02T22:49:46Z", "name": "potato-dark", "description": "Dark and elegant blog theme for goHugo static site generator.", "html_url": "https://github.com/surajmandalcell/potato-dark", - "stargazers_count": 31 + "stargazers_count": 30 }, "github.com/syui/hugo-theme-air": { "id": 39655060, @@ -3746,11 +3719,11 @@ "github.com/taikii/whiteplain": { "id": 115015872, "created_at": "2017-12-21T14:43:28Z", - "updated_at": "2024-02-03T15:12:10Z", + "updated_at": "2024-05-13T11:11:03Z", "name": "whiteplain", "description": "Simple and Functional Hugo theme.", "html_url": "https://github.com/taikii/whiteplain", - "stargazers_count": 114 + "stargazers_count": 118 }, "github.com/tastaturtier/someparts-hugo": { "id": 239798818, @@ -3788,6 +3761,15 @@ "html_url": "https://github.com/tcgriffith/hugo-owaraiclub", "stargazers_count": 0 }, + "github.com/techbarrack/terminal-hugo-theme": { + "id": 780514474, + "created_at": "2024-04-01T16:35:16Z", + "updated_at": "2024-05-15T05:05:05Z", + "name": "terminal-hugo-theme", + "description": "A theme for hugo made using tailwind CSS library and mono font family", + "html_url": "https://github.com/techbarrack/terminal-hugo-theme", + "stargazers_count": 7 + }, "github.com/the2ne/hugo-frais": { "id": 70173187, "created_at": "2016-10-06T16:42:56Z", @@ -3800,38 +3782,38 @@ "github.com/theNewDynamic/gohugo-theme-ananke": { "id": 87873787, "created_at": "2017-04-11T01:24:05Z", - "updated_at": "2024-02-14T04:22:16Z", + "updated_at": "2024-05-08T20:04:17Z", "name": "gohugo-theme-ananke", "description": "Ananke: A theme for Hugo Sites", "html_url": "https://github.com/theNewDynamic/gohugo-theme-ananke", - "stargazers_count": 1027 + "stargazers_count": 1060 }, "github.com/thegeeklab/hugo-geekblog": { "id": 275451763, "created_at": "2020-06-27T20:55:19Z", - "updated_at": "2024-01-04T12:01:19Z", + "updated_at": "2024-05-15T06:27:53Z", "name": "hugo-geekblog", "description": "Hugo theme made for blogs", "html_url": "https://github.com/thegeeklab/hugo-geekblog", - "stargazers_count": 86 + "stargazers_count": 90 }, "github.com/thegeeklab/hugo-geekdoc": { "id": 231097194, "created_at": "2019-12-31T13:53:04Z", - "updated_at": "2024-01-24T23:54:21Z", + "updated_at": "2024-05-15T08:39:14Z", "name": "hugo-geekdoc", "description": "Hugo theme made for documentation", "html_url": "https://github.com/thegeeklab/hugo-geekdoc", - "stargazers_count": 468 + "stargazers_count": 487 }, "github.com/thingsym/hugo-theme-techdoc": { "id": 123775108, "created_at": "2018-03-04T09:42:33Z", - "updated_at": "2024-02-06T13:47:53Z", + "updated_at": "2024-04-23T04:50:40Z", "name": "hugo-theme-techdoc", "description": "The Techdoc is a Hugo Theme for technical documentation.", "html_url": "https://github.com/thingsym/hugo-theme-techdoc", - "stargazers_count": 195 + "stargazers_count": 201 }, "github.com/thomasheller/crab": { "id": 85394186, @@ -3854,20 +3836,29 @@ "github.com/tohn/linkshrubbery": { "id": 379481389, "created_at": "2021-06-23T04:45:50Z", - "updated_at": "2023-09-21T19:28:43Z", + "updated_at": "2024-04-29T11:46:56Z", "name": "linkshrubbery", "description": "A fast, minimal, responsive Hugo theme similar to Linktree.", "html_url": "https://github.com/tohn/linkshrubbery", - "stargazers_count": 16 + "stargazers_count": 17 + }, + "github.com/tomfran/typo": { + "id": 790151973, + "created_at": "2024-04-22T11:09:54Z", + "updated_at": "2024-05-15T18:02:53Z", + "name": "typo", + "description": "A simple Hugo theme", + "html_url": "https://github.com/tomfran/typo", + "stargazers_count": 19 }, "github.com/tomowang/hugo-theme-tailwind": { "id": 708135196, "created_at": "2023-10-21T16:20:37Z", - "updated_at": "2024-02-12T05:03:12Z", + "updated_at": "2024-05-15T15:06:21Z", "name": "hugo-theme-tailwind", "description": "Clean card Hugo theme for blog, created by using tailwindcss", "html_url": "https://github.com/tomowang/hugo-theme-tailwind", - "stargazers_count": 32 + "stargazers_count": 71 }, "github.com/tosi29/inkblotty": { "id": 176526148, @@ -3893,7 +3884,7 @@ "updated_at": "2023-12-14T19:51:30Z", "name": "port-hugo", "description": "", - "html_url": "https://github.com/thegitduck/port-hugo", + "html_url": "https://github.com/tylerlaws0n/port-hugo", "stargazers_count": 18 }, "github.com/tylerjlawson/simple-resume": { @@ -3902,7 +3893,7 @@ "updated_at": "2023-09-03T23:15:04Z", "name": "simple-resume", "description": "Hugo Theme for a simple, web-based resume (and it prints)", - "html_url": "https://github.com/thegitduck/simple-resume", + "html_url": "https://github.com/tylerlaws0n/simple-resume", "stargazers_count": 30 }, "github.com/tylerjlawson/simple-snipcart-shop": { @@ -3911,17 +3902,17 @@ "updated_at": "2023-09-08T02:37:54Z", "name": "simple-snipcart-shop", "description": "Hugo theme for a simple online store using Snipcart", - "html_url": "https://github.com/thegitduck/simple-snipcart-shop", + "html_url": "https://github.com/tylerlaws0n/simple-snipcart-shop", "stargazers_count": 8 }, "github.com/uPagge/uBlogger": { "id": 315256351, "created_at": "2020-11-23T09:02:15Z", - "updated_at": "2023-11-29T10:08:35Z", + "updated_at": "2024-04-16T04:47:40Z", "name": "uBlogger", "description": "A template designed with your readers in mind :heart:", "html_url": "https://github.com/uPagge/uBlogger", - "stargazers_count": 248 + "stargazers_count": 250 }, "github.com/uicardiodev/hugo-lime": { "id": 146114676, @@ -3953,20 +3944,20 @@ "github.com/undus5/hugo-pure": { "id": 698042820, "created_at": "2023-09-29T02:55:36Z", - "updated_at": "2024-01-19T09:45:36Z", + "updated_at": "2024-04-29T15:38:41Z", "name": "hugo-pure", - "description": "https://undus.net", + "description": "Theme for Hugo static website generator", "html_url": "https://github.com/undus5/hugo-pure", - "stargazers_count": 2 + "stargazers_count": 3 }, "github.com/unicef/inventory-hugo-theme": { "id": 361788110, "created_at": "2021-04-26T14:51:17Z", - "updated_at": "2024-02-04T08:53:55Z", + "updated_at": "2024-02-20T14:02:26Z", "name": "inventory-hugo-theme", "description": "UNICEF Inventory theme, for use with Hugo static site generator. A simple knowledgebase to share information with others.", "html_url": "https://github.com/unicef/inventory-hugo-theme", - "stargazers_count": 23 + "stargazers_count": 24 }, "github.com/urjaacharya/redgood": { "id": 266416121, @@ -3980,65 +3971,74 @@ "github.com/vaga/hugo-theme-m10c": { "id": 166530704, "created_at": "2019-01-19T09:43:35Z", - "updated_at": "2024-02-15T13:19:08Z", + "updated_at": "2024-05-14T02:52:53Z", "name": "hugo-theme-m10c", "description": "A minimalistic (m10c) blog theme for Hugo", "html_url": "https://github.com/vaga/hugo-theme-m10c", - "stargazers_count": 428 + "stargazers_count": 442 }, "github.com/vantagedesign/ace-documentation": { "id": 235901960, "created_at": "2020-01-23T22:48:08Z", - "updated_at": "2024-02-15T19:30:01Z", + "updated_at": "2024-04-29T19:43:01Z", "name": "ace-documentation", "description": "A free documentation theme for Hugo, powered by Bootstrap 4. Repsonsive, search, code highlighting and more.", "html_url": "https://github.com/vantagedesign/ace-documentation", - "stargazers_count": 98 + "stargazers_count": 100 }, "github.com/victoriadrake/hugo-theme-introduction": { "id": 84793453, "created_at": "2017-03-13T06:50:23Z", - "updated_at": "2024-02-04T09:09:48Z", + "updated_at": "2024-05-13T11:17:41Z", "name": "hugo-theme-introduction", "description": "Minimal, single page, smooth-scrolling theme for Hugo static site generator.", "html_url": "https://github.com/victoriadrake/hugo-theme-introduction", - "stargazers_count": 658 + "stargazers_count": 665 + }, + "github.com/victoriadrake/hugo-theme-quint": { + "id": 795168559, + "created_at": "2024-05-02T18:02:17Z", + "updated_at": "2024-05-11T19:59:26Z", + "name": "hugo-theme-quint", + "description": "Quint: Essence of Minimalism. A theme for Hugo static site generator.", + "html_url": "https://github.com/victoriadrake/hugo-theme-quint", + "stargazers_count": 7 }, "github.com/victoriadrake/neofeed-theme/v2": { "id": 327305114, "created_at": "2021-01-06T12:29:19Z", - "updated_at": "2024-02-09T18:09:37Z", + "updated_at": "2024-04-21T04:14:26Z", "name": "neofeed-theme", "description": "A personal feed for Neocities, GitHub Pages, or anywhere else, built with Hugo. #IndieWeb friendly and all yours. It's better than Twitter.", "html_url": "https://github.com/victoriadrake/neofeed-theme", - "stargazers_count": 82 + "stargazers_count": 84 }, "github.com/vimux/blank": { "id": 70945463, "created_at": "2016-10-14T20:36:04Z", - "updated_at": "2024-02-07T04:48:45Z", + "updated_at": "2024-05-07T06:08:07Z", "name": "blank", "description": "Starter Hugo theme for use as a template for building custom themes", "html_url": "https://github.com/Vimux/blank", - "stargazers_count": 214 + "stargazers_count": 222 }, "github.com/vjeantet/hugo-theme-docport": { "id": 279785959, "created_at": "2020-07-15T06:33:33Z", - "updated_at": "2024-02-07T04:32:32Z", + "updated_at": "2024-03-20T05:22:50Z", "name": "hugo-theme-docport", "description": "", "html_url": "https://github.com/vjeantet/hugo-theme-docport", - "stargazers_count": 43 + "stargazers_count": 42 }, "github.com/wayjam/hugo-theme-fluency": { "id": 263349375, "created_at": "2020-05-12T13:46:25Z", - "updated_at": "2023-10-06T21:17:20Z", + "updated_at": "2024-05-05T13:03:03Z", "name": "hugo-theme-fluency", "description": "A fluent hugo theme.", "html_url": "https://github.com/wayjam/hugo-theme-fluency", - "stargazers_count": 54 + "stargazers_count": 55 }, "github.com/wayjam/hugo-theme-mixedpaper": { "id": 260911599, @@ -4061,11 +4061,11 @@ "github.com/weastur/hugo-texify2": { "id": 654874780, "created_at": "2023-06-17T07:45:38Z", - "updated_at": "2024-02-12T06:44:07Z", + "updated_at": "2024-05-13T05:48:49Z", "name": "hugo-texify2", "description": "A minimal, latex-style hugo theme for personal blogging", "html_url": "https://github.com/weastur/hugo-texify2", - "stargazers_count": 20 + "stargazers_count": 21 }, "github.com/wileybaba/hugo-theme-robotico": { "id": 155506907, @@ -4079,29 +4079,20 @@ "github.com/willfaught/paige": { "id": 533992766, "created_at": "2022-09-08T00:43:48Z", - "updated_at": "2024-02-09T21:21:28Z", + "updated_at": "2024-05-06T17:36:19Z", "name": "paige", "description": "Powerful, pliable pixel perfection. An advanced Hugo theme.", "html_url": "https://github.com/willfaught/paige", - "stargazers_count": 155 - }, - "github.com/wjh18/hugo-liftoff/v3": { - "id": 429000224, - "created_at": "2021-11-17T10:25:13Z", - "updated_at": "2024-02-10T04:22:04Z", - "name": "hugo-liftoff", - "description": "Minimal blog/portfolio theme with a focus on content creation and SEO best practices. An ideal choice for technical users jump-starting a personal brand.", - "html_url": "https://github.com/wjh18/hugo-liftoff", - "stargazers_count": 82 + "stargazers_count": 179 }, "github.com/wlh320/hugo-theme-hulga": { "id": 312607290, "created_at": "2020-11-13T15:06:09Z", - "updated_at": "2024-01-12T09:25:52Z", + "updated_at": "2024-04-28T18:05:00Z", "name": "hugo-theme-hulga", "description": "A hugo blog theme based on bulma css", "html_url": "https://github.com/wlh320/hugo-theme-hulga", - "stargazers_count": 16 + "stargazers_count": 19 }, "github.com/wtoll/venture": { "id": 374216323, @@ -4133,83 +4124,83 @@ "github.com/xianmin/hugo-theme-jane": { "id": 124070868, "created_at": "2018-03-06T11:48:50Z", - "updated_at": "2024-02-14T18:56:54Z", + "updated_at": "2024-05-11T01:19:14Z", "name": "hugo-theme-jane", "description": "A readable \u0026 concise theme for Hugo", "html_url": "https://github.com/xianmin/hugo-theme-jane", - "stargazers_count": 888 + "stargazers_count": 905 }, "github.com/xiaoheiAh/hugo-theme-pure": { "id": 211669990, "created_at": "2019-09-29T13:48:46Z", - "updated_at": "2023-11-28T08:33:10Z", + "updated_at": "2024-04-12T13:12:02Z", "name": "hugo-theme-pure", "description": "A pure theme for Hugo", "html_url": "https://github.com/xiaoheiAh/hugo-theme-pure", - "stargazers_count": 266 + "stargazers_count": 265 }, "github.com/xioyito/NewBee": { "id": 506162975, "created_at": "2022-06-22T08:32:24Z", - "updated_at": "2024-02-12T09:08:43Z", + "updated_at": "2024-05-13T05:08:28Z", "name": "NewBee", "description": "A elegance, clean Hugo Theme with high interaction for blogger", "html_url": "https://github.com/xioyito/NewBee", - "stargazers_count": 41 + "stargazers_count": 46 }, "github.com/xslingcn/vno-hugo": { "id": 387195814, "created_at": "2021-07-18T14:30:32Z", - "updated_at": "2024-02-06T07:30:31Z", + "updated_at": "2024-04-17T17:25:19Z", "name": "Vno-Hugo", "description": "Vno on Hugo.", "html_url": "https://github.com/xslingcn/Vno-Hugo", - "stargazers_count": 16 + "stargazers_count": 17 }, "github.com/yanlinlin82/simple-style": { "id": 226006502, "created_at": "2019-12-05T03:17:24Z", - "updated_at": "2024-02-11T06:16:58Z", + "updated_at": "2024-02-21T13:26:51Z", "name": "simple-style", "description": "My simple style hugo theme, based on \u003chttps://yanlinlin82.github.io/webpage-templates/simple-style/index.html\u003e", "html_url": "https://github.com/yanlinlin82/simple-style", - "stargazers_count": 31 + "stargazers_count": 30 }, "github.com/yihui/hugo-xmag": { "id": 96737943, "created_at": "2017-07-10T05:09:20Z", - "updated_at": "2024-02-02T10:05:39Z", + "updated_at": "2024-03-04T02:09:54Z", "name": "hugo-xmag", "description": "A minimal magazine theme for Hugo", "html_url": "https://github.com/yihui/hugo-xmag", - "stargazers_count": 92 + "stargazers_count": 95 }, "github.com/yihui/hugo-xmin": { "id": 94504324, "created_at": "2017-06-16T04:13:22Z", - "updated_at": "2024-02-15T14:25:50Z", + "updated_at": "2024-05-14T16:01:42Z", "name": "hugo-xmin", "description": "eXtremely Minimal Hugo theme: about 140 lines of code in total, including HTML and CSS (with no dependencies)", "html_url": "https://github.com/yihui/hugo-xmin", - "stargazers_count": 657 + "stargazers_count": 703 }, "github.com/yoshiharuyamashita/blackburn": { "id": 49835249, "created_at": "2016-01-17T20:57:01Z", - "updated_at": "2024-02-03T23:13:53Z", + "updated_at": "2024-02-28T03:44:40Z", "name": "blackburn", "description": "A Hugo theme built using Yahoo's Pure CSS", "html_url": "https://github.com/yoshiharuyamashita/blackburn", - "stargazers_count": 316 + "stargazers_count": 317 }, "github.com/your-identity/hugo-theme-dimension": { "id": 264679548, "created_at": "2020-05-17T14:00:03Z", - "updated_at": "2023-10-02T11:16:06Z", + "updated_at": "2024-03-15T14:12:35Z", "name": "hugo-theme-dimension", "description": "A CMS friendly hugo port of HTML5UP's dimension theme", "html_url": "https://github.com/your-identity/hugo-theme-dimension", - "stargazers_count": 106 + "stargazers_count": 108 }, "github.com/yue1124/hero": { "id": 417624175, @@ -4223,7 +4214,7 @@ "github.com/yursan9/manis-hugo-theme": { "id": 95275397, "created_at": "2017-06-24T04:21:19Z", - "updated_at": "2024-02-09T14:13:55Z", + "updated_at": "2024-03-30T15:19:20Z", "name": "manis-hugo-theme", "description": "Sweet little Hugo's theme for personal website", "html_url": "https://github.com/yursan9/manis-hugo-theme", @@ -4232,65 +4223,65 @@ "github.com/zeon-studio/hugoplate": { "id": 645295049, "created_at": "2023-05-25T10:41:33Z", - "updated_at": "2024-02-14T20:03:56Z", + "updated_at": "2024-05-15T15:41:18Z", "name": "hugoplate", "description": "Hugoplate is a free starter template built with Hugo and TailwindCSS that will save you hours of work.", "html_url": "https://github.com/zeon-studio/hugoplate", - "stargazers_count": 435 + "stargazers_count": 601 }, "github.com/zerostaticthemes/hugo-hero-theme": { "id": 160591048, "created_at": "2018-12-05T23:22:47Z", - "updated_at": "2024-02-11T23:39:57Z", + "updated_at": "2024-05-14T16:43:47Z", "name": "hugo-hero-theme", "description": "A multi-page Hugo theme with fullscreen hero images and fullwidth sections.", "html_url": "https://github.com/zerostaticthemes/hugo-hero-theme", - "stargazers_count": 339 + "stargazers_count": 350 }, "github.com/zerostaticthemes/hugo-serif-theme": { "id": 159459907, "created_at": "2018-11-28T07:14:22Z", - "updated_at": "2024-02-11T23:32:06Z", + "updated_at": "2024-05-14T16:44:45Z", "name": "hugo-serif-theme", "description": "Serif is a modern business theme for Hugo.", "html_url": "https://github.com/zerostaticthemes/hugo-serif-theme", - "stargazers_count": 411 + "stargazers_count": 420 }, "github.com/zerostaticthemes/hugo-whisper-theme": { "id": 171089926, "created_at": "2019-02-17T06:32:03Z", - "updated_at": "2024-02-04T19:06:28Z", + "updated_at": "2024-05-10T12:31:35Z", "name": "hugo-whisper-theme", "description": "Whisper is a minimal documentation theme for Hugo.", "html_url": "https://github.com/zerostaticthemes/hugo-whisper-theme", - "stargazers_count": 244 + "stargazers_count": 252 }, "github.com/zerostaticthemes/hugo-winston-theme": { "id": 297195864, "created_at": "2020-09-21T01:16:08Z", - "updated_at": "2024-02-09T04:39:33Z", + "updated_at": "2024-05-13T16:45:06Z", "name": "hugo-winston-theme", "description": "A minimal and bold blog theme for Hugo", "html_url": "https://github.com/zerostaticthemes/hugo-winston-theme", - "stargazers_count": 238 + "stargazers_count": 245 }, "github.com/zetxek/adritian-free-hugo-theme": { "id": 261477216, "created_at": "2020-05-05T13:25:13Z", - "updated_at": "2024-02-14T16:22:39Z", + "updated_at": "2024-05-12T11:38:50Z", "name": "adritian-free-hugo-theme", "description": "Adritian - Hugo Theme for Personal Websites", "html_url": "https://github.com/zetxek/adritian-free-hugo-theme", - "stargazers_count": 40 + "stargazers_count": 53 }, "github.com/zhaohuabing/hugo-theme-cleanwhite": { "id": 137584400, "created_at": "2018-06-16T13:57:14Z", - "updated_at": "2024-02-15T14:23:51Z", + "updated_at": "2024-05-15T13:06:20Z", "name": "hugo-theme-cleanwhite", "description": "A clean, elegant blog theme for hugo", "html_url": "https://github.com/zhaohuabing/hugo-theme-cleanwhite", - "stargazers_count": 649 + "stargazers_count": 667 }, "github.com/zhe/hugo-theme-slim": { "id": 34523524, @@ -4304,83 +4295,38 @@ "github.com/zjedi/hugo-scroll": { "id": 277762663, "created_at": "2020-07-07T08:37:56Z", - "updated_at": "2024-02-08T05:00:21Z", + "updated_at": "2024-05-07T13:44:47Z", "name": "hugo-scroll", "description": "Clean, responsive, single-page Hugo website theme.", "html_url": "https://github.com/zjedi/hugo-scroll", - "stargazers_count": 246 - }, - "github.com/zwbetz-gh/cayman-hugo-theme": { - "id": 177856819, - "created_at": "2019-03-26T19:37:52Z", - "updated_at": "2023-12-17T11:03:14Z", - "name": "cayman-hugo-theme", - "description": "Cayman is a clean, responsive theme for Hugo, ported from the original Jekyll Cayman Theme.", - "html_url": "https://github.com/zwbetz-gh/cayman-hugo-theme", - "stargazers_count": 41 - }, - "github.com/zwbetz-gh/cupper-hugo-theme": { - "id": 168213023, - "created_at": "2019-01-29T19:16:57Z", - "updated_at": "2024-02-07T11:19:44Z", - "name": "cupper-hugo-theme", - "description": "An accessibility-friendly Hugo theme, ported from the original Cupper project.", - "html_url": "https://github.com/zwbetz-gh/cupper-hugo-theme", - "stargazers_count": 295 - }, - "github.com/zwbetz-gh/minimal-bootstrap-hugo-theme": { - "id": 152019350, - "created_at": "2018-10-08T04:39:24Z", - "updated_at": "2023-09-06T18:30:18Z", - "name": "minimal-bootstrap-hugo-theme", - "description": "A minimal hugo theme made with bootstrap", - "html_url": "https://github.com/zwbetz-gh/minimal-bootstrap-hugo-theme", - "stargazers_count": 88 - }, - "github.com/zwbetz-gh/papercss-hugo-theme": { - "id": 171948828, - "created_at": "2019-02-21T21:33:54Z", - "updated_at": "2024-02-14T23:10:40Z", - "name": "papercss-hugo-theme", - "description": "A Hugo theme made with PaperCSS, the less formal CSS framework.", - "html_url": "https://github.com/zwbetz-gh/papercss-hugo-theme", - "stargazers_count": 80 - }, - "github.com/zwbetz-gh/vanilla-bootstrap-hugo-theme": { - "id": 161877248, - "created_at": "2018-12-15T06:31:19Z", - "updated_at": "2023-11-11T10:58:53Z", - "name": "vanilla-bootstrap-hugo-theme", - "description": "A vanilla Bootstrap theme for Hugo", - "html_url": "https://github.com/zwbetz-gh/vanilla-bootstrap-hugo-theme", - "stargazers_count": 70 + "stargazers_count": 251 }, "github.com/zzossig/hugo-theme-zdoc": { "id": 236982100, "created_at": "2020-01-29T12:56:32Z", - "updated_at": "2024-02-02T20:51:21Z", + "updated_at": "2024-05-08T06:16:13Z", "name": "hugo-theme-zdoc", "description": "Make a documentation with hugo zdoc theme!", "html_url": "https://github.com/zzossig/hugo-theme-zdoc", - "stargazers_count": 180 + "stargazers_count": 186 }, "github.com/zzossig/hugo-theme-zzo": { "id": 219504135, "created_at": "2019-11-04T13:08:32Z", - "updated_at": "2024-02-05T02:57:02Z", + "updated_at": "2024-05-13T09:02:23Z", "name": "hugo-theme-zzo", "description": "Make a blog with hugo zzo theme!", "html_url": "https://github.com/zzossig/hugo-theme-zzo", - "stargazers_count": 730 + "stargazers_count": 738 }, "github.com/zzzmisa/hugo-theme-doors": { "id": 200673663, "created_at": "2019-08-05T14:40:43Z", - "updated_at": "2023-12-21T21:00:46Z", + "updated_at": "2024-02-23T16:10:16Z", "name": "hugo-theme-doors", "description": "🚪Single page theme for links to your works", "html_url": "https://github.com/zzzmisa/hugo-theme-doors", - "stargazers_count": 15 + "stargazers_count": 16 }, "gitlab.com/Kaligule/classless-blog": { "id": 0, diff --git a/cmd/hugothemesitebuilder/build/config.json b/cmd/hugothemesitebuilder/build/config.json index 2093924a..861ca688 100644 --- a/cmd/hugothemesitebuilder/build/config.json +++ b/cmd/hugothemesitebuilder/build/config.json @@ -322,12 +322,6 @@ "noMounts": true, "path": "github.com/Bonzdev/alexa-portfolio" }, - { - "ignoreConfig": true, - "ignoreImports": true, - "noMounts": true, - "path": "github.com/boratanrikulu/eternity" - }, { "ignoreConfig": true, "ignoreImports": true, @@ -640,6 +634,12 @@ "noMounts": true, "path": "github.com/diwao/hestia-pure" }, + { + "ignoreConfig": true, + "ignoreImports": true, + "noMounts": true, + "path": "github.com/dipeshsingh253/saral" + }, { "ignoreConfig": true, "ignoreImports": true, @@ -688,6 +688,12 @@ "noMounts": true, "path": "github.com/eddiewebb/hugo-resume" }, + { + "ignoreConfig": true, + "ignoreImports": true, + "noMounts": true, + "path": "github.com/ElecBrandy/freshpink" + }, { "ignoreConfig": true, "ignoreImports": true, @@ -754,6 +760,12 @@ "noMounts": true, "path": "github.com/Fastbyte01/KeepIt" }, + { + "ignoreConfig": true, + "ignoreImports": true, + "noMounts": true, + "path": "github.com/fauzanmy/pehtheme-hugo" + }, { "ignoreConfig": true, "ignoreImports": true, @@ -800,7 +812,7 @@ "ignoreConfig": true, "ignoreImports": true, "noMounts": true, - "path": "github.com/frjo/hugo-theme-zen/v2" + "path": "github.com/frjo/hugo-theme-zen/v3" }, { "ignoreConfig": true, @@ -874,12 +886,6 @@ "noMounts": true, "path": "github.com/gizak/nofancy" }, - { - "ignoreConfig": true, - "ignoreImports": true, - "noMounts": true, - "path": "github.com/gkmngrgn/hugo-alageek-theme" - }, { "ignoreConfig": true, "ignoreImports": true, @@ -1006,12 +1012,6 @@ "noMounts": true, "path": "github.com/hootan09/simple-cv" }, - { - "ignoreConfig": true, - "ignoreImports": true, - "noMounts": true, - "path": "github.com/hossainemruz/toha" - }, { "ignoreConfig": true, "ignoreImports": true, @@ -1060,6 +1060,12 @@ "noMounts": true, "path": "github.com/hugo-sid/hugo-blog-awesome" }, + { + "ignoreConfig": true, + "ignoreImports": true, + "noMounts": true, + "path": "github.com/hugo-toha/toha/v4" + }, { "ignoreConfig": true, "ignoreImports": true, @@ -1282,12 +1288,6 @@ "noMounts": true, "path": "github.com/jonathanjanssens/hugo-casper3" }, - { - "ignoreConfig": true, - "ignoreImports": true, - "noMounts": true, - "path": "github.com/joseph-mccarthy/hugo-bootstrap-freelancer-template" - }, { "ignoreConfig": true, "ignoreImports": true, @@ -1342,6 +1342,12 @@ "noMounts": true, "path": "github.com/jsnjack/kraiklyn" }, + { + "ignoreConfig": true, + "ignoreImports": true, + "noMounts": true, + "path": "github.com/Junyi-99/hugo-theme-anubis2" + }, { "ignoreConfig": true, "ignoreImports": true, @@ -1414,6 +1420,12 @@ "noMounts": true, "path": "github.com/khusika/FeelIt" }, + { + "ignoreConfig": true, + "ignoreImports": true, + "noMounts": true, + "path": "github.com/kidlat2024/kidlat" + }, { "ignoreConfig": true, "ignoreImports": true, @@ -1504,12 +1516,6 @@ "noMounts": true, "path": "github.com/letItCurl/minimal_marketing" }, - { - "ignoreConfig": true, - "ignoreImports": true, - "noMounts": true, - "path": "github.com/lgaida/mediumish-gohugo-theme" - }, { "ignoreConfig": true, "ignoreImports": true, @@ -1630,12 +1636,6 @@ "noMounts": true, "path": "github.com/Masellum/hugo-theme-nostyleplease" }, - { - "ignoreConfig": true, - "ignoreImports": true, - "noMounts": true, - "path": "github.com/matcornic/hugo-theme-learn" - }, { "ignoreConfig": true, "ignoreImports": true, @@ -1742,19 +1742,19 @@ "ignoreConfig": true, "ignoreImports": true, "noMounts": true, - "path": "github.com/Mitrichius/hugo-theme-anubis" + "path": "github.com/mivinci/hugo-theme-minima" }, { "ignoreConfig": true, "ignoreImports": true, "noMounts": true, - "path": "github.com/mivinci/hugo-theme-minima" + "path": "github.com/mmrath/hugo-bootstrap" }, { "ignoreConfig": true, "ignoreImports": true, "noMounts": true, - "path": "github.com/mmrath/hugo-bootstrap" + "path": "github.com/mohamedelhefni/zahi" }, { "ignoreConfig": true, @@ -1820,13 +1820,7 @@ "ignoreConfig": true, "ignoreImports": true, "noMounts": true, - "path": "github.com/negrel/hugo-theme-pico" - }, - { - "ignoreConfig": true, - "ignoreImports": true, - "noMounts": true, - "path": "github.com/nicokaiser/hugo-theme-gallery" + "path": "github.com/nicokaiser/hugo-theme-gallery/v4" }, { "ignoreConfig": true, @@ -1954,12 +1948,6 @@ "noMounts": true, "path": "github.com/pacollins/calligraphy" }, - { - "ignoreConfig": true, - "ignoreImports": true, - "noMounts": true, - "path": "github.com/panr/hugo-theme-hello-friend" - }, { "ignoreConfig": true, "ignoreImports": true, @@ -2296,12 +2284,6 @@ "noMounts": true, "path": "github.com/shaform/hugo-theme-den" }, - { - "ignoreConfig": true, - "ignoreImports": true, - "noMounts": true, - "path": "github.com/shenoybr/hugo-goa" - }, { "ignoreConfig": true, "ignoreImports": true, @@ -2476,6 +2458,12 @@ "noMounts": true, "path": "github.com/tcgriffith/hugo-owaraiclub" }, + { + "ignoreConfig": true, + "ignoreImports": true, + "noMounts": true, + "path": "github.com/techbarrack/terminal-hugo-theme" + }, { "ignoreConfig": true, "ignoreImports": true, @@ -2530,6 +2518,12 @@ "noMounts": true, "path": "github.com/tohn/linkshrubbery" }, + { + "ignoreConfig": true, + "ignoreImports": true, + "noMounts": true, + "path": "github.com/tomfran/typo" + }, { "ignoreConfig": true, "ignoreImports": true, @@ -2626,6 +2620,12 @@ "noMounts": true, "path": "github.com/victoriadrake/hugo-theme-introduction" }, + { + "ignoreConfig": true, + "ignoreImports": true, + "noMounts": true, + "path": "github.com/victoriadrake/hugo-theme-quint" + }, { "ignoreConfig": true, "ignoreImports": true, @@ -2716,12 +2716,6 @@ "noMounts": true, "path": "github.com/Wivik/vinyl-records-collection-theme" }, - { - "ignoreConfig": true, - "ignoreImports": true, - "noMounts": true, - "path": "github.com/wjh18/hugo-liftoff/v3" - }, { "ignoreConfig": true, "ignoreImports": true, @@ -2878,36 +2872,6 @@ "noMounts": true, "path": "github.com/zjedi/hugo-scroll" }, - { - "ignoreConfig": true, - "ignoreImports": true, - "noMounts": true, - "path": "github.com/zwbetz-gh/cayman-hugo-theme" - }, - { - "ignoreConfig": true, - "ignoreImports": true, - "noMounts": true, - "path": "github.com/zwbetz-gh/cupper-hugo-theme" - }, - { - "ignoreConfig": true, - "ignoreImports": true, - "noMounts": true, - "path": "github.com/zwbetz-gh/minimal-bootstrap-hugo-theme" - }, - { - "ignoreConfig": true, - "ignoreImports": true, - "noMounts": true, - "path": "github.com/zwbetz-gh/papercss-hugo-theme" - }, - { - "ignoreConfig": true, - "ignoreImports": true, - "noMounts": true, - "path": "github.com/zwbetz-gh/vanilla-bootstrap-hugo-theme" - }, { "ignoreConfig": true, "ignoreImports": true, diff --git a/cmd/hugothemesitebuilder/build/go.mod b/cmd/hugothemesitebuilder/build/go.mod index 59d901ec..275698f6 100644 --- a/cmd/hugothemesitebuilder/build/go.mod +++ b/cmd/hugothemesitebuilder/build/go.mod @@ -1,56 +1,57 @@ module github.com/gohugoio/hugoThemesSiteBuilder/cmd/hugothemesitebuilder/build -go 1.21.6 +go 1.22.2 require ( github.com/10mohi6/hugo-theme-simple-blog v0.0.0-20200616052212-86b4f6f6d734 // indirect github.com/17ms/yuan v0.0.0-20231107201735-635275395232 // indirect - github.com/1bl4z3r/hermit-V2 v1.0.14 // indirect + github.com/1bl4z3r/hermit-V2 v1.1.5 // indirect github.com/2-REC/hugo-myportfolio-theme v0.0.0-20200725083546-d0708c5286eb // indirect github.com/4ever9/less v0.0.0-20201228090934-105d2c8c6b53 // indirect github.com/4s3ti/hugo-theme-hello-4s3ti v1.0.5 // indirect - github.com/4s3ti/terminalcv v1.1.0 // indirect - github.com/526avijitgupta/gokarna v0.0.0-20240214003442-cdc638496bdc // indirect + github.com/4s3ti/terminalcv v1.1.2 // indirect + github.com/526avijitgupta/gokarna v0.0.0-20240425003325-b3e971bf32e4 // indirect github.com/64bitpandas/amethyst v1.0.0 // indirect github.com/7ma7X/HugoTeX v0.0.0-20240205070810-a256fd6f2a9d // indirect github.com/AlexFinn/simple-a v0.0.0-20191202062540-bb2f8c9172a0 // indirect - github.com/AmazingRise/hugo-theme-diary v0.0.0-20231218163534-9e6fa1168e9a // indirect + github.com/AmazingRise/hugo-theme-diary v0.0.0-20240424033207-098e25e5cb4e // indirect github.com/AminZibayi/Corporio v0.0.0-20230712152857-5d103898d672 // indirect github.com/AngeloStavrow/indigo v1.4.0 // indirect github.com/Axorax/axile-hugo v0.0.0-20230604174516-d0bf9248bcbd // indirect github.com/Binary-Eater/hugo-theme-ghci v0.0.0-20220130042807-df347b1d8a3e // indirect github.com/Bonzdev/alexa-portfolio v0.0.0-20211126085019-886d97a260c2 // indirect - github.com/CaiJimmy/hugo-theme-stack/v3 v3.21.0 // indirect + github.com/CaiJimmy/hugo-theme-stack/v3 v3.26.0 // indirect + github.com/ElecBrandy/freshpink v0.0.0-20240320032558-156b8455d437 // indirect github.com/EmielH/hallo-hugo v2.7.0+incompatible // indirect github.com/EmielH/stip-hugo v1.0.0 // indirect github.com/EmielH/tale-hugo v2.2.0+incompatible // indirect github.com/ExchangeRate-API/strange-case v0.0.0-20210304125749-3ea1d7d50bd0 // indirect - github.com/FarseaSH/hugo-theme-moments v0.0.0-20240130131246-9151869e97cf // indirect + github.com/FarseaSH/hugo-theme-moments v0.0.0-20240427101753-a21b2839ba20 // indirect github.com/Fastbyte01/KeepIt v0.0.0-20231031014040-50ffb35785a0 // indirect github.com/GDGToulouse/devfest-theme-hugo v0.0.0-20220415065715-84f2f2191d40 // indirect github.com/HEIGE-PCloud/DoIt v0.4.0 // indirect github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind v0.2.0 // indirect - github.com/HugoBlox/theme-academic-cv v0.0.0-20240211011629-5cc078652afa // indirect + github.com/HugoBlox/theme-academic-cv v0.0.0-20240513193332-fda4058cfaab // indirect github.com/Ice-Hazymoon/hugo-theme-luna v0.7.1 // indirect github.com/IvanChou/hugo-theme-vec v0.0.0-20190110125257-deb6897f1d8e // indirect github.com/J-Siu/hugo-theme-sk1 v0.0.0-20230322094406-20055cbc8736 // indirect github.com/J-Siu/hugo-theme-sk2 v0.0.0-20220516060556-edcaedff1823 // indirect github.com/J-Siu/hugo-theme-sk3 v2.1.0+incompatible // indirect github.com/Jack-alope/sourgough-starter v0.0.0-20210828023614-9b85c4ba720b // indirect - github.com/JingWangTW/dark-theme-editor v3.1.0+incompatible // indirect + github.com/JingWangTW/dark-theme-editor v3.2.1+incompatible // indirect + github.com/Junyi-99/hugo-theme-anubis2 v1.3.3 // indirect github.com/KatamariJr/split-landing v1.0.1 // indirect - github.com/Lednerb/bilberry-hugo-theme/v4 v4.2.2 // indirect - github.com/LordMathis/hugo-theme-nightfall v0.7.0 // indirect + github.com/Lednerb/bilberry-hugo-theme/v4 v4.3.0 // indirect + github.com/LordMathis/hugo-theme-nightfall v0.7.1 // indirect github.com/LordMathis/hugo-theme-nix v0.0.0-20231221192434-435c923c29df // indirect - github.com/LucasVadilho/heyo-hugo-theme v0.0.0-20231213184355-64837e0b518c // indirect + github.com/LucasVadilho/heyo-hugo-theme v0.0.0-20240319150100-68a0e797f933 // indirect github.com/LukasJoswiak/etch v0.0.0-20221013042144-3286754ceb4e // indirect - github.com/M1cR0xf7/kaslaanka v0.0.0-20240210192056-78043cd796e8 // indirect + github.com/M1cR0xf7/kaslaanka v0.0.0-20240409132442-821b4aa7d9af // indirect github.com/MarcusVirg/forty v0.0.0-20190430033326-dccea57bd2ed // indirect github.com/Masellum/hugo-theme-nostyleplease v0.0.0-20230920130130-22524617427a // indirect - github.com/McShelby/hugo-theme-relearn v0.0.0-20240214221608-288c6609d042 // indirect - github.com/MeiK2333/github-style v0.0.0-20240211034407-10812726254b // indirect - github.com/MichaelSchaecher/simple-dark v0.0.0-20240115112235-7537551d21b2 // indirect - github.com/Mitrichius/hugo-theme-anubis v0.0.0-20240108194352-8a718f7418c5 // indirect + github.com/McShelby/hugo-theme-relearn v0.0.0-20240507204003-21b4289ecf44 // indirect + github.com/MeiK2333/github-style v0.0.0-20240407061128-22b3231b4e7d // indirect + github.com/MichaelSchaecher/simple-dark v0.0.0-20240406131851-f63ff8c3902e // indirect github.com/Morgscode/hugo-theme-spaced-blog v0.0.0-20240202212622-46fcfd100b4a // indirect github.com/MunifTanjim/minimo v2.10.1+incompatible // indirect github.com/Nigh/tinyworks v0.0.0-20211102143612-3e258cc49e22 // indirect @@ -62,24 +63,24 @@ require ( github.com/RononDex/interstellar-hugo v1.0.0 // indirect github.com/SAGGameDeveloper/hugo-minimalist-spa v0.0.0-20190214084547-2637ff850398 // indirect github.com/Somrat37/somrat v2.0.0+incompatible // indirect - github.com/Sped0n/bridget v1.0.2 // indirect + github.com/Sped0n/bridget v1.0.3 // indirect github.com/StaticMania/portio-hugo v1.0.0 // indirect github.com/StaticMania/roxo-hugo v0.0.0-20230912110241-eac3f49bc573 // indirect - github.com/StefMa/hugo-fresh v1.0.0 // indirect + github.com/StefMa/hugo-fresh v1.1.0 // indirect github.com/SteveLane/hugo-icon v0.0.0-20190305212339-0e6206738afc // indirect github.com/Tazeg/hugo-blog-jeffprod v0.0.0-20200528191810-bbe726e57038 // indirect github.com/ThemeTony/hugo-theme-tony v0.0.0-20220330055515-32580d30ce47 // indirect github.com/VVelox/hugo-dusky-neon-potato v0.0.0-20211017191045-d82667fe5106 // indirect - github.com/Vimux/Binario v0.0.0-20231209190444-2558f6bbde56 // indirect - github.com/Vimux/mainroad v0.0.0-20240110174112-de5754335457 // indirect + github.com/Vimux/Binario v0.0.0-20240401150108-e4bab35fd1f1 // indirect + github.com/Vimux/mainroad v0.0.0-20240515133546-70f97b69b466 // indirect github.com/WingLim/hugo-tania v1.9.3 // indirect - github.com/Wivik/am-writing-hugo-theme v0.0.0-20240214175355-af410da9c87a // indirect + github.com/Wivik/am-writing-hugo-theme v1.5.0 // indirect github.com/Wivik/vinyl-records-collection-theme v0.2.0 // indirect github.com/Xzya/hugo-material-blog v0.100.2 // indirect github.com/Yukuro/hugo-theme-shell v0.1.5 // indirect github.com/aanupam23/hugo-sugoi v0.6.0 // indirect github.com/achary/engimo v2.10.1+incompatible // indirect - github.com/adityatelange/hugo-PaperMod v0.0.0-20240210101324-944ddc3c7e75 // indirect + github.com/adityatelange/hugo-PaperMod v0.0.0-20240511144135-3f50861a0ced // indirect github.com/adityatelange/hugo-index v0.0.0-20230607165812-4234dddf8c52 // indirect github.com/aerohub/hugo-faq-theme v0.0.0-20161016225807-e6ed082c15bc // indirect github.com/aerohub/hugo-identity-theme v0.0.0-20171209130528-ca4e10de2297 // indirect @@ -88,12 +89,12 @@ require ( github.com/airinghost/hugo-theme-icarus-lite v1.1.3 // indirect github.com/akatiggerx04/graysx-hugo v0.0.0-20230120090901-fe35dd8b38c7 // indirect github.com/alanorth/hugo-theme-bootstrap4-blog v1.6.0 // indirect - github.com/alex-shpak/hugo-book v0.0.0-20240110114024-5e15ddb4f430 // indirect + github.com/alex-shpak/hugo-book v0.0.0-20240413091959-f8a0fc4e246c // indirect github.com/alexandrevicenzi/soho v1.1.1 // indirect github.com/allnightgrocery/hugo-theme-blueberry-detox v0.0.0-20170129010546-afb1e630023b // indirect github.com/alloydwhitlock/huey v0.0.0-20240128162603-11cf2c4db240 // indirect github.com/ameio/hugo-arogya-theme v0.0.0-20221008060409-3475116c557e // indirect - github.com/antedoro/arberia v0.0.0-20231026181206-1a763ecbdc5d // indirect + github.com/antedoro/arberia v0.0.0-20240303084257-59c410a6e69f // indirect github.com/antonpolishko/hugo-stellar-theme v0.0.0-20220822025042-69d72b3d010b // indirect github.com/appernetic/hugo-nederburg-theme v0.0.0-20190712152204-d99760bac630 // indirect github.com/apvarun/blist-hugo-theme v2.1.0+incompatible // indirect @@ -101,28 +102,27 @@ require ( github.com/apvarun/showcase-hugo-theme v1.3.0 // indirect github.com/apvarun/showfolio-hugo-theme v1.0.0 // indirect github.com/asurbernardo/amperage v0.0.0-20201210113041-18bba9e6f415 // indirect - github.com/athul/archie v0.0.0-20231104044814-895aba14417e // indirect + github.com/athul/archie v0.0.0-20240420191309-a1ecb228468b // indirect github.com/austingebauer/devise v0.0.0-20240103003420-fe2d756ad13a // indirect - github.com/azmelanar/hugo-theme-pixyll v0.0.0-20220519144716-1d1f783287d9 // indirect + github.com/azmelanar/hugo-theme-pixyll v0.0.0-20240430145741-84b471227eba // indirect github.com/bake/solar-theme-hugo v0.0.0-20210403202535-97632b71c241 // indirect github.com/balaramadurai/hugo-travelify-theme v0.0.0-20220920044651-e35187ce23ad // indirect - github.com/barklan/hugo-dead-simple v1.75.36 // indirect + github.com/barklan/hugo-dead-simple v1.75.59 // indirect github.com/bep/docuapi/v2 v2.4.0 // indirect github.com/bep/galleriesdeluxe v0.0.0-20240115104851-622d8268efc3 // indirect github.com/bep/gallerydeluxe v0.11.1 // indirect - github.com/binokochumolvarghese/lightbi-hugo v0.0.0-20240202183509-4e56cf201c41 // indirect + github.com/binokochumolvarghese/lightbi-hugo v0.0.0-20240512055738-a2a1f4cf9943 // indirect github.com/bjacquemet/personal-web v0.0.0-20230606080827-69cf270ceddf // indirect github.com/blankoworld/hugo_theme_adam_eve v0.0.0-20230831124402-202f892ad6b4 // indirect - github.com/boratanrikulu/eternity v0.0.0-20231230113059-bb2ee098275f // indirect - github.com/bowman2001/perplex v0.19.10 // indirect - github.com/brianreumere/plague v0.3.3 // indirect + github.com/bowman2001/perplex v0.20.2 // indirect + github.com/brianreumere/plague v0.4.0 // indirect github.com/brycematheson/allegiant v0.0.0-20161024030126-4db3e8fe3a01 // indirect github.com/bul-ikana/hugo-cards v0.0.0-20211031232746-55e303495347 // indirect github.com/calintat/minimal v0.0.0-20210103220336-987f270dfee3 // indirect - github.com/canhtran/maverick v0.0.0-20230114060933-267086f1f4bc // indirect + github.com/canhtran/maverick v0.0.0-20240331062139-dcf832c83b4d // indirect github.com/canstand/compost v0.6.4 // indirect github.com/capnfabs/paperesque v0.0.0-20231203133750-5f72b475cde7 // indirect - github.com/caressofsteel/hugo-story v0.0.0-20230122154440-fb2a35a34058 // indirect + github.com/caressofsteel/hugo-story v0.0.0-20240428152304-b8a7e875ec54 // indirect github.com/carsonip/hugo-theme-minos v0.0.0-20210404151835-ebac3b34438e // indirect github.com/cathelijne/hugo-theme-huguette v0.0.0-20230926192551-370d1cd06943 // indirect github.com/cboettig/hugo-now-ui v0.0.0-20200928163052-0978c64772bf // indirect @@ -130,12 +130,12 @@ require ( github.com/cfrome77/hugo-theme-sky v0.0.0-20220117033109-ff94be67da92 // indirect github.com/chaitanya4vedi/navada v0.0.0-20211223142020-aa7018bddcfc // indirect github.com/chipsenkbeil/grid-side v0.0.0-20170626191754-f5251bfd15a7 // indirect - github.com/chipzoller/hugo-clarity v0.0.0-20231231125604-4b08ddee9984 // indirect + github.com/chipzoller/hugo-clarity v0.0.0-20240429154213-8412edb36941 // indirect github.com/chollinger93/ink-free v1.4.1 // indirect - github.com/chrede88/L1nkr v1.8.5 // indirect - github.com/chrede88/qubt v1.2.6 // indirect + github.com/chrede88/L1nkr v1.8.6 // indirect + github.com/chrede88/qubt v1.2.10 // indirect github.com/chringel21/chringel-hugo-theme v1.3.1 // indirect - github.com/clente/hugo-bearcub v0.0.0-20240208150155-3c5d3c4afc66 // indirect + github.com/clente/hugo-bearcub v0.0.0-20240408182846-729a354f4cf3 // indirect github.com/cloudwithchris/hugo-creator v0.0.32 // indirect github.com/cncf/dot-org-hugo-theme v0.1.4 // indirect github.com/cntrump/hugo-notepadium v2.6.2+incompatible // indirect @@ -154,16 +154,17 @@ require ( github.com/damiencaselli/paperback v0.0.0-20210402085202-17a1f57512f3 // indirect github.com/danielkvist/hugo-piercer-theme v1.2.2 // indirect github.com/danielkvist/hugo-terrassa-theme v1.9.1 // indirect - github.com/darshanbaral/aafu v0.0.0-20240125141321-a711783b9050 // indirect + github.com/darshanbaral/aafu v0.0.0-20240301045618-1a0f170aff72 // indirect github.com/darshanbaral/kitab v0.0.0-20240213053924-fff2e973bca2 // indirect github.com/darshanbaral/sada v0.0.0-20240206043221-babb04b1cffd // indirect github.com/dataCobra/hugo-vitae v0.0.0-20230210081730-1f2587b2b744 // indirect github.com/davidhampgonsalves/hugo-black-and-light-theme v0.0.0-20231209011516-e024de785b91 // indirect - github.com/dchucks/agnes-hugo-theme v0.0.0-20231006041110-b3ce78840db6 // indirect + github.com/dchucks/agnes-hugo-theme v0.0.0-20240319182702-831974f2a738 // indirect github.com/derme302/triple-hyde v2023.10.7+incompatible // indirect - github.com/devcows/hugo-universal-theme v0.0.0-20240129104724-270b44018adf // indirect + github.com/devcows/hugo-universal-theme v0.0.0-20240312142249-b34533c67125 // indirect github.com/dewittn/hugo-html5up-alpha v0.0.0-20200529171052-b921f3bccb74 // indirect github.com/dillonzq/LoveIt v0.2.11 // indirect + github.com/dipeshsingh253/saral v0.0.0-20240321113839-dd6c8969bae6 // indirect github.com/diwao/hestia-pure v0.0.0-20180322071727-320c944ffcf9 // indirect github.com/djuelg/Shapez-Theme v0.0.0-20200822131204-bfc2adf16fd4 // indirect github.com/dldx/hpstr-hugo-theme v0.0.0-20180623041957-3658a0b0c9c2 // indirect @@ -176,39 +177,39 @@ require ( github.com/eliasson/liquorice v0.0.0-20200622115411-8eac8aa98593 // indirect github.com/elkan1788/hugo-theme-next v0.0.0-20220624035358-5c7cf5589b19 // indirect github.com/ertuil/erblog v1.1.0 // indirect - github.com/escalate/hugo-split-theme v1.0.0 // indirect + github.com/escalate/hugo-split-theme v1.3.0 // indirect github.com/eshlox/simplicity v2.1.0+incompatible // indirect + github.com/fauzanmy/pehtheme-hugo v0.0.0-20231210072408-c186fd3b785d // indirect github.com/felicianotech/hugo-theme-lean-launch-page v0.3.0 // indirect github.com/fiatjaf/classless-hugo v0.0.0-20190708182146-0b99da439e48 // indirect github.com/filipecarneiro/hugo-bootstrap-theme v1.0.35 // indirect github.com/floyd-li/hugo-theme-itheme v0.0.0-20240108015539-c22b5df3f2d7 // indirect - github.com/fncnt/vncnt-hugo v0.0.0-20231116105234-eda9f9246d9e // indirect + github.com/fncnt/vncnt-hugo v0.0.0-20240422191321-fad7815bc6eb // indirect github.com/forestryio/hugo-theme-novela v0.0.0-20210222084032-5d015eef4c56 // indirect github.com/fourtyone11/origin-hugo-theme v0.0.0-20200611125917-021c45772a9a // indirect - github.com/frjo/hugo-theme-zen/v2 v2.5.2 // indirect - github.com/funkydan2/alpha-church v0.0.0-20231103065722-3a09c3628865 // indirect + github.com/frjo/hugo-theme-zen/v3 v3.9.0 // indirect + github.com/funkydan2/alpha-church v0.0.0-20240318002523-975bb9dd385e // indirect github.com/funkydan2/hugo-kiera v1.1.1 // indirect github.com/g1eny0ung/hugo-theme-dream v1.6.0 // indirect github.com/garvincasimir/hugo-h5bp-simple v0.0.0-20190817231606-e834d00b96bb // indirect github.com/gcaracuel/hugo-theme-gutenberg v0.0.0-20210225105328-abd624652c48 // indirect github.com/geschke/hugo-tikva v0.4.0 // indirect github.com/gesquive/slate v1.1.1 // indirect - github.com/gethinode/hinode v0.22.5 // indirect - github.com/gethyas/doks v1.3.0 // indirect + github.com/gethinode/hinode v0.23.19 // indirect + github.com/gethyas/doks v1.6.2 // indirect github.com/gevhaz/hugo-theme-notrack v0.0.0-20240121192405-9dad9fec2e0e // indirect github.com/gizak/nofancy v0.0.0-20180325214227-ae4670287c71 // indirect - github.com/gkmngrgn/hugo-alageek-theme v0.0.0-20230627213515-481d89a00d6b // indirect github.com/gonnux/hugo-apps-theme v2.0.0+incompatible // indirect - github.com/goodroot/hugo-classic v0.0.0-20231016153940-1f91ac5beaf8 // indirect - github.com/google/docsy v0.9.0 // indirect + github.com/goodroot/hugo-classic v0.0.0-20240415171325-5956fab1695c // indirect + github.com/google/docsy v0.10.0 // indirect github.com/guangmean/Niello v2.0.1+incompatible // indirect github.com/guangzhengli/hugo-theme-ladder v1.2.0 // indirect github.com/gundamew/hugo-bingo v1.8.2 // indirect - github.com/gurusabarish/hugo-profile v0.0.0-20240115180435-92ffcdb0880a // indirect + github.com/gurusabarish/hugo-profile v0.0.0-20240309133452-4687d5333682 // indirect github.com/gyorb/hugo-dusk v1.0.1 // indirect github.com/hadisinaee/avicenna v0.0.0-20210802003840-1412ad1b941f // indirect - github.com/half-duplex/hugo-arcana v0.0.0-20240110033114-57ae95b2b111 // indirect - github.com/halogenica/beautifulhugo v0.0.0-20231110164551-08cfb448c8fd // indirect + github.com/half-duplex/hugo-arcana v0.0.0-20240507162146-4243c0f7c9d1 // indirect + github.com/halogenica/beautifulhugo v0.0.0-20240507175615-5bb2aa164640 // indirect github.com/hauke96/hugo-theme-hamburg v0.8.2 // indirect github.com/hbstack/theme v0.4.0 // indirect github.com/hbstack/theme-start v0.5.0 // indirect @@ -216,24 +217,24 @@ require ( github.com/heksagonnet/piko v0.0.0-20230326021046-49fea5abb244 // indirect github.com/heyeshuang/hugo-theme-tokiwa v0.0.0-20230822002507-dd607ca18911 // indirect github.com/hivickylai/hugo-theme-sam v4.0.2+incompatible // indirect - github.com/homecat805/hugo-theme-walden v0.0.0-20240119065319-fb76cba67c89 // indirect + github.com/homecat805/hugo-theme-walden v0.0.0-20240506114406-29de11257534 // indirect github.com/hootan09/simple-cv v0.0.0-20220526085510-32a2ca6f372b // indirect - github.com/hossainemruz/toha v2.2.0+incompatible // indirect github.com/hotjuicew/hugo-JuiceBar v0.0.0-20230718090327-39ff44e5cfc3 // indirect github.com/httpsecure/hugo-cat v0.0.0-20230415145520-d962cdf4faa5 // indirect github.com/httpsecure/hugo-theme-red-rose v0.0.0-20230414195647-18de6143a070 // indirect github.com/httpsecure/kembang v0.0.0-20230414195452-e525d79067da // indirect github.com/hugcis/hugo-astatine-theme v0.0.0-20230213102847-17f1644a8e5a // indirect - github.com/hugo-fixit/FixIt v0.3.1 // indirect + github.com/hugo-fixit/FixIt v0.3.6 // indirect github.com/hugo-next/hugo-theme-next v4.5.3+incompatible // indirect - github.com/hugo-sid/hugo-blog-awesome v1.13.0 // indirect - github.com/humrochagf/colordrop v1.12.1 // indirect + github.com/hugo-sid/hugo-blog-awesome v1.14.0 // indirect + github.com/hugo-toha/toha/v4 v4.4.0 // indirect + github.com/humrochagf/colordrop v1.13.0 // indirect github.com/huyb1991/hugo-lamp v1.2.1 // indirect github.com/iCyris/hugo-theme-yuki v1.1.0 // indirect github.com/ianrodrigues/hugo-tailwind-journal v0.0.0-20191119231934-32cd3a6e65e1 // indirect github.com/ijsucceed/onepress v0.0.0-20190207144746-ce9dcea408ed // indirect - github.com/imfing/hextra v0.7.2 // indirect - github.com/ineesalmeida/almeida-cv v0.0.0-20230821151505-707b19ec126b // indirect + github.com/imfing/hextra v0.7.3 // indirect + github.com/ineesalmeida/almeida-cv v0.0.0-20240305114539-52c73396cc41 // indirect github.com/invinciblycool/lekh v0.0.0-20230506043404-4e65dc197414 // indirect github.com/isaksolheim/cyberscape v0.0.0-20231215205550-7bb6eda37240 // indirect github.com/it-gro/hugo-theme-w3css-basic v0.0.0-20230306221104-d5db94051de6 // indirect @@ -242,40 +243,40 @@ require ( github.com/jacobsun/hugo-theme-cole v0.0.0-20220324124602-6df85b298c13 // indirect github.com/jaden/twentyfourteen v0.0.0-20191130221218-9380d3fa1855 // indirect github.com/jakewies/hugo-theme-codex v1.6.0 // indirect - github.com/janraasch/hugo-bearblog v0.0.0-20240123111221-0b64d5ad103c // indirect - github.com/janraasch/hugo-product-launch v0.0.0-20240215175638-f35092942f44 // indirect + github.com/janraasch/hugo-bearblog v0.0.0-20240409062118-efc24bc5e95f // indirect + github.com/janraasch/hugo-product-launch v0.0.0-20240409061852-7a26aea312b1 // indirect github.com/jbub/ghostwriter v0.6.0 // indirect github.com/jeblister/bulma v0.0.0-20220331084658-8d25840df6ac // indirect github.com/jeremybise/twentynineteen-hugo v0.0.0-20191008161335-7c0a63e24114 // indirect github.com/jesselau76/hugo-w3-simple v0.0.0-20220609000310-88c02cc42a3a // indirect github.com/jgazeau/shadocs v0.0.0-20240122202134-cd0441871d08 // indirect - github.com/jimfrenette/hugo-starter v0.0.0-20210805024343-ed81461deb5c // indirect + github.com/jimfrenette/hugo-starter v0.0.0-20240318133913-6e17fb5b9b1c // indirect github.com/jmablog/hugo-clinic-notes v0.0.0-20210111134623-7f5a64696c35 // indirect github.com/jmau111/hugo-theme-ava v0.0.0-20230116180948-0b624aa47065 // indirect - github.com/jnjosh/internet-weblog v0.0.0-20240104001134-830ad5392bf0 // indirect + github.com/jnjosh/internet-weblog v0.0.0-20240225034237-d47670bc5d2f // indirect github.com/joeroe/risotto v0.4.0 // indirect github.com/jonathanjanssens/hugo-casper3 v1.0.1 // indirect - github.com/joseph-mccarthy/hugo-bootstrap-freelancer-template v1.0.2 // indirect github.com/josephhutch/aether v0.0.0-20230106155952-cfba21de2f57 // indirect github.com/jota-ele-ene/just-me v0.0.0-20221125102733-2ce1d38b8ea3 // indirect github.com/joway/hugo-theme-yinyang v0.0.0-20220428055119-1c3bec670a42 // indirect - github.com/jpanther/congo/v2 v2.8.0 // indirect - github.com/jpanther/lynx v1.3.1 // indirect + github.com/jpanther/congo/v2 v2.8.2 // indirect + github.com/jpanther/lynx v1.4.0 // indirect github.com/jpescador/hugo-future-imperfect v0.0.0-20180227143914-020882f6ec36 // indirect github.com/jrutheiser/hugo-lithium-theme v0.0.0-20190825194930-b91f21ac12f6 // indirect - github.com/jsnjack/hugo-changelog-theme v0.0.0-20210104225528-d58a8286e0e7 // indirect + github.com/jsnjack/hugo-changelog-theme v0.0.0-20240507121916-f3f7ab66ac18 // indirect github.com/jsnjack/kraiklyn v0.0.0-20210802120627-a2f56a7af778 // indirect github.com/jweslley/hugo-conference v0.0.0-20190116105037-737593308e69 // indirect github.com/jyygithub/hugo-theme-onelou v1.0.1 // indirect github.com/kaiiiz/hugo-theme-monochrome v2.0.0+incompatible // indirect github.com/kakawait/hugo-tranquilpeak-theme v0.0.0-20220821070134-3b5676afca7e // indirect github.com/kaushalmodi/hugo-bare-min-theme v0.6.0 // indirect - github.com/kaushikgopal/henry-hugo v0.0.0-20240128064912-ce7c0b125f70 // indirect - github.com/kc0bfv/autophugo v0.0.0-20240128214001-488fbadefd69 // indirect + github.com/kaushikgopal/henry-hugo v0.0.0-20240403164507-4cca6ca05135 // indirect + github.com/kc0bfv/autophugo v0.0.0-20240405222923-a77901f07531 // indirect github.com/kc0bfv/ticky_tacky_dark v0.0.0-20221111221805-f626fbd274d1 // indirect github.com/kdevo/osprey-delight/v5 v5.0.6 // indirect github.com/keichi/vienna v0.0.0-20200402035656-7205780bbffc // indirect github.com/khusika/FeelIt v1.0.2 // indirect + github.com/kidlat2024/kidlat v0.0.0-20240309221549-050705be7e10 // indirect github.com/kimcc/hugo-theme-noteworthy v0.0.0-20210708200524-5dcc67d31bf1 // indirect github.com/kishaningithub/hugo-creative-portfolio-theme v0.0.0-20221025130505-fc17ec99839b // indirect github.com/kishaningithub/hugo-shopping-product-catalogue-simple v0.0.0-20181229045513-c6e71f71ffae // indirect @@ -284,27 +285,25 @@ require ( github.com/koirand/pulp v0.0.0-20220808161557-8b0c59531fb0 // indirect github.com/kritoke/darksimplicity v0.3.3 // indirect github.com/lasseborly/anybodyhome v0.0.0-20180409213336-13667609bc57 // indirect - github.com/ldeso/hugo-flex v1.1.0 // indirect + github.com/ldeso/hugo-flex v1.2.0 // indirect github.com/leafee98/hugo-theme-flat v0.0.0-20240123130918-36c140b28cc3 // indirect github.com/leonardofaria/bento v1.0.0 // indirect github.com/leonhe/hugo_eiio v0.0.0-20220625022627-bbcd7a744107 // indirect github.com/leonstafford/accessible-minimalism-hugo-theme v0.0.0-20211112232051-057bd3b35c97 // indirect github.com/letItCurl/minimal_marketing v0.0.0-20231221031509-ad8b62c250a4 // indirect - github.com/lgaida/mediumish-gohugo-theme v0.0.0-20240205070826-1784be862662 // indirect github.com/lingxz/er v0.0.0-20190825175148-ebdb18610b68 // indirect github.com/liuzc/LeaveIt v0.0.0-20181104111157-2884e266babb // indirect - github.com/loveminimal/hugo-theme-virgo v1.0.0 // indirect + github.com/loveminimal/hugo-theme-virgo v1.0.1 // indirect github.com/lubang/hugo-hello-programmer-theme v2.1.0+incompatible // indirect - github.com/luizdepra/hugo-coder v0.0.0-20240214140951-3f82e100f670 // indirect - github.com/lukeorth/poison v0.0.0-20240122213339-8dffa65ed3a7 // indirect - github.com/lxndrblz/anatole v1.13.0 // indirect - github.com/manid2/hugo-xterm v1.7.2 // indirect - github.com/mansoorbarri/coming-soon v0.0.0-20240209175518-27e1d682c0fb // indirect + github.com/luizdepra/hugo-coder v0.0.0-20240507000755-f850eb85badf // indirect + github.com/lukeorth/poison v0.0.0-20240318172107-4b36ef57e683 // indirect + github.com/lxndrblz/anatole v1.14.0 // indirect + github.com/manid2/hugo-xterm v1.7.4 // indirect + github.com/mansoorbarri/coming-soon v0.0.0-20240417095203-0e860ce9bbb5 // indirect github.com/mansoorbarri/glim-midnight v0.0.0-20231127125721-ee3f76679a12 // indirect - github.com/maolonglong/hugo-simple v0.0.0-20240213163425-c235566f5c39 // indirect + github.com/maolonglong/hugo-simple v0.0.0-20240513120346-039b5a2e976b // indirect github.com/marcanuy/simpleit-hugo-theme v0.0.0-20231012140445-3d40feab8da2 // indirect github.com/marketempower/axiom v0.8.0 // indirect - github.com/matcornic/hugo-theme-learn v0.0.0-20240104141228-3202533a746f // indirect github.com/matsuyoshi30/harbor v1.0.0 // indirect github.com/mattbutton/silhouette-hugo v0.0.0-20230823055120-385ed37e61fb // indirect github.com/mattstratton/castanet v1.22.11 // indirect @@ -321,43 +320,42 @@ require ( github.com/mismith0227/hugo_theme_pickles v0.0.0-20230812090920-6b24bdf85025 // indirect github.com/mivinci/hugo-theme-minima v1.1.0 // indirect github.com/mmrath/hugo-bootstrap v0.0.0-20190615045721-5e7bfb2518b7 // indirect - github.com/monkeyWzr/hugo-theme-cactus v0.0.0-20210831141748-a27a14348040 // indirect - github.com/mrhelloboy/seven v1.6.2 // indirect + github.com/mohamedelhefni/zahi v0.0.0-20240428061523-2f25953e86ba // indirect + github.com/monkeyWzr/hugo-theme-cactus v0.0.0-20240312084910-a5df1d6bed25 // indirect + github.com/mrhelloboy/seven v1.7.1 // indirect github.com/mrmierzejewski/hugo-theme-console v0.0.0-20230725171417-a03f416d170c // indirect - github.com/nanxiaobei/hugo-paper v0.0.0-20240117201023-9782859a4acf // indirect + github.com/nanxiaobei/hugo-paper v0.0.0-20240513183536-90059f787877 // indirect github.com/nanxstats/hugo-tanka v0.0.0-20210707221939-9bec4eba33e5 // indirect github.com/naro143/hugo-coder-portfolio v0.0.0-20200903083500-255d92337c07 // indirect github.com/natarajmb/charaka-hugo-theme v0.0.0-20201215113736-021bc743417b // indirect github.com/nathancday/min_night v0.0.4 // indirect - github.com/negrel/hugo-theme-pico v0.0.0-20230712191543-ef7057b8650c // indirect - github.com/nicokaiser/hugo-theme-gallery v0.0.0-20231122113845-52573f5990d6 // indirect + github.com/nicokaiser/hugo-theme-gallery/v4 v4.1.7 // indirect github.com/nightswinger/hugo-theme-coyote v1.0.2 // indirect github.com/niklasbuschmann/contrast-hugo v0.0.0-20210313140659-9b3ec3d0243d // indirect github.com/nirocfz/arabica v0.0.0-20220406035148-c63700f10450 // indirect - github.com/nixentric/Lowkey-Hugo-Theme v0.0.0-20240128143423-8e93759d5a8f // indirect - github.com/nodejh/hugo-theme-cactus-plus v0.0.0-20231219060119-7089c3e9368d // indirect + github.com/nixentric/Lowkey-Hugo-Theme v0.0.0-20240410095828-b35362d5bf52 // indirect + github.com/nodejh/hugo-theme-cactus-plus v0.0.0-20240322021354-34417888405c // indirect github.com/ntk148v/hugo-cuisine-book v0.0.0-20230914083228-188f158ad681 // indirect - github.com/nunocoracao/blowfish/v2 v2.57.0 // indirect + github.com/nunocoracao/blowfish/v2 v2.67.0 // indirect github.com/nurlansu/hugo-sustain v0.0.0-20230524192148-21d9f8f53692 // indirect - github.com/nusserstudios/tailbliss v0.0.0-20240207115344-fc812898bb6e // indirect + github.com/nusserstudios/tailbliss v0.0.0-20240503224449-9b6b749cf1d8 // indirect github.com/okkur/syna v0.17.4 // indirect github.com/olOwOlo/hugo-theme-even v4.1.0+incompatible // indirect - github.com/onweru/compose v0.0.0-20240203101201-9f857b0ec4a5 // indirect + github.com/onweru/compose v0.0.0-20240409191834-0a09d5b2606d // indirect github.com/onweru/hugo-swift-theme v2.0.0+incompatible // indirect - github.com/onweru/newsroom v0.0.0-20240203184814-fd61bc3ed5a7 // indirect + github.com/onweru/newsroom v0.0.0-20240414151936-5a0c428a9b15 // indirect github.com/opera7133/Blonde v0.0.0-20231206112515-d77c28284b46 // indirect - github.com/opera7133/tella v0.0.0-20231206115635-8feda77d917f // indirect + github.com/opera7133/tella v0.0.0-20240328072406-22f345776397 // indirect github.com/opera7133/vnovel v0.0.0-20231206112306-d1c3cf709dfd // indirect github.com/orf/bare-hugo-theme v0.0.0-20230401233253-f285059e1e56 // indirect github.com/pacollins/calligraphy v0.0.0-20220703233739-2207fab30d71 // indirect - github.com/panr/hugo-theme-hello-friend v0.0.0-20230610160555-05c4ecfd03d7 // indirect github.com/panr/hugo-theme-terminal v2.1.0+incompatible // indirect github.com/parsiya/Hugo-Octopress v0.0.0-20230210234300-be22e9c1e61a // indirect github.com/paulmartins/hugo-digital-garden-theme v0.0.0-20240202125658-b2dbca71daa9 // indirect github.com/pavel-pi/kiss-em v2.0.0+incompatible // indirect github.com/pdevty/material-design v0.0.0-20160828002125-587b3af7db83 // indirect github.com/pdevty/polymer v0.0.0-20150630134133-d8be0028b80d // indirect - github.com/peaceiris/hugo-theme-iris v0.45.0 // indirect + github.com/peaceiris/hugo-theme-iris v0.45.1 // indirect github.com/pfadfinder-konstanz/hugo-dpsg v0.0.0-20220728113412-7c03e472758f // indirect github.com/ph-ph/chalk v0.0.0-20220515225815-7fa5c9bfc682 // indirect github.com/pjbakker/flexible-seo-hugo v0.0.0-20210413080041-d65d15e84bd4 // indirect @@ -371,9 +369,9 @@ require ( github.com/radity/raditian-free-hugo-theme v0.0.0-20200716150603-a25af74cbf97 // indirect github.com/rafed/BlogRa v0.0.0-20230623202135-8b92d969ab53 // indirect github.com/rafed/ramium v0.0.0-20230721113732-a51bb919d150 // indirect - github.com/razonyang/hugo-theme-bootstrap v1.5.3 // indirect + github.com/razonyang/hugo-theme-bootstrap v1.5.6 // indirect github.com/reuixiy/hugo-theme-meme v5.0.0+incompatible // indirect - github.com/rhazdon/hugo-theme-hello-friend-ng v0.0.0-20231122225555-51e697bea7eb // indirect + github.com/rhazdon/hugo-theme-hello-friend-ng v0.0.0-20240515061203-a902dacd8477 // indirect github.com/rhnvrm/bodhi v0.1.0 // indirect github.com/ribice/kiss v2.0.0+incompatible // indirect github.com/rijoth/rsimple v0.0.0-20210720173156-0b67a7051fb6 // indirect @@ -391,63 +389,65 @@ require ( github.com/samrobbins85/hugo-developer-portfolio v0.0.0-20230421080835-4d3db20b1574 // indirect github.com/sbruder/spectral v0.0.0-20231021125325-0d4b111afae1 // indirect github.com/schmanat/hugo-highlights-theme v0.0.0-20200409134000-79eb66a32c74 // indirect - github.com/schnerring/hugo-theme-gruvbox v0.0.0-20240215232525-5f61751ac94f // indirect + github.com/schnerring/hugo-theme-gruvbox v0.0.0-20240315014043-dc3c0a888556 // indirect github.com/schollz/onetwothree v0.0.0-20190916161743-a09e6530494c // indirect github.com/seanlane/gochowdown v0.0.0-20220603122033-5458dc7bd80a // indirect github.com/sefeng211/techlab-hugo-theme v0.0.0-20221108011911-ed0fcb80d48f // indirect github.com/serg/yourfolio v0.0.0-20211028094824-57f039fc707d // indirect - github.com/sergeyklay/gohugo-theme-ed v0.6.0 // indirect + github.com/sergeyklay/gohugo-theme-ed v0.7.0 // indirect github.com/sergiobarriel/tophat-theme v0.0.0-20231105115724-1029f8da1a7c // indirect github.com/serkodev/holy v0.0.0-20230619092132-813c12d1d9ad // indirect - github.com/setsevireon/photophobia v0.1.2 // indirect + github.com/setsevireon/photophobia v1.0.0 // indirect github.com/shaform/hugo-theme-den v0.0.0-20220704130400-f420b491a016 // indirect - github.com/shenoybr/hugo-goa v0.0.0-20240215105909-bc81702b8241 // indirect github.com/siegerts/hugo-theme-basic v0.0.0-20200521131547-7f8226c418da // indirect github.com/sieis/re-cover v0.0.0-20230906184022-350819ec15eb // indirect github.com/slashformotion/hugo-tufte v0.2.0 // indirect github.com/softwareyoga/ronu-hugo-theme v0.0.0-20220517180936-9b2aeaa4d0d3 // indirect github.com/spaghettiwews/hugonews v0.0.0-20200229171635-342b6a47f09e // indirect - github.com/spech66/bootstrap-bp-hugo-startpage v0.0.0-20230709062015-121ee3f7517c // indirect - github.com/spech66/bootstrap-bp-hugo-theme v5.3.0+incompatible // indirect - github.com/spech66/flex-bp-hugo-cv v0.0.0-20230709062136-eb96a5a7f320 // indirect - github.com/spech66/materialize-bp-hugo-theme v0.0.0-20230709062220-67b50356c2db // indirect + github.com/spech66/bootstrap-bp-hugo-startpage v0.0.0-20240323105230-d9076e47545d // indirect + github.com/spech66/bootstrap-bp-hugo-theme v5.3.3+incompatible // indirect + github.com/spech66/flex-bp-hugo-cv v0.0.0-20240323105238-e241bce51690 // indirect + github.com/spech66/materialize-bp-hugo-theme v0.0.0-20240403055010-5abd54ed00e5 // indirect github.com/spf13/hyde v1.1.0 // indirect github.com/splch/hugo-simplecss v0.0.0-20220426050908-aa5090af89a9 // indirect github.com/spookey/slick v0.4.6 // indirect github.com/st-wong/hugo-spectre-pixel-theme v0.0.0-20191012073037-219ea80b9785 // indirect - github.com/sudorook/capsule v0.6.4 // indirect + github.com/sudorook/capsule v0.7.1 // indirect github.com/surajmandalcell/potato-dark v0.0.0-20230514060246-fb0ef4c222e7 // indirect github.com/syui/hugo-theme-air v0.0.0-20220103011837-46ea2028968c // indirect github.com/syui/hugo-theme-wave v0.0.0-20190818110101-1250495d730e // indirect - github.com/taikii/whiteplain v0.0.0-20240105031206-8778b19268be // indirect + github.com/taikii/whiteplain v0.0.0-20240403154109-e52a587b0b55 // indirect github.com/tastaturtier/someparts-hugo v1.0.2 // indirect github.com/tatsatb/TatBanTheme2.0 v0.0.0-20231211035250-2fcf8364a4ca // indirect github.com/tblyler/light-hugo v0.0.0-20201014192444-65d2bef4320a // indirect github.com/tcgriffith/hugo-owaraiclub v0.0.0-20191105071036-a25aabbb1d0f // indirect + github.com/techbarrack/terminal-hugo-theme v0.0.0-20240424124324-a6e6ead160d9 // indirect github.com/the2ne/hugo-frais v0.0.0-20200104180115-f6f23a885a7a // indirect - github.com/theNewDynamic/gohugo-theme-ananke v0.0.0-20231122160523-91df000ca827 // indirect - github.com/thegeeklab/hugo-geekblog v0.26.1 // indirect - github.com/thegeeklab/hugo-geekdoc v0.44.1 // indirect + github.com/theNewDynamic/gohugo-theme-ananke v0.0.0-20240503174335-33fbda0e9d3e // indirect + github.com/thegeeklab/hugo-geekblog v0.27.0 // indirect + github.com/thegeeklab/hugo-geekdoc v0.45.0 // indirect github.com/thingsym/hugo-theme-techdoc v1.0.0 // indirect github.com/thomasheller/crab v1.0.0 // indirect github.com/tnwhitwell/hugo-startpage-theme v0.0.0-20180704204829-76b1a1f5808e // indirect github.com/tohn/linkshrubbery v0.0.0-20230623094327-4b529ca6cb8b // indirect - github.com/tomowang/hugo-theme-tailwind v0.0.0-20240202011941-7128b6360fb0 // indirect + github.com/tomfran/typo v0.0.0-20240511212914-e0b1d3dbaa00 // indirect + github.com/tomowang/hugo-theme-tailwind v0.0.0-20240514160136-8e78440a5498 // indirect github.com/tosi29/inkblotty v0.0.0-20210329142630-603eab433785 // indirect github.com/tummychow/lanyon-hugo v0.0.0-20210123043723-cd7b91420a90 // indirect - github.com/tylerjlawson/port-hugo v0.0.0-20220927001103-4c4a5023cc37 // indirect + github.com/tylerjlawson/port-hugo v0.0.0-20240330025428-005c9518aa1e // indirect github.com/tylerjlawson/simple-resume v0.0.0-20211026182531-a6bbdc145e1b // indirect github.com/tylerjlawson/simple-snipcart-shop v0.0.0-20220323145220-3d18970a8c9a // indirect github.com/uPagge/uBlogger v1.2.0 // indirect github.com/uicardiodev/hugo-lime v0.0.0-20180916134933-90177ceb59cb // indirect github.com/uicardiodev/hugo-sodium-theme v0.0.0-20181119122014-1c681c5db2a0 // indirect github.com/uicardiodev/hugo-uilite v0.0.0-20210608161142-0b625104854c // indirect - github.com/undus5/hugo-pure v0.0.0-20240123131429-f54855eacb32 // indirect + github.com/undus5/hugo-pure v0.0.0-20240429153831-1f411cc3a4a2 // indirect github.com/unicef/inventory-hugo-theme v1.0.0 // indirect github.com/urjaacharya/redgood v0.0.0-20210818044121-cf6f82ce70c2 // indirect github.com/vaga/hugo-theme-m10c v0.0.0-20231121023432-ee7cf174616f // indirect github.com/vantagedesign/ace-documentation v0.0.0-20230530074820-241592496471 // indirect github.com/victoriadrake/hugo-theme-introduction v6.0.0+incompatible // indirect + github.com/victoriadrake/hugo-theme-quint v1.0.1 // indirect github.com/victoriadrake/neofeed-theme/v2 v2.0.6 // indirect github.com/vimux/blank v0.0.0-20231125180609-43cac0184173 // indirect github.com/vjeantet/hugo-theme-docport v0.0.0-20201105223056-b43c043a7b91 // indirect @@ -456,44 +456,38 @@ require ( github.com/wd/hugo-fabric v0.0.0-20191202002427-c416adb14920 // indirect github.com/weastur/hugo-texify2 v0.2.0 // indirect github.com/wileybaba/hugo-theme-robotico v0.0.0-20190128025338-a1e633362eee // indirect - github.com/willfaught/paige v0.71.4 // indirect - github.com/wjh18/hugo-liftoff/v3 v3.4.3 // indirect - github.com/wlh320/hugo-theme-hulga v0.0.0-20231209075444-062ab39ea7df // indirect + github.com/willfaught/paige v0.75.0 // indirect + github.com/wlh320/hugo-theme-hulga v1.0.1 // indirect github.com/wtoll/venture v0.1.0 // indirect github.com/xaprb/story v0.0.0-20220322144912-046bf4f12e69 // indirect github.com/xaviablaza/hugo-lodi-theme v0.0.0-20190215050835-89984401ebf2 // indirect - github.com/xianmin/hugo-theme-jane v0.0.0-20240105130948-baa2b23d3151 // indirect + github.com/xianmin/hugo-theme-jane v0.0.0-20240227132550-6bef93b29e96 // indirect github.com/xiaoheiAh/hugo-theme-pure v0.0.0-20210607025111-902bd9b73dae // indirect github.com/xioyito/NewBee v1.2.3 // indirect github.com/xslingcn/vno-hugo v1.1.3 // indirect - github.com/yanlinlin82/simple-style v0.0.0-20220414155221-f448e5d675fa // indirect + github.com/yanlinlin82/simple-style v0.0.0-20240320081416-2b198a8c5f17 // indirect github.com/yihui/hugo-xmag v0.0.0-20231230001925-5a8efa83ecdb // indirect - github.com/yihui/hugo-xmin v0.0.0-20240205145203-d7763268b46b // indirect + github.com/yihui/hugo-xmin v0.0.0-20240304022029-b76b60eb9436 // indirect github.com/yoshiharuyamashita/blackburn v0.0.0-20220530060627-99cf136a06f3 // indirect github.com/your-identity/hugo-theme-dimension v0.0.0-20210521214308-2474081b7846 // indirect github.com/yue1124/hero v0.0.0-20211205133758-af2b1f878227 // indirect github.com/yursan9/manis-hugo-theme v0.0.0-20230228032349-9e8e09ebfc78 // indirect - github.com/zeon-studio/hugoplate v0.0.0-20240215105252-39b2d6d7bb53 // indirect + github.com/zeon-studio/hugoplate v0.0.0-20240515115337-55ed912d6381 // indirect github.com/zerostaticthemes/hugo-hero-theme v1.1.0 // indirect github.com/zerostaticthemes/hugo-serif-theme v1.1.1 // indirect github.com/zerostaticthemes/hugo-whisper-theme v0.0.0-20231126060839-511dcd7dca62 // indirect github.com/zerostaticthemes/hugo-winston-theme v1.4.0 // indirect - github.com/zetxek/adritian-free-hugo-theme v0.0.0-20240211220528-429cfe2cf911 // indirect - github.com/zhaohuabing/hugo-theme-cleanwhite v0.0.0-20230904071550-223965214ab8 // indirect + github.com/zetxek/adritian-free-hugo-theme v0.3.1 // indirect + github.com/zhaohuabing/hugo-theme-cleanwhite v0.0.0-20240512214910-6221a36a411d // indirect github.com/zhe/hugo-theme-slim v0.0.0-20190920014445-f666effe196a // indirect - github.com/zjedi/hugo-scroll v0.0.0-20240113193715-24f402e9f189 // indirect - github.com/zwbetz-gh/cayman-hugo-theme v0.0.0-20230103054115-9cdbba36630d // indirect - github.com/zwbetz-gh/cupper-hugo-theme v0.0.0-20230104033449-387d905ae451 // indirect - github.com/zwbetz-gh/minimal-bootstrap-hugo-theme v0.0.0-20230103054008-e5649966f5be // indirect - github.com/zwbetz-gh/papercss-hugo-theme v0.0.0-20230103054338-f202595b2d73 // indirect - github.com/zwbetz-gh/vanilla-bootstrap-hugo-theme v0.0.0-20230103054636-3f00947b65e6 // indirect + github.com/zjedi/hugo-scroll v0.0.0-20240410072842-a1772f49e449 // indirect github.com/zzossig/hugo-theme-zdoc v0.0.0-20201105143606-574f6c3d26d5 // indirect github.com/zzossig/hugo-theme-zzo v0.0.0-20210523142617-01f9e43e59b0 // indirect github.com/zzzmisa/hugo-theme-doors v0.0.0-20231124013016-44ae7c3ba68e // indirect gitlab.com/Kaligule/classless-blog v0.0.0-20230127063328-1fd2cc243840 // indirect gitlab.com/VincentTam/huginn v0.0.0-20190817135446-c6cfb0ab831c // indirect gitlab.com/avron/gruvhugo v0.0.0-20230515125413-99971952d6c3 // indirect - gitlab.com/gabmus/hugo-ficurinia v0.0.0-20231215172928-e681e6583286 // indirect + gitlab.com/gabmus/hugo-ficurinia v0.0.0-20240411164809-8a760e19a754 // indirect gitlab.com/ian-s-mcb/smigle-hugo-theme v0.0.0-20231109144507-ea21de94ba94 // indirect gitlab.com/jmfergeau/hugo.386 v0.0.0-20230415163320-2e2a41232ab5 // indirect gitlab.com/kskarthik/monopriv v0.0.0-20200526110241-17ac34952952 // indirect @@ -504,6 +498,6 @@ require ( gitlab.com/tmuguet/hugo-split-gallery v1.6.0 // indirect gitlab.com/toryanderson/hugo-icarus v0.0.0-20200701121335-f3e99478c35b // indirect gitlab.com/writeonlyhugo/up-business-theme v0.0.0-20230808030904-a060a033be09 // indirect - gitlab.com/writeonlyhugo/writeonlyhugo-theme v0.0.0-20230804022106-0464029c15e3 // indirect + gitlab.com/writeonlyhugo/writeonlyhugo-theme v0.0.0-20240502104725-cc4014d1c855 // indirect wangchucheng.com/hugo-eureka v0.9.3 // indirect ) diff --git a/cmd/hugothemesitebuilder/build/site/go.mod b/cmd/hugothemesitebuilder/build/site/go.mod index 5cec0564..7bf8a12a 100644 --- a/cmd/hugothemesitebuilder/build/site/go.mod +++ b/cmd/hugothemesitebuilder/build/site/go.mod @@ -2,4 +2,7 @@ module github.com/gohugoio/hugoThemeSiteBuilder/cmd/hugothemesitebuilder/build/s go 1.16 -require github.com/gohugoio/hugoThemesSite v0.0.0-20240125095428-964006cadb41 +require ( + github.com/gohugoio/gohugoioTheme v0.0.0-20240508091825-b23e8e2d2419 // indirect + github.com/gohugoio/hugoThemesSite v0.0.0-20240515150039-584ce012ee7f +) diff --git a/cmd/hugothemesitebuilder/build/site/go.sum b/cmd/hugothemesitebuilder/build/site/go.sum index 0a5cde43..c9f99bcf 100644 --- a/cmd/hugothemesitebuilder/build/site/go.sum +++ b/cmd/hugothemesitebuilder/build/site/go.sum @@ -1,6 +1,8 @@ github.com/gohugoio/gohugoioTheme v0.0.0-20230630055807-9874cd863bc5/go.mod h1:GOYeAPQJ/ok8z7oz1cjfcSlsFpXrmx6VkzQ5RpnyhZM= github.com/gohugoio/gohugoioTheme v0.0.0-20230927165800-342e2c850f18/go.mod h1:GOYeAPQJ/ok8z7oz1cjfcSlsFpXrmx6VkzQ5RpnyhZM= github.com/gohugoio/gohugoioTheme v0.0.0-20240125093153-bea12fdc0b15/go.mod h1:GOYeAPQJ/ok8z7oz1cjfcSlsFpXrmx6VkzQ5RpnyhZM= +github.com/gohugoio/gohugoioTheme v0.0.0-20240508091825-b23e8e2d2419 h1:cQ/44eDHK0tVImTtSx/9sWWZv+RynH/oB4R7ASbQNAE= +github.com/gohugoio/gohugoioTheme v0.0.0-20240508091825-b23e8e2d2419/go.mod h1:GOYeAPQJ/ok8z7oz1cjfcSlsFpXrmx6VkzQ5RpnyhZM= github.com/gohugoio/hugoThemesSite v0.0.0-20230630055933-d3c50fa883e4 h1:tbTxZ14aW7e+p8pxDExKHXdk/n3/aiPWRbJwT+p1yOo= github.com/gohugoio/hugoThemesSite v0.0.0-20230630055933-d3c50fa883e4/go.mod h1:cmDbgD9KdXCaWrTNrq0LElFo0OPFG06nriXEhM+yDgo= github.com/gohugoio/hugoThemesSite v0.0.0-20230927170012-178092c0dc30 h1:r3e7lkRE7+fNbLc/M8Op+5od+nZq9bKll5BHRaZIMqQ= @@ -9,3 +11,7 @@ github.com/gohugoio/hugoThemesSite v0.0.0-20240125093428-c2567db78998 h1:HKjuAgv github.com/gohugoio/hugoThemesSite v0.0.0-20240125093428-c2567db78998/go.mod h1:Um2gWoqNvIM9ss6TP1iSAzldlUzeMzZxNv6C94P6Snk= github.com/gohugoio/hugoThemesSite v0.0.0-20240125095428-964006cadb41 h1:nKhHyYpyd7DJ5mhTi00gKc+L/Ryszukw0kezJUyegbI= github.com/gohugoio/hugoThemesSite v0.0.0-20240125095428-964006cadb41/go.mod h1:Um2gWoqNvIM9ss6TP1iSAzldlUzeMzZxNv6C94P6Snk= +github.com/gohugoio/hugoThemesSite v0.0.0-20240508092046-c60406304339 h1:Rqhq6wbjTrPuimpcQDI65jaViwBV2n6LwVAETYOpB9w= +github.com/gohugoio/hugoThemesSite v0.0.0-20240508092046-c60406304339/go.mod h1:/gs9qI8d+qXJdA/eZToqMq0FW8hIcmrVBPec9b1Gnis= +github.com/gohugoio/hugoThemesSite v0.0.0-20240515150039-584ce012ee7f h1:5nFxW9z69T6iwwHulam50tG50lwpNwVWeECQ3Vh6OI8= +github.com/gohugoio/hugoThemesSite v0.0.0-20240515150039-584ce012ee7f/go.mod h1:/gs9qI8d+qXJdA/eZToqMq0FW8hIcmrVBPec9b1Gnis= diff --git a/cmd/hugothemesitebuilder/build/site/hugo.toml b/cmd/hugothemesitebuilder/build/site/hugo.toml index eefd83f8..be8735c8 100644 --- a/cmd/hugothemesitebuilder/build/site/hugo.toml +++ b/cmd/hugothemesitebuilder/build/site/hugo.toml @@ -82,6 +82,7 @@ disableKinds = ["taxonomy"] github_repo = "https://github.com/gohugoio/hugoThemesSiteBuilder" gitter = "https://gitter.im/spf13/hugo" forum = "https://discourse.gohugo.io/" + hideDemoLink = true #This array is meant for disabling the Homepage button of a theme. noHomePage = ["hugo-theme-novela"] diff --git a/cmd/hugothemesitebuilder/build/site/layouts/_default/_markup/render-link.html b/cmd/hugothemesitebuilder/build/site/layouts/_default/_markup/render-link.html new file mode 100644 index 00000000..34dfe42a --- /dev/null +++ b/cmd/hugothemesitebuilder/build/site/layouts/_default/_markup/render-link.html @@ -0,0 +1,2 @@ +{{ .Text | default .Title | safeHTML }} +{{- /* chomp trailing newline */ -}} diff --git a/netlify.toml b/netlify.toml index 2627ee6c..efb70cfb 100644 --- a/netlify.toml +++ b/netlify.toml @@ -10,5 +10,5 @@ # unless the same property key is present in a more specific context. [build.environment] - HUGO_VERSION = "0.118.2" - GO_VERSION = "1.21.0" + HUGO_VERSION = "0.125.6" + GO_VERSION = "1.22.0" diff --git a/pkg/buildcmd/build.go b/pkg/buildcmd/build.go index cea8a412..2bcb5de3 100644 --- a/pkg/buildcmd/build.go +++ b/pkg/buildcmd/build.go @@ -393,7 +393,7 @@ func (t *theme) toFrontMatter() map[string]interface{} { htmlURL = t.ghRepo.HTMLURL } else { // Gitlab etc., assume the path is the base of the URL. - htmlURL = fmt.Sprintf("https://%s", t.m.Path) + htmlURL = fmt.Sprintf("https://%s", t.m.PathRepo()) } var expiryDate time.Time diff --git a/pkg/client/client.go b/pkg/client/client.go index 700fdbf7..ed7adef0 100644 --- a/pkg/client/client.go +++ b/pkg/client/client.go @@ -12,6 +12,7 @@ import ( "os" "os/exec" "path/filepath" + "regexp" "runtime" "strings" "sync" @@ -327,10 +328,15 @@ type Module struct { Meta map[string]interface{} `json:"meta"` } +func (m Module) PathWithoutVersion() string { + return PathWithoutVersion(m.Path) +} + // PathRepo returns the root path to the repository. func (m Module) PathRepo() string { slashCount := 0 - idx := strings.IndexFunc(m.Path, func(r rune) bool { + p := m.PathWithoutVersion() + idx := strings.IndexFunc(p, func(r rune) bool { if r == '/' { slashCount++ } @@ -338,10 +344,10 @@ func (m Module) PathRepo() string { }) if slashCount < 3 { - return m.Path + return p } - return m.Path[:idx] + return p[:idx] } // HugoVersion holds Hugo binary version requirements for a module. @@ -353,6 +359,12 @@ type HugoVersion struct { type ModulesMap map[string]Module +var pathVersionRe = regexp.MustCompile(`/v\d+$`) + +func PathWithoutVersion(s string) string { + return pathVersionRe.ReplaceAllString(s, "") +} + func setEnvVar(vars *[]string, key, value string) { for i := range *vars { if strings.HasPrefix((*vars)[i], key+"=") { diff --git a/pkg/client/client_test.go b/pkg/client/client_test.go index 19a2a6e3..5e3a118f 100644 --- a/pkg/client/client_test.go +++ b/pkg/client/client_test.go @@ -15,5 +15,14 @@ func TestModule(t *testing.T) { c.Assert(Module{Path: "github.com/a/b"}.PathRepo(), qt.Equals, "github.com/a/b") c.Assert(Module{Path: "github.com/a"}.PathRepo(), qt.Equals, "github.com/a") c.Assert(Module{Path: "github.com"}.PathRepo(), qt.Equals, "github.com") + c.Assert(Module{Path: "github.com/a/v2"}.PathRepo(), qt.Equals, "github.com/a") }) } + +func TestPathWithoutVersion(t *testing.T) { + c := qt.New(t) + + c.Assert(PathWithoutVersion("github.com/gohugoio/hugo/v3"), qt.Equals, "github.com/gohugoio/hugo") + c.Assert(PathWithoutVersion("github.com/gohugoio/hugo/v2"), qt.Equals, "github.com/gohugoio/hugo") + c.Assert(PathWithoutVersion("github.com/gohugoio/hugo"), qt.Equals, "github.com/gohugoio/hugo") +} diff --git a/themes.txt b/themes.txt index 7f9138b3..2777f064 100644 --- a/themes.txt +++ b/themes.txt @@ -51,7 +51,6 @@ github.com/binokochumolvarghese/lightbi-hugo github.com/bjacquemet/personal-web github.com/blankoworld/hugo_theme_adam_eve github.com/Bonzdev/alexa-portfolio -github.com/boratanrikulu/eternity github.com/bowman2001/perplex github.com/brianreumere/plague github.com/brycematheson/allegiant @@ -104,6 +103,7 @@ github.com/devcows/hugo-universal-theme github.com/dewittn/hugo-html5up-alpha github.com/dillonzq/LoveIt github.com/diwao/hestia-pure +github.com/dipeshsingh253/saral github.com/djuelg/Shapez-Theme github.com/dldx/hpstr-hugo-theme github.com/docura/docura @@ -112,6 +112,7 @@ github.com/dsrkafuu/hugo-theme-fuji github.com/dzello/reveal-hugo github.com/edavidaja/docter github.com/eddiewebb/hugo-resume +github.com/ElecBrandy/freshpink github.com/eliasson/liquorice github.com/elkan1788/hugo-theme-next github.com/EmielH/hallo-hugo @@ -123,6 +124,7 @@ github.com/eshlox/simplicity github.com/ExchangeRate-API/strange-case github.com/FarseaSH/hugo-theme-moments github.com/Fastbyte01/KeepIt +github.com/fauzanmy/pehtheme-hugo github.com/felicianotech/hugo-theme-lean-launch-page github.com/fiatjaf/classless-hugo github.com/filipecarneiro/hugo-bootstrap-theme @@ -130,7 +132,7 @@ github.com/floyd-li/hugo-theme-itheme github.com/fncnt/vncnt-hugo github.com/forestryio/hugo-theme-novela github.com/fourtyone11/origin-hugo-theme -github.com/frjo/hugo-theme-zen/v2 +github.com/frjo/hugo-theme-zen/v3 github.com/funkydan2/alpha-church github.com/funkydan2/hugo-kiera github.com/g1eny0ung/hugo-theme-dream @@ -143,7 +145,6 @@ github.com/gethinode/hinode github.com/gethyas/doks github.com/gevhaz/hugo-theme-notrack github.com/gizak/nofancy -github.com/gkmngrgn/hugo-alageek-theme github.com/gonnux/hugo-apps-theme github.com/goodroot/hugo-classic github.com/google/docsy @@ -212,7 +213,6 @@ github.com/jmau111/hugo-theme-ava github.com/jnjosh/internet-weblog github.com/joeroe/risotto github.com/jonathanjanssens/hugo-casper3 -github.com/joseph-mccarthy/hugo-bootstrap-freelancer-template github.com/josephhutch/aether github.com/jota-ele-ene/just-me github.com/joway/hugo-theme-yinyang @@ -222,6 +222,7 @@ github.com/jpescador/hugo-future-imperfect github.com/jrutheiser/hugo-lithium-theme github.com/jsnjack/hugo-changelog-theme github.com/jsnjack/kraiklyn +github.com/Junyi-99/hugo-theme-anubis2 github.com/jweslley/hugo-conference github.com/jyygithub/hugo-theme-onelou github.com/kaiiiz/hugo-theme-monochrome @@ -234,6 +235,7 @@ github.com/kc0bfv/ticky_tacky_dark github.com/kdevo/osprey-delight/v5 github.com/keichi/vienna github.com/khusika/FeelIt +github.com/kidlat2024/kidlat github.com/kimcc/hugo-theme-noteworthy github.com/kishaningithub/hugo-creative-portfolio-theme github.com/kishaningithub/hugo-shopping-product-catalogue-simple @@ -249,7 +251,6 @@ github.com/leonardofaria/bento github.com/leonhe/hugo_eiio github.com/leonstafford/accessible-minimalism-hugo-theme github.com/letItCurl/minimal_marketing -github.com/lgaida/mediumish-gohugo-theme github.com/lingxz/er github.com/liuzc/LeaveIt github.com/LordMathis/hugo-theme-nightfall @@ -270,7 +271,6 @@ github.com/marcanuy/simpleit-hugo-theme github.com/MarcusVirg/forty github.com/marketempower/axiom github.com/Masellum/hugo-theme-nostyleplease -github.com/matcornic/hugo-theme-learn github.com/matsuyoshi30/harbor github.com/mattbutton/silhouette-hugo github.com/mattstratton/castanet @@ -288,9 +288,9 @@ github.com/michimani/simplog github.com/miguelsimoni/hugo-initio github.com/mikeblum/hugo-now github.com/mismith0227/hugo_theme_pickles -github.com/Mitrichius/hugo-theme-anubis github.com/mivinci/hugo-theme-minima github.com/mmrath/hugo-bootstrap +github.com/mohamedelhefni/zahi github.com/monkeyWzr/hugo-theme-cactus github.com/Morgscode/hugo-theme-spaced-blog github.com/mrhelloboy/seven @@ -301,8 +301,7 @@ github.com/nanxstats/hugo-tanka github.com/naro143/hugo-coder-portfolio github.com/natarajmb/charaka-hugo-theme github.com/nathancday/min_night -github.com/negrel/hugo-theme-pico -github.com/nicokaiser/hugo-theme-gallery +github.com/nicokaiser/hugo-theme-gallery/v4 github.com/Nigh/tinyworks github.com/nightswinger/hugo-theme-coyote github.com/niklasbuschmann/contrast-hugo @@ -324,7 +323,6 @@ github.com/opera7133/tella github.com/opera7133/vnovel github.com/orf/bare-hugo-theme github.com/pacollins/calligraphy -github.com/panr/hugo-theme-hello-friend github.com/panr/hugo-theme-terminal github.com/parsiya/Hugo-Octopress github.com/paulmartins/hugo-digital-garden-theme @@ -381,7 +379,6 @@ github.com/sergiobarriel/tophat-theme github.com/serkodev/holy github.com/setsevireon/photophobia github.com/shaform/hugo-theme-den -github.com/shenoybr/hugo-goa github.com/siegerts/hugo-theme-basic github.com/sieis/re-cover github.com/slashformotion/hugo-tufte @@ -411,6 +408,7 @@ github.com/tatsatb/TatBanTheme2.0 github.com/Tazeg/hugo-blog-jeffprod github.com/tblyler/light-hugo github.com/tcgriffith/hugo-owaraiclub +github.com/techbarrack/terminal-hugo-theme github.com/the2ne/hugo-frais github.com/thegeeklab/hugo-geekblog github.com/thegeeklab/hugo-geekdoc @@ -420,6 +418,7 @@ github.com/thingsym/hugo-theme-techdoc github.com/thomasheller/crab github.com/tnwhitwell/hugo-startpage-theme github.com/tohn/linkshrubbery +github.com/tomfran/typo github.com/tomowang/hugo-theme-tailwind github.com/tosi29/inkblotty github.com/tummychow/lanyon-hugo @@ -436,6 +435,7 @@ github.com/urjaacharya/redgood github.com/vaga/hugo-theme-m10c github.com/vantagedesign/ace-documentation github.com/victoriadrake/hugo-theme-introduction +github.com/victoriadrake/hugo-theme-quint github.com/victoriadrake/neofeed-theme/v2 github.com/Vimux/Binario github.com/vimux/blank @@ -451,7 +451,6 @@ github.com/willfaught/paige github.com/WingLim/hugo-tania github.com/Wivik/am-writing-hugo-theme github.com/Wivik/vinyl-records-collection-theme -github.com/wjh18/hugo-liftoff/v3 github.com/wlh320/hugo-theme-hulga github.com/wtoll/venture github.com/xaprb/story @@ -478,11 +477,6 @@ github.com/zetxek/adritian-free-hugo-theme github.com/zhaohuabing/hugo-theme-cleanwhite github.com/zhe/hugo-theme-slim github.com/zjedi/hugo-scroll -github.com/zwbetz-gh/cayman-hugo-theme -github.com/zwbetz-gh/cupper-hugo-theme -github.com/zwbetz-gh/minimal-bootstrap-hugo-theme -github.com/zwbetz-gh/papercss-hugo-theme -github.com/zwbetz-gh/vanilla-bootstrap-hugo-theme github.com/zzossig/hugo-theme-zdoc github.com/zzossig/hugo-theme-zzo github.com/zzzmisa/hugo-theme-doors