diff --git a/.gitignore b/.gitignore index 0dd9c0ebd..e7407c5bf 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,9 @@ public # OSX .DS_Store +# Jetbrains +.idea + # Logs logs *.log @@ -72,4 +75,6 @@ typings/ content/test # Visual Studio Code project settings -.vscode \ No newline at end of file +.vscode +# Local Netlify folder +.netlify diff --git a/.hugo_build.lock b/.hugo_build.lock new file mode 100644 index 000000000..e69de29bb diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index e7e9d11d4..000000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -# Default ignored files -/workspace.xml diff --git a/.idea/jamstackthemes.iml b/.idea/jamstackthemes.iml deleted file mode 100644 index c956989b2..000000000 --- a/.idea/jamstackthemes.iml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index 28a804d89..000000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 99bf95a63..000000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 94a25f7f4..000000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/README.md b/README.md index 9640f5001..0b84a8ce3 100644 --- a/README.md +++ b/README.md @@ -6,34 +6,33 @@ A list of themes and starters for the Jamstack and static site generators. https Anyone can submit an open-source theme by doing a pull request. -1. Fork this repo and create a new markdown `.md` file in `content/theme` folder. For example `hugo-air-.md` -2. Edit the markdown file with the required front-matter as shown below. -3. Submit a pull-request with the title **Theme Submission: theme-name** (replace theme-name with your themes name) -4. You **do not** need to generate the Github stars or theme screenshots. Please just submit the markdown file in the PR. +1. Fork this repo and create a new markdown `.md` file in `content/theme` folder. For example `hugo-air.md`. +2. Add the required front-matter as shown in the **Example Theme** below. +3. Submit a pull request -The markdown file should contain the following front-matter. Before submitting your theme, please **remove the comments** from the front-matter. +> 💡 Another option is to add a new file using the [Github UI](https://github.com/stackbit/jamstackthemes/tree/master/content/theme) _(click the "add file" button)_ +**Example Theme** ```yaml --- title: "My Theme Name" github: https://github.com/username/repo -demo: https://www.demo.com # Please make sure this links to a theme demo and not your personal/business site. The demo url must use https +demo: https://www.demo.com author: authorname -date: 2019-08-20 # Enter the date you submitted the theme YYYY-MM-DD -github_branch: master # Enter the repos default branch +date: 2024-03-18 ssg: - - Gridsome # at least 1 ssg is required + - Astro cms: - - No CMS # at least 1 cms is required. If your theme uses markdown (no CMS) the cms should be "No CMS" + - No CMS css: - - Bootstrap # css is optional + - Tailwind archetype: - Blog - Portfolio -description: This theme is a lightweight Gridsome starter kit which is perfect for a blog or a portfolio +description: This is an amazing theme and this is a small description about it! --- -# A simple starter kit for Gridsome +# A simple starter kit for Astro.js This theme is a lightweight starter kit. It also gives you a well organised starting point to extend it for yourself. @@ -45,81 +44,10 @@ This theme is a lightweight starter kit. It also gives you a well organised star * Progressively enhanced, semantic and accessible ``` -## Submitting New Categories (Taxonomy Terms) -Themes can be categorised with terms from these 4 taxonomies. `ssg`, `cms`, `css` and `archetype` - -If you are adding a theme which uses an SSG or CMS which doesnt exist you will need to add it as part of your pull-request. - -1. Create a new taxonomy term by creating the markdown file under `content/ssg/` or `content/cms`. For example let's say you wanted to add a new SSG called "Super Duper". Add a file under `content/ssg/super-duper/_index.md` and add the following frontmatter -``` ---- -title: "Super Duper" -icon: images/icons/super-duper.svg -official_url: https://super-duper.org ---- -``` - -2. Add the icon. You will need to upload an icon into `static/images/icons`. The icon should in SVG format under 3KB. If it's a PNG please make sure the size is 60x60px and the size is as small as possible (you should be able to keep it under 5KB) -3. Update the Javascript filter logic. Update the file `themes/jamstackthemes/assets/js/filter/filter-groups.js` and add `super-duper` to the ssg array. - - -## Contribution Guidelines + +## Submission Guidelines * Any open source themes with a public github repo can be submitted. -* Please make sure the demo URL links to a demo of the theme and not your personal or business site. - - -## Develop Locally - -Github stars, image thumbnails and last commit date are generated at build time when this site is deployed to Netlify. Basically the Netlify site runs `npm run deploy` - -While you may run these scripts locally for testing purposes you should not submit any of the generated files with your pull-request. Just submit the markdown file. - -This site is built on [Hugo](https://gohugo.io/) - -Development Server - -``` -hugo serve -``` - -Build Site - -``` -hugo -``` - -## Generate Github stars, image screenshots etc - -``` -npm install -export GITHUB_TOKEN=XXX -npm run fetch -``` - -> Generating github data requires a Github Token. You can generate this token in your Github account at settings > developer settings > personal access tokens https://github.com/settings/tokens - - -### Generate Github Data - -Calls Github API and updates `data/themes.json` with data like number of stars, last commit etc. - -``` -npm run generate-github -``` - -### Capture Screenshots - -Take screenshots of each theme and store the files in `static/capture` - -``` -npm run capture-screenshots -``` - -### Generate Thumbnails - -Will generate thumbnails for each theme. Uses Hires screenshots from `static/capture` and stores files in `static/images/theme/thumbnails`. - -``` -npm run generate-thumbnails -``` +* Please make sure the `demo` links to a theme demo and not your personal/business site. The demo url must use https +* at least 1 `ssg` is required. +* at least 1 `cms` is required. If your theme uses markdown (no CMS) the cms should be "No CMS" diff --git a/config.toml b/config.toml index 0ad5cb808..90f40510a 100644 --- a/config.toml +++ b/config.toml @@ -5,15 +5,16 @@ theme = "jamstackthemes" paginate = 18 summaryLength = 10 # enableGitInfo = false + pygmentsCodeFences = true pygmentsCodefencesGuessSyntax = true pygmentsUseClasses = true [params] - google_analytics_id = "" description = "Over 1000 themes and starters for Jamstack and static site generators." stackbit_button = true iframe_demo = true + assets_url = "https://assets.jamstackthemes.dev" [theme_card] show_archetype_icons = false show_services_icons = false @@ -31,6 +32,7 @@ pygmentsUseClasses = true mediaType = "text/html" isHTML = "true" path = "demo" + permalinkable = "true" [outputs] home = ["HTML","RSS","JSON"] diff --git a/content/archetype/admin/_index.md b/content/archetype/admin/_index.md new file mode 100644 index 000000000..544a47bbc --- /dev/null +++ b/content/archetype/admin/_index.md @@ -0,0 +1,4 @@ +--- +title: "Admin" +icon: images/icons/admin.svg +--- diff --git a/content/archetype/agency/_index.md b/content/archetype/agency/_index.md deleted file mode 100644 index 9cecef0ef..000000000 --- a/content/archetype/agency/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -title: "Agency" -icon: images/icons/agency.svg ---- \ No newline at end of file diff --git a/content/archetype/business/_index.md b/content/archetype/business/_index.md index 353ba3997..b00ecda06 100644 --- a/content/archetype/business/_index.md +++ b/content/archetype/business/_index.md @@ -1,4 +1,4 @@ --- title: "Business" -icon: images/icons/noun_triangles_329583.svg +icon: images/icons/business.svg --- \ No newline at end of file diff --git a/content/archetype/ecommerce/_index.md b/content/archetype/ecommerce/_index.md index 88f4ab356..97145b018 100644 --- a/content/archetype/ecommerce/_index.md +++ b/content/archetype/ecommerce/_index.md @@ -1,4 +1,4 @@ --- title: "Ecommerce" -icon: images/icons/noun_Twelve Triangles_327786.svg +icon: images/icons/ecommerce.svg --- diff --git a/content/archetype/event/_index.md b/content/archetype/event/_index.md new file mode 100644 index 000000000..bf88eb7c9 --- /dev/null +++ b/content/archetype/event/_index.md @@ -0,0 +1,4 @@ +--- +title: "Event" +icon: images/icons/event.svg +--- diff --git a/content/archetype/multi-page/_index.md b/content/archetype/multi-page/_index.md deleted file mode 100644 index 9c3667220..000000000 --- a/content/archetype/multi-page/_index.md +++ /dev/null @@ -1,3 +0,0 @@ ---- -title: "Multi Page" ---- diff --git a/content/archetype/multi-purpose/_index.md b/content/archetype/multi-purpose/_index.md deleted file mode 100644 index a3acdcafc..000000000 --- a/content/archetype/multi-purpose/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -title: "Multi Purpose" -icon: images/icons/noun_Triangle Abstract_327762.svg ---- \ No newline at end of file diff --git a/content/archetype/single-page/_index.md b/content/archetype/single-page/_index.md index b30fa2ce0..e049b647c 100644 --- a/content/archetype/single-page/_index.md +++ b/content/archetype/single-page/_index.md @@ -1,4 +1,4 @@ --- title: "Single Page" -icon: images/icons/noun_down_329586.svg +icon: images/icons/single-page.svg --- diff --git a/content/cms/decapcms/_index.md b/content/cms/decapcms/_index.md new file mode 100644 index 000000000..62f83b8c5 --- /dev/null +++ b/content/cms/decapcms/_index.md @@ -0,0 +1,7 @@ +--- +title: "DecapCMS" +icon: images/icons/decapcms.svg +official_url: https://decapcms.org/ +vitalstats_url: https://jamstack.org/headless-cms/decap-cms/ +taxonomy: cms +--- \ No newline at end of file diff --git a/content/cms/directus/_index.md b/content/cms/directus/_index.md index 69917b2ac..478977611 100644 --- a/content/cms/directus/_index.md +++ b/content/cms/directus/_index.md @@ -3,5 +3,4 @@ title: "Directus" icon: images/icons/directus.svg official_url: https://directus.io/ taxonomy: cms -draft: true --- diff --git a/content/cms/flotiq/_index.md b/content/cms/flotiq/_index.md new file mode 100644 index 000000000..7ec1d0f0b --- /dev/null +++ b/content/cms/flotiq/_index.md @@ -0,0 +1,6 @@ +--- +title: "Flotiq" +icon: images/icons/flotiq.svg +official_url: https://flotiq.com/ +taxonomy: cms +--- diff --git a/content/cms/graphcms/_index.md b/content/cms/graphcms/_index.md new file mode 100644 index 000000000..e45a3a007 --- /dev/null +++ b/content/cms/graphcms/_index.md @@ -0,0 +1,7 @@ +--- +title: "GraphCMS" +icon: images/icons/graphcms.svg +official_url: https://www.graphcms.com/ +vitalstats_url: https://jamstack.org/headless-cms/graphcms/ +taxonomy: cms +--- \ No newline at end of file diff --git a/content/cms/notion/_index.md b/content/cms/notion/_index.md new file mode 100644 index 000000000..c209a8a5c --- /dev/null +++ b/content/cms/notion/_index.md @@ -0,0 +1,6 @@ +--- +title: "Notion" +icon: images/icons/notion.svg +official_url: https://notion.so/ +taxonomy: cms +--- \ No newline at end of file diff --git a/content/cms/stackbit/_index.md b/content/cms/stackbit/_index.md index 1a8d86e85..fb5c58c4e 100644 --- a/content/cms/stackbit/_index.md +++ b/content/cms/stackbit/_index.md @@ -3,5 +3,4 @@ title: "Stackbit" icon: images/icons/stackbit.svg official_url: https://www.stackbit.com taxonomy: cms -draft: true --- diff --git a/content/cms/storyblok/_index.md b/content/cms/storyblok/_index.md index 9957db9be..91b6ac54b 100644 --- a/content/cms/storyblok/_index.md +++ b/content/cms/storyblok/_index.md @@ -4,5 +4,4 @@ icon: images/icons/storyblok.svg official_url: https://www.storyblok.com/ vitalstats_url: https://headlesscms.org/projects/storyblok taxonomy: cms -draft: true --- \ No newline at end of file diff --git a/content/cms/supabase/_index.md b/content/cms/supabase/_index.md new file mode 100644 index 000000000..e5d08551f --- /dev/null +++ b/content/cms/supabase/_index.md @@ -0,0 +1,5 @@ +--- +title: "Supabase" +icon: images/icons/supabase.svg +official_url: https://supabase.com/ +--- \ No newline at end of file diff --git a/content/cms/tina/_index.md b/content/cms/tina/_index.md new file mode 100644 index 000000000..3d6ce3a34 --- /dev/null +++ b/content/cms/tina/_index.md @@ -0,0 +1,7 @@ +--- +title: "Tina" +icon: images/icons/tina.svg +official_url: https://tina.io/ +vitalstats_url: https://jamstack.org/headless-cms/tinacms/ +taxonomy: cms +--- \ No newline at end of file diff --git a/content/cms/wisp/_index.md b/content/cms/wisp/_index.md new file mode 100644 index 000000000..7e26988c2 --- /dev/null +++ b/content/cms/wisp/_index.md @@ -0,0 +1,6 @@ +--- +title: "Wisp" +icon: images/icons/wisp.svg +official_url: https://www.wisp.blog/ +taxonomy: cms +--- diff --git a/content/css/chota/_index.md b/content/css/chota/_index.md new file mode 100644 index 000000000..1053a00fd --- /dev/null +++ b/content/css/chota/_index.md @@ -0,0 +1,5 @@ +--- +title: "Chota" +icon: images/icons/chota.svg +official_url: https://jenil.github.io/chota/ +--- \ No newline at end of file diff --git a/content/css/css/_index.md b/content/css/css/_index.md new file mode 100644 index 000000000..3c6e73a75 --- /dev/null +++ b/content/css/css/_index.md @@ -0,0 +1,4 @@ +--- +title: "CSS" +icon: images/icons/css.svg +--- \ No newline at end of file diff --git a/content/css/material-ui/_index.md b/content/css/material-ui/_index.md new file mode 100644 index 000000000..a2b7c9e01 --- /dev/null +++ b/content/css/material-ui/_index.md @@ -0,0 +1,6 @@ +--- +title: "Material Ui" +icon: images/icons/material-ui.svg +official_url: https://mui.com/ +taxonomy: css +--- \ No newline at end of file diff --git a/content/css/styled-components/_index.md b/content/css/styled-components/_index.md new file mode 100644 index 000000000..5f10d0954 --- /dev/null +++ b/content/css/styled-components/_index.md @@ -0,0 +1,5 @@ +--- +title: "Styled Components" +icon: images/icons/styled-components.png +official_url: https://styled-components.com/ +--- diff --git a/content/css/stylus/_index.md b/content/css/stylus/_index.md new file mode 100644 index 000000000..419a50d36 --- /dev/null +++ b/content/css/stylus/_index.md @@ -0,0 +1,5 @@ +--- +title: "Stylus" +icon: images/icons/stylus.svg +official_url: https://stylus-lang.com/ +--- diff --git a/content/css/vuetify/_index.md b/content/css/vuetify/_index.md new file mode 100644 index 000000000..522568c31 --- /dev/null +++ b/content/css/vuetify/_index.md @@ -0,0 +1,5 @@ +--- +title: "Vuetify" +icon: images/icons/vuetify.svg +official_url: https://vuetifyjs.com/ +--- \ No newline at end of file diff --git a/content/ssg/astro/_index.md b/content/ssg/astro/_index.md new file mode 100644 index 000000000..3e0297a60 --- /dev/null +++ b/content/ssg/astro/_index.md @@ -0,0 +1,7 @@ +--- +title: "Astro" +icon: images/icons/astro.svg +official_url: https://astro.build/ +vitalstats_url: https://www.staticgen.com/astro +taxonomy: ssg +--- diff --git a/content/ssg/docusaurus/_index.md b/content/ssg/docusaurus/_index.md index 9635a045f..eb3ee8ccc 100644 --- a/content/ssg/docusaurus/_index.md +++ b/content/ssg/docusaurus/_index.md @@ -4,5 +4,4 @@ icon: images/icons/docusaurus.svg official_url: https://docusaurus.io/ vitalstats_url: https://www.staticgen.com/docusaurus taxonomy: ssg -draft: true --- diff --git a/content/ssg/gozer/_index.md b/content/ssg/gozer/_index.md new file mode 100644 index 000000000..f2ee7066a --- /dev/null +++ b/content/ssg/gozer/_index.md @@ -0,0 +1,6 @@ +--- +title: "Gozer" +icon: images/icons/gozer.svg +official_url: https://github.com/dannyvankooten/gozer +taxonomy: ssg +--- \ No newline at end of file diff --git a/content/ssg/hyde/_index.md b/content/ssg/hyde/_index.md deleted file mode 100644 index f4be83f55..000000000 --- a/content/ssg/hyde/_index.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: "Hyde" -icon: images/icons/hyde.svg -official_url: https://hyde.github.io/ -draft: true ---- diff --git a/content/ssg/metalsmith/_index.md b/content/ssg/metalsmith/_index.md index ce9de9bf4..274d4c90c 100644 --- a/content/ssg/metalsmith/_index.md +++ b/content/ssg/metalsmith/_index.md @@ -4,5 +4,4 @@ icon: images/icons/metalsmith.svg official_url: https://metalsmith.io/ vitalstats_url: https://www.staticgen.com/metalsmith taxonomy: ssg -draft: true --- diff --git a/content/ssg/remix/_index.md b/content/ssg/remix/_index.md new file mode 100644 index 000000000..71fe23331 --- /dev/null +++ b/content/ssg/remix/_index.md @@ -0,0 +1,7 @@ +--- +title: "Remix" +icon: images/icons/remix.svg +official_url: https://remix.run/ +vitalstats_url: https://www.staticgen.com/remix +taxonomy: ssg +--- \ No newline at end of file diff --git a/content/ssg/sveltekit/_index.md b/content/ssg/sveltekit/_index.md new file mode 100644 index 000000000..dcd34a639 --- /dev/null +++ b/content/ssg/sveltekit/_index.md @@ -0,0 +1,6 @@ +--- +title: "Sveltekit" +icon: images/icons/sveltekit.svg +official_url: https://kit.svelte.dev +taxonomy: ssg +--- \ No newline at end of file diff --git a/content/ssg/tanstack/_index.md b/content/ssg/tanstack/_index.md new file mode 100644 index 000000000..76970a63e --- /dev/null +++ b/content/ssg/tanstack/_index.md @@ -0,0 +1,6 @@ +--- +title: "TanStack Start" +icon: images/icons/tanstack.svg +official_url: https://tanstack.com/start/latest +taxonomy: ssg +--- \ No newline at end of file diff --git a/content/ssg/zola/_index.md b/content/ssg/zola/_index.md new file mode 100644 index 000000000..12964cb87 --- /dev/null +++ b/content/ssg/zola/_index.md @@ -0,0 +1,7 @@ +--- +title: "Zola" +icon: images/icons/zola.svg +official_url: https://www.getzola.org/ +vitalstats_url: https://jamstack.org/generators/zola/ +taxonomy: ssg +--- diff --git a/content/theme/11straps.md b/content/theme/11straps.md new file mode 100644 index 000000000..7381ba1db --- /dev/null +++ b/content/theme/11straps.md @@ -0,0 +1,36 @@ +--- +title: 11straps +github: https://github.com/holger1411/11straps +demo: https://11straps-demo.netlify.app/ +author: Holger Koenemann +date: 2021-07-10T00:00:00.000Z +ssg: + - Eleventy +cms: + - No CMS +css: + - Bootstrap + - PostCSS + - SCSS +archetype: + - Blog + - Portfolio + - Business +description: A Eleventy + Bootstrap 5 starter kit. +stale: false +--- + +# A combination of Eleventy and Bootstrap 5 + +11straps combines static site generation via Eleventy and frontend styling via Bootstrap 5. It comes with a dev and a prod build process. The dev output is fast but dirty, the prod output takes a bit longer but will clean, purege, minify, uglify etc. the output. + +## Features + +* Fast dev output for local development +* Clean prod output for going live (incl. PurgeCSS) +* Build-in template to overwrite Bootstrap 5 variables +* Basic Blog included +* Netlify config included. +* Local server and tweaked browser sync. Will update your browser on .scss changes, too. +* Sample integration of Inter UI font +* Free and open source diff --git a/content/theme/11ty-11r.md b/content/theme/11ty-11r.md index e69e25ede..1402d95e0 100644 --- a/content/theme/11ty-11r.md +++ b/content/theme/11ty-11r.md @@ -1,10 +1,9 @@ --- title: 11r -github: 'https://github.com/reeseschultz/11r' -demo: 'https://reeseschultz.github.io/11r/' +github: https://github.com/reeseschultz/11r +demo: https://reeseschultz.github.io/11r/ author: Reese Schultz date: 2020-08-26T00:00:00.000Z -github_branch: master ssg: - Eleventy cms: diff --git a/content/theme/11ty-Serene.md b/content/theme/11ty-Serene.md new file mode 100644 index 000000000..165ce1397 --- /dev/null +++ b/content/theme/11ty-Serene.md @@ -0,0 +1,29 @@ +--- +title: "11ty Serene" +github: https://github.com/CLCK0622/11ty-Serene +demo: https://11ty-serene.vercel.app/ +author: CLCK +date: 2024-08-07 +ssg: + - Eleventy +cms: + - No CMS +css: + - Tailwind + - PostCSS +archetype: + - Homepage + - Portfolio +description: A minimal theme for a landing page, featuring a simple structure, smooth scrolling, and scroll-revealing effects. +--- + +# 11ty-theme-Serene + +A minimal theme for a landing page, featuring a simple structure, smooth scrolling, and scroll-revealing effects. + +Built with [11ty](https://www.11ty.dev/) and [Tailwind CSS](https://tailwindcss.com/). + +Made by [CLCK](https://github.com/CLCK0622). + +![image](https://github.com/user-attachments/assets/7d3183a2-68dd-48e3-926d-8166a7abfa6b) + diff --git a/content/theme/11ty-bliss.md b/content/theme/11ty-bliss.md new file mode 100644 index 000000000..0caa25e6d --- /dev/null +++ b/content/theme/11ty-bliss.md @@ -0,0 +1,34 @@ +--- +title: Bliss +github: https://github.com/lwojcik/eleventy-template-bliss +demo: https://eleventy-bliss.vercel.app/ +author: Łukasz Wójcik +date: 2023-02-19T00:00:00.000Z +ssg: + - Eleventy +cms: + - No CMS +css: + - scss +archetype: + - Blog +description: Elegant single-column blog template for Eleventy +stale: false +--- + +# Bliss - Blog Template For Eleventy + +Bliss is a single-column blog template for Eleventy with strong focus on simplicity without sacrificing functionality. + +## Features + +- light / dark mode switcher + honoring browser color scheme preference +- sharing buttons for popular social media (Mastodon, Twitter, FB and a few more) + copying post URL to clipboard +- Mastodon integration: auto-generated `.well-known/webfinger` file + adding `` meta tags for verifying site ownership +- translation ready +- PWA ready +- RSS, JSON, Twtxt.txt feeds + JSON-LD data +- accessibility features +- HSL color palette and CSS variables for quick personalization +- custom disclaimers alongside post content +- and more diff --git a/content/theme/11ty-blog-starter.md b/content/theme/11ty-blog-starter.md new file mode 100644 index 000000000..cd286425d --- /dev/null +++ b/content/theme/11ty-blog-starter.md @@ -0,0 +1,72 @@ +--- +title: Eleventy Blog Starter +github: https://github.com/netlify-templates/eleventy-blog-starter +demo: https://11ty-blog-starter-demo.netlify.app/ +author: Netlify Templates +date: 2024-12-11 +ssg: + - Eleventy +cms: + - No Cms +css: + - tailwind +archetype: + - Blog + - Personal +description: >- + 11ty Starter showing how to build a blog with the Eleventy and Tailwind CSS. +featured: false +netlify_deploy: https://app.netlify.com/start/deploy?repository=https://github.com/netlify-templates/eleventy-blog-starter +--- + +A starter repository showing how to build a blog with the [Eleventy](https://www.11ty.dev/) and [Tailwind CSS](https://tailwindcss.com/). + +**View demo:** [https://11ty-blog-starter-demo.netlify.app/](https://11ty-blog-starter-demo.netlify.app/) + +## Deploying to Netlify + +If you click "Deploy to Netlify" button, it will create a new repo for you that looks exactly like this one, and sets that repo up immediately for deployment on Netlify. + +[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/netlify-templates/eleventy-blog-starter) + + +## Getting Started + +1. Clone this Repository + +``` +git clone https://github.com/netlify-templates/eleventy-blog-starter.git +``` + +2. Install dependencies + +``` +npm install +``` + +3. Run Eleventy locally + +``` +npm run dev +``` + +4. Generate a production-ready build + +``` +npm run build +``` + +Or you can run [debug mode](https://www.11ty.dev/docs/debugging/) to see all the internals. + +## Project Structure + +- `content/blog/` has the blog posts but really they can live in any directory. They need only the `posts` tag to be included in the blog posts [collection](https://www.11ty.dev/docs/collections/). +- Use the `eleventyNavigation` key (via the [Eleventy Navigation plugin](https://www.11ty.dev/docs/plugins/navigation/)) in your front matter to add a template to the top level site navigation. This is in use on `content/index.njk` and `content/about/index.md`. +- Content can be in _any template format_ (blog posts needn’t exclusively be markdown, for example). Configure your project’s supported templates in `eleventy.config.js` -> `templateFormats`. +- The `public` folder in your input directory will be copied to the output folder (via `addPassthroughCopy` in the `eleventy.config.js` file). This means `./public/*` will live at `./_site/*` after your build completes. +- This project uses three [Eleventy Layouts](https://www.11ty.dev/docs/layouts/): + - `_includes/layouts/base.njk`: the top level HTML structure + - `_includes/layouts/home.njk`: the home page template (wrapped into `base.njk`) + - `_includes/layouts/post.njk`: the blog post template (wrapped into `base.njk`) +- `_includes/postslist.njk` is a Nunjucks include and is a reusable component used to display a list of all the posts. `content/index.njk` has an example of how to use it. + diff --git a/content/theme/11ty-demo-snipcart.md b/content/theme/11ty-demo-snipcart.md index 477d31955..ba51bb705 100644 --- a/content/theme/11ty-demo-snipcart.md +++ b/content/theme/11ty-demo-snipcart.md @@ -1,7 +1,7 @@ --- title: Eleventy 2 Snipcart -github: 'https://github.com/snipcart/11ty-demo-snipcart' -demo: 'https://snipcart-11ty-demo.netlify.com/' +github: https://github.com/snipcart/11ty-demo-snipcart +demo: https://snipcart-11ty-demo.netlify.com/ author: Snipcart ssg: - Eleventy @@ -12,7 +12,6 @@ archetype: services: - Snipcart date: 2018-10-03T18:24:48.000Z -github_branch: master description: A demo app built with JavaScript SSG 11ty stale: true --- diff --git a/content/theme/11ty-docs.md b/content/theme/11ty-docs.md new file mode 100644 index 000000000..e1490aa02 --- /dev/null +++ b/content/theme/11ty-docs.md @@ -0,0 +1,29 @@ +--- +title: 11ty documentation template using Tailwind CSS +github: https://github.com/SpinalCMS/11ty-docs-template +demo: https://11ty-docs-theme.spinalcms.com/ +author: Spinal CMS Developers +date: 2022-09-22T00:00:00.000Z +ssg: + - Eleventy +cms: + - No CMS +css: + - Tailwind +archetype: + - Documentation +description: A 11ty + Tailwind CSS theme for your documentation site +disabled: true +disabled_reason: demo url not found +stale: false +--- + +# Eleventy documentation template using Tailwind CSS + +An 11ty documentation site theme, built with Tailwind CSS. + +## Features + +* Responsive (non-JS collapsible/expandable navigation sidebar) +* Group resources by “section” stored in frontmatter +* Search using DuckDuckGo form submit (non-JS) diff --git a/content/theme/11ty-fundamenty.md b/content/theme/11ty-fundamenty.md index ef536f568..6bda6a9f9 100644 --- a/content/theme/11ty-fundamenty.md +++ b/content/theme/11ty-fundamenty.md @@ -1,10 +1,9 @@ --- title: Fundamenty -github: 'https://github.com/creasoft-dev/fundamenty' -demo: 'https://creasoft-dev.github.io/fundamenty/' +github: https://github.com/creasoft-dev/fundamenty +demo: https://creasoft-dev.github.io/fundamenty/ author: Young-Suk Ahn Park date: 2020-07-24T00:00:00.000Z -github_branch: master ssg: - Eleventy cms: @@ -14,7 +13,6 @@ css: archetype: - Blog - Business - - Multi Purpose description: >- 11ty Starter with Multi-language support, SEO-friendly, GitHub/GitLab Pages-ready diff --git a/content/theme/11ty-hylia-forestry.md b/content/theme/11ty-hylia-forestry.md index 427a5f7f8..ada0b463e 100644 --- a/content/theme/11ty-hylia-forestry.md +++ b/content/theme/11ty-hylia-forestry.md @@ -1,18 +1,17 @@ --- title: Eleventy Hylia Forestry -github: 'https://github.com/DirtyF/hylia-forestry' -demo: 'https://hylia-forestry.netlify.com' +github: https://github.com/DirtyF/hylia-forestry +demo: https://hylia-forestry.netlify.com author: DirtyF ssg: - Eleventy cms: - Forestry date: 2019-08-11T00:00:00.000Z -github_branch: master description: >- Hylia is a lightweight Eleventy starter kit to help you to create your own blog or personal website. -stale: false +stale: true --- Hylia is a lightweight Eleventy starter kit with Forestry CMS pre-configured, so that you can one-click install a progressive, accessible blog in minutes. diff --git a/content/theme/11ty-hylia.md b/content/theme/11ty-hylia.md index 37e72522f..4bf74e821 100644 --- a/content/theme/11ty-hylia.md +++ b/content/theme/11ty-hylia.md @@ -1,30 +1,30 @@ --- title: Eleventy Hylia -github: 'https://github.com/andybelldesign/hylia' -demo: 'https://hylia.website/' +github: https://github.com/andybelldesign/hylia +demo: https://hylia.website/ author: Andy Bell ssg: - Eleventy cms: - - NetlifyCMS + - DecapCMS date: 2019-06-11T20:15:02.000Z github_branch: master -featured: true +featured: false description: >- Hylia is a lightweight Eleventy starter kit to help you to create your own blog or personal website. -stale: false +stale: true --- # A simple starter kit for Eleventy -Hylia is a lightweight [Eleventy](https://11ty.io) starter kit with [Netlify CMS](https://www.netlifycms.org/) pre-configured, so that you can one-click install a progressive, accessible blog in minutes. It also gives you a well organised starting point to extend it for yourself. +Hylia is a lightweight [Eleventy](https://11ty.io) starter kit with [Netlify CMS](https://www.DecapCMS.org/) pre-configured, so that you can one-click install a progressive, accessible blog in minutes. It also gives you a well organised starting point to extend it for yourself. ## Features Hylia version 0.5.1 features: -✍️ A pre-configured [Netlify CMS](https://www.netlifycms.org/) setup +✍️ A pre-configured [Netlify CMS](https://www.DecapCMS.org/) setup 🎨 Customisable design tokens to make it your own 🌍 Customisable global data and navigation 📂 Tags and tag archives diff --git a/content/theme/11ty-landing-page.md b/content/theme/11ty-landing-page.md new file mode 100644 index 000000000..08dd18f10 --- /dev/null +++ b/content/theme/11ty-landing-page.md @@ -0,0 +1,29 @@ +--- +title: 11ty Landing Page +github: https://github.com/ttntm/11ty-landing-page +demo: https://awesome11ty.ttntm.me +author: ttntm +date: 2021-04-16T00:00:00.000Z +ssg: + - Eleventy +cms: + - No CMS +css: + - PostCSS + - Tailwind +archetype: + - Business +description: A simple landing page built with 11ty and Tailwind CSS. +stale: true +--- + +# 11ty Landing Page + +A simple landing page starter template built with 11ty and Tailwind CSS. + +## Features + +* Modular single page approach based on sections +* Customisable global data for feature lists +* Fully responsive and tested on a wide range of devices +* Fast and low on dependencies diff --git a/content/theme/11ty-multiplicity.md b/content/theme/11ty-multiplicity.md new file mode 100644 index 000000000..d2fb21f31 --- /dev/null +++ b/content/theme/11ty-multiplicity.md @@ -0,0 +1,31 @@ +--- +title: Multiplicity +github: https://github.com/lwojcik/eleventy-template-multiplicity +demo: https://eleventy-m10y.lkmt.us/ +author: Łukasz Wójcik +date: 2023-09-16T00:00:00.000Z +ssg: + - Eleventy +cms: + - No CMS +css: + - scss +archetype: + - Other +description: RSS-based blog aggregator starter pack based on Eleventy +--- + +# Multiplicity - RSS Aggregator Starter Based On Eleventy + +Multiplicity is a simple starter pack based on Eleventy allows you to create a RSS-based aggregator site. + +Alongside the template code, it also contains a GitHub Actions workflow required to keep the site up to date. + +## Features + +- light / dark mode switcher + honoring color scheme preference +- pagination +- translation ready (separate file with static phrases) +- automatic favicon generation +- support for RSS and JSON feeds +- custom avatar alongside each article diff --git a/content/theme/11ty-soft-ui-design.md b/content/theme/11ty-soft-ui-design.md new file mode 100644 index 000000000..2c14c80fd --- /dev/null +++ b/content/theme/11ty-soft-ui-design.md @@ -0,0 +1,35 @@ +--- +title: Eleventy Soft UI Design +github: https://github.com/app-generator/eleventy-soft-ui-design +demo: https://eleventy-soft-ui.appseed-srv1.com/ +author: AppSeed +date: 2021-08-09T00:00:00.000Z +ssg: + - Eleventy +cms: + - Prismic +css: + - Bootstrap +archetype: + - Blog + - Portfolio +description: >- + Eleventy Soft UI is an Eleventy adaptation of Soft UI Design System, a modern + Bootstrap 5 Design, including a Blog system that uses Prismic CMS for content + management +stale: true +--- + +# Open-source starter built with 11ty and prismic CMS + +[Eleventy Soft UI](https://appseed.us/product/eleventy-soft-ui) is an **Eleventy** adaptation of Soft UI Design System (a user-friendly and beautiful design system based on Bootstrap 5), including a Blog system that uses Prismic CMS for content management. +Soft UI Design System is built with over 70 frontend individual elements, like buttons, inputs, navbars, nav tabs, cards, or alerts, giving you the freedom of choosing and combining. + +## Features + +- UI: **Soft UI Design System** / Bootstrap 5 +- **Prismic CMS** for blog posts +- CSS Pipeline (Sass, CleanCSS) +- JS Bundling (Webpack) +- SVG Icon Sprite Generation +- Critical CSS, HTML Minification diff --git a/content/theme/11ty-starter-boilerplate.md b/content/theme/11ty-starter-boilerplate.md index 7da84067a..909960ce3 100644 --- a/content/theme/11ty-starter-boilerplate.md +++ b/content/theme/11ty-starter-boilerplate.md @@ -1,6 +1,6 @@ --- title: Eleventy Starter Boilerplate -github: 'https://github.com/ixartz/Eleventy-Starter-Boilerplate' +github: https://github.com/ixartz/Eleventy-Starter-Boilerplate demo: >- https://creativedesignsguru.com/demo/Eleventy-Starter-Boilerplate/eleventy-starter-boilerplate-presentation/ author: Ixartz @@ -11,9 +11,10 @@ cms: css: - Tailwind date: 2020-06-21T14:48:50.000Z -github_branch: master -description: "\U0001F680 Eleventy Starter Boilerplate is production-ready with SEO-friendly for quickly starting a blog." -stale: false +description: >- + 🚀 Eleventy Starter Boilerplate is production-ready with SEO-friendly for + quickly starting a blog. +stale: true --- # Eleventy Starter Boilerplate diff --git a/content/theme/11ty-yetty.md b/content/theme/11ty-yetty.md new file mode 100644 index 000000000..77d3d0dba --- /dev/null +++ b/content/theme/11ty-yetty.md @@ -0,0 +1,35 @@ +--- +title: Eleventy Yetty +github: https://github.com/ygoex/yetty +demo: https://yetty.netlify.app/ +author: Yolanda Gorriz Exposito +ssg: + - Eleventy +cms: + - No CMS +date: 2021-08-17T00:00:00.000Z +archetype: + - Blog + - Portfolio +description: >- + Yetty is yet another [Eleventy](https://11ty.io) starter kit for my (& your) + new projects. Built with accessibility and performance in mind. +stale: true +--- + +# Yet another starter kit for Eleventy + +Yetty is yet another [Eleventy](https://11ty.io) starter kit for my (& your) new projects. Built with accessibility and performance in mind. It also gives you a well organised starting point to extend it for yourself. + +## Features + +- [Sass/Scss](https://github.com/sass/node-sass): Scss files are compiled before Eleventy builds the site. The files are compiled in the `./src/styles` folder and then will be passed through copy (see `.eleventy.js`) to the new site created under `./dist/`. For Netlify users, an alternative option with plugins is explained here: [https://css-tricks.com/making-my-netlify-build-run-sass/](https://css-tricks.com/making-my-netlify-build-run-sass/). +- [Critical CSS](https://github.com/gregives/eleventy-critical-css): Critical CSS is automatically included in the head of the document using the [eleventy-critical-css plugin](https://www.npmjs.com/package/eleventy-critical-css). +- PostCSS ([Autoprefixer](https://github.com/postcss/autoprefixer) and [PurgeCSS](https://github.com/FullHuman/purgecss)): Both dependencies have been set up to run through the main css stylesheet after Eleventy has generated the dist folder. +- Persistent dark mode using local storage as seen here: [https://css-tricks.com/a-complete-guide-to-dark-mode-on-the-web/](https://css-tricks.com/a-complete-guide-to-dark-mode-on-the-web/) +- Cache busting via filter based on [https://rob.cogit8.org/posts/2020-10-28-simple-11ty-cache-busting/](https://rob.cogit8.org/posts/2020-10-28-simple-11ty-cache-busting/). +- HTML minified on prooduction with [https://www.npmjs.com/package/html-minifier](https://www.npmjs.com/package/html-minifier) package. +- PWA using [https://github.com/okitavera/eleventy-plugin-pwa](https://github.com/okitavera/eleventy-plugin-pwa) plugin. +- JS compilation and minification with [Webpack](https://webpack.js.org/) CLI. +- Image processing with [eleventy-img](https://github.com/11ty/eleventy-img) plugin. Generates multiple sizes images in two different formats (jpg and webp), and markup with `
`, `` and native lazy loading. +- [Modernizr](https://modernizr.com/) CLI: To build a custom and minified version of the library as seen here: [https://v2.14islands.com/blog/2016/04/20/better-way-to-use-modernizr-with-command-line-config/](https://v2.14islands.com/blog/2016/04/20/better-way-to-use-modernizr-with-command-line-config/). Yetty is using it to detect if the browser supports Webp as background-image in CSS. diff --git a/content/theme/11tyframe.md b/content/theme/11tyframe.md index 46eedbaeb..a0be92697 100644 --- a/content/theme/11tyframe.md +++ b/content/theme/11tyframe.md @@ -1,14 +1,13 @@ --- title: 11tyFrame -github: 'https://github.com/octoxalis/11tyframe' -demo: 'https://11tyframe.netlify.com' +github: https://github.com/octoxalis/11tyframe +demo: https://11tyframe.netlify.com author: Octoxalis date: 2019-12-25T00:00:00.000Z -github_branch: master ssg: - Eleventy cms: - No CMS description: A light site frame using Eleventy static site generator -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/Antarctica.md b/content/theme/Antarctica.md new file mode 100644 index 000000000..579660b21 --- /dev/null +++ b/content/theme/Antarctica.md @@ -0,0 +1,54 @@ +--- +title: Antarctica +github: https://github.com/SdtElectronics/jekyll-theme-antarctica +demo: https://sdtelectronics.github.io/jekyll-theme-antarctica/ +author: Sdtelectronics +date: 2021-09-25T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +archetype: + - Blog + - Portfolio +description: Stylish and feature-rich theme for Jekyll +stale: false +--- + + +![4U6cuV.png](https://z3.ax1x.com/2021/09/22/4U6cuV.png) + + +The goal of Antarctica is evolving to an elegant and feature-rich theme across platforms. + + +[Live demo](https://sdtelectronics.github.io/jekyll-theme-antarctica/) + +## Features +* Fully responsive layout achieves best visual on different screens +* Flexible widgets provide extensible functionality +* Integrated [NerdFonts](www.nerdfonts.com) with 3000+ icons +* Automatic sitemap generation with [Jekyll Sitemap](https://github.com/jekyll/jekyll-sitemap) +* Configuration-free search engine optimization with [Jekyll Seo Tag](https://github.com/jekyll/jekyll-seo-tag) +* Reduced JavaScript usage to accelerate loading. No external js file for main frame (Some widgets require external JavaScript). + +## Installation +There are three ways to install: +* If you are hosting the site by yourself, you may prefer to [install as a gem-based theme](https://jekyllrb.com/docs/themes/#installing-a-theme) +* If you are hosting the site on Github pages, you can [install as a remote theme](https://github.blog/2017-11-29-use-any-theme-with-github-pages/) +* You can also fork the master branch of this repository + +## Customization +Customizable options are under [_config.yml](_config.yml). Coments inside will help you to edit them. + +## Roadmap + +| Feature | Planned Version | +| :-------------------------- | :--------------: | +| Scrollable widget bar | 0.2 | +| Bottom nav popup expansion | 0.2 | +| Comment widget improvement | 0.2 | +| Related sites widget | 0.2 | +| Related sites widget | 0.2 | +| Arcylic color scheme | 0.3 | + diff --git a/content/theme/AstroWind.md b/content/theme/AstroWind.md new file mode 100644 index 000000000..73c0d75b3 --- /dev/null +++ b/content/theme/AstroWind.md @@ -0,0 +1,38 @@ +--- +title: AstroWind +github: https://github.com/onwidget/astrowind/ +demo: https://astrowind.vercel.app/ +author: onWidget +date: 2023-03-08T00:00:00.000Z +ssg: + - Astro +cms: + - No CMS +css: + - Tailwind +archetype: + - Blog + - Business + - Multi Purpose +description: >- + AstroWind is a free and open-source template to make your website using Astro + 2.0 + Tailwind CSS. Ready to start a new project and designed taking into + account web best practices. +stale: false +--- + +# 🚀 AstroWind + +**AstroWind** tries to give you quick access to creating a website using [Astro 2.0](https://astro.build/blog/astro-2/) + [Tailwind CSS](https://tailwindcss.com/). It's a free theme focuses on simplicity, good practices and high performance. + +Very little vanilla javascript is used only to provide basic functionality so that each developer decides which framework (React, Vue, Svelte, Solid JS...) to use and how to approach their goals.. + +## Features + +- ✅ Integration with **Tailwind CSS** ([@astrojs/tailwind](https://docs.astro.build/en/guides/integrations-guide/tailwind/)) supporting **Dark mode**. +- ✅ **Production-ready** scores in [Lighthouse](https://web.dev/measure/) and [PageSpeed Insights](https://pagespeed.web.dev/) reports. +- ✅ **Fast and SEO friendly blog** with automatic **RSS feed** ([@astrojs/rss](https://docs.astro.build/en/guides/rss/)), [**MDX** support](https://docs.astro.build/en/guides/integrations-guide/mdx/), **Categories & Tags**, **Social Share**, ... +- ✅ **Image optimization** ([@astrojs/images](https://docs.astro.build/en/guides/integrations-guide/image/)) and **Font optimization**. +- ✅ Generation of **project sitemap** based on your routes ([@astrojs/sitemap](https://docs.astro.build/en/guides/integrations-guide/sitemap/)). +- ✅ **Open Graph tags** for social media sharing. +- ✅ **Analytics** built-in Google Analytics, and Splitbee integration. diff --git a/content/theme/Dark-Portfolio-Template-11ty.md b/content/theme/Dark-Portfolio-Template-11ty.md index c7694aa8c..374c7810a 100644 --- a/content/theme/Dark-Portfolio-Template-11ty.md +++ b/content/theme/Dark-Portfolio-Template-11ty.md @@ -1,10 +1,9 @@ --- title: Dark Porfolio Theme for 11ty -github: 'https://github.com/jmschrack/Dark-Portfolio-Template-11ty/' -demo: 'https://jmschrack.github.io/Dark-Portfolio-Template-11ty/' +github: https://github.com/jmschrack/Dark-Portfolio-Template-11ty/ +demo: https://jmschrack.github.io/Dark-Portfolio-Template-11ty/ author: Jonathan Schrack date: 2020-03-19T00:00:00.000Z -github_branch: dev ssg: - Eleventy cms: @@ -14,7 +13,7 @@ archetype: - Blog - Portfolio description: This is a port of the Dark Portfolio Template by W3C to 11ty! -stale: false +stale: true --- The original, pure CSS template was created by W3C, [you can check it out here!](https://www.w3schools.com/w3css/tryw3css_templates_dark_portfolio.htm) diff --git a/content/theme/Ephesus.md b/content/theme/Ephesus.md new file mode 100644 index 000000000..dd5e0ca2e --- /dev/null +++ b/content/theme/Ephesus.md @@ -0,0 +1,38 @@ +--- +title: Ephesus +github: https://github.com/onepase/Ephesus +demo: https://pardin.us/ephesus +author: Hakan Torun +date: 2021-09-25T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +archetype: + - Blog +description: Ephesus is a minimalist Jekyll theme, designed for personal blog use. +stale: true +--- + +# Ephesus - Minimalist Blog Theme + +Ephesus is a minimalist Jekyll theme, designed for personal blog use. + +### Features + +- [x] Tiny CSS & No Dependency +- [x] Responsive Design +- [x] Dark/Light Theme +- [x] Custom 404 Page +- [x] About Page +- [x] Tags Page +- [x] Code Highlighter +- [x] Social Share +- [x] Atom & Json feeds +- [x] Robots.txt +- [x] Sitemap +- [x] Next & Previous Post +- [x] Pagination +- [x] Disqus +- [x] Mathjax Support +- [x] Google Analytics diff --git a/content/theme/Flexy-mui-free-nextjs-admin.md b/content/theme/Flexy-mui-free-nextjs-admin.md new file mode 100644 index 000000000..2a64e3511 --- /dev/null +++ b/content/theme/Flexy-mui-free-nextjs-admin.md @@ -0,0 +1,51 @@ +--- +title: Flexy Material Ui Admin Template +github: https://github.com/wrappixel/Flexy-admin-Nextjs-Free +demo: https://flexy-admin-nextjs-free.vercel.app/ +author: WrapPixel +date: 2022-04-22T00:00:00.000Z +ssg: + - Next +cms: + - No CMS +css: + - Scss +archetype: + - Admin + - Dashboard +description: >- + Flexy Free Nextjs version is built with Most Popular Framework React + Material-UI. 8+ readymade UI component pages, SCSS, fully Responsive. +stale: false +--- + +# Flexy Material UI Dashboard + +Flexy Material UI Dashboard is easy to use free next js template for your next web application based on Next.js framework. It is built using Next.js, TypeScript, Prettier, ESLint and PostCSS. +Checkout other Nextjs Templates and React Themes by WrapPixel. + +## Flexy Next.js Template Features + +* Nice and Creative Dashboard +* 10+ Custom Page Templates +* 4+ Integrated Plugins +* Charts, Tables and Form Designs +* Cars and Widgets + +## Developer friendly + +* Next.js for Static Site Generator +* Linter with ESLint +* Code Formatter with Prettier +* SEO metadata + +## This Template comes with + +* Code Splitting +* SEO Friendly +* Easy to Customize +* Production Ready + + + + diff --git a/content/theme/Gatsby-Clean-Blog-Starter.md b/content/theme/Gatsby-Clean-Blog-Starter.md new file mode 100644 index 000000000..4356ec4a7 --- /dev/null +++ b/content/theme/Gatsby-Clean-Blog-Starter.md @@ -0,0 +1,29 @@ +--- +title: "Gatsby Clean Blog Starter" +github: https://github.com/soheee-bae/Gatsby-Clean-Blog-Starter +demo: https://gatsbycleanblogstarterkit.gatsbyjs.io/ +author: soheee-bae +date: 2023-02-18 +ssg: + - Gatsby +cms: + - No CMS +css: + - SCSS +archetype: + - Blog +description: A Gatsby Blog starter with clean and simple theme! +--- + +# A simple starter kit for Gatsby + +This theme is a lightweight starter kit with a clean theme. It gives lots of features that are customizable. + +## Features + +* Supports light and dark theme +* Supports pagination +* Supports markdown with Five frontmatter +* Easily customisable design, color and layout +* Clean and simple theme +* Clear nested navigation bar based on the directory structure diff --git a/content/theme/Gesko.md b/content/theme/Gesko.md new file mode 100644 index 000000000..e0b8d33db --- /dev/null +++ b/content/theme/Gesko.md @@ -0,0 +1,42 @@ +--- +title: Gesko +github: https://github.com/P0WEX/Gesko +demo: https://p0wex.github.io/Gesko/ +author: P0WEX +date: 2021-06-06T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +css: + - scss +archetype: + - Blog + - Portfolio +description: Gesko is a simple and minimalistic jekyll blogging theme +stale: false +disabled: true +disabled_reason: demo url not found +--- + +# Gesko - Minimal blogging theme + +Gesko is easly deployable on Github Pages. Static website ready in 2 minute. + + +### Features + + +- [x] Responsive Design +- [x] Dark/Ligh theme +- [x] Inline CSS +- [x] Anchor headings +- [x] Tags & Tag pages +- [x] 404 page +- [x] Robots.txt +- [x] Atom & Json feeds +- [x] Sass +- [x] About page, with Timeline! +- [x] PageSpeed and w3Validator tests PASSED! +- [x] Search bar +- [x] Next & Previous Post diff --git a/content/theme/HugoTheme-VibrantShadows.md b/content/theme/HugoTheme-VibrantShadows.md new file mode 100644 index 000000000..a1a812f3c --- /dev/null +++ b/content/theme/HugoTheme-VibrantShadows.md @@ -0,0 +1,43 @@ +--- +title: "Vibrant Shadows" +github: https://github.com/Softorage/HugoTheme-VibrantShadows +demo: https://vibrantshadows.softorage.com +author: Sofotrage +date: 2023-11-28 +ssg: + - Hugo +cms: + - No CMS +css: + - Bootstrap +archetype: + - Blog +description: A deeply customizable, extremely lightweight, and super fast 'Blog Theme' for Hugo, with mobile support and a lot more. +--- + +# Vibrant Shadows + +A deeply customizable, extremely lightweight, and super fast 'Blog Theme' for Hugo, with mobile support and a lot more. + +If you like our work & find it useful, please consider to star on GitHub. We are on Facebook, X, and Instagram, you can follow us there too! It motivates us! + +## Features + +* Pagination +* Infinite Scrolling +* Smart Dark/Light Mode +* Cookie Consent: "Opt-in", "Opt-out" and "None" +* SEO Optimization and Customization +* Disqus Comments +* Deeply customizable (see [config](https://github.com/Softorage/HugoTheme-VibrantShadows#configuration)) +* Custom Taxonomy options, including tagging and category options +* Deeplinks +* Dedicated 'Table of Contents' +* Logo Alignment +* Sane defaults +* Mobile support with configurable menu alignment +* Syntax Highlighting +* Social media Share buttons on the post +* Custom fonts for different elements +* Ability to customize positions of various elements +* ... a lot more! diff --git a/content/theme/Onassis.md b/content/theme/Onassis.md index 0885f4488..f562ce87d 100644 --- a/content/theme/Onassis.md +++ b/content/theme/Onassis.md @@ -1,14 +1,13 @@ --- title: Onassis -github: 'https://github.com/ohduran/Onassis' -demo: 'https://ohduran.github.io/Onassis' +github: https://github.com/ohduran/Onassis +demo: https://ohduran.github.io/Onassis author: Alvaro Duran ssg: - Jekyll cms: - No Cms date: 2019-10-16T21:11:55.000Z -github_branch: master description: The Onassis Theme for Jekyll -stale: false +stale: true --- diff --git a/content/theme/Paws.md b/content/theme/Paws.md new file mode 100644 index 000000000..6addd0e16 --- /dev/null +++ b/content/theme/Paws.md @@ -0,0 +1,28 @@ +--- +title: Paws +github: https://github.com/codexfelis/paws-template +demo: https://paws.codexfelis.dev/ +author: Codex Felis +date: 2022-03-31T00:00:00.000Z +ssg: + - SvelteKit +cms: + - DecapCMS +archetype: + - Blog + - Portfolio +description: >- + Lightweight and simple static site template for researchers in the Digital + Humanities. +stale: false +--- + +# A simple starter kit for researchers, built with SvelteKit + +Paws is a static site built on SvelteKit, using Markdown for blog content, optionally with Netlify CMS. Developer tooling to help with editing the template in VSCode is provided. + +"Static site" means that the website is made up of pre-built HTML, CSS and a tiny bit of JavaScript. The web pages load the same way every time, unlike dynamic websites, which load differently based on things such as the user's location, the time of day, or user actions. A static website can be served for free or very low cost, and provides a smooth and fast experience for users of the website. There's no content database to make things slow, or pose security issues as in for example a Wordpress site. + + + + diff --git a/content/theme/Xtreme-free-nextjs-admin.md b/content/theme/Xtreme-free-nextjs-admin.md new file mode 100644 index 000000000..f87317130 --- /dev/null +++ b/content/theme/Xtreme-free-nextjs-admin.md @@ -0,0 +1,49 @@ +--- +title: Xtreme NextJs Free Admin Template +github: https://github.com/wrappixel/xtreme-admin-nextjs-free +demo: https://xtreme-admin-nextjs-free.vercel.app/ +author: WrapPixel +date: 2022-03-21T00:00:00.000Z +ssg: + - Next +cms: + - No CMS +css: + - Scss + - Bootstrap +archetype: + - Admin +description: >- + Xtreme admin is Free NextJs React admin Template. It allows you to create + stunning backend application and more. It comes with ready to use UI Blocks & + Elements to help level up the design and aesthetics of your project. Xtreme + Next Js is built on Reactstrap, which is a responsive React Framework. +stale: false +--- + +# Xtreme NextJs Free Dashboard + +The free version comes with elegant grid design that helps you play around with the look and feel of the web app the way you want. Even if you're a novice developer, clean code and easy to customize will get you up to speed in no time. +Checkout other Nextjs Themes and React Templates by WrapPixel. + +## Xtreme Next.js Template Features + +* Nice and Creative Dashboard +* 10+ Custom Page Templates +* 4+ Integrated Plugins +* Charts, Tables and Form Designs +* Cars and Widgets + +## Developer friendly + +* Next.js for Static Site Generator +* Linter with ESLint +* Code Formatter with Prettier +* SEO metadata + +## This Template comes with + +* Code Splitting +* SEO Friendly +* Easy to Customize +* Production Ready diff --git a/content/theme/ace-documentation.md b/content/theme/ace-documentation.md index 36e967d89..9c3e0ca90 100644 --- a/content/theme/ace-documentation.md +++ b/content/theme/ace-documentation.md @@ -1,10 +1,9 @@ --- title: Ace documentation -github: 'https://github.com/vantagedesign/ace-documentation' -demo: 'https://docs.vantage-design.com/ace' +github: https://github.com/vantagedesign/ace-documentation +demo: https://docs.vantage-design.com/ace author: Vantage Design date: 2020-03-15T00:00:00.000Z -github_branch: master ssg: - Hugo cms: diff --git a/content/theme/aether.md b/content/theme/aether.md index 5e5d9aff1..afb93b67e 100644 --- a/content/theme/aether.md +++ b/content/theme/aether.md @@ -1,14 +1,15 @@ --- title: Aether -github: 'https://github.com/josephhutch/aether' -demo: 'https://themes.gohugo.io/theme/aether/' +github: https://github.com/josephhutch/aether +demo: https://themes.gohugo.io/theme/aether/ author: Joe Hutchinson ssg: - Hugo cms: - No Cms date: 2018-03-15T15:52:42.000Z -github_branch: master description: A responsive and clean Hugo theme for blogs stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/affiliates-jekyll-theme.md b/content/theme/affiliates-jekyll-theme.md index cba252269..7e06ed6a8 100644 --- a/content/theme/affiliates-jekyll-theme.md +++ b/content/theme/affiliates-jekyll-theme.md @@ -1,16 +1,15 @@ --- title: Affiliates Jekyll -github: 'https://github.com/wowthemesnet/affiliates-jekyll-theme' -demo: 'https://wowthemesnet.github.io/affiliates-jekyll-theme/' +github: https://github.com/wowthemesnet/affiliates-jekyll-theme +demo: https://wowthemesnet.github.io/affiliates-jekyll-theme/ author: WowThemesNet ssg: - Jekyll cms: - No Cms date: 2018-02-01T16:37:57.000Z -github_branch: master description: Affiliates - Jekyll Blogging Theme for Affiliate Marketers -stale: false +stale: true --- Affiliates - Jekyll Blogging Theme for Affiliate Marketers diff --git a/content/theme/agency-jekyll-theme.md b/content/theme/agency-jekyll-theme.md index 2f4bbdfa7..05c0f99b4 100644 --- a/content/theme/agency-jekyll-theme.md +++ b/content/theme/agency-jekyll-theme.md @@ -1,14 +1,13 @@ --- title: Agency Jekyll -github: 'https://github.com/y7kim/agency-jekyll-theme' -demo: 'https://y7kim.github.io/agency-jekyll-theme/' +github: https://github.com/y7kim/agency-jekyll-theme +demo: https://y7kim.github.io/agency-jekyll-theme/ author: Rick K ssg: - Jekyll cms: - No Cms date: 2014-08-20T19:54:22.000Z -github_branch: gh-pages description: Agency Theme for Jekyll stale: true --- diff --git a/content/theme/airspace-hugo.md b/content/theme/airspace-hugo.md deleted file mode 100644 index 7f19b6ef7..000000000 --- a/content/theme/airspace-hugo.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: Airspace Hugo -github: 'https://github.com/themefisher/airspace-hugo' -demo: 'https://demo.themefisher.com/airspace-hugo/' -author: Themefisher -ssg: - - Hugo -cms: - - No Cms -date: 2018-01-09T22:28:21.000Z -github_branch: master -description: Airspace theme (Hugo version) -stale: false ---- diff --git a/content/theme/alembic.md b/content/theme/alembic.md index ffddddbaa..65782fcca 100644 --- a/content/theme/alembic.md +++ b/content/theme/alembic.md @@ -1,19 +1,20 @@ --- title: Alembic -github: 'https://github.com/daviddarnes/alembic' -demo: 'https://alembic.darn.es/' +github: https://github.com/daviddarnes/alembic +demo: https://alembic.darn.es/ author: David Darnes ssg: - Jekyll cms: - - NetlifyCMS + - DecapCMS - Forestry - DatoCMS - Contentful date: 2016-08-27T15:50:21.000Z -github_branch: master description: >- ⚗️ A Jekyll boilerplate theme designed to be a starting point for any Jekyll website -stale: false +stale: true +disabled: false +disabled_reason: '' --- diff --git a/content/theme/almace-scaffolding.md b/content/theme/almace-scaffolding.md index 8155e0a10..5fa3597ab 100644 --- a/content/theme/almace-scaffolding.md +++ b/content/theme/almace-scaffolding.md @@ -1,14 +1,13 @@ --- title: Almace Scaffolding -github: 'https://github.com/sparanoid/almace-scaffolding' -demo: 'https://sparanoid.com/lab/amsf/' +github: https://github.com/sparanoid/almace-scaffolding +demo: https://sparanoid.com/lab/amsf/ author: Tunghsiao Liu ssg: - Jekyll cms: - No Cms date: 2013-12-31T11:24:45.000Z -github_branch: master description: >- AMSF, a.k.a. Almace Scaffolding, a super-fast Jekyll framework fighting against the website obesity. It supports LiveReload, Sass, HTML minification, diff --git a/content/theme/alphabet-theme.md b/content/theme/alphabet-theme.md new file mode 100644 index 000000000..8dec842ab --- /dev/null +++ b/content/theme/alphabet-theme.md @@ -0,0 +1,21 @@ +--- +title: "Alphabet Theme" +github: https://github.com/piandhust/alphabet-theme +demo: https://piandhust.github.io/alphabet-theme/ +author: trannguyenhan +date: 2024-03-04 +ssg: + - Jekyll +cms: + - No CMS +archetype: + - Personal + - Blog +description: Alphabet theme is a perfect theme for your showcase website. +--- + +## Features + +* Simple for a referral site +* Easy to setup +* Nice interface, responsive diff --git a/content/theme/artisan-static.md b/content/theme/artisan-static.md index fe1b91b9f..b99c2a545 100644 --- a/content/theme/artisan-static.md +++ b/content/theme/artisan-static.md @@ -1,18 +1,17 @@ --- title: Artisan Static -github: 'https://github.com/raniesantos/artisan-static' +github: https://github.com/raniesantos/artisan-static author: raniesantos -demo: 'https://artisanstatic.netlify.app/' +demo: https://artisanstatic.netlify.app/ date: 2020-06-03T00:00:00.000Z ssg: - Jigsaw cms: - - NetlifyCMS + - DecapCMS archetype: - Blog description: An advanced starter template for building a static Jigsaw blog. -github_branch: master -stale: false +stale: true --- An advanced starter template for building a static Jigsaw blog hosted on Netlify with analytics, comments, code highlighting, a contact form, a CMS, and more. diff --git a/content/theme/astro-astromax.md b/content/theme/astro-astromax.md new file mode 100644 index 000000000..b5f1ecaab --- /dev/null +++ b/content/theme/astro-astromax.md @@ -0,0 +1,30 @@ +--- +title: "Astro Max" +github: https://github.com/michael-andreuzza/astromax +demo: https://astromax.lexingtonthemes.com/ +author: Lexington Themes +date: 2024-01-23 +ssg: + - Astro +cms: + - No CMS +css: + - Tailwind +archetype: + - Agency + - Personal +description: AstroMax is a brutalist landing page for your agency. +featured: false +netlify_deploy: https://app.netlify.com/start/deploy?repository=https://github.com/michael-andreuzza/astromax +--- + +# What's included? +- @astrojs/tailwind +- @astrojs/sitemap +- @astrojs/mdx +- @astrojs/rss + + +## Features +**Pages** +- Home diff --git a/content/theme/astro-astrosaas.md b/content/theme/astro-astrosaas.md new file mode 100644 index 000000000..26a6394fc --- /dev/null +++ b/content/theme/astro-astrosaas.md @@ -0,0 +1,35 @@ +--- +title: "AstroSaas" +github: https://github.com/michael-andreuzza/astrosaas +demo: https://astrosaas.lexingtonthemes.com/ +author: Lexington Themes +date: 2023-06-07 +ssg: + - Astro +cms: + - No CMS +css: + - Tailwind +archetype: + - SaaS + - Business +description: An open source template for your next project. +featured: false +netlify_deploy: https://app.netlify.com/start/deploy?repository=https://github.com/michael-andreuzza/astrosaas +--- + +# What's included? +- 6 Demo pages + +## Features +- 6 Demo Pages +- 10+ Sections +- 50+ compoinents + +**Pages** +- Home +- Faq +- Terms +- Privacy +- Sign up +- Sign in \ No newline at end of file diff --git a/content/theme/astro-landing-page.md b/content/theme/astro-landing-page.md new file mode 100644 index 000000000..3c1500261 --- /dev/null +++ b/content/theme/astro-landing-page.md @@ -0,0 +1,27 @@ +--- +title: Astro Landing Page +github: https://github.com/ttntm/astro-landing-page +demo: https://awesomestro.ttntm.me +author: ttntm +date: 2023-08-24T00:00:00.000Z +ssg: + - Astro +cms: + - No CMS +css: + - Tailwind +archetype: + - Business +description: A simple landing page built with Astro and Tailwind CSS. +--- + +# Astro Landing Page + +A simple landing page starter template built with Astro and Tailwind CSS. + +## Features + +* Modular single page approach based on sections +* Customisable global data for feature lists +* Fully responsive and tested on a wide range of devices +* Fast and low on dependencies diff --git a/content/theme/astro-microblog.md b/content/theme/astro-microblog.md new file mode 100644 index 000000000..71ae7e67b --- /dev/null +++ b/content/theme/astro-microblog.md @@ -0,0 +1,35 @@ +--- +title: "Micro Blog" +github: https://github.com/michael-andreuzza/microblog +demo: https://microblog.lexingtonthemes.com/ +author: Lexington Themes +date: 2024-01-23 +ssg: + - Astro +cms: + - No CMS +css: + - Tailwind +archetype: + - Blog + - Personal +description: Microblog is a tiny blog template built with Astro, Tailwind CSS and MDX it includes the next integrations +featured: false +netlify_deploy: https://app.netlify.com/start/deploy?repository=https://github.com/michael-andreuzza/microblog +--- + +# What's included? +- @astrojs/tailwind +- @astrojs/sitemap +- @astrojs/mdx +- @astrojs/rss + + +## Features + +**Pages** +- Blog Home +- Blog post +- Tag index +- Tag category +- RSS diff --git a/content/theme/astro-minimal.md b/content/theme/astro-minimal.md new file mode 100644 index 000000000..56ee8f725 --- /dev/null +++ b/content/theme/astro-minimal.md @@ -0,0 +1,25 @@ +--- +title: "Minimal" +github: https://github.com/ekmas/minimal +demo: https://astro-minimal.netlify.app/ +author: Samuel Breznjak +date: 2024-01-18 +ssg: + - Astro +cms: + - No CMS +css: + - Tailwind +archetype: + - Blog +description: Minimal is a minimalistic astro theme for blogs. +--- + +# Features + +- Astro v4 +- Tailwind for styling +- Responsive & SEO-friendly +- Dark/Light mode support +- MD & MDX posts +- Shiki code syntax styling diff --git a/content/theme/astro-paper.md b/content/theme/astro-paper.md new file mode 100644 index 000000000..b60ffe76f --- /dev/null +++ b/content/theme/astro-paper.md @@ -0,0 +1,40 @@ +--- +title: AstroPaper +github: https://github.com/satnaing/astro-paper +demo: https://astro-paper.pages.dev/ +author: satnaing +date: 2023-12-09T03:01:26.946Z +ssg: + - Astro +cms: + - No CMS +css: + - Tailwind +archetype: + - Blog + - Personal +description: A minimal, accessible and SEO-friendly Astro blog theme +featured: false +netlify_deploy: https://app.netlify.com/start/deploy?repository=https://github.com/satnaing/astro-paper +--- + +# AstroPaper + +**AstroPaper** is crafted with best practices and accessibility in mind. If you want a blog with clean design, fully responsiveness, good accessibility (keyboard/VoiceOver navigation, proper landmarks etc), and fast performance, then AstroPaper is for you. + +Moreover, **AstroPaper** is highly customizable - from color schemes, social links to meta tags for SEO. You can customize AstroPaper according to your taste and requirements. + +## Features + +- 🔐 built with TypeScript and has type-safe markdown +- ⚡️ super fast performance +- ♿️ accessible (Keyboard/VoiceOver) +- 📱 responsive (mobile ~ desktops) +- 🤖 SEO-friendly +- 🌙 light & dark mode +- 🔎 fuzzy search +- 📖 draft posts & pagination +- 🧭 sitemap & rss feed +- 💻 followed best practices +- 😎 highly customizable +- 🔥 dynamic OG image generation for blog posts diff --git a/content/theme/astro-platform-starter.md b/content/theme/astro-platform-starter.md new file mode 100644 index 000000000..91d2ba681 --- /dev/null +++ b/content/theme/astro-platform-starter.md @@ -0,0 +1,20 @@ +--- +title: Astro.js on Netlify Platform Starter +github: https://github.com/netlify-templates/astro-platform-starter +demo: https://astro-platform-starter.netlify.app/ +author: Netlify +date: 2024-04-24 +ssg: + - Astro +cms: + - No CMS +css: + - Tailwind +archetype: + - Other +description: Modern starter based on Astro.js, Tailwind, daisyUI, and Netlify Core Primitives. +featured: true +netlify_deploy: https://app.netlify.com/start/deploy?repository=https://github.com/netlify-templates/astro-platform-starter +--- + +A modern starter based on Astro.js, Tailwind, daisyUI, and [Netlify Core Primitives](https://docs.netlify.com/core/overview/#develop) (Edge Functions, Image CDN, Blob Store). \ No newline at end of file diff --git a/content/theme/astro-quickstore.md b/content/theme/astro-quickstore.md new file mode 100644 index 000000000..1711b3142 --- /dev/null +++ b/content/theme/astro-quickstore.md @@ -0,0 +1,24 @@ +--- +title: "Quick Store" +github: https://github.com/michael-andreuzza/quickstore +demo: https://quickstorre.vercel.app/ +author: Lexington Themes +date: 2023-06-07 +ssg: + - Astro +cms: + - No CMS +css: + - Tailwind +archetype: + - SaaS + - Business +description: A simple Astro and Tailwind CSS open source template for your store. Embed products from services like Gumroad or Lemonsqueezy. +--- + +# What's included? +- Homepage + +## Features +- Stylish +- Great color palette diff --git a/content/theme/astro-react-boilerplate.md b/content/theme/astro-react-boilerplate.md new file mode 100644 index 000000000..795eff4c7 --- /dev/null +++ b/content/theme/astro-react-boilerplate.md @@ -0,0 +1,152 @@ +--- +title: Astro React Boilerplate with TypeScript and Tailwind CSS +github: https://github.com/ixartz/Astro-boilerplate +demo: https://creativedesignsguru.com/demo/astro-boilerplate/ +author: Ixartz +date: 2022-11-29T00:00:00.000Z +ssg: + - Astro +cms: + - No Cms +css: + - Tailwind +archetype: + - Blog + - Personal + - Portfolio +github_branch: main +description: >- + Astro boilerplate with responsive blog and portfolio template using TypeScript + and React styled with Tailwind CSS +stale: false +--- + +# Astro Boilerplate with TypeScript and Tailwind CSS + +🚀 Astro Boilerplate is starter code for your blog or portfolio based on Astro +with Tailwind CSS 3.0. ⚡️ Made with Astro, TypeScript, ESLint, Prettier, +Tailwind CSS. + +Clone this project and use it to create your own Astro blog. You can check the +[Astro templates demo](https://creativedesignsguru.com/demo/astro-boilerplate/). + +## Features + +A complete Blog feature: + +- 🎈 Syntax Highlighting +- 🤖 SEO friendly with sitemap.xml and robots.txt +- ⚙️ RSS feed +- 📖 Pagination +- 🌈 Include a dark blog theme +- ⬇️ Markdown +- 📦 Image lazy loading +- 💎 Responsive design + +Developer experience first: + +- 🔥 Astro +- 🎨 Tailwind CSS with aspect ratio and typography plugin +- 🎉 TypeScript +- ✏️ ESLint compatible with .astro files +- 🛠 Prettier compatible with .astro files +- 🦊 Husky +- 🚫 lint-staged +- 🚨 Commitlint +- 🔧 One-click deploy on Netlify (or, manual if you prefer) + +ESLint with: + +- Airbnb styled guide +- TypeScript compatible +- Astro compatible +- Automatically remove unused imports +- Import sorting +- Tailwind CSS plugin + +### Philosophy + +- Minimal code +- SEO-friendly +- 🚀 Production-ready + +### Nextless.js SaaS Boilerplate + +Build your SaaS product faster with [React SaaS Boilerplate](https://nextlessjs.com). + +### Requirements + +- Node.js and npm + +#### Optional + +- [nvm](https://github.com/nvm-sh/nvm) +- [volta](https://volta.sh/) + +While Astro-boilerplate should work with the latest Node version, it has been +tested with the versions in .nvmrc & the bottom of package.json. At current +writing, that's Node v16.15.1 + +### Getting started + +Run the following command on your local environment: + +``` bash +git clone --depth=1 https://github.com/ixartz/Astro-boilerplate +cd my-project-name +npm install +``` + +Then, you can run locally in development mode with live reload: + +``` bash +npm run dev +``` + +Open [http://localhost:3000](http://localhost:3000) with your favorite browser +to see your project. + +### Deploy to production (manual) + +You can create an optimized production build with: + +```shell +npm run build +``` + +Now, your blog is ready to be deployed. All generated files are located at +`dist` folder, which you can deploy the folder to any hosting service you +prefer. + +### Deploy to Netlify + +Clone this repository on own GitHub account and deploy to Netlify: + +[![Netlify Deploy button](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/ixartz/Astro-boilerplate) + +## 🧞 Commands + +All commands are run from the root of the project, from a terminal: + +| Command | Action | +|:---------------- |:-------------------------------------------- | +| `npm install` | Installs dependencies | +| `npm run dev` | Starts local dev server at `localhost:3000` | +| `npm run build` | Build your production site to `./dist/` | +| `npm run preview` | Preview your build locally, before deploying | +| `npm run clean` | Remove `./dist` folder | +| `npm run lint` | Run ESLint and report styling error | + +### Contributions + +Everyone is welcome to contribute to this project. +Feel free to open an issue if you have question or found a bug. + +### Additional Checks + +This README.md was linted with +[markdownlint](https://github.com/igorshubovych/markdownlint-cli) + +### License + +Licensed under the MIT License, Copyright © 2022 diff --git a/content/theme/astro-sanity-starter.md b/content/theme/astro-sanity-starter.md new file mode 100644 index 000000000..159ba4b97 --- /dev/null +++ b/content/theme/astro-sanity-starter.md @@ -0,0 +1,42 @@ +--- +title: Astro Netlify Sanity Starter +github: https://github.com/netlify-templates/astro-sanity-starter +demo: https://astro-sanity-starter-demo.netlify.app/ +author: Netlify +date: 2024-07-18 +ssg: + - Astro +cms: + - Sanity +css: + - Tailwind +archetype: + - SaaS + - Business +description: Netlify Astro and Sanity starter with visual editing. +featured: false +netlify_deploy: https://app.netlify.com/start/deploy?repository=https://github.com/netlify-templates/astro-sanity-starter +--- + + +## Astro Netlify Sanity Starter + +Netlify starter with a Astro, Sanity CMS, Tailwind CSS and [visual editing](https://docs.netlify.com/visual-editor/overview/). + +**⚡ View demo:** [https://astro-sanity-starter-demo.netlify.app/](https://astro-sanity-starter-demo.netlify.app/) + +## Deploying to Netlify + +If you click "Deploy to Netlify" button, it will create a new repo for you that looks exactly like this one, and sets that repo up immediately for deployment on Netlify. + +[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/netlify-templates/astro-sanity-starter) + +## Next Steps + +Here are a few suggestions on what to do next if you're new to Netlify visual editor: + +- Learn [how Netlify visual editor works](https://docs.netlify.com/visual-editor/overview/) +- Check [Netlify visual editor reference documentation](https://visual-editor-reference.netlify.com/) + + + diff --git a/content/theme/astro-starlight.md b/content/theme/astro-starlight.md new file mode 100644 index 000000000..64bfcc197 --- /dev/null +++ b/content/theme/astro-starlight.md @@ -0,0 +1,41 @@ +--- +title: "Starlight Docs" +github: https://github.com/withastro/starlight +demo: https://starlight.astro.build/ +author: withastro +date: 2023-11-10 +ssg: + - Astro +cms: + - No CMS +css: + - CSS +archetype: + - Documentation +description: Everything you need to build a stellar documentation website. Fast, accessible, and easy-to-use. +--- + +Starlight is a full-featured, eco-friendly, accessible-by-default documentation theme built on Astro. + +### Features include + +* site navigation +* search +* internationalization +* SEO +* easy-to-read typography +* code highlighting +* dark & light mode +* … and more! + +### Powered by Astro + +Leverage the full power and performance of Astro. Extend Starlight with your favorite Astro integrations and libraries. + +### Markdown, Markdoc, and MDX + +Bring your favorite markup language. Starlight gives you built-in frontmatter validation with TypeScript type-safety. + +### Bring your own UI components + +Starlight ships as a framework-agnostic, complete docs solution. Extend with React, Vue, Svelte, Solid, and more. \ No newline at end of file diff --git a/content/theme/astro-supabase-starter.md b/content/theme/astro-supabase-starter.md new file mode 100644 index 000000000..746fdb115 --- /dev/null +++ b/content/theme/astro-supabase-starter.md @@ -0,0 +1,16 @@ +--- +title: "Astro Supabase Starter" +github: https://github.com/netlify-templates/astro-supabase-starter +demo: https://astro-supabase-starter.netlify.app/ +author: Netlify Templates +date: 2024-12-16 +ssg: + - Astro +css: + - Tailwind +description: The Astro Supabase starter demonstrates how to integrate Supabase into an Astro project deployed on Netlify. +featured: false +netlify_deploy: https://app.netlify.com/start/deploy?repository=https://github.com/netlify-templates/astro-supabase-starter +--- + +The Astro Supabase starter demonstrates how to integrate Supabase into an Astro project deployed on Netlify. \ No newline at end of file diff --git a/content/theme/astro-swissfolio.md b/content/theme/astro-swissfolio.md new file mode 100644 index 000000000..efbc6629c --- /dev/null +++ b/content/theme/astro-swissfolio.md @@ -0,0 +1,26 @@ +--- +title: "SwissFolio" +github: https://github.com/michael-andreuzza/swissfolio +demo: https://swissfolio.lexingtonthemes.com/ +author: Lexington Themes +date: 2023-06-07 +ssg: + - Astro +cms: + - No CMS +css: + - Tailwind +archetype: + - Portfolio + - Personal +description: free and open source personal landing page template with Swiss Design in mind. +--- + +# What's included? +- Stylish +- Swiss Design +- Aos animations + +## Features +**Pages** +- Home diff --git a/content/theme/astroship.md b/content/theme/astroship.md new file mode 100644 index 000000000..942d6a252 --- /dev/null +++ b/content/theme/astroship.md @@ -0,0 +1,29 @@ +--- +title: "Astroship - Astro SAAS Starter" +github: https://github.com/surjithctly/astroship +demo: https://astroship.web3templates.com/ +author: Surjith +date: 2024-03-12 +ssg: + - Astro +cms: + - No CMS +css: + - TailWind +archetype: + - SaaS + - Business +description: Astroship is a starter template for startups, marketing websites, landing pages & blog. Built with Astro & TailwindCSS. +featured: false +netlify_deploy: https://app.netlify.com/start/deploy?repository=https://github.com/surjithctly/astroship +--- + +# A simple starter kit for Astro.Build + +## Features + +* Astro v3 +* Tailwind CSS +* Mobile Responsive +* Contact Page +* Content Collections diff --git a/content/theme/automatic-app-landing-page.md b/content/theme/automatic-app-landing-page.md index 803e08863..7946e7af9 100644 --- a/content/theme/automatic-app-landing-page.md +++ b/content/theme/automatic-app-landing-page.md @@ -1,16 +1,15 @@ --- title: Automatic -github: 'https://github.com/emilbaehr/automatic-app-landing-page' -demo: 'https://emilbaehr.github.io/automatic-app-landing-page/' +github: https://github.com/emilbaehr/automatic-app-landing-page +demo: https://emilbaehr.github.io/automatic-app-landing-page/ author: Emil Baehr ssg: - Jekyll cms: - No Cms date: 2019-01-05T10:20:11.000Z -github_branch: master description: >- A Jekyll theme for automatically generating and deploying landing page sites for mobile apps. -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/awake-blog-template-nuxt.md b/content/theme/awake-blog-template-nuxt.md index e9b380e42..bd8f7a22c 100644 --- a/content/theme/awake-blog-template-nuxt.md +++ b/content/theme/awake-blog-template-nuxt.md @@ -1,20 +1,19 @@ --- title: Awake Nuxt Blog -github: 'https://github.com/danielkellyio/awake-template' +github: https://github.com/danielkellyio/awake-template author: danielkellyio -demo: 'https://awake-template.netlify.com/' +demo: https://awake-template.netlify.com/ date: 2020-06-03T00:00:00.000Z ssg: - Nuxt cms: - - NetlifyCMS + - DecapCMS archetype: - Blog description: >- Awake is a Nuxt.js template for generating a beautifully robust static site with blog -github_branch: master -stale: false +stale: true --- Awake is a Nuxt.js template for generating a beautifully robust static site with blog. It comes with support for site search, newsletter sign-up via mailchimp, comments via disqus and more. It's built with performance in mind (auto image resizing, lazy loading, and more). \ No newline at end of file diff --git a/content/theme/awesome-jekyll-theme.md b/content/theme/awesome-jekyll-theme.md new file mode 100644 index 000000000..9324584e7 --- /dev/null +++ b/content/theme/awesome-jekyll-theme.md @@ -0,0 +1,29 @@ +--- +title: "Awesome Jekyll Theme" +github: https://github.com/a-chacon/awesome-jekyll-theme +demo: https://a-chacon.com/awesome-jekyll-theme +author: a-chacon +date: 2024-07-08 +ssg: + - Jekyll +cms: + - No CMS +css: + - Tailwind +archetype: + - Blog + - Portfolio +description: A clean, versatile Jekyll theme with minimalist design and robust features. +--- + +# Awesome Jekyll Theme + +A clean, versatile Jekyll theme with minimalist design and robust features. Ideal for portfolios, blogs, and project showcases with responsive layouts and easy customization. + +## Features + +- Clean and minimalist design with ample white space, focusing on content readability and visual appeal. +- Versatile layout options including a grid-style projects page, a blog listing with featured posts, and a simple yet elegant home page with a circular profile image. +- Consistent navigation with a header menu and social media integration in the footer, providing a cohesive user experience across different page types. +- Responsive design that appears to adapt well to different screen sizes, ensuring a good viewing experience on various devices. +- Category-based organization for blog posts, allowing for easy content discovery and improved site structure. diff --git a/content/theme/bael-theme.md b/content/theme/bael-theme.md index f49648b23..3db19a9ad 100644 --- a/content/theme/bael-theme.md +++ b/content/theme/bael-theme.md @@ -1,16 +1,15 @@ --- title: Bael Theme -github: 'https://github.com/jake-101/bael-template' -demo: 'https://bael-theme.jake101.com/' +github: https://github.com/jake-101/bael-template +demo: https://bael-theme.jake101.com/ author: jake101 ssg: - Nuxt cms: - - NetlifyCMS + - DecapCMS date: 2019-11-09T00:00:00.000Z -github_branch: master description: Brutalist Blog theme for Netlify CMS -stale: false +stale: true --- Bael is a free blogging theme to use with Netlify CMS. It has a utilitarian, brutalist design that lends itself to written content and full width images. It has the option of a grid-based layout or full-width, image-based layout. Made by jake101. diff --git a/content/theme/bigcommerce-gatsby-netlify-cms-starter.md b/content/theme/bigcommerce-gatsby-netlify-cms-starter.md index 3c8ef38f0..9dc91ac18 100644 --- a/content/theme/bigcommerce-gatsby-netlify-cms-starter.md +++ b/content/theme/bigcommerce-gatsby-netlify-cms-starter.md @@ -1,20 +1,19 @@ --- title: BigCommerce Gatsby Starter Netlify CMS -github: 'https://github.com/bigcommerce/gatsby-bigcommerce-netlify-cms-starter' +github: https://github.com/bigcommerce/gatsby-bigcommerce-netlify-cms-starter author: bigcommerce -demo: 'https://affectionate-goldwasser-30230c.netlify.com/' +demo: https://affectionate-goldwasser-30230c.netlify.com/ date: 2020-06-03T00:00:00.000Z ssg: - Gatsby cms: - - NetlifyCMS + - DecapCMS archetype: - Ecommerce description: >- Example Gatsby, BigCommerce and Netlify CMS project meant to jump start Jamstack ecommerce sites. -github_branch: master -stale: false +stale: true --- Example Gatsby, BigCommerce and Netlify CMS project meant to jump start Jamstack ecommerce sites. diff --git a/content/theme/bilberry-hugo-theme.md b/content/theme/bilberry-hugo-theme.md new file mode 100644 index 000000000..0133f632e --- /dev/null +++ b/content/theme/bilberry-hugo-theme.md @@ -0,0 +1,33 @@ +--- +title: Bilberry Hugo +github: https://github.com/Lednerb/bilberry-hugo-theme +demo: https://lednerb.github.io/bilberry-hugo-theme +author: Sascha Brendel +date: 2021-11-07T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +archetype: + - Blog +description: >- + Clean, responsive, and feature-rich blogging theme ported from the WordPress + Lingonberry theme. +stale: false +--- + +## Features + +* Clean and responsive design +* Multilingual +* Built-in content search via Algolia SAAS +* Google Analytics support +* Comments integration via Commento, Disqus, Giscus, or Utterances +* Table of contents(TOC) and series taxonomy +* Automatic image resizing +* Support for video and audio content +* Configurable GDPR consent +* Customizable 404 page +* Support for favicons +* Cookie consent banner +* Support for Hugo modules diff --git a/content/theme/blagor-inroweb.md b/content/theme/blagor-inroweb.md new file mode 100644 index 000000000..42ce7a1e9 --- /dev/null +++ b/content/theme/blagor-inroweb.md @@ -0,0 +1,31 @@ +--- +title: Blagor +github: https://github.com/Inroweb/Blagor +demo: https://blagor-inroweb.netlify.app/ +author: inroweb +date: 2022-09-29T00:00:00.000Z +ssg: + - Gatsby +cms: + - DecapCMS +archetype: + - Blog +description: A starter for personal and professional blog, built with GatbyJS and Netlify CMS. +--- + +# Blagor + +A open-source template for jamstack community to build a personal and professional blog, built with GatbyJS and Netlify CMS. + +## Features + +* Landing, Blog, Contact pages +* Responsive Web Design +* Add / Modify / Delete Content from CMS including Blog posts, Theme colors, Settings, Etc +* Google Analytics +* Social media icons +* SEO Optimized +* Blog Tags +* Netlify Contact Form +* Pagination +* Theme Ui Styling diff --git a/content/theme/bleda.md b/content/theme/bleda.md index 8b5390731..1127fe5dd 100644 --- a/content/theme/bleda.md +++ b/content/theme/bleda.md @@ -1,14 +1,13 @@ --- title: Gridsome Bleda -github: 'https://github.com/hellocosmin/gridsome-starter-bleda' -demo: 'https://gridsome-starter-bleda.netlify.com/' +github: https://github.com/hellocosmin/gridsome-starter-bleda +demo: https://gridsome-starter-bleda.netlify.com/ author: Cosmin Popovici ssg: - Gridsome cms: - No Cms date: 2019-03-04T14:14:31.000Z -github_branch: master -description: 'Gridsome blog starter, built with Tailwind CSS' -stale: false +description: Gridsome blog starter, built with Tailwind CSS +stale: true --- diff --git a/content/theme/blog-nextjs-template.md b/content/theme/blog-nextjs-template.md new file mode 100644 index 000000000..3c8f14e77 --- /dev/null +++ b/content/theme/blog-nextjs-template.md @@ -0,0 +1,26 @@ +--- +title: Minimal Blog | NextJS +github: https://github.com/jaymehta20/nextjs-blog-page +demo: https://nextjs-blog-page.vercel.app/ +author: Jay Mehta +date: 2021-04-29T00:00:00.000Z +ssg: + - Next +cms: + - Contentful +css: + - Bootstrap +archetype: + - Blog +description: A simple blog site created with NextJs +stale: false +--- + +## Features +## Dark Mode 🌚 +## Light Mode 🌞 +## Grid Layout 🚀 +## Full Responsive (Works on Galaxy fold too 😅) + + + diff --git a/content/theme/blogbox-jekyll-theme.md b/content/theme/blogbox-jekyll-theme.md new file mode 100644 index 000000000..2bed5a520 --- /dev/null +++ b/content/theme/blogbox-jekyll-theme.md @@ -0,0 +1,34 @@ +--- +title: BlogBox Jekyll Theme +github: https://github.com/JustGoodThemes/BlogBox-Jekyll-Theme +demo: https://blogbox.netlify.app/ +author: JustGoodThemes +ssg: + - Jekyll +cms: + - No Cms +archetype: + - Blog +css: + - SCSS +date: 2022-12-30T00:00:00.000Z +description: >- + BlogBox is a minimal, bold, responsive, and easy-to-use Jekyll theme. It’s a + perfect fit for artists, photographers, or creative bloggers looking for a + bold design theme. +stale: false +disabled: false +disabled_reason: '' +--- + +## Theme Features + +- Responsive layout – your blog will be accessible on various devices (iPhone, iPad, Android, etc.) +- Clean, well commented code, easy to customize +- Optional fixed navigation +- Author information +- Tag page support +- Code syntax highlighter +- Newsletter, latest posts and tag cloud widgets +- Sharing post integration +- Social media icons \ No newline at end of file diff --git a/content/theme/blogge-hugo.md b/content/theme/blogge-hugo.md new file mode 100644 index 000000000..f089d932d --- /dev/null +++ b/content/theme/blogge-hugo.md @@ -0,0 +1,32 @@ +--- +title: Blogge Hugo +github: https://github.com/StaticMania/blogge-hugo-theme +demo: https://blogge-hugo.staticmania.com/ +author: StaticMania +date: 2022-08-31T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +css: + - Bootstrap +archetype: + - Business +description: >- + Blogge is a clean and minimal blog hugo theme suitable for someone with easy + creative features and effects who wants to create a personal blog site to + make readers enjoy the pleasure of reading blog posts and blogs. +stale: false +--- + +## Features + +* Responsive Ready. +* Powered by Bootstrap 4. +* Blog Template. +* Well formatted code. +* Easy Customization. +* Formspree Contact form. +* Google Analytics. +* Crafted for Personal Blogging +* Fully functional Blog theme diff --git a/content/theme/blogophonic-hugo.md b/content/theme/blogophonic-hugo.md index b7dd6b523..308ee3a9a 100644 --- a/content/theme/blogophonic-hugo.md +++ b/content/theme/blogophonic-hugo.md @@ -1,12 +1,11 @@ --- title: Blogophonic for Hugo -github: 'https://github.com/formspree/blogophonic-hugo' -demo: 'https://blogophonic-hugo.netlify.com/' +github: https://github.com/formspree/blogophonic-hugo +demo: https://blogophonic-hugo.netlify.com/ author: Eric E. Anderson ssg: - Hugo date: 2019-04-10T19:54:55.000Z -github_branch: master description: Blogophonic – a Hugo blog theme by Formspree -stale: false +stale: true --- diff --git a/content/theme/blowfish.md b/content/theme/blowfish.md new file mode 100644 index 000000000..cb1342b01 --- /dev/null +++ b/content/theme/blowfish.md @@ -0,0 +1,117 @@ +--- +title: Blowfish +github: https://github.com/nunocoracao/blowfish +demo: https://nunocoracao.github.io/blowfish/ +author: Nuno Coracao +date: 2019-08-20T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +css: + - Tailwind +archetype: + - Blog + - Portfolio +description: A powerful, lightweight theme for Hugo built with Tailwind CSS. +stale: false +--- + +# Blowfish + +Blowfish is designed to be a powerful, lightweight theme for [Hugo](https://gohugo.io). It's built using Tailwind CSS with a clean and minimalist design that prioritises to your content. The theme is a fork of [Congo](https://github.com/jpanther/congo). + +🌏 [Demo site](https://nunocoracao.github.io/blowfish/) +📑 [Theme documentation](https://nunocoracao.github.io/blowfish/docs/) +🐛 [Bug reports & issues](https://github.com/nunocoracao/blowfish/issues) +💡 [Questions & feature requests](https://github.com/nunocoracao/blowfish/discussions) + +![blowfish logo](https://github.com/nunocoracao/blowfish/blob/main/logo.png?raw=true) + + +## Features + +- Fully responsive layout built with Tailwind CSS 3.0 +- Multiple colour schemes (or fully customise your own) +- Dark mode (forced on/off or auto-switching with user toggle) +- Highly customisable configuration +- Firebase integration to support dynamic data (i.e. views) +- Multiple homepage layouts +- Flexible with any content types, taxonomies and menus +- Multilingual content support inlcuding support for RTL languages +- Ability to link to posts on third-party websites +- Client-side site search powered by Fuse.js +- Diagrams and visualisations using Mermaid +- Charts using Chart.js +- Mathematical notation using KaTeX +- SVG icons from FontAwesome 6 +- Automatic image resizing using Hugo Pipes +- Heading anchors, Tables of Contents, Code copy, Buttons, Badges and more +- HTML and Emoji support in articles 🎉 +- SEO friendly with links for sharing to social media +- Fathom Analytics and Google Analytics support +- RSS feeds, Favicons and comments support +- Advanced customisation using simple Tailwind colour definitions and styles +- Optimised for performance and accessibility with perfect Lighthouse scores +- Fully documented with regular updates + +--- + +## Documentation + +Blowfish has [extensive documentation](https://nunocoracao.github.io/blowfish/docs/) that covers all aspects of the theme. Be sure to [read the docs](https://nunocoracao.github.io/blowfish/docs/) to learn more about how to use the theme and its features. + +--- + +## Installation + +Blowfish supports several installation methods - as a Hugo Module (easiest), a git submodule, or as a completely manual install. + +Detailed instructions for each method can be found in the [Installation](https://nunocoracao.github.io/blowfish/docs/installation) docs. You should consult the documentation for the simplest setup experience. Below is a quick start guide using Hugo modules if you're already confident installing Hugo themes. + +### Quick start using Hugo + +> **Note:** Ensure you have **Go** and **Hugo** installed, and that you have created a new Hugo project before proceeding. + +1. From your project directory, initialise Hugo Modules: + + ```shell + hugo mod init github.com// + ``` + +2. Create `config/_default/module.toml` and add the following: + + ```toml + [[imports]] + path = "github.com/nunocoracao/blowfish" + ``` + +3. Start your server using `hugo server` and the theme will be downloaded automatically. + +4. In the root folder of your website, delete the `config.toml` file that was generated by Hugo. Copy the `*.toml` config files from the theme into your `config/_default/` folder. + + > **Note:** Do not overwrite the `module.toml` file you created above! + + You will find these theme config files in the Hugo cache directory, or [download a copy](https://minhaskamal.github.io/DownGit/#/home?url=https://github.com/nunocoracao/blowfish/tree/main/config/_default) from GitHub. + +5. Follow the [Getting Started](https://nunocoracao.github.io/blowfish/docs/getting-started/) instructions to configure your website. + +### Installing theme updates + +As new releases are posted, you can update the theme using Hugo. Simply run `hugo mod get -u` from your project directory and the theme will automatically update to the latest release. + +Detailed [update instructions](https://nunocoracao.github.io/blowfish/docs/installation/#installing-updates) are available in the docs. + +--- + +## Contributing + +Blowfish is expected to evolve over time. I intend to keep adding features and making changes as required. + +Feel free to get in touch with any issues or suggestions for new features you'd like to see. + +- 🐛 **Bug reports & issues:** Use [GitHub Issues](https://github.com/nunocoracao/blowfish/issues) +- 💡 **Ideas for new features:** Open a discussion on [GitHub Discussions](https://github.com/nunocoracao/blowfish/discussions) +- 🙋‍♀️ **General questions:** Head to [GitHub Discussions](https://github.com/nunocoracao/blowfish/discussions) + +If you're able to fix a bug or implement a new feature, I welcome PRs for this purpose. Learn more in the [contributing guidelines](https://github.com/nunocoracao/blowfish/blob/main/CONTRIBUTING.md). \ No newline at end of file diff --git a/content/theme/bluise-nuxt-cms.md b/content/theme/bluise-nuxt-cms.md deleted file mode 100644 index a309ccd28..000000000 --- a/content/theme/bluise-nuxt-cms.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: Nuxt Tailwind Netlify CMS Starter -github: 'https://github.com/gomah/bluise' -author: gomah -demo: 'https://bluise.netlify.com' -date: 2020-06-03T00:00:00.000Z -ssg: - - Nuxt -cms: - - NetlifyCMS -archetype: - - Blog -description: >- - Start with Typescript, TailwindCSS, Nuxt, Netlify Forms & Netlify CMS, - includes pagination, seo & pwa ready. -github_branch: master -stale: false ---- - -Start with Typescript, TailwindCSS, Nuxt, Netlify Forms & Netlify CMS, includes pagination, seo & pwa ready. diff --git a/content/theme/breakfast.md b/content/theme/breakfast.md index f4c59505a..4b2236324 100644 --- a/content/theme/breakfast.md +++ b/content/theme/breakfast.md @@ -1,14 +1,13 @@ --- title: Breakfast -github: 'https://github.com/devlocker/breakfast' -demo: 'https://breakfast.devlocker.io/' +github: https://github.com/devlocker/breakfast +demo: https://breakfast.devlocker.io/ author: Devlocker ssg: - Brunch cms: - No Cms date: 2016-06-23T05:55:56.000Z -github_branch: master description: Brunch.io with Rails stale: true --- diff --git a/content/theme/brevifolia-gridsome-forestry.md b/content/theme/brevifolia-gridsome-forestry.md index 8dc61182e..97bd058ff 100644 --- a/content/theme/brevifolia-gridsome-forestry.md +++ b/content/theme/brevifolia-gridsome-forestry.md @@ -1,14 +1,13 @@ --- title: Brevifolia Gridsome Forestry -github: 'https://github.com/kendallstrautman/brevifolia-gridsome-forestry' -demo: 'https://brevifolia-gridsome-forestry.netlify.com/' +github: https://github.com/kendallstrautman/brevifolia-gridsome-forestry +demo: https://brevifolia-gridsome-forestry.netlify.com/ author: Kendall Strautman ssg: - Gridsome cms: - Forestry date: 2019-08-12T23:36:29.000Z -github_branch: master description: A simple starter blog built with Gridsome & Forestry -stale: false +stale: true --- diff --git a/content/theme/brook.md b/content/theme/brook.md new file mode 100644 index 000000000..d8f1be3fd --- /dev/null +++ b/content/theme/brook.md @@ -0,0 +1,34 @@ +--- +title: Brook +github: https://github.com/holger1411/brook-dev +demo: https://brooks-html-template.netlify.app/ +author: Holger koenemann +date: 2022-10-21T00:00:00.000Z +ssg: + - Eleventy +cms: + - No CMS +css: + - Bootstrap + - PostCSS + - SCSS +archetype: + - Blog + - Portfolio + - Business +description: A Minimalisitc Eleventy Blogging Theme +stale: false +--- + +# A clean and handcrafted Eleventy Blog Theme + +Designed for a hyper focused blog. Made with the static site generator Eleventy 2.0+ and the CSS framework Bootstrap 5+ + +## Features + +* Bootstrap 5 +* Dev Server +* Minimizing and optimizing HTML and CSS output +* Automated jpg -> webP image generation +* Ready for Netlify +* GitHub template diff --git a/content/theme/brunch-github.md b/content/theme/brunch-github.md index 043a59a52..af0f7963a 100644 --- a/content/theme/brunch-github.md +++ b/content/theme/brunch-github.md @@ -1,14 +1,13 @@ --- title: Brunch Github.io -github: 'https://github.com/brunch/brunch.github.io' -demo: 'https://brunch.io/' +github: https://github.com/brunch/brunch.github.io +demo: https://brunch.io/ author: Brunch ssg: - Brunch cms: - No Cms date: 2011-01-27T12:07:06.000Z -github_branch: source description: The website stale: true --- diff --git a/content/theme/brunch-phaser.md b/content/theme/brunch-phaser.md index 594528832..29d5d59f3 100644 --- a/content/theme/brunch-phaser.md +++ b/content/theme/brunch-phaser.md @@ -1,16 +1,15 @@ --- title: Brunch Phaser -github: 'https://github.com/samme/brunch-phaser' -demo: 'https://phaser.io/phaser3' +github: https://github.com/samme/brunch-phaser +demo: https://phaser.io/phaser3 author: Samme ssg: - Brunch cms: - No Cms date: 2017-02-05T03:41:10.000Z -github_branch: master description: >- A Brunch skeleton for making games with Phaser 3. Variants for CoffeeScript, ES6, TypeScript -stale: false +stale: true --- diff --git a/content/theme/brutalist-blog.md b/content/theme/brutalist-blog.md new file mode 100644 index 000000000..7da3575c0 --- /dev/null +++ b/content/theme/brutalist-blog.md @@ -0,0 +1,34 @@ +--- +title: brutalist-blog +github: https://github.com/andrewhwanpark/brutalist-blog +demo: https://andrewhwanpark.github.io/brutalist-blog/ +author: andrewhwanpark +date: 2021-07-20T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +css: + - Bootstrap +archetype: + - Blog + - Portfolio +description: >- + brutalist-blog is a no frills, fully-responsive, hyper-minimalistic dark/light + theme +stale: true +--- + +# brutalist-blog + +brutalist-blog is a no frills, fully-responsive, hyper-minimalistic dark/light theme. The theme is heavily inspired by Mark Otto's personal site: https://markdotto.com/ + +Demo: https://andrewhwanpark.github.io/brutalist-blog/ + +## Features + +- Automatically changes from dark/light modes depending on the OS settings. +- Easy integration with Google Analytics. +- Generates XML sitemap and RSS Atom feed. +- jekyll-seo-tag to add metadata tags for search engines and social networks to better index and display your site's content. +- Full markdown support: code blocks and tables are automatically bootstrap components. diff --git a/content/theme/bulma-clean-theme.md b/content/theme/bulma-clean-theme.md index 22cfa0fdb..f2d5260eb 100644 --- a/content/theme/bulma-clean-theme.md +++ b/content/theme/bulma-clean-theme.md @@ -1,10 +1,9 @@ --- title: Bulma Clean Theme -github: 'https://github.com/chrisrhymes/bulma-clean-theme' -demo: 'https://www.csrhymes.com/bulma-clean-theme/' +github: https://github.com/chrisrhymes/bulma-clean-theme +demo: https://www.csrhymes.com/bulma-clean-theme/ author: chrisrhymes date: 2020-08-22T00:00:00.000Z -github_branch: master ssg: - Jekyll cms: diff --git a/content/theme/centrarium.md b/content/theme/centrarium.md index f35841461..7d4f54b2e 100644 --- a/content/theme/centrarium.md +++ b/content/theme/centrarium.md @@ -1,16 +1,17 @@ --- title: Centrarium -github: 'https://github.com/bencentra/centrarium' -demo: 'https://bencentra.com/centrarium/' +github: https://github.com/bencentra/centrarium +demo: https://bencentra.com/centrarium/ author: Bencentra ssg: - Jekyll cms: - No Cms date: 2015-04-14T00:39:17.000Z -github_branch: master description: A simple yet classy theme for your Jekyll website or blog. stale: true +disabled: true +disabled_reason: error checking demo url --- A simple yet classy theme for your Jekyll website or blog. \ No newline at end of file diff --git a/content/theme/cereus-pro.md b/content/theme/cereus-pro.md index d337a1662..9eaec41fd 100644 --- a/content/theme/cereus-pro.md +++ b/content/theme/cereus-pro.md @@ -1,14 +1,13 @@ --- title: Cereus Pro -github: 'https://github.com/arhen/hugo-cereus-pro-theme' -demo: 'https://cereus-pro.netlify.com/' +github: https://github.com/arhen/hugo-cereus-pro-theme +demo: https://cereus-pro.netlify.com/ author: arhen ssg: - Hugo cms: - - NetlifyCMS + - DecapCMS date: 2019-10-28T00:00:00.000Z -github_branch: master description: ' Blazing Fast & Minimalist Blog Hugo Themes for Developer' stale: true --- diff --git a/content/theme/chulapa.md b/content/theme/chulapa.md new file mode 100644 index 000000000..f4695b622 --- /dev/null +++ b/content/theme/chulapa.md @@ -0,0 +1,43 @@ +--- +title: Chulapa +github: https://github.com/dieghernan/chulapa +demo: https://dieghernan.github.io/chulapa/ +author: Diego Hernangómez +date: 2022-11-24T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +css: + - Bootstrap +archetype: + - Blog + - Portfolio + - Personal + - Single Page +description: A full flexible Jekyll theme for Github Pages. +stale: false +--- + +## Welcome to Chulapa! + +- **Bootstrap 4** - Fully responsive +- **Fontawesome 6** - v5 also supported. v4 is supported via shims but would be deprecated at some point +- **3 different navbar styles** +- **Atom and RSS 2.0** feed +- **Internal search** by Algolia, Lunr or Google Custom Search +- **Comments** by Disqus and Giscus +- **Masonry gallery** +- **Video support** - self-hosted or from core providers: Youtube, Vimeo, DailyMotion... +- **Structured data** for better SEO +- **Code highlight** - +20 Pygment styles +- **Mathjax** inside +- **Google Analytics** +- **Twitter Cards** and **Open Graph** data valid for Facebook, LinkedIn and WhatsApp +- **14+ preinstalled skins** +- **Powerful look-and-feel customization** with a dedicated sandbox +- **Archive, cloud tag and index special layouts** +- **Do you like breadcrumbs?** We have it. +- **Multiple authors** with location, picture and social links. Travel blogs and colaborative sites welcome! + +A great alternative for blogs, news, portfolios and personal sites. Want to know more? [Go to Docs](https://dieghernan.github.io/chulapa/docs/01-install). diff --git a/content/theme/colorie-jekyll.md b/content/theme/colorie-jekyll.md index 1577803dd..6312a7199 100644 --- a/content/theme/colorie-jekyll.md +++ b/content/theme/colorie-jekyll.md @@ -1,10 +1,9 @@ --- title: Colorie -github: 'https://github.com/ronv/colorie' -demo: 'https://colorie.netlify.com' +github: https://github.com/ronv/colorie +demo: https://colorie.netlify.com author: Ronalds Vilcins date: 2019-11-09T00:00:00.000Z -github_branch: master ssg: - Jekyll description: Colorie - Single column blog and portfolio Jekyll theme diff --git a/content/theme/commercejs-chopchop-shop.md b/content/theme/commercejs-chopchop-shop.md new file mode 100644 index 000000000..5a547252c --- /dev/null +++ b/content/theme/commercejs-chopchop-shop.md @@ -0,0 +1,22 @@ +--- +title: ChopChop Shop +github: https://github.com/chec/commercejs-chopchop-demo +author: Chec/Commerce.js +demo: https://commercejs-chopchop-demo.vercel.app/ +date: 2021-02-18T00:00:00.000Z +ssg: + - Next +cms: + - No Cms +css: + - Tailwind +archetype: + - Ecommerce +description: ChopChop is an eCommerce starter kit powered by Commerce.js. +stale: true +--- + +ChopChop is a beautifully designed, elegantly developed demo store and starter kit with a premium brand that sells fine tools for thoughtful cooks. It is an end to end commerce experience for developers and agencies. The commerce application is built with Next.js as the frontend, Commerce.js as the backend, with Stripe pre-integrated and a one-click deploy to Vercel. Read more about this resource on the [Commerce.js blog](https://commercejs.com/blog/chopchop-nextjs-starter-commerce/). + +_Note: You will need to [sign up for a Chec account](https://dashboard.chec.io/signup) which will include the API access. Please follow the guide in the github repo to configure your inital setup._ + diff --git a/content/theme/commercejs-nextjs-demo-store.md b/content/theme/commercejs-nextjs-demo-store.md index 81a7e7d66..1b57b5e6e 100644 --- a/content/theme/commercejs-nextjs-demo-store.md +++ b/content/theme/commercejs-nextjs-demo-store.md @@ -1,8 +1,8 @@ --- title: Commerce.js Next.js Demo Store -github: 'https://github.com/chec/commercejs-nextjs-demo-store' +github: https://github.com/chec/commercejs-nextjs-demo-store author: Chec/Commerce.js -demo: 'https://commercejs-demo-store.netlify.app/' +demo: https://commercejs-demo-store.netlify.app/ date: 2020-07-22T00:00:00.000Z ssg: - Next @@ -15,7 +15,6 @@ archetype: description: >- A commerce storefront example built using Next.js and Commerce.js with production-ready deployment to Netlify. -github_branch: master stale: false --- diff --git a/content/theme/commercejs-vuejs-boilerplate.md b/content/theme/commercejs-vuejs-boilerplate.md index fc104237d..ea8698695 100644 --- a/content/theme/commercejs-vuejs-boilerplate.md +++ b/content/theme/commercejs-vuejs-boilerplate.md @@ -1,8 +1,8 @@ --- title: Commerce.js Vue.js Boilerplate -github: 'https://github.com/chec/commercejs-vuejs-boilerplate' +github: https://github.com/chec/commercejs-vuejs-boilerplate author: Chec/Commerce.js -demo: 'https://shoppable-campaign-demo.netlify.app/' +demo: https://shoppable-campaign-demo.netlify.app/ date: 2020-10-19T00:00:00.000Z ssg: - Nuxt @@ -15,8 +15,7 @@ archetype: description: >- Commerce.js boilerplate built with Vue.js, for fast eCommerce development and design. -github_branch: master -stale: false +stale: true --- Commerce.js boilerplate built with Vue.js, for fast eCommerce development and design. diff --git a/content/theme/compose.md b/content/theme/compose.md index f085f5bcc..9f02a97f5 100644 --- a/content/theme/compose.md +++ b/content/theme/compose.md @@ -1,10 +1,9 @@ --- title: Compose -github: 'https://github.com/onweru/compose' -demo: 'https://docs.neuralvibes.com' +github: https://github.com/onweru/compose +demo: https://docs.neuralvibes.com author: Weru date: 2020-02-22T18:24:48.000Z -github_branch: master ssg: - Hugo cms: diff --git a/content/theme/content-ops-starter.md b/content/theme/content-ops-starter.md new file mode 100644 index 000000000..93bfad473 --- /dev/null +++ b/content/theme/content-ops-starter.md @@ -0,0 +1,39 @@ +--- +title: Content Ops Starter +github: https://github.com/netlify-templates/content-ops-starter +demo: https://content-ops-starter.netlify.app/ +author: Netlify +date: 2024-06-14 +ssg: + - Next +cms: + - No CMS +css: + - Tailwind +archetype: + - Agency + - Landing Page +description: Netlify starter that's made for customization with a flexible content model, component library, visual editing and Git Content Source. +featured: false +netlify_deploy: https://app.netlify.com/start/deploy?repository=https://github.com/netlify-templates/content-ops-starter +--- + +## Netlify Content Ops Starter + +Netlify starter that's made for customization with a flexible content model, component library, [visual editing](https://docs.netlify.com/visual-editor/overview/) and [Git Content Source](https://docs.netlify.com/create/content-sources/git/). + +**⚡ View demo:** [https://content-ops-starter.netlify.app/](https://content-ops-starter.netlify.app/) + +## Deploying to Netlify + +If you click "Deploy to Netlify" button, it will create a new repo for you that looks exactly like this one, and sets that repo up immediately for deployment on Netlify. + +[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/netlify-templates/content-ops-starter) + +## Next Steps + +Here are a few suggestions on what to do next if you're new to Netlify visual editor: + +- Learn [how Netlify visual editor works](https://docs.netlify.com/visual-editor/overview/) +- Check [Netlify visual editor reference documentation](https://visual-editor-reference.netlify.com/) + diff --git a/content/theme/cupper-hugo-theme.md b/content/theme/cupper-hugo-theme.md index b6e0cc6d2..30324c927 100644 --- a/content/theme/cupper-hugo-theme.md +++ b/content/theme/cupper-hugo-theme.md @@ -1,14 +1,13 @@ --- title: Cupper -github: 'https://github.com/zwbetz-gh/cupper-hugo-theme' -demo: 'https://cupper-hugo-theme.netlify.com/' +github: https://github.com/zwbetz-gh/cupper-hugo-theme +demo: https://cupper-hugo-theme.netlify.com/ author: Zwbetz-gh ssg: - Hugo cms: - No Cms date: 2019-01-29T19:16:57.000Z -github_branch: master -description: 'An accessibility-friendly Hugo theme, ported from the original Cupper project.' +description: An accessibility-friendly Hugo theme, ported from the original Cupper project. stale: false --- \ No newline at end of file diff --git a/content/theme/dante-astro-theme.md b/content/theme/dante-astro-theme.md new file mode 100644 index 000000000..ce35165ba --- /dev/null +++ b/content/theme/dante-astro-theme.md @@ -0,0 +1,72 @@ +--- +title: Dante Portfolio & Blog Site with Astro +github: https://github.com/JustGoodUI/dante-astro-theme +demo: https://dante-astro-theme.netlify.app/ +author: justgoodui.com +date: 2025-01-12 +ssg: + - Astro +cms: + - No CMS +css: + - Tailwind +archetype: + - Blog + - Portfolio + - Personal +description: >- + Dante - uncluttered minimal blog and portfolio Astro.js + Tailwind CSS theme designed for those who appreciate clarity and minimalism. +stale: false +disabled: false +featured: false +netlify_deploy: https://app.netlify.com/start/deploy?repository=https://github.com/JustGoodUI/dante-astro-theme +--- + +# Dante - Astro.js & Tailwind CSS Theme + +Dante is a single-author blog and portfolio theme for Astro.js. Featuring a minimal, slick, responsive and content-focused design. For more Astro.js themes please check [justgoodui.com](https://justgoodui.com/). + +## Theme Features: + +- ✅ Dark and light color mode +- ✅ Hero section with bio +- ✅ Portfolio collection +- ✅ Pagination support +- ✅ Post tags support +- ✅ Subscription form +- ✅ View transitions +- ✅ Tailwind CSS +- ✅ Mobile-first responsive layout +- ✅ SEO-friendly with canonical URLs and OpenGraph data +- ✅ Sitemap support +- ✅ RSS Feed support +- ✅ Markdown & MDX support + +## Template Integrations + +- @astrojs/tailwind - https://docs.astro.build/en/guides/integrations-guide/tailwind/ +- @astrojs/sitemap - https://docs.astro.build/en/guides/integrations-guide/sitemap/ +- @astrojs/mdx - https://docs.astro.build/en/guides/markdown-content/ +- @astrojs/rss - https://docs.astro.build/en/guides/rss/ + +## Project Structure + +Inside of Dante Astro theme, you'll see the following folders and files: + +```text +├── public/ +├── src/ +│   ├── components/ +│   ├── content/ +│   ├── data/ +│   ├── icons/ +│   ├── layouts/ +│   ├── pages/ +│   ├── styles/ +│   └── utils/ +├── astro.config.mjs +├── package.json +├── README.md +├── tailwind.config.cjs +└── tsconfig.json +``` \ No newline at end of file diff --git a/content/theme/dark-poole.md b/content/theme/dark-poole.md index 004779d86..def55ed09 100644 --- a/content/theme/dark-poole.md +++ b/content/theme/dark-poole.md @@ -1,10 +1,9 @@ --- title: dark-poole -github: 'https://github.com/andrewhwanpark/dark-poole' -demo: 'https://andrewhwanpark.github.io/dark-poole/' +github: https://github.com/andrewhwanpark/dark-poole +demo: https://andrewhwanpark.github.io/dark-poole/ author: andrewhwanpark date: 2020-08-03T00:00:00.000Z -github_branch: master ssg: - Jekyll cms: @@ -15,7 +14,7 @@ archetype: - Blog - Portfolio description: Dark Poole is a permanent dark theme of the Poole theme by @mdo. -stale: false +stale: true --- # Minimal, responsive, and no frills theme diff --git a/content/theme/darkfolio.md b/content/theme/darkfolio.md index 9d9165792..d80148d3b 100644 --- a/content/theme/darkfolio.md +++ b/content/theme/darkfolio.md @@ -1,14 +1,13 @@ --- title: Darkfolio -github: 'https://github.com/itsnwa/darkfolio' -demo: 'https://darkfolio.netlify.com/' +github: https://github.com/itsnwa/darkfolio +demo: https://darkfolio.netlify.com/ author: Nichlas W. Andersen ssg: - Gridsome cms: - Forestry date: 2019-08-14T09:55:03.000Z -github_branch: master description: Gridsome portfolio theme (Forestry ready) -stale: false +stale: true --- diff --git a/content/theme/delog-gatsby-netlifycms.md b/content/theme/delog-gatsby-netlifycms.md index fa7d4a393..2a8195b6f 100644 --- a/content/theme/delog-gatsby-netlifycms.md +++ b/content/theme/delog-gatsby-netlifycms.md @@ -1,20 +1,19 @@ --- title: Delog GatsbyJS -github: 'https://github.com/W3Layouts/gatsby-starter-delog' +github: https://github.com/W3Layouts/gatsby-starter-delog author: W3Layouts -demo: 'https://delog-w3layouts.netlify.com/' +demo: https://delog-w3layouts.netlify.com/ date: 2020-06-03T00:00:00.000Z ssg: - Gatsby cms: - - NetlifyCMS + - DecapCMS archetype: - Blog description: >- Delog is developed for professional bloggers and web designers to build a website that has a lightning-fast navigation speed -github_branch: master -stale: false +stale: true --- Delog is developed for professional bloggers and web designers to build a website that has a lightning-fast navigation speed. diff --git a/content/theme/dentistsmile.md b/content/theme/dentistsmile.md index d6828b693..e801a0264 100644 --- a/content/theme/dentistsmile.md +++ b/content/theme/dentistsmile.md @@ -1,7 +1,7 @@ --- title: Dentistsmile -github: 'https://github.com/obaez/dentistsmile' -demo: 'https://obaez.com/dentistsmile/' +github: https://github.com/obaez/dentistsmile +demo: https://obaez.com/dentistsmile/ author: Obaez ssg: - Jekyll @@ -12,5 +12,5 @@ github_branch: master description: Single page Jekyll theme for dental clinics stale: true disabled: true -disabled_reason: Not Found +disabled_reason: error checking demo url --- diff --git a/content/theme/devfest-toulouse-theme.md b/content/theme/devfest-toulouse-theme.md index dc55ade53..f08b61de7 100644 --- a/content/theme/devfest-toulouse-theme.md +++ b/content/theme/devfest-toulouse-theme.md @@ -1,14 +1,13 @@ --- title: Devfest Toulouse Theme -github: 'https://github.com/GDGToulouse/devfest-theme-hugo' -demo: 'https://2019.devfesttoulouse.fr/' +github: https://github.com/GDGToulouse/devfest-theme-hugo +demo: https://2019.devfesttoulouse.fr/ author: GDGToulouse ssg: - Hugo cms: - No Cms date: 2019-01-10T21:22:23.000Z -github_branch: master description: A theme for a conference website. Created for DevFest Toulouse 2019 stale: false --- diff --git a/content/theme/devlopr.md b/content/theme/devlopr.md index 8b1861f84..b283aa853 100644 --- a/content/theme/devlopr.md +++ b/content/theme/devlopr.md @@ -1,15 +1,14 @@ --- title: devlopr-jekyll -github: 'https://github.com/sujaykundu777/devlopr-jekyll' -demo: 'https://devlopr.netlify.app' +github: https://github.com/sujaykundu777/devlopr-jekyll +demo: https://devlopr.netlify.app author: Sujay Kundu date: 2020-09-23T00:00:00.000Z -github_branch: master ssg: - Jekyll cms: - Forestry - - NetlifyCMS + - DecapCMS css: - Bootstrap archetype: diff --git a/content/theme/directus-metalsmith-snipcart.md b/content/theme/directus-metalsmith-snipcart.md index 545fa74a2..16271d849 100644 --- a/content/theme/directus-metalsmith-snipcart.md +++ b/content/theme/directus-metalsmith-snipcart.md @@ -1,7 +1,7 @@ --- title: Directus Metalsmith Snipcart -github: 'https://github.com/snipcart/directus-metalsmith-snipcart' -demo: 'https://snipcart-directus-metalsmith.netlify.com' +github: https://github.com/snipcart/directus-metalsmith-snipcart +demo: https://snipcart-directus-metalsmith.netlify.com author: Maxime Laboissonniere ssg: - Metalsmith @@ -10,7 +10,6 @@ cms: services: - Snipcart date: 2020-04-19T00:00:00.000Z -github_branch: master description: API-First CMS Primer with Directus' Open Source Headless CMS stale: true --- diff --git a/content/theme/docuapi.md b/content/theme/docuapi.md index fe494850c..2db72ccf8 100644 --- a/content/theme/docuapi.md +++ b/content/theme/docuapi.md @@ -1,14 +1,13 @@ --- title: DocuAPI -github: 'https://github.com/bep/docuapi' -demo: 'https://docuapi.netlify.com/' +github: https://github.com/bep/docuapi +demo: https://docuapi.netlify.com/ author: Bjørn Erik Pedersen ssg: - Hugo cms: - No Cms date: 2019-10-27T00:00:00.000Z -github_branch: master description: Beautiful multilingual API documentation theme for Hugo stale: false --- diff --git a/content/theme/docusaurus-theme-no-style.md b/content/theme/docusaurus-theme-no-style.md index 1774d2bdd..710a7a257 100644 --- a/content/theme/docusaurus-theme-no-style.md +++ b/content/theme/docusaurus-theme-no-style.md @@ -1,14 +1,13 @@ --- title: Docusaurus Theme No Style -github: 'https://github.com/wgao19/docusaurus-theme-no-style' -demo: 'https://docusaurus-theme-no-style.netlify.com/' +github: https://github.com/wgao19/docusaurus-theme-no-style +demo: https://docusaurus-theme-no-style.netlify.com/ author: Wei Gao ssg: - Docusaurus cms: - No Cms date: 2020-05-17T18:24:48.000Z -github_branch: master description: >- This theme is a trim down from @docusaurus/theme-classic of Docusaurus 2 to contain only opinionated minimum styles diff --git a/content/theme/dot-hugo-documentation-theme.md b/content/theme/dot-hugo-documentation-theme.md deleted file mode 100644 index 860c84472..000000000 --- a/content/theme/dot-hugo-documentation-theme.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: Dot -github: 'https://github.com/themefisher/dot-hugo-documentation-theme' -demo: 'https://themes.gohugo.io/theme/dot-hugo-documentation-theme/' -author: Themefisher -ssg: - - Hugo -cms: - - No Cms -date: 2019-01-05T09:42:06.000Z -github_branch: master -description: Dot - Hugo Documentation Theme -stale: false ---- \ No newline at end of file diff --git a/content/theme/eleventy-base-blog.md b/content/theme/eleventy-base-blog.md index f491ba237..e9f0fc41f 100644 --- a/content/theme/eleventy-base-blog.md +++ b/content/theme/eleventy-base-blog.md @@ -1,14 +1,13 @@ --- title: Eleventy Base Blog -github: 'https://github.com/11ty/eleventy-base-blog' -demo: 'https://eleventy-base-blog.netlify.com/' +github: https://github.com/11ty/eleventy-base-blog +demo: https://eleventy-base-blog.netlify.com/ author: 11ty ssg: - Eleventy cms: - No Cms date: 2018-01-15T19:28:07.000Z -github_branch: master description: >- A starter repository for a blog web site using the Eleventy static site generator. diff --git a/content/theme/eleventy-blog-mnml.md b/content/theme/eleventy-blog-mnml.md index eb1fc8aed..9ae62e003 100644 --- a/content/theme/eleventy-blog-mnml.md +++ b/content/theme/eleventy-blog-mnml.md @@ -1,12 +1,11 @@ --- title: Eleventy Minimal Blog -github: 'https://github.com/arpitbatra123/eleventy-blog-mnml' -demo: 'https://eleventy-blog-mnml.netlify.com/' +github: https://github.com/arpitbatra123/eleventy-blog-mnml +demo: https://eleventy-blog-mnml.netlify.com/ author: Arpit Batra ssg: - Eleventy date: 2019-07-02T13:08:30.000Z -github_branch: master description: A blog template using eleventy -stale: false +stale: true --- diff --git a/content/theme/eleventy-chirpy-blog-template.md b/content/theme/eleventy-chirpy-blog-template.md index 4eb530464..d4a5e061b 100644 --- a/content/theme/eleventy-chirpy-blog-template.md +++ b/content/theme/eleventy-chirpy-blog-template.md @@ -1,10 +1,9 @@ --- title: Eleventy Chirpy Blog Template -github: 'https://github.com/muenzpraeger/eleventy-chirpy-blog-template' -demo: 'https://eleventy-chirpy-blog-template.netlify.app/' +github: https://github.com/muenzpraeger/eleventy-chirpy-blog-template +demo: https://eleventy-chirpy-blog-template.netlify.app/ author: René Winkelmeyer date: 2021-08-28T00:00:00.000Z -github_branch: main ssg: - Eleventy cms: diff --git a/content/theme/eleventy-duo.md b/content/theme/eleventy-duo.md index a6c9767eb..3f1f535d2 100644 --- a/content/theme/eleventy-duo.md +++ b/content/theme/eleventy-duo.md @@ -1,10 +1,9 @@ --- title: Eleventy Duo -github: 'https://github.com/yinkakun/eleventy-duo' -demo: 'https://eleventyduo.netlify.app' +github: https://github.com/yinkakun/eleventy-duo +demo: https://eleventyduo.netlify.app author: yinkakun date: 2020-12-27T00:00:00.000Z -github_branch: master ssg: - Eleventy cms: diff --git a/content/theme/eleventy-libdoc.md b/content/theme/eleventy-libdoc.md new file mode 100644 index 000000000..233453f32 --- /dev/null +++ b/content/theme/eleventy-libdoc.md @@ -0,0 +1,48 @@ +--- +title: "Eleventy LibDoc" +github: https://github.com/ita-design-system/eleventy-libdoc +demo: https://eleventy-libdoc.netlify.app +author: Olivier 3lanc +date: 2025-05-16 +ssg: + - Eleventy +cms: + - No CMS +css: + - CSS +archetype: + - Documentation + - Blog + - Portfolio +description: An Eleventy starter project to craft slick and responsive documentation +--- + +# Eleventy LibDoc + +![image](https://github.com/user-attachments/assets/ed2c2d53-5927-473f-852e-e9c8e98aaa5f) + +![image](https://github.com/user-attachments/assets/52fc521d-fb51-4174-8ab2-f6114af1abcc) + +## Key features + +* **Content focused**
LibDoc is easy to install, deploy and use. +* **Accessibility**
LibDoc was developed with accessibility awareness. +* **Performance**
Low front-end dependencies and vanilla JS self-made components make LibDoc cross-browser compatibility and good performances. View performances. +* **Search**
Quickly get search results and easily navigate through search occurrences with a dedicated UI. +* **Smart navigation**
On page change, the primary navigation menu keeps its position. +* **Smart table of content**
In addition of a pure static table of content, LibDoc generates a floating TOC always visible that also displays the current window scroll position. +* **Fallback if no Javascript available**
LibDoc can work even without Javascript with reduced features. +* **Image transcoding**
LibDoc transcodes and resizes your source images into production ready formats. +* **Printable**
Every page created with LibDoc can be printed. +* **Slick code highlighting**
Display your code in a nice style and adjust which code languages you really use. +* **Sandboxes**
Showcase small demos or full HTML pages into a responsive dual pane. + +## Documentation + +* [LibDoc’s homepage](https://eleventy-libdoc.netlify.app)
The website containing LibDocs’s presentation and comprehensive documentation. + * [Configuration](https://eleventy-libdoc.netlify.app/configuration/)
List and descriptions of every LibDoc parameter. + * [Creating content](https://eleventy-libdoc.netlify.app/creating-content/)
How LibDoc can display your content in multiple ways. + * [Front matter](https://eleventy-libdoc.netlify.app/front-matter/)
Documentation of all front matter settings related to a LibDoc page. + * [Primary navigation](https://eleventy-libdoc.netlify.app/primary-navigation/)
Detailed features of LibDoc’s primary navigation. + * [SEO](https://eleventy-libdoc.netlify.app/configuration/seo/)
How LibDoc’s configuration and pages parameters are applied for Search Engine Optimization. + * [Credits](https://eleventy-libdoc.netlify.app/configuration/credits/) LibDoc could not work without these resources. diff --git a/content/theme/eleventy-netlify-boilerplate.md b/content/theme/eleventy-netlify-boilerplate.md index eab66a822..422d64523 100644 --- a/content/theme/eleventy-netlify-boilerplate.md +++ b/content/theme/eleventy-netlify-boilerplate.md @@ -1,14 +1,13 @@ --- -title: Eleventy NetlifyCMS Boilerplate -github: 'https://github.com/danurbanowicz/eleventy-netlify-boilerplate' -demo: 'https://eleventy-netlify-boilerplate.netlify.com/' +title: Eleventy DecapCMS Boilerplate +github: https://github.com/danurbanowicz/eleventy-netlify-boilerplate +demo: https://eleventy-netlify-boilerplate.netlify.com/ author: Dan Urbanowicz ssg: - Eleventy cms: - - NetlifyCMS + - DecapCMS date: 2018-07-24T07:16:25.000Z -github_branch: master description: >- A boilerplate for building a simple website with the Eleventy static site generator diff --git a/content/theme/eleventy-satisfactory.md b/content/theme/eleventy-satisfactory.md new file mode 100644 index 000000000..5c7c11eca --- /dev/null +++ b/content/theme/eleventy-satisfactory.md @@ -0,0 +1,41 @@ +--- +title: Eleventy Satisfactory +github: https://github.com/mendhak/eleventy-satisfactory +demo: https://code.mendhak.com/eleventy-satisfactory/ +author: mendhak +ssg: + - Eleventy +cms: + - No CMS +archetype: + - Blog +date: 2023-01-24T11:43:52.000Z +description: Eleventy blog theme with main focus on content, and less on everything else +stale: false +--- + +## Eleventy Satisfactory Blog Theme + +An opinionated [Eleventy](https://11ty.dev) blog theme making use of [SimpleCSS](https://simplecss.org/), with inspiration from [Hylia](https://hylia.website) and [minimal-mistakes](https://mmistakes.github.io/minimal-mistakes/). The focus is mainly on content, and less on everything else (author, social, tags, etc). + + +**Features** + +* Images using regular Markdown syntax are displayed with lightbox +* Image gallery with captions +* Extra wide images, videos and code blocks +* Full width images and videos +* Automatic light and dark mode +* Links to .md files are converted to their final URL +* Simplified post and home page layout +* Adjustable number of post listings +* Post excerpts below post listings +* Opengraph metadata for posts including preview image +* Code blocks rendered using Prism syntax highlighting +* Notice boxes such as info, warning, success +* Seamless gist integration as code blocks +* Github repo cards generator +* No tags listings, no site navigation, no social, no landing page, no analytics +* Draft posts appear locally +* Robots.txt, .well-known folder, Favicon + diff --git a/content/theme/eleventy-starter-ghost.md b/content/theme/eleventy-starter-ghost.md index f1690e23c..3dec0844f 100644 --- a/content/theme/eleventy-starter-ghost.md +++ b/content/theme/eleventy-starter-ghost.md @@ -1,14 +1,13 @@ --- title: Eleventy Starter Ghost -github: 'https://github.com/TryGhost/eleventy-starter-ghost' -demo: 'https://eleventy.ghost.org/' +github: https://github.com/TryGhost/eleventy-starter-ghost +demo: https://eleventy.ghost.org/ author: Ghost ssg: - Eleventy cms: - Ghost date: 2019-07-15T11:43:52.000Z -github_branch: master description: A starter template to build websites with Ghost & Eleventy -stale: false +stale: true --- diff --git a/content/theme/eleventy-stylus-blog-theme.md b/content/theme/eleventy-stylus-blog-theme.md new file mode 100644 index 000000000..a6c31d77d --- /dev/null +++ b/content/theme/eleventy-stylus-blog-theme.md @@ -0,0 +1,81 @@ +--- +title: Eleventy + Stylus Blog Theme - Purple +github: https://github.com/ar363/eleventy-stylus-blog-theme +demo: https://eleventy-stylus-blog-theme-ar363.vercel.app/ +author: ar363 +date: 2021-03-23T00:00:00.000Z +ssg: + - Eleventy +cms: + - No CMS +css: + - Stylus +archetype: + - Blog +description: >- + A nice-looking, mobile-first and dark theme friendly blog theme built with + Eleventy SSG and Stylus Preprocessor +stale: false +--- + +# Eleventy + Stylus Blog theme + +[![Netlify Status](https://api.netlify.com/api/v1/badges/a180e099-11d2-49d4-9697-910d56980343/deploy-status)](https://app.netlify.com/sites/eleventy-stylus-blog-theme/deploys) +[![Build Status](https://travis-ci.com/ar363/eleventy-stylus-blog-theme.svg?branch=main)](https://travis-ci.com/ar363/eleventy-stylus-blog-theme) +[![Vercel Status](https://vercel-badge-ar363.vercel.app/?app=eleventy-stylus-blog-theme)](https://github.com/ar363/eleventy-stylus-blog-theme/deployments/activity_log?environment=Production) + +A theme repository that contains a blog built with [Eleventy](https://github.com/11ty/eleventy) and [Stylus](https://stylus-lang.com/) + +## Features + - 100% Lighthouse scores + - Toggleable dark theme (PS. theme preference is also stored in `localStorage`) + - Tags as taxonomy + - Stylus CSS preprocessor + - Integrated with Eleventy's official [navigation plugin](https://www.11ty.dev/docs/plugins/navigation/) + - Also generates Atom RSS Feed with Eleventy's official [RSS plugin](https://www.11ty.dev/docs/plugins/rss/) + - Sitemap generation + - Non-post pages support (eg. About page, Contact page) + - Modular type scale implemented in with Stylus + +## Demos + + - Vercel: https://eleventy-stylus-blog-theme.vercel.app/ + - Netlify: https://eleventy-stylus-blog-theme.netlify.app/ + - Github Pages: https://ar363.github.io/eleventy-stylus-blog-theme/ + +## Deploy this template to your own site + +Get your site up and running with a few clicks + + - [Deploy on Netlify](https://app.netlify.com/start/deploy?repository=https://github.com/ar363/eleventy-stylus-blog-theme) + - [Deploy on Vercel](https://vercel.com/import/project?template=ar363%2Feleventy-stylus-blog-theme) + +## Prerequisites for local development +[Node.js 8 or above](https://nodejs.org/en/) + +[Yarn](https://yarnpkg.com/) package manager + + +## Getting started locally + +1. Clone this repo +``` +git clone https://github.com/ar363/eleventy-stylus-blog-theme my-blog +``` + +2. Navigate to the blog directory +``` +cd my-blog +``` + +3. Install dependencies with [yarn](https://yarnpkg.com/) +``` +yarn +``` +4. Edit `_data/site.js` according to your site preferences + +5. Also optionally modify `stylus/abstracts/variables.styl` according to your preference + +To watch for changes in Eleventy and Stylus, use `yarn dev` + +To build without watching for changes, use `yarn build` diff --git a/content/theme/eleventyone.md b/content/theme/eleventyone.md index c7e1e766e..c41b823bc 100644 --- a/content/theme/eleventyone.md +++ b/content/theme/eleventyone.md @@ -1,14 +1,13 @@ --- title: Eleventyone -github: 'https://github.com/philhawksworth/eleventyone' -demo: 'https://eleventyone.netlify.com/' +github: https://github.com/philhawksworth/eleventyone +demo: https://eleventyone.netlify.com/ author: 11ty ssg: - Eleventy cms: - No Cms date: 2018-03-30T19:45:51.000Z -github_branch: master description: A scaffold for a quick start building with the Eleventy SSG -stale: false +stale: true --- diff --git a/content/theme/elyxel.md b/content/theme/elyxel.md index 8f587f547..1a5c5aee4 100644 --- a/content/theme/elyxel.md +++ b/content/theme/elyxel.md @@ -1,14 +1,15 @@ --- title: Elyxel -github: 'https://github.com/achariam/elyxel' -demo: 'https://www.elyxel.com/' +github: https://github.com/achariam/elyxel +demo: https://www.elyxel.com/ author: Matthew Achariam ssg: - Brunch cms: - No Cms date: 2016-05-25T02:35:00.000Z -github_branch: master description: Community Software stale: true +disabled: true +disabled_reason: error checking demo url --- diff --git a/content/theme/end2end.md b/content/theme/end2end.md index 0b08072db..0c3688660 100644 --- a/content/theme/end2end.md +++ b/content/theme/end2end.md @@ -1,14 +1,13 @@ --- title: End2end -github: 'https://github.com/nandomoreirame/end2end' -demo: 'https://nandomoreirame.github.io/end2end/' +github: https://github.com/nandomoreirame/end2end +demo: https://nandomoreirame.github.io/end2end/ author: Fernando Moreira ssg: - Jekyll cms: - No Cms date: 2015-11-26T15:45:00.000Z -github_branch: master -description: "\U0001F48E Clean Jekyll theme" +description: 💎 Clean Jekyll theme stale: true --- diff --git a/content/theme/feeling-responsive.md b/content/theme/feeling-responsive.md index 3f0306996..58ab6c714 100644 --- a/content/theme/feeling-responsive.md +++ b/content/theme/feeling-responsive.md @@ -1,14 +1,13 @@ --- title: Feeling Responsive -github: 'https://github.com/Phlow/feeling-responsive' -demo: 'https://phlow.github.io/feeling-responsive/' +github: https://github.com/Phlow/feeling-responsive +demo: https://phlow.github.io/feeling-responsive/ author: Phlow ssg: - Jekyll cms: - No Cms date: 2014-08-17T10:32:01.000Z -github_branch: gh-pages description: >- »Feeling Responsive« is a free flexible theme for Jekyll built on Foundation framework. You can use it for your company site, as a portfolio or as a blog. diff --git a/content/theme/fernfolio.md b/content/theme/fernfolio.md new file mode 100644 index 000000000..cbd12c6ca --- /dev/null +++ b/content/theme/fernfolio.md @@ -0,0 +1,64 @@ +--- +title: Fernfolio +github: https://github.com/TylerMRoderick/fernfolio-11ty-template +demo: https://fernfolio.netlify.app/ +author: Tyler M. Roderick +date: 2021-06-05T00:00:00.000Z +ssg: + - Eleventy +cms: + - DecapCMS +css: null +archetype: + - Blog + - Portfolio +description: The super simple portfolio template built with Eleventy and DecapCMS +stale: false +--- + +## 🤔 What is this? +An [Eleventy](https://www.11ty.io/) theme designed to simplify the process of deploying a beautiful portfolio and blog. Launch your site in minutes! + +## ✨ Features +* Built in support for [DecapCMS](https://www.DecapCMS.org/) with editor previews +* Customizable blog and project pages with tag support +* Working contact form powered by [Netlify Forms](https://www.netlify.com/products/forms/) +* Super fast page render and high lighthouse scores +* Uses Markdown for content files and Nunjucks for layouts +* 100% Javascript framework free +* Continuous Deployment workflow via [Netlify](https://www.netlify.com/) +* Base styles powered by [Sakura](https://github.com/oxalorg/sakura) classless css framework +* Vanilla css for custom styles (keep it simple) + +## 🚀 Quick Start + +[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/TylerMRoderick/fernfolio-11ty-template&stack=cms) + +### 1. Click the "Deploy to Netlify" button above +This will clone this repo to your github account and will deploy a copy of the demo website to your Netlify +account (you can create an account during this process if you don't have one) + +### 2. Setup authentication + +After deploying this project, Netlify Identity will add you as a CMS user and +will email you an invite. Hit the "Accept the invite" link and this should take you to the deployed site. From there, you can add your password to finish user setup. + +### 3. Edit some content +Now that you are added as a CMS user, add `/admin` to the end of your site url, and log in using your new credentials. You should now see the content editor interface. Now you can start editing content! Any changes to your new repo will auto-deploy a new version to netflify. Cool huh? + +### 4. Setup local environment +- Clone the repo locally `git clone https://github.com/TylerMRoderick/fernfolio-11ty-template.git` +- Navigate to root folder `cd your-site` +- Install the goods `npm install` +- Run it: `npm start` +- You should now be able to see everything running on localhost:8080 +- Add some changes (view [theme customizations](https://fernfolio.netlify.app/posts/theme-customizations/) for some options) +- Push your changes to github and an auto-deploy should be triggered + +## 🎩 Common issues + +If you change the repo that was created at deploy time from public to private, you'll need to regenerate your token, +as the token generated using the deploy to Netlify button can only access public repositories. To +regenerate your token, head to "Settings" in your Netlify site dashboard, go to the "Identity" +section, then scroll to "Services" where you'll see an "Edit settings" button. Click that and you'll +see a text link to "Generate access token in GitHub". \ No newline at end of file diff --git a/content/theme/flexible-jekyll.md b/content/theme/flexible-jekyll.md index b6c90053f..fbc6d82cc 100644 --- a/content/theme/flexible-jekyll.md +++ b/content/theme/flexible-jekyll.md @@ -1,14 +1,15 @@ --- title: Flexible Jekyll -github: 'https://github.com/artemsheludko/flexible-jekyll' -demo: 'https://artemsheludko.com/flexible-jekyll/' +github: https://github.com/artemsheludko/flexible-jekyll +demo: https://artemsheludko.com/flexible-jekyll/ author: Artem Sheludko ssg: - Jekyll cms: - No Cms date: 2017-09-14T13:16:08.000Z -github_branch: master description: Flexible-Jekyll is a simple and clean theme for Jekyll stale: false +disabled: true +disabled_reason: error checking demo url --- diff --git a/content/theme/forever-jekyll.md b/content/theme/forever-jekyll.md new file mode 100644 index 000000000..d48fbac70 --- /dev/null +++ b/content/theme/forever-jekyll.md @@ -0,0 +1,46 @@ +--- +title: Forever Jekyll +github: https://github.com/forever-jekyll/forever-jekyll +demo: https://forever-jekyll.github.io/ +author: forever-jekyll +date: 2021-07-16T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +css: + - SCSS +archetype: + - Blog + - Personal +description: Forever Jekyll is a simple, elegant & full featured Jekyll theme. +stale: false +--- + +# A simple, elegant & full featured Jekyll theme. + +## Features + +Here are some of notable features of Forever Jekyll, + +- Simple, clean and distraction free layout. +- Responsive theme design. +- Mobile optimized theme. +- Good looking and readable font stack. +- Font Awesome icon set. +- Search engine optimization. +- SCSS/SCSS preprocessor support. +- Privacy friendly commenting system (optional). +- Privacy friendly analytics system (optional). +- Syntax highlighting. +- Multimedia content (Video, Audio, Images, Playlists, Maps) embedding. +- Lightbox for images and videos. +- Math typesetting. +- Diagrams and charts. +- Social sharing buttons for over 10 social networks. +- Page navigation (pagination). +- Post navigation. +- Post categories. +- Post read time. +- Site search. +- RSS feed. diff --git a/content/theme/forty.md b/content/theme/forty.md index 62ba089d6..0dd8d6d99 100644 --- a/content/theme/forty.md +++ b/content/theme/forty.md @@ -1,14 +1,15 @@ --- title: Forty -github: 'https://github.com/MarcusVirg/forty' -demo: 'https://themes.gohugo.io/theme/forty/' +github: https://github.com/MarcusVirg/forty +demo: https://themes.gohugo.io/theme/forty/ author: Marcus Virginia ssg: - Hugo cms: - No Cms date: 2017-11-18T01:53:43.000Z -github_branch: master description: Forty theme - Hugo theme ported from HTML5UP origrinal theme called Forty. stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/freelancer-theme.md b/content/theme/freelancer-theme.md index 00f5dae9a..04279a257 100644 --- a/content/theme/freelancer-theme.md +++ b/content/theme/freelancer-theme.md @@ -1,7 +1,7 @@ --- title: Freelancer -github: 'https://github.com/jeromelachaud/freelancer-theme' -demo: 'https://jeromelachaud.com/freelancer-theme/' +github: https://github.com/jeromelachaud/freelancer-theme +demo: https://jeromelachaud.com/freelancer-theme/ author: Jerome Lachaud ssg: - Jekyll @@ -10,7 +10,6 @@ cms: css: - Bootstrap date: 2014-07-19T15:13:08.000Z -github_branch: master description: Jekyll theme based on Freelancer Start Bootstrap theme stale: false --- diff --git a/content/theme/garth.md b/content/theme/garth.md index 1afcc8d9b..55e387843 100644 --- a/content/theme/garth.md +++ b/content/theme/garth.md @@ -1,7 +1,7 @@ --- title: Garth -github: 'https://github.com/daviddarnes/garth' -demo: 'https://garth.darn.es' +github: https://github.com/daviddarnes/garth +demo: https://garth.darn.es author: David Darnes ssg: - Jekyll @@ -12,9 +12,8 @@ archetype: css: - SCSS date: 2019-11-01T00:00:00.000Z -github_branch: master -description: "\U0001F941 A really basic theme for Jekyll" -stale: false +description: 🥁 A really basic theme for Jekyll +stale: true --- 🥁 A really basic theme for Jekyll, using the official Jekyll theme implementation. diff --git a/content/theme/gatsby-absurd.md b/content/theme/gatsby-absurd.md index e9a573b20..e913a06a5 100644 --- a/content/theme/gatsby-absurd.md +++ b/content/theme/gatsby-absurd.md @@ -1,7 +1,7 @@ --- title: Gatsby Absurd -github: 'https://github.com/ajayns/gatsby-absurd' -demo: 'https://gatsby-absurd.surge.sh/' +github: https://github.com/ajayns/gatsby-absurd +demo: https://gatsby-absurd.surge.sh/ author: Ajay NS ssg: - Gatsby @@ -10,7 +10,6 @@ cms: archetype: - Single Page date: 2019-04-21T11:32:28.000Z -github_branch: master description: An absurd Gatsby starter -stale: false +stale: true --- diff --git a/content/theme/gatsby-advanced-blog-system.md b/content/theme/gatsby-advanced-blog-system.md index c0879b3cd..52b3b6cf5 100644 --- a/content/theme/gatsby-advanced-blog-system.md +++ b/content/theme/gatsby-advanced-blog-system.md @@ -1,7 +1,7 @@ --- title: Gatsby Advanced Blog System -github: 'https://github.com/danilowoz/gatsby-advanced-blog-system' -demo: 'https://gatsby-advanced-blog-system.danilowoz.now.sh/blog' +github: https://github.com/danilowoz/gatsby-advanced-blog-system +demo: https://gatsby-advanced-blog-system.danilowoz.now.sh/blog author: Danilo Woznica ssg: - Gatsby @@ -10,7 +10,8 @@ cms: archetype: - Blog date: 2019-03-24T20:19:40.000Z -github_branch: master -description: "\U0001F4F0 This repository is a demo from the article about how to build our own blog using Gatsby." +description: >- + 📰 This repository is a demo from the article about how to build our own blog + using Gatsby. stale: false --- diff --git a/content/theme/gatsby-advanced-starter.md b/content/theme/gatsby-advanced-starter.md index b509b0c62..e64d189aa 100644 --- a/content/theme/gatsby-advanced-starter.md +++ b/content/theme/gatsby-advanced-starter.md @@ -1,20 +1,86 @@ --- title: Gatsby Advanced Starter -github: 'https://github.com/Vagr9K/gatsby-advanced-starter' -demo: 'https://vagr9k.github.io/gatsby-advanced-starter/' -author: Ruben Harutyunyan +github: https://github.com/Vagr9K/gatsby-advanced-starter +demo: https://advanced-demo.netlify.app/ +author: vagr9k +date: 2021-08-09T00:00:00.000Z ssg: - Gatsby cms: - - No Cms -archetype: - - Blog -date: 2017-07-18T20:18:32.000Z -github_branch: master + - No CMS description: >- - A high performance skeleton starter for GatsbyJS that focuses on SEO/Social - features/development environment. + Gatsby Advanced Starter aims to provide a minimal base for building advanced + GatsbyJS powered websites by using the latest technologies to simplify your + process. stale: false -disabled: true -disabled_reason: demo url not found --- + +# A starter skeleton with advanced features + +The Advanced Starter doesn't define any UI limitations in any way and only gives you the basic components for SEO/Links/Infinite Scrolling while creating a comfortable development environment to get started. + +Starter supports both [TypeScript](https://www.typescriptlang.org/) and JavaScript, comes with [Jest](https://jestjs.io/) and [Cypress](https://www.cypress.io/) configurations and allows you to write Unit/Integration/E2E tests out of the box. + +You are free to use any UI framework/styling options or you can use the [`gatsby-theme-amaranth`](https://www.npmjs.com/package/gatsby-theme-amaranth) as a starting point, which provides a stylish blog design styled with [Styled Components](https://styled-components.com/) + +## Demos + +[With `gatsby-theme-advanced`](https://advanced-demo.netlify.app/) + +[With `gatsby-theme-amaranth`](https://amaranth-demo.netlify.app/). + +## Features + +- Gatsby v3 support +- First class [TypeScript](https://www.typescriptlang.org/) support (for query data and components exposed by the theme) +- Styled Components used for styling +- Posts in MDX + - Code syntax highlighting + - Embed videos + - Embed iframes +- Infinite Scrolling +- React Query for client side API calls +- Tags + - Separate page for posts under each tag +- Categories + - Separate page for posts under each category +- Social features + - Twitter tweet button + - Facebook share/share count + - Reddit share/share count + - LinkedIn share button +- Author section +- Related posts computation and display based on category/tag match ranking +- [Disqus](https://disqus.com/) support +- [gatsby-plugin-image](https://www.gatsbyjs.com/plugins/gatsby-plugin-image/) for optimized image generation +- Inline SVG imports +- High configurability +- Separate components for everything: + - Gatsby Link utilities + - SEO + - Disqus +- PWA features + - Offline support + - Web App Manifest support + - Loading progress for slow networks +- SEO + - [Google gtag.js](https://developers.google.com/gtagjs/) support + - Sitemap generation + - General description tags + - [Google Structured Data](https://developers.google.com/search/docs/advanced/structured-data/intro-structured-data) + - [OpenGraph Tags (Facebook/Google+/Pinterest)](https://ogp.me/) + - [Twitter Tags (Twitter Cards)](https://developer.twitter.com/en/docs/tweets/optimize-with-cards/overview/markup) +- RSS feeds +- Development tools + - Yarn 3 + - [Jest](https://jestjs.io/) for unit/integration testing + - [Cypress](https://www.cypress.io/) for E2E testing + - CI via GitHub Actions + - CD via GitHub Actions + - [ESLint](https://eslint.org/) for linting + - [Prettier](https://prettier.io/) for code formatting + - [React Hooks Linting](https://www.npmjs.com/package/eslint-plugin-react-hooks) + - Remark-Lint for linting Markdown + - write-good for linting English prose + - gh-pages for deploying to GitHub pages + - [Netlify](https://www.netlify.com/) deploy configuration diff --git a/content/theme/gatsby-agency-portfolio.md b/content/theme/gatsby-agency-portfolio.md index b37ed1bc8..928c55498 100644 --- a/content/theme/gatsby-agency-portfolio.md +++ b/content/theme/gatsby-agency-portfolio.md @@ -1,7 +1,7 @@ --- title: Gatsby Agency Portfolio -github: 'https://github.com/cosmicjs/gatsby-agency-portfolio' -demo: 'https://cosmicjs.com/apps/gatsby-agency-portfolio/demo' +github: https://github.com/cosmicjs/gatsby-agency-portfolio +demo: https://cosmicjs.com/apps/gatsby-agency-portfolio/demo author: Cosmic ssg: - Gatsby @@ -10,7 +10,6 @@ cms: archetype: - Portfolio date: 2019-05-13T17:02:32.000Z -github_branch: master description: Portfolio client designed with creative agencies in mind. stale: true --- diff --git a/content/theme/gatsby-agility-starter.md b/content/theme/gatsby-agility-starter.md index 8ee8b02c7..65fe84874 100644 --- a/content/theme/gatsby-agility-starter.md +++ b/content/theme/gatsby-agility-starter.md @@ -1,14 +1,13 @@ --- title: Gatsby Agility -github: 'https://github.com/agility/agility-gatsby-starter' -demo: 'https://agility-gatsby-starter.netlify.com/' +github: https://github.com/agility/agility-gatsby-starter +demo: https://agility-gatsby-starter.netlify.com/ author: Agility CMS ssg: - Gatsby cms: - No Cms date: 2019-08-01T14:14:40.000Z -github_branch: master description: A sample GatsbyJS website using the Agility CMS Gatsby source plugin -stale: false +stale: true --- diff --git a/content/theme/gatsby-airtable-advanced-starter.md b/content/theme/gatsby-airtable-advanced-starter.md index 161b55a60..977116841 100644 --- a/content/theme/gatsby-airtable-advanced-starter.md +++ b/content/theme/gatsby-airtable-advanced-starter.md @@ -1,14 +1,13 @@ --- title: Gatsby Airtable Advanced Starter -github: 'https://github.com/marcomelilli/gatsby-airtable-advanced-starter' -demo: 'https://gatsby-airtable-advanced-starter.marcomelilli.com/' +github: https://github.com/marcomelilli/gatsby-airtable-advanced-starter +demo: https://gatsby-airtable-advanced-starter.marcomelilli.com/ author: Marco Melilli ssg: - Gatsby cms: - Airtable date: 2019-07-04T19:41:10.000Z -github_branch: master description: A Gatsby Starter Blog using Airtable as backend -stale: false +stale: true --- diff --git a/content/theme/gatsby-airtable-listing.md b/content/theme/gatsby-airtable-listing.md index 14b413819..7c785df7c 100644 --- a/content/theme/gatsby-airtable-listing.md +++ b/content/theme/gatsby-airtable-listing.md @@ -1,20 +1,17 @@ --- title: Airtable listing theme for Gatsby -github: 'https://github.com/wkocjan/gatsby-airtable-listing' -demo: 'https://gatsby-airtable-listing.netlify.com/' +github: https://github.com/wkocjan/gatsby-airtable-listing +demo: https://gatsby-airtable-listing.netlify.com/ author: Wojciech Kocjan date: 2020-03-16T00:00:00.000Z -github_branch: master ssg: - Gatsby cms: - Airtable css: - Tailwind -archetype: - - Multi Purpose description: Gatsby starter theme integrated with Airtable -stale: false +stale: true --- # Airtable listing theme for Gatsby diff --git a/content/theme/gatsby-all-in.md b/content/theme/gatsby-all-in.md index 2443f7979..5b922601b 100644 --- a/content/theme/gatsby-all-in.md +++ b/content/theme/gatsby-all-in.md @@ -1,14 +1,13 @@ --- title: Gatsby All In -github: 'https://github.com/Gherciu/gatsby-all-in' -demo: 'https://gatsby-all-in.netlify.com/' +github: https://github.com/Gherciu/gatsby-all-in +demo: https://gatsby-all-in.netlify.com/ author: Gherciu Gheorghe ssg: - Gatsby cms: - No Cms date: 2019-07-07T08:54:29.000Z -github_branch: master -description: " \U0001F5C3⚛️A GatsbyJs starter that includes the most popular js libraries, already pre-configured and ready for use." +description: ' 🗃⚛️A GatsbyJs starter that includes the most popular js libraries, already pre-configured and ready for use.' stale: true --- diff --git a/content/theme/gatsby-antd-docs.md b/content/theme/gatsby-antd-docs.md index 8256650ad..8a8853447 100644 --- a/content/theme/gatsby-antd-docs.md +++ b/content/theme/gatsby-antd-docs.md @@ -1,14 +1,13 @@ --- title: Gatsby Antd Docs -github: 'https://github.com/jannikbuschke/gatsby-antd-docs' -demo: 'https://www.jannikbuschke.de/gatsby-antd-docs/' +github: https://github.com/jannikbuschke/gatsby-antd-docs +demo: https://www.jannikbuschke.de/gatsby-antd-docs/ author: Jannik Buschke ssg: - Gatsby cms: - No Cms date: 2019-04-10T22:25:31.000Z -github_branch: master description: A gatsby starter for a technical documentation website -stale: false +stale: true --- diff --git a/content/theme/gatsby-apollo-starter.md b/content/theme/gatsby-apollo-starter.md index f1dc65d4e..b2d7913dd 100644 --- a/content/theme/gatsby-apollo-starter.md +++ b/content/theme/gatsby-apollo-starter.md @@ -1,14 +1,13 @@ --- title: Gatsby Apollo Starter -github: 'https://github.com/smakosh/gatsby-apollo-starter' -demo: 'https://gatsby-starter-apollo.smakosh.com/app/' +github: https://github.com/smakosh/gatsby-apollo-starter +demo: https://gatsby-starter-apollo.smakosh.com/app/ author: Ismail Ghallou ssg: - Gatsby cms: - No Cms date: 2019-06-25T12:25:49.000Z -github_branch: master description: Gatsby Apollo starter - with client side routing stale: true --- diff --git a/content/theme/gatsby-app-starter-rest-api.md b/content/theme/gatsby-app-starter-rest-api.md index 1b96fc1d1..305460825 100644 --- a/content/theme/gatsby-app-starter-rest-api.md +++ b/content/theme/gatsby-app-starter-rest-api.md @@ -1,14 +1,13 @@ --- title: Gatsby App Starter Rest Api -github: 'https://github.com/smakosh/gatsby-app-starter-rest-api' -demo: 'https://building-apps-with-gatsby.netlify.com' +github: https://github.com/smakosh/gatsby-app-starter-rest-api +demo: https://building-apps-with-gatsby.netlify.com author: Ismail Ghallou ssg: - Gatsby cms: - No Cms date: 2019-05-14T06:50:04.000Z -github_branch: master description: Not todo Gatsby app for my talk -stale: false +stale: true --- diff --git a/content/theme/gatsby-auth-starter-aws-amplify.md b/content/theme/gatsby-auth-starter-aws-amplify.md index a3145571b..51ef24a3c 100644 --- a/content/theme/gatsby-auth-starter-aws-amplify.md +++ b/content/theme/gatsby-auth-starter-aws-amplify.md @@ -1,14 +1,13 @@ --- title: Gatsby Auth Starter AWS Amplify -github: 'https://github.com/dabit3/gatsby-auth-starter-aws-amplify' -demo: 'https://master.d2f5ek3dnwfe9v.amplifyapp.com/' +github: https://github.com/dabit3/gatsby-auth-starter-aws-amplify +demo: https://master.d2f5ek3dnwfe9v.amplifyapp.com/ author: Nader Dabit ssg: - Gatsby cms: - No Cms date: 2018-08-24T22:49:54.000Z -github_branch: master description: Starter Project with Authentication with Gatsby & AWS Amplify stale: true --- diff --git a/content/theme/gatsby-awesome-starter.md b/content/theme/gatsby-awesome-starter.md index 304368b70..5d7530a42 100644 --- a/content/theme/gatsby-awesome-starter.md +++ b/content/theme/gatsby-awesome-starter.md @@ -1,14 +1,15 @@ --- title: Gatsby Awesome Starter -github: 'https://github.com/South-Paw/awesome-gatsby-starter' -demo: 'https://awesome-gatsby-starter.netlify.com/' +github: https://github.com/South-Paw/awesome-gatsby-starter +demo: https://awesome-gatsby-starter.netlify.com/ author: Alex Gabites ssg: - Gatsby cms: - No Cms date: 2018-12-19T08:58:58.000Z -github_branch: master -description: "\U0001F44C A starter for GatsbyJS with a preconfigured MDX, Storybook and ESLint environment" +description: >- + 👌 A starter for GatsbyJS with a preconfigured MDX, Storybook and ESLint + environment stale: false --- diff --git a/content/theme/gatsby-blog-cosmicjs.md b/content/theme/gatsby-blog-cosmicjs.md index 86f4145bb..fd3e19542 100644 --- a/content/theme/gatsby-blog-cosmicjs.md +++ b/content/theme/gatsby-blog-cosmicjs.md @@ -1,14 +1,13 @@ --- title: Gatsby Blog Cosmicjs -github: 'https://github.com/cosmicjs/gatsby-blog-cosmicjs' -demo: 'https://gatsby-blog-cosmicjs.netlify.com/' +github: https://github.com/cosmicjs/gatsby-blog-cosmicjs +demo: https://gatsby-blog-cosmicjs.netlify.com/ author: null ssg: - Gatsby cms: - Cosmic date: 2018-06-05T18:40:26.000Z -github_branch: master -description: "\U0001F680⚡️ Blazing fast blog built with Gatsby and Cosmic \U0001F525" -stale: false +description: 🚀⚡️ Blazing fast blog built with Gatsby and Cosmic 🔥 +stale: true --- diff --git a/content/theme/gatsby-blog-revista.md b/content/theme/gatsby-blog-revista.md new file mode 100644 index 000000000..951ef3dc8 --- /dev/null +++ b/content/theme/gatsby-blog-revista.md @@ -0,0 +1,32 @@ +--- +title: Revista +github: https://github.com/chrisnmorrison/revista-gatsby-blog-magazine +demo: https://revista-gatsby-blog-magazine.pages.dev/ +author: Chris Morrison +date: 2023-01-20T00:00:00.000Z +ssg: + - Gatsby +cms: + - No CMS +css: + - SCSS + - PostCSS +archetype: + - Blog + - Personal +description: A fast, clean, and modern blog/magazine template +stale: false +--- + +## Features + +- Open-source blog/magazine template built with Gatsby, React, and Markdown +- Many out-of-the-box configurations have already been completed, so all you have to do is write! +- Auto-generated category pages +- Clean, modern, **complete** design (i.e. more than a boilerplate), and very easy to customize +- Incredibly fast speeds +- Auto-optimized images using Gatsby's Image API +- SEO Friendly +- Complete pages (About, Categories, etc.) that only require changing text to suit your own use +- Social Links in Sidebar +- Cover image for each post (with Responsive image support) diff --git a/content/theme/gatsby-blog-starter-kit.md b/content/theme/gatsby-blog-starter-kit.md index eb719d28a..3a4d71acd 100644 --- a/content/theme/gatsby-blog-starter-kit.md +++ b/content/theme/gatsby-blog-starter-kit.md @@ -1,14 +1,13 @@ --- title: Gatsby Blog Starter Kit -github: 'https://github.com/DSchau/gatsby-blog-starter-kit' -demo: 'https://gatsby-blog-starter-kit.netlify.com/' +github: https://github.com/DSchau/gatsby-blog-starter-kit +demo: https://gatsby-blog-starter-kit.netlify.com/ author: Dustin Schau ssg: - Gatsby cms: - No Cms date: 2017-07-13T13:19:51.000Z -github_branch: master description: A simple starter kit for a static blog created with Gatsby stale: true --- diff --git a/content/theme/gatsby-blog-starter.md b/content/theme/gatsby-blog-starter.md index 724636dbb..85833028f 100644 --- a/content/theme/gatsby-blog-starter.md +++ b/content/theme/gatsby-blog-starter.md @@ -1,14 +1,13 @@ --- title: Blog Starter -github: 'https://github.com/BoyWithSilverWings/gatsby-blog-starter' -demo: 'https://vigilant-leakey-a4f8cd.netlify.com/' +github: https://github.com/BoyWithSilverWings/gatsby-blog-starter +demo: https://vigilant-leakey-a4f8cd.netlify.com/ author: Agney Menon ssg: - Gatsby cms: - No Cms date: 2018-12-25T17:01:37.000Z -github_branch: master description: 'A Gatsby Blog Starter with Styled Components ' stale: false --- diff --git a/content/theme/gatsby-blog.md b/content/theme/gatsby-blog.md index 6818b3daa..2a9dc32e2 100644 --- a/content/theme/gatsby-blog.md +++ b/content/theme/gatsby-blog.md @@ -1,14 +1,13 @@ --- title: Blog -github: 'https://github.com/baobabKoodaa/blog' -demo: 'https://www.attejuvonen.fi' +github: https://github.com/baobabKoodaa/blog +demo: https://www.attejuvonen.fi author: Atte Juvonen ssg: - Gatsby cms: - No Cms date: 2019-01-24T16:12:40.000Z -github_branch: master description: Source for my blazing fast blog stale: false --- diff --git a/content/theme/gatsby-blogger.md b/content/theme/gatsby-blogger.md index 8f5bf8599..04e39302f 100644 --- a/content/theme/gatsby-blogger.md +++ b/content/theme/gatsby-blogger.md @@ -1,14 +1,13 @@ --- title: Blogger -github: 'https://github.com/aslammultidots/blogger' -demo: 'https://gatsby-blogger.netlify.com/' +github: https://github.com/aslammultidots/blogger +demo: https://gatsby-blogger.netlify.com/ author: Aslam Multani ssg: - Gatsby cms: - Contentful date: 2019-02-25T05:18:26.000Z -github_branch: master description: A Gatsby demo for blogging stale: true --- diff --git a/content/theme/gatsby-bonneville.md b/content/theme/gatsby-bonneville.md index 511c93cd5..dc9fbcadb 100644 --- a/content/theme/gatsby-bonneville.md +++ b/content/theme/gatsby-bonneville.md @@ -1,13 +1,12 @@ --- title: Bonneville -github: 'https://github.com/bagseye/bonneville' -demo: 'https://bonneville.netlify.com/' +github: https://github.com/bagseye/bonneville +demo: https://bonneville.netlify.com/ author: Morgan Baker ssg: - Gatsby cms: - No Cms date: 2019-08-24T20:24:33.000Z -github_branch: master stale: false --- diff --git a/content/theme/gatsby-brevifolia-forestry.md b/content/theme/gatsby-brevifolia-forestry.md index 9ec23ca51..c1adfa84b 100644 --- a/content/theme/gatsby-brevifolia-forestry.md +++ b/content/theme/gatsby-brevifolia-forestry.md @@ -1,14 +1,13 @@ --- title: Gatsby Brevifolia Forestry -github: 'https://github.com/kendallstrautman/brevifolia-gatsby-forestry' -demo: 'https://brevifolia-gatsby-forestry.netlify.com/' +github: https://github.com/kendallstrautman/brevifolia-gatsby-forestry +demo: https://brevifolia-gatsby-forestry.netlify.com/ author: Kendall Strautman ssg: - Gatsby cms: - Forestry date: 2019-07-08T20:57:37.000Z -github_branch: master description: A simple starter blog built with Gatsby & Forestry -stale: false +stale: true --- diff --git a/content/theme/gatsby-bulma-quickstart.md b/content/theme/gatsby-bulma-quickstart.md index 7db606adb..5dd88a4b2 100644 --- a/content/theme/gatsby-bulma-quickstart.md +++ b/content/theme/gatsby-bulma-quickstart.md @@ -1,7 +1,7 @@ --- title: Gatsby Bulma Quickstart -github: 'https://github.com/amandeepmittal/gatsby-bulma-quickstart' -demo: 'https://tender-raman-99e09b.netlify.com/' +github: https://github.com/amandeepmittal/gatsby-bulma-quickstart +demo: https://tender-raman-99e09b.netlify.com/ author: Aman Mittal ssg: - Gatsby @@ -10,7 +10,6 @@ cms: css: - Bulma date: 2018-11-26T13:25:33.000Z -github_branch: master -description: "\U0001F680 + ⚛️ A Quick Way to bootstrap your next Gatsby + Bulma site." +description: 🚀 + ⚛️ A Quick Way to bootstrap your next Gatsby + Bulma site. stale: false --- diff --git a/content/theme/gatsby-cape.md b/content/theme/gatsby-cape.md index aa8f935b3..8249ccb5b 100644 --- a/content/theme/gatsby-cape.md +++ b/content/theme/gatsby-cape.md @@ -1,13 +1,12 @@ --- title: Cape -github: 'https://github.com/juhi-trivedi/cape' -demo: 'https://cape.netlify.com/' +github: https://github.com/juhi-trivedi/cape +demo: https://cape.netlify.com/ author: Juhi ssg: - Gatsby cms: - No Cms date: 2019-03-01T13:09:55.000Z -github_branch: master -stale: false +stale: true --- diff --git a/content/theme/gatsby-cara.md b/content/theme/gatsby-cara.md index 0cbae7e0b..e16b7a578 100644 --- a/content/theme/gatsby-cara.md +++ b/content/theme/gatsby-cara.md @@ -1,14 +1,13 @@ --- title: Gatsby Cara -github: 'https://github.com/LekoArts/gatsby-starter-portfolio-cara' -demo: 'https://cara.lekoarts.de/' +github: https://github.com/LekoArts/gatsby-starter-portfolio-cara +demo: https://cara.lekoarts.de/ author: LekoArts ssg: - Gatsby cms: - No Cms date: 2018-06-02T19:41:22.000Z -github_branch: master description: >- Playful and Colorful One-Page portfolio featuring Parallax effects and animations. Especially designers and/or photographers will love this theme! diff --git a/content/theme/gatsby-careers-page.md b/content/theme/gatsby-careers-page.md index 3b989856a..222a6d850 100644 --- a/content/theme/gatsby-careers-page.md +++ b/content/theme/gatsby-careers-page.md @@ -1,14 +1,13 @@ --- title: Gatsby Careers Page -github: 'https://github.com/BoyWithSilverWings/gatsby-careers-page' -demo: 'https://hardcore-darwin-d7328f.netlify.com/' +github: https://github.com/BoyWithSilverWings/gatsby-careers-page +demo: https://hardcore-darwin-d7328f.netlify.com/ author: Agney Menon ssg: - Gatsby cms: - No Cms date: 2018-12-29T17:56:56.000Z -github_branch: master description: Job Listing Page stale: true --- diff --git a/content/theme/gatsby-casper.md b/content/theme/gatsby-casper.md index 8dd23a708..64b4a127d 100644 --- a/content/theme/gatsby-casper.md +++ b/content/theme/gatsby-casper.md @@ -1,14 +1,13 @@ --- title: Gatsby Casper -github: 'https://github.com/scttcper/gatsby-casper' -demo: 'https://gatsby-casper.netlify.com' +github: https://github.com/scttcper/gatsby-casper +demo: https://gatsby-casper.netlify.com author: Scott Cooper ssg: - Gatsby cms: - Ghost date: 2018-09-10T03:48:22.000Z -github_branch: master description: A Casper 2 blog starter for Gatsby stale: false --- diff --git a/content/theme/gatsby-clay.md b/content/theme/gatsby-clay.md new file mode 100644 index 000000000..f265db10f --- /dev/null +++ b/content/theme/gatsby-clay.md @@ -0,0 +1,22 @@ +--- +title: Gatsby Clay +description: Image-centric Gatsby theme for publishers, portfolio, photographers blogs and more. +github: https://github.com/lilxyzz/clay-theme +demo: https://clay-theme.netlify.app +author: Travis Lord + Abdul Waqar +date: 2023-04-17 +ssg: + - Gatsby +gatsby: + version: 5+ + type: theme +cms: + - DecapCMS +github_branch: master +archetype: + - Publishers + - Portfolio + - Photographers + - Artists +license: MIT +--- \ No newline at end of file diff --git a/content/theme/gatsby-clean-portfolio.md b/content/theme/gatsby-clean-portfolio.md index c24f0b40e..a5f6e37f5 100644 --- a/content/theme/gatsby-clean-portfolio.md +++ b/content/theme/gatsby-clean-portfolio.md @@ -1,14 +1,13 @@ --- title: Gatsby Clean Portfolio -github: 'https://github.com/ugglr/gatsby-clean-portfolio' -demo: 'https://ugglr.github.io/gatsby-clean-portfolio/' +github: https://github.com/ugglr/gatsby-clean-portfolio +demo: https://ugglr.github.io/gatsby-clean-portfolio/ author: Carl-W ssg: - Gatsby cms: - No Cms date: 2019-03-31T12:27:43.000Z -github_branch: master description: >- Official Gatsby.js Clean portfolio starter! Get a clean looking portfolio up and running in no time using gatsby.js starters. diff --git a/content/theme/gatsby-contentful-blog-portfolio.md b/content/theme/gatsby-contentful-blog-portfolio.md index 3522a65f5..d0f861207 100644 --- a/content/theme/gatsby-contentful-blog-portfolio.md +++ b/content/theme/gatsby-contentful-blog-portfolio.md @@ -1,7 +1,7 @@ --- title: Gatsby Contentful Blog and Portfolio -github: 'https://github.com/escapemanuele/gatsby-contentful-blog-portfolio' -demo: 'https://gatsby-contentful-portfolio-blog.netlify.com/' +github: https://github.com/escapemanuele/gatsby-contentful-blog-portfolio +demo: https://gatsby-contentful-portfolio-blog.netlify.com/ author: Emanuele Buccelli ssg: - Gatsby @@ -13,9 +13,8 @@ archetype: - Blog - Portfolio date: 2020-02-19T12:10:46.000Z -github_branch: master -description: 'A Gatsby starter for a portfolio with a blog, using Contentful as the CMS' -stale: false +description: A Gatsby starter for a portfolio with a blog, using Contentful as the CMS +stale: true --- # A simple starter kit for creating a Portfolio website with a blog, all served by Contentful diff --git a/content/theme/gatsby-contentful-portfolio.md b/content/theme/gatsby-contentful-portfolio.md index 1a2ef6f1a..61a4a6df5 100644 --- a/content/theme/gatsby-contentful-portfolio.md +++ b/content/theme/gatsby-contentful-portfolio.md @@ -1,10 +1,9 @@ --- title: Portfolio theme for Gatsby -github: 'https://github.com/wkocjan/gatsby-contentful-portfolio' -demo: 'https://gatsby-contentful-portfolio.netlify.com/' +github: https://github.com/wkocjan/gatsby-contentful-portfolio +demo: https://gatsby-contentful-portfolio.netlify.com/ author: Wojciech Kocjan date: 2020-03-12T00:00:00.000Z -github_branch: master ssg: - Gatsby cms: @@ -14,7 +13,7 @@ css: archetype: - Portfolio description: Gatsby portfolio theme integrated with Contentful -stale: false +stale: true --- # A simple portfolio starter kit for Gatsby, integrated with Contentful diff --git a/content/theme/gatsby-contentful-starter.md b/content/theme/gatsby-contentful-starter.md index cccd8a617..4c682a98f 100644 --- a/content/theme/gatsby-contentful-starter.md +++ b/content/theme/gatsby-contentful-starter.md @@ -1,14 +1,13 @@ --- title: Gatsby Contentful Starter -github: 'https://github.com/contentful-userland/gatsby-contentful-starter' -demo: 'https://contentful-userland.github.io/gatsby-contentful-starter/' +github: https://github.com/contentful-userland/gatsby-contentful-starter +demo: https://contentful-userland.github.io/gatsby-contentful-starter/ author: contentful-userland ssg: - Gatsby cms: - Contentful date: 2018-01-29T21:29:51.000Z -github_branch: master description: Gatsby starter for a Contentful project. -stale: false +stale: true --- diff --git a/content/theme/gatsby-contentful-typescript-starter.md b/content/theme/gatsby-contentful-typescript-starter.md index 63702b7d3..e64300609 100644 --- a/content/theme/gatsby-contentful-typescript-starter.md +++ b/content/theme/gatsby-contentful-typescript-starter.md @@ -1,16 +1,15 @@ --- title: Gatsby Contentful Typescript Starter -github: 'https://github.com/fhavrlent/gatsby-contentful-typescript-starter' -demo: 'https://happy-pare-dff451.netlify.com/' +github: https://github.com/fhavrlent/gatsby-contentful-typescript-starter +demo: https://happy-pare-dff451.netlify.com/ author: Filip Havrlent ssg: - Gatsby cms: - Contentful date: 2018-10-01T21:52:18.000Z -github_branch: master description: 'Gatsby.js starter with TypeScript and Contentful ' stale: false -disabled: true disabled_reason: demo url not found +disabled: true --- diff --git a/content/theme/gatsby-cosmicjs-starter.md b/content/theme/gatsby-cosmicjs-starter.md index f3ddf1538..f6288dcf2 100644 --- a/content/theme/gatsby-cosmicjs-starter.md +++ b/content/theme/gatsby-cosmicjs-starter.md @@ -1,14 +1,13 @@ --- title: Cosmic Gatsby Starter -github: 'https://github.com/cosmicjs/gatsby-starter' -demo: 'https://cosmicjs-gatsby-starter.netlify.com/' +github: https://github.com/cosmicjs/gatsby-starter +demo: https://cosmicjs-gatsby-starter.netlify.com/ author: Cosmic ssg: - Gatsby cms: - Cosmic date: 2018-06-10T19:54:17.000Z -github_branch: master -description: "Install a Cosmic-powered Gatsby app in seconds \U0001F525 " -stale: false +description: 'Install a Cosmic-powered Gatsby app in seconds 🔥 ' +stale: true --- diff --git a/content/theme/gatsby-craftcms-barebones.md b/content/theme/gatsby-craftcms-barebones.md index 7bb6f15de..e6aca291f 100644 --- a/content/theme/gatsby-craftcms-barebones.md +++ b/content/theme/gatsby-craftcms-barebones.md @@ -1,14 +1,13 @@ --- title: Gatsby Craftcms Barebones -github: 'https://github.com/frankievalentine/gatsby-craftcms-barebones' -demo: 'https://gatsby-craftcms-barebones.netlify.com/' +github: https://github.com/frankievalentine/gatsby-craftcms-barebones +demo: https://gatsby-craftcms-barebones.netlify.com/ author: Frankie Valentine ssg: - Gatsby cms: - No Cms date: 2019-01-19T01:04:45.000Z -github_branch: master description: Barebones starter for a Headless Craft CMS & Gatsby configuration. stale: true --- diff --git a/content/theme/gatsby-crafty-theme.md b/content/theme/gatsby-crafty-theme.md index 9005ee0eb..a2bafee8c 100644 --- a/content/theme/gatsby-crafty-theme.md +++ b/content/theme/gatsby-crafty-theme.md @@ -1,13 +1,12 @@ --- title: Gatsby Crafty Theme -github: 'https://github.com/simplecode-io/gatsby-crafty-theme' -demo: 'https://demos.simplecode.io/gatsby/crafty/' +github: https://github.com/simplecode-io/gatsby-crafty-theme +demo: https://demos.simplecode.io/gatsby/crafty/ author: simplecode-io ssg: - Gatsby cms: - No Cms date: 2019-08-07T17:16:18.000Z -github_branch: master stale: true --- diff --git a/content/theme/gatsby-datocms-starter.md b/content/theme/gatsby-datocms-starter.md index f12632f9a..5f462a08a 100644 --- a/content/theme/gatsby-datocms-starter.md +++ b/content/theme/gatsby-datocms-starter.md @@ -1,14 +1,13 @@ --- title: Gatsby Datocms Starter -github: 'https://github.com/brohlson/gatsby-datocms-starter' -demo: 'https://gatsby-datocms-starter.netlify.com/' +github: https://github.com/brohlson/gatsby-datocms-starter +demo: https://gatsby-datocms-starter.netlify.com/ author: Chase Ohlson ssg: - Gatsby cms: - DatoCMS date: 2019-05-08T23:32:18.000Z -github_branch: master description: ⚛️ My preferred configuration for Gatsby DatoCMS projects -stale: false +stale: true --- diff --git a/content/theme/gatsby-dev-blog-fitzgerald.md b/content/theme/gatsby-dev-blog-fitzgerald.md index 5cb8d0a42..22c31afd4 100644 --- a/content/theme/gatsby-dev-blog-fitzgerald.md +++ b/content/theme/gatsby-dev-blog-fitzgerald.md @@ -1,21 +1,19 @@ --- title: Gatsby DevBlog -github: 'https://github.com/RyanFitzgerald/devblog' +github: https://github.com/RyanFitzgerald/devblog author: RyanFitzgerald -demo: 'https://gatsby-devblog.netlify.com/' +demo: https://gatsby-devblog.netlify.com/ date: 2020-06-03T00:00:00.000Z ssg: - Gatsby cms: - - NetlifyCMS + - DecapCMS archetype: - Blog description: >- A fully customizable blog template designed for developers (or anyone else) wanting to get into blogging -github_branch: master -stale: false -weight: 11 +stale: true --- A fully customizable blog template designed for developers (or anyone else) wanting to get into blogging. diff --git a/content/theme/gatsby-docs-app.md b/content/theme/gatsby-docs-app.md index 14bb9e758..a5c2213d6 100644 --- a/content/theme/gatsby-docs-app.md +++ b/content/theme/gatsby-docs-app.md @@ -1,14 +1,13 @@ --- title: Gatsby Docs App -github: 'https://github.com/cosmicjs/gatsby-docs-app' -demo: 'https://cosmicjs.com/apps/gatsby-docs/demo' +github: https://github.com/cosmicjs/gatsby-docs-app +demo: https://cosmicjs.com/apps/gatsby-docs/demo author: Cosmic ssg: - Gatsby cms: - Cosmic date: 2019-02-11T17:12:40.000Z -github_branch: master description: Create and view documentation using Gatsby and Cosmic stale: true --- diff --git a/content/theme/gatsby-documentation-starter.md b/content/theme/gatsby-documentation-starter.md index 0a0389c21..6bb4f780a 100644 --- a/content/theme/gatsby-documentation-starter.md +++ b/content/theme/gatsby-documentation-starter.md @@ -1,14 +1,13 @@ --- title: Gatsby Documentation Starter -github: 'https://github.com/whoisryosuke/gatsby-documentation-starter' -demo: 'https://gatsby-documentation-starter.netlify.com/' +github: https://github.com/whoisryosuke/gatsby-documentation-starter +demo: https://gatsby-documentation-starter.netlify.com/ author: Ryosuke ssg: - Gatsby cms: - No Cms date: 2018-09-21T00:04:42.000Z -github_branch: master description: >- Automatically generate docs for React components using MDX, react-docgen, and GatsbyJS diff --git a/content/theme/gatsby-ecommerce.md b/content/theme/gatsby-ecommerce.md index b734f8c83..6bcd46856 100644 --- a/content/theme/gatsby-ecommerce.md +++ b/content/theme/gatsby-ecommerce.md @@ -1,13 +1,12 @@ --- title: Gatsby Ecommerce -github: 'https://github.com/a9kitkumar/Gatsby-Ecommerce' -demo: 'https://cosmicjs.com/apps/gatsby-ecommerce-website/demo' +github: https://github.com/a9kitkumar/Gatsby-Ecommerce +demo: https://cosmicjs.com/apps/gatsby-ecommerce-website/demo author: Cosmic ssg: - Gatsby cms: - Cosmic date: 2019-04-26T22:45:03.000Z -github_branch: master stale: true --- diff --git a/content/theme/gatsby-firebase-hosting-starter.md b/content/theme/gatsby-firebase-hosting-starter.md index d79a10e20..41f47ae7d 100644 --- a/content/theme/gatsby-firebase-hosting-starter.md +++ b/content/theme/gatsby-firebase-hosting-starter.md @@ -1,14 +1,13 @@ --- title: Gatsby Firebase Hosting Starter -github: 'https://github.com/bijenkorf-james-wakefield/gatsby-firebase-hosting-starter' -demo: 'https://gatsby-firebase-hosting.firebaseapp.com/' +github: https://github.com/bijenkorf-james-wakefield/gatsby-firebase-hosting-starter +demo: https://gatsby-firebase-hosting.firebaseapp.com/ author: James Wakefield ssg: - Gatsby cms: - Firebase date: 2019-04-03T12:36:08.000Z -github_branch: master description: Gatsby starter with Firebase hosting configuration stale: true --- diff --git a/content/theme/gatsby-firebase-starter.md b/content/theme/gatsby-firebase-starter.md index 9215e0e56..9f47e3b7d 100644 --- a/content/theme/gatsby-firebase-starter.md +++ b/content/theme/gatsby-firebase-starter.md @@ -1,14 +1,15 @@ --- title: Gatsby Firebase Starter -github: 'https://github.com/ovidiumihaibelciug/gatsby-firebase-starter' -demo: 'https://gatsby-firebase-starter.netlify.com/' +github: https://github.com/ovidiumihaibelciug/gatsby-firebase-starter +demo: https://gatsby-firebase-starter.netlify.com/ author: Belciug Ovidiu-Mihai ssg: - Gatsby cms: - Firebase date: 2019-07-20T08:11:06.000Z -github_branch: master -description: "\U0001F525 Starter Project / Boilerplate for Authentication and creating Dynamic pages from collections with Firebase and Gatsby.js. " -stale: false +description: >- + 🔥 Starter Project / Boilerplate for Authentication and creating Dynamic pages + from collections with Firebase and Gatsby.js. +stale: true --- diff --git a/content/theme/gatsby-flexible.md b/content/theme/gatsby-flexible.md index 9e3cbeb6e..364a432e3 100644 --- a/content/theme/gatsby-flexible.md +++ b/content/theme/gatsby-flexible.md @@ -1,14 +1,13 @@ --- title: Flexible Gatsby -github: 'https://github.com/wangonya/flexible-gatsby' -demo: 'https://flexible-gatsby.netlify.com/' +github: https://github.com/wangonya/flexible-gatsby +demo: https://flexible-gatsby.netlify.com/ author: Kinyanjui Wangonya ssg: - Gatsby cms: - No Cms date: 2019-10-08T09:53:49.000Z -github_branch: master description: Flexible-Gatsby is a simple and clean theme for Gatsby stale: false --- diff --git a/content/theme/gatsby-flotiq-blog-1.md b/content/theme/gatsby-flotiq-blog-1.md new file mode 100644 index 000000000..c4110a4e7 --- /dev/null +++ b/content/theme/gatsby-flotiq-blog-1.md @@ -0,0 +1,34 @@ +--- +title: Flotiq Gatsby Blog 1 – Gradient +github: https://github.com/flotiq/flotiq-gatsby-blog-1 +demo: https://flotiqgatsbyblog1master.gatsbyjs.io/ +author: Flotiq team +date: 2022-03-23T00:00:00.000Z +ssg: + - Gatsby +cms: + - Flotiq +css: + - Tailwind +archetype: + - Blog + - Personal +description: Flotiq starter for creating a blog with gatsby +stale: false +--- + +# Flotiq gatsby starter for blog + +The Flotiq blog is a modern headless CMS blog starter for businesses, freelancers or for personal uses. It was created to display the content in a clear and creative manner. It will fascinate your audience and provide them with a unique time. + +Whether it is Design, Product, Corporate, Engineering, or anything else you can imagine, it will show in a purposeful layout. + +## Features + +* Responsive design using UIkit +* Responsive navigation +* Rich media +* Easy to deploy +* Maximized page speed score +* SEO friendly +* Web fonts - built using fonts from Google Fonts diff --git a/content/theme/gatsby-flotiq-blog-2.md b/content/theme/gatsby-flotiq-blog-2.md new file mode 100644 index 000000000..a1a5cab6b --- /dev/null +++ b/content/theme/gatsby-flotiq-blog-2.md @@ -0,0 +1,32 @@ +--- +title: Flotiq Gatsby Blog 2 – Modern +github: https://github.com/flotiq/flotiq-gatsby-blog-2 +demo: https://flotiqgatsbyblog2.gatsbyjs.io/ +author: Flotiq team +date: 2022-03-23T00:00:00.000Z +ssg: + - Gatsby +cms: + - Flotiq +css: + - Tailwind +archetype: + - Blog + - Personal +description: Flotiq starter for creating a blog with gatsby +stale: false +--- + +# Flotiq gatsby starter for blog + +A flexible & minimalistic starter for personal or business purposes. We have designed this Blog starter for people who create nonstop content but still want to give a certain dynamism illustrated by images or even videos and audio files. With a modern grid, multi layouts & columns and easily customized design. + +## Features + +* Responsive design using UIkit +* Responsive navigation +* Rich media +* Easy to deploy +* Maximized page speed score +* SEO friendly +* Web fonts - built using fonts from Google Fonts diff --git a/content/theme/gatsby-flotiq-event-1.md b/content/theme/gatsby-flotiq-event-1.md new file mode 100644 index 000000000..aa293b135 --- /dev/null +++ b/content/theme/gatsby-flotiq-event-1.md @@ -0,0 +1,31 @@ +--- +title: Flotiq Gatsby Event 1 – Monthly View Calendar +github: https://github.com/flotiq/flotiq-gatsby-event-1 +demo: https://flotiqgatsbyevent1.gatsbyjs.io/ +author: Flotiq team +date: 2022-03-23T00:00:00.000Z +ssg: + - Gatsby +cms: + - Flotiq +css: + - Tailwind +archetype: + - Event +description: Flotiq starter for creating an event calendar with gatsby +stale: false +--- + +# Flotiq gatsby starter for event calendar + +Power your event with Flotiq for free. Use your starter for better organization and display information about events. Perfect for online webinars, education, non-profit or community needs. + +## Features + +* Responsive design using UIkit +* Responsive navigation +* Rich media +* Easy to deploy +* Maximized page speed score +* SEO friendly +* Web fonts - built using fonts from Google Fonts diff --git a/content/theme/gatsby-flotiq-event-2.md b/content/theme/gatsby-flotiq-event-2.md new file mode 100644 index 000000000..ef1135172 --- /dev/null +++ b/content/theme/gatsby-flotiq-event-2.md @@ -0,0 +1,31 @@ +--- +title: Flotiq Gatsby Event 2 – Weekly View Calendar +github: https://github.com/flotiq/flotiq-gatsby-event-2 +demo: https://flotiqgatsbyevent2.gatsbyjs.io/ +author: Flotiq team +date: 2022-03-23T00:00:00.000Z +ssg: + - Gatsby +cms: + - Flotiq +css: + - Tailwind +archetype: + - Event +description: Flotiq starter for creating an event calendar with gatsby +stale: false +--- + +# Flotiq gatsby starter for event calendar + +Highlight your event with a better view. Integrate with your favourite online meeting tools or eCommerce solutions. Flotiq Event Starter is perfect for schools, universities, and communities. + +## Features + +* Responsive design using UIkit +* Responsive navigation +* Rich media +* Easy to deploy +* Maximized page speed score +* SEO friendly +* Web fonts - built using fonts from Google Fonts diff --git a/content/theme/gatsby-flotiq-portfolio-1.md b/content/theme/gatsby-flotiq-portfolio-1.md new file mode 100644 index 000000000..1e84eeedc --- /dev/null +++ b/content/theme/gatsby-flotiq-portfolio-1.md @@ -0,0 +1,31 @@ +--- +title: Flotiq Gatsby Portfolio 1 – Creator +github: https://github.com/flotiq/flotiq-gatsby-portfolio-1 +demo: https://flotiqgatsbyportfolio1.gatsbyjs.io/ +author: Flotiq team +date: 2022-03-23T00:00:00.000Z +ssg: + - Gatsby +cms: + - Flotiq +css: + - Tailwind +archetype: + - Portfolio +description: Flotiq starter for creating a projects portfolio with gatsby +stale: false +--- + +# Flotiq gatsby starter for projects portfolio + +The Flotiq portfolio starter is a perfect way to create a website if you don't want to start from scratch. Easy edit and customize its simple, responsive layout, allowing you to create a portfolio that stands out quickly. + +## Features + +* Responsive design using UIkit +* Responsive navigation +* Rich media +* Easy to deploy +* Maximized page speed score +* SEO friendly +* Web fonts - built using fonts from Google Fonts diff --git a/content/theme/gatsby-flotiq-portfolio-2.md b/content/theme/gatsby-flotiq-portfolio-2.md new file mode 100644 index 000000000..cd97a150f --- /dev/null +++ b/content/theme/gatsby-flotiq-portfolio-2.md @@ -0,0 +1,31 @@ +--- +title: Flotiq Gatsby Portfolio 2 – Monochrome +github: https://github.com/flotiq/flotiq-gatsby-portfolio-2 +demo: https://flotiqgatsbyportfolio2.gatsbyjs.io/ +author: Flotiq team +date: 2022-03-23T00:00:00.000Z +ssg: + - Gatsby +cms: + - Flotiq +css: + - Tailwind +archetype: + - Portfolio +description: Flotiq starter for creating a projects portfolio with gatsby +stale: false +--- + +# Flotiq gatsby starter for projects portfolio + +A modern, clean design can be customized and applied for a wide range of purposes, with a stunning landing page design. There'll be no more searching for ideas or beginning from scratch. This template is responsive, which means it looks fantastic on any device. Typography, usability, and general user experience heavily emphasize the portfolio starter. + +## Features + +* Responsive design using UIkit +* Responsive navigation +* Rich media +* Easy to deploy +* Maximized page speed score +* SEO friendly +* Web fonts - built using fonts from Google Fonts diff --git a/content/theme/gatsby-flotiq-recipe-1.md b/content/theme/gatsby-flotiq-recipe-1.md new file mode 100644 index 000000000..d3d0b1b85 --- /dev/null +++ b/content/theme/gatsby-flotiq-recipe-1.md @@ -0,0 +1,32 @@ +--- +title: Flotiq Gatsby Recipe 1 – Black and White Classic +github: https://github.com/flotiq/flotiq-gatsby-recipe-1 +demo: https://flotiqgatsbyrecipe1.gatsbyjs.io/ +author: Flotiq team +date: 2022-03-23T00:00:00.000Z +ssg: + - Gatsby +cms: + - Flotiq +css: + - Tailwind +archetype: + - Blog + - Personal +description: Flotiq starter for creating a recipes catalogue with gatsby +stale: false +--- + +# Flotiq gatsby starter for recipes catalogue + +We introduce you to a recipe website with a modern and attractive layout. Simply add recipes to your website and watch it grow! This bright and colourful recipe starter is simple to use and customizable. Perfect for sharing recipes and the joy of cooking. + +## Features + +* Responsive design using UIkit +* Responsive navigation +* Rich media +* Easy to deploy +* Maximized page speed score +* SEO friendly +* Web fonts - built using fonts from Google Fonts diff --git a/content/theme/gatsby-flotiq-recipe-2.md b/content/theme/gatsby-flotiq-recipe-2.md new file mode 100644 index 000000000..a41393636 --- /dev/null +++ b/content/theme/gatsby-flotiq-recipe-2.md @@ -0,0 +1,32 @@ +--- +title: Flotiq Gatsby Recipe 2 – All you can eat +github: https://github.com/flotiq/flotiq-gatsby-recipe-2 +demo: https://flotiqgatsbyrecipe2.gatsbyjs.io/ +author: Flotiq team +date: 2022-03-23T00:00:00.000Z +ssg: + - Gatsby +cms: + - Flotiq +css: + - Tailwind +archetype: + - Blog + - Personal +description: Flotiq starter for creating a recipes catalogue with gatsby +stale: false +--- + +# Flotiq gatsby starter for recipes catalogue + +This template is focused on easy-to-read recipe articles that prioritize what users are looking for - ingredients and directions. It was designed and built with food bloggers and cooking content creators in mind. + +## Features + +* Responsive design using UIkit +* Responsive navigation +* Rich media +* Easy to deploy +* Maximized page speed score +* SEO friendly +* Web fonts - built using fonts from Google Fonts diff --git a/content/theme/gatsby-flotiq-shop-1.md b/content/theme/gatsby-flotiq-shop-1.md new file mode 100644 index 000000000..8fe70f4a2 --- /dev/null +++ b/content/theme/gatsby-flotiq-shop-1.md @@ -0,0 +1,33 @@ +--- +title: Flotiq Gatsby Shop 1 – Merch Store +github: https://github.com/flotiq/flotiq-gatsby-shop-1 +demo: https://flotiqgatsbyshop1.gatsbyjs.io/ +author: Flotiq team +date: 2022-03-23T00:00:00.000Z +ssg: + - Gatsby +cms: + - Flotiq +css: + - Tailwind +archetype: + - Ecommerce +description: Flotiq starter for creating a shop with gatsby +stale: false +--- + +# Flotiq gatsby starter for shop + +Merch Store is the fabulous Flotiq starter for selling merch, clothing, and other corporate goods. It is fully functioning; users may place orders and make payments using this theme. + +You will discover everything you need to start an online store with this e-commerce template that we have made for you. It is easily customizable to match your brand. + +## Features + +* Responsive design using UIkit +* Responsive navigation +* Rich media +* Easy to deploy +* Maximized page speed score +* SEO friendly +* Web fonts - built using fonts from Google Fonts diff --git a/content/theme/gatsby-flotiq-shop-2.md b/content/theme/gatsby-flotiq-shop-2.md new file mode 100644 index 000000000..29695a854 --- /dev/null +++ b/content/theme/gatsby-flotiq-shop-2.md @@ -0,0 +1,35 @@ +--- +title: Flotiq Gatsby Shop 2 – Green Shop +github: https://github.com/flotiq/flotiq-gatsby-shop-2 +demo: https://flotiqgatsbyshop2.gatsbyjs.io/ +author: Flotiq team +date: 2022-03-23T00:00:00.000Z +ssg: + - Gatsby +cms: + - Flotiq +css: + - Tailwind +archetype: + - Ecommerce +description: Flotiq starter for creating a shop with gatsby +stale: false +--- + +# Flotiq gatsby starter for shop + +We want to introduce you to the Flotiq E-commerce starter. Its beautiful and modern design focuses on simplicity and provides your consumers with the most incredible possible buying experience. + +The focus of this template is on simplicity. It has a simple layout, minimal and effective interactions, and no extra clutter, allowing the user to complete a transaction in just a few clicks. Flotiq design team carefully chose the site's typeface and colour design to give it a nice, uncomplicated appearance. + +Bootstrap simple e-commerce using Gastby.js, Snipcart and Flotiq. + +## Features + +* Responsive design using UIkit +* Responsive navigation +* Rich media +* Easy to deploy +* Maximized page speed score +* SEO friendly +* Web fonts - built using fonts from Google Fonts diff --git a/content/theme/gatsby-gate.md b/content/theme/gatsby-gate.md index 76a78403e..62f0baa0d 100644 --- a/content/theme/gatsby-gate.md +++ b/content/theme/gatsby-gate.md @@ -1,14 +1,15 @@ --- title: Gate -github: 'https://github.com/sarasate/gate' -demo: 'https://gatejs.netlify.com/' +github: https://github.com/sarasate/gate +demo: https://gatejs.netlify.com/ author: Sarasate ssg: - Gatsby cms: - No Cms date: 2019-01-29T09:40:17.000Z -github_branch: master description: Static API documentation with GatsbyJS stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/gatsby-ghub.md b/content/theme/gatsby-ghub.md index 4b5474f26..35a6fb2f1 100644 --- a/content/theme/gatsby-ghub.md +++ b/content/theme/gatsby-ghub.md @@ -1,13 +1,12 @@ --- title: Gatsby Ghub -github: 'https://github.com/dwyfrequency/gatsby-ghub' -demo: 'https://gatsby-ghub.netlify.com/' +github: https://github.com/dwyfrequency/gatsby-ghub +demo: https://gatsby-ghub.netlify.com/ author: dwyfrequency ssg: - Gatsby cms: - No Cms date: 2019-06-22T21:13:28.000Z -github_branch: master stale: true --- diff --git a/content/theme/gatsby-gitbook-starter.md b/content/theme/gatsby-gitbook-starter.md index e490912cb..ca5d7786f 100644 --- a/content/theme/gatsby-gitbook-starter.md +++ b/content/theme/gatsby-gitbook-starter.md @@ -1,14 +1,13 @@ --- title: Gatsby Gitbook Starter -github: 'https://github.com/hasura/gatsby-gitbook-starter' -demo: 'https://learn.hasura.io/graphql/react/introduction' +github: https://github.com/hasura/gatsby-gitbook-starter +demo: https://learn.hasura.io/graphql/react/introduction author: Hasura ssg: - Gatsby cms: - No Cms date: 2019-05-04T14:09:01.000Z -github_branch: master description: Generate GitBook style modern docs/tutorial websites using Gatsby + MDX stale: false --- diff --git a/content/theme/gatsby-github-personal-website.md b/content/theme/gatsby-github-personal-website.md index e1b62f547..b6acd708e 100644 --- a/content/theme/gatsby-github-personal-website.md +++ b/content/theme/gatsby-github-personal-website.md @@ -1,14 +1,13 @@ --- title: Gatsby Github Personal Website -github: 'https://github.com/thakkaryash94/gatsby-github-personal-website' -demo: 'https://thakkaryash94.netlify.com/' +github: https://github.com/thakkaryash94/gatsby-github-personal-website +demo: https://thakkaryash94.netlify.com/ author: Yash Thakkar ssg: - Gatsby cms: - No Cms date: 2019-03-01T20:56:53.000Z -github_branch: master description: Repo for github portfolio using gatsby -stale: false +stale: true --- diff --git a/content/theme/gatsby-graphcms-tailwindcss-example.md b/content/theme/gatsby-graphcms-tailwindcss-example.md index 2f23b5e73..44f58fb0f 100644 --- a/content/theme/gatsby-graphcms-tailwindcss-example.md +++ b/content/theme/gatsby-graphcms-tailwindcss-example.md @@ -1,7 +1,7 @@ --- title: Gatsby Graphcms Tailwindcss Example -github: 'https://github.com/GraphCMS/gatsby-graphcms-tailwindcss-example' -demo: 'https://graphcms.github.io/gatsby-graphcms-tailwindcss-example/' +github: https://github.com/GraphCMS/gatsby-graphcms-tailwindcss-example +demo: https://graphcms.github.io/gatsby-graphcms-tailwindcss-example/ author: GraphCMS ssg: - Gatsby @@ -10,6 +10,7 @@ cms: css: - Tailwind date: 2018-09-19T13:00:05.000Z -github_branch: master stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/gatsby-hello-friend.md b/content/theme/gatsby-hello-friend.md index 2194a3815..a0f802bc9 100644 --- a/content/theme/gatsby-hello-friend.md +++ b/content/theme/gatsby-hello-friend.md @@ -1,16 +1,17 @@ --- title: Gatsby Hello Friend -github: 'https://github.com/panr/gatsby-starter-hello-friend' -demo: 'https://gatsby-hello-friend.now.sh/' +github: https://github.com/panr/gatsby-starter-hello-friend +demo: https://gatsby-hello-friend.now.sh/ author: Radek Kozieł ssg: - Gatsby cms: - No Cms date: 2019-01-03T15:03:41.000Z -github_branch: master description: >- Pretty basic starter for Gatsby that covers all of the essentials. All you have to do is start typing! -stale: false +stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/gatsby-holo.md b/content/theme/gatsby-holo.md new file mode 100644 index 000000000..6f95ba87d --- /dev/null +++ b/content/theme/gatsby-holo.md @@ -0,0 +1,31 @@ +--- +title: Gatsby Holo +description: A stunning and minimal starter theme for Portfolio's, Blog's, and more. +github: https://github.com/lilxyzz/holo-theme +demo: https://holo-theme.netlify.app +author: Travis Lord +date: 2024-04-07 +ssg: + - Gatsby +css: + - Tailwind +cms: + - DecapCMS +archetype: + - Blog + - Portfolio + - Business +featured: false +netlify_deploy: https://app.netlify.com/start/deploy?repository=https://github.com/lilxyzz/holo-theme +--- + +# A simple starter kit with Gatsby + +Holo is a lightweight starter kit that provides an impeccably structured foundation to build upon and extend according to your unique requirements. + +## Features + +* CGatsby 5+ +* React 18+ +* Tailwind CSS 3+ +* Decap CMS (formerly Netlify CMS) 4+ diff --git a/content/theme/gatsby-juma.md b/content/theme/gatsby-juma.md new file mode 100644 index 000000000..7aeef7383 --- /dev/null +++ b/content/theme/gatsby-juma.md @@ -0,0 +1,15 @@ +--- +title: Juma +github: https://github.com/jmau111/gatsby-juma +demo: https://demos.julien-maury.dev/gatsby-juma/ +author: Julien Maury +ssg: + - Gatsby +cms: + - No Cms +date: 2021-12-07T07:07:07.000Z +description: A blue theme for Gatsby with Typescript +stale: false +disabled: true +disabled_reason: demo url not found +--- diff --git a/content/theme/gatsby-kea-starter.md b/content/theme/gatsby-kea-starter.md deleted file mode 100644 index 3879cf6aa..000000000 --- a/content/theme/gatsby-kea-starter.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: Gatsby Kea Starter -github: 'https://github.com/benjamin-glitsos/gatsby-kea-starter' -demo: 'https://gatsby-kea-starter.netlify.com/' -author: Benjamin Glitsos -ssg: - - Gatsby -cms: - - No Cms -date: 2019-06-10T01:54:29.000Z -github_branch: master -description: 'Gatsby starter with redux and sagas made simpler by https://kea.js.org' -stale: true ---- diff --git a/content/theme/gatsby-kontent-lumen.md b/content/theme/gatsby-kontent-lumen.md index 85969f97f..424cdb930 100644 --- a/content/theme/gatsby-kontent-lumen.md +++ b/content/theme/gatsby-kontent-lumen.md @@ -1,10 +1,9 @@ --- title: Gatsby Kontent Lumen -github: 'https://github.com/Kentico/gatsby-starter-kontent-lumen' -demo: 'https://gatsby-starter-kontent-lumen.netlify.app/' +github: https://github.com/Kentico/gatsby-starter-kontent-lumen +demo: https://gatsby-starter-kontent-lumen.netlify.app/ author: makma date: 2020-04-30T00:00:00.000Z -github_branch: master ssg: - Gatsby cms: @@ -16,6 +15,8 @@ description: >- Lumen is a minimal, lightweight and mobile-first starter for creating blogs using Gatsby and Kentico Kontent. stale: false +disabled: true +disabled_reason: demo url not found --- # Gatsby Kontent Lumen diff --git a/content/theme/gatsby-kontent-paperbase.md b/content/theme/gatsby-kontent-paperbase.md index 0faa7043b..99ad96c21 100644 --- a/content/theme/gatsby-kontent-paperbase.md +++ b/content/theme/gatsby-kontent-paperbase.md @@ -1,18 +1,15 @@ --- title: Gatsby Kontent Paperbase -github: 'https://github.com/Simply007/kontent-sample-app-gatsby-intranet' -demo: 'https://kontent-sample-app-gatsby-intranet.netlify.app' +github: https://github.com/Simply007/kontent-sample-app-gatsby-intranet +demo: https://kontent-sample-app-gatsby-intranet.netlify.app author: Simply007 date: 2020-12-01T00:00:00.000Z -github_branch: master ssg: - Gatsby cms: - Kontent -archetype: - - Multi Purpose description: Material UI Paperbase Starter for Gatsby with Kentico Kontent. -stale: false +stale: true --- # Material UI Paperbase Starter diff --git a/content/theme/gatsby-kontent-photon.md b/content/theme/gatsby-kontent-photon.md index 44aad1ca5..2af5b5a8e 100644 --- a/content/theme/gatsby-kontent-photon.md +++ b/content/theme/gatsby-kontent-photon.md @@ -1,10 +1,9 @@ --- title: Gatsby Kontent Photon -github: 'https://github.com/Simply007/kontent-template-gatsby-landing-page-photon' -demo: 'https://kontent-template-gatsby-landing-page-photon.netlify.app' +github: https://github.com/Simply007/kontent-template-gatsby-landing-page-photon +demo: https://kontent-template-gatsby-landing-page-photon.netlify.app author: Simply007 date: 2020-04-30T00:00:00.000Z -github_branch: master ssg: - Gatsby cms: @@ -12,7 +11,7 @@ cms: archetype: - Portfolio description: Kentico Kontent web template using Gatsby and Kentico Kontent. -stale: false +stale: true --- # A simple starter kit for Kontent and GatsbyJS diff --git a/content/theme/gatsby-lewis-starter-blog.md b/content/theme/gatsby-lewis-starter-blog.md index e461ea9dc..a9d51f0b4 100644 --- a/content/theme/gatsby-lewis-starter-blog.md +++ b/content/theme/gatsby-lewis-starter-blog.md @@ -1,16 +1,15 @@ --- title: Gatsby Lewis Blog -github: 'https://github.com/lewislbr/lewis-gatsby-starter-blog' -demo: 'https://lewis-gatsby-starter-blog.firebaseapp.com/' +github: https://github.com/lewislbr/lewis-gatsby-starter-blog +demo: https://lewis-gatsby-starter-blog.firebaseapp.com/ author: Lewis Llobera ssg: - Gatsby cms: - No Cms date: 2019-04-02T20:35:25.000Z -github_branch: master description: A custom Gatsby starter template to start a blog or personal website. stale: false -disabled: true disabled_reason: demo url not found +disabled: true --- diff --git a/content/theme/gatsby-localization-app-starter.md b/content/theme/gatsby-localization-app-starter.md index a3480e5be..b9bcf1038 100644 --- a/content/theme/gatsby-localization-app-starter.md +++ b/content/theme/gatsby-localization-app-starter.md @@ -1,14 +1,13 @@ --- title: Localization App Starter -github: 'https://github.com/cosmicjs/gatsby-localization-app-starter' -demo: 'https://cosmicjs.com/apps/gatsby-localization-app-starter/demo' +github: https://github.com/cosmicjs/gatsby-localization-app-starter +demo: https://cosmicjs.com/apps/gatsby-localization-app-starter/demo author: Cosmic ssg: - Gatsby cms: - No Cms date: 2019-05-03T16:34:14.000Z -github_branch: master description: A Gatsby localization website powered by Cosmic stale: true --- diff --git a/content/theme/gatsby-london.md b/content/theme/gatsby-london.md index 9d4d475c6..731c064be 100644 --- a/content/theme/gatsby-london.md +++ b/content/theme/gatsby-london.md @@ -1,14 +1,13 @@ --- title: Gatsby London -github: 'https://github.com/ImedAdel/gatsby-london' -demo: 'https://gatsby-london.netlify.com/' +github: https://github.com/ImedAdel/gatsby-london +demo: https://gatsby-london.netlify.com/ author: Imed Adel ssg: - Gatsby cms: - No Cms date: 2019-05-18T14:17:26.000Z -github_branch: master -description: 'A free, open source, image-concentric starter for GatsbyJS' +description: A free, open source, image-concentric starter for GatsbyJS stale: true --- diff --git a/content/theme/gatsby-magazine-example.md b/content/theme/gatsby-magazine-example.md index 0acd90b48..b47c4a568 100644 --- a/content/theme/gatsby-magazine-example.md +++ b/content/theme/gatsby-magazine-example.md @@ -1,16 +1,15 @@ --- title: Gatsby Magazine Example -github: 'https://github.com/livingdocsIO/gatsby-magazine-example' -demo: 'https://magazine-example.livingdocs.io/' +github: https://github.com/livingdocsIO/gatsby-magazine-example +demo: https://magazine-example.livingdocs.io/ author: Livingdocs ssg: - Gatsby cms: - No Cms date: 2018-12-19T14:47:21.000Z -github_branch: master description: >- This is an open-source Demo Magazine built with Livingdocs. Check out the code and make it yours! -stale: false +stale: true --- diff --git a/content/theme/gatsby-markdown-blog-starter.md b/content/theme/gatsby-markdown-blog-starter.md index 3c297e254..502c6fcf1 100644 --- a/content/theme/gatsby-markdown-blog-starter.md +++ b/content/theme/gatsby-markdown-blog-starter.md @@ -1,14 +1,13 @@ --- title: Gatsby Markdown Blog Starter -github: 'https://github.com/ammarjabakji/gatsby-markdown-blog-starter' -demo: 'https://gatsby-markdown-blog-starter.netlify.com/' +github: https://github.com/ammarjabakji/gatsby-markdown-blog-starter +demo: https://gatsby-markdown-blog-starter.netlify.com/ author: Ammar Jabakji ssg: - Gatsby cms: - No Cms date: 2019-08-28T09:16:35.000Z -github_branch: master description: 'Gatsby Markdown Blog Starter, demo link:' -stale: false +stale: true --- diff --git a/content/theme/gatsby-markdown-material-typescript-starter.md b/content/theme/gatsby-markdown-material-typescript-starter.md index 8a3ed29fc..9db93e5cf 100644 --- a/content/theme/gatsby-markdown-material-typescript-starter.md +++ b/content/theme/gatsby-markdown-material-typescript-starter.md @@ -1,8 +1,7 @@ --- title: Gatsby Markdown Material TypeScript/TSX Responsive Blog Starter -github: 'https://github.com/stephen-cloud/gatsby-markdown-material-typescript-starter' -demo: 'https://gatsby-markdown-material-typescript-starter.stephen.cloud/' -github_branch: master +github: https://github.com/stephen-cloud/gatsby-markdown-material-typescript-starter +demo: https://gatsby-markdown-material-typescript-starter.stephen.cloud/ author: Stephen Harrison and Alejandro Roman archetype: - Blog @@ -13,7 +12,7 @@ cms: - No Cms date: 2020-06-30T00:00:00.000Z description: Markdown Material UI TypeScript/TSX -stale: false +stale: true --- # A blog starter for a Material UI and TypeScript/TSX diff --git a/content/theme/gatsby-material-design-for-bootstrap.md b/content/theme/gatsby-material-design-for-bootstrap.md index f2c8f0fe8..a774482c9 100644 --- a/content/theme/gatsby-material-design-for-bootstrap.md +++ b/content/theme/gatsby-material-design-for-bootstrap.md @@ -1,16 +1,17 @@ --- title: Gatsby Material Design For Bootstrap -github: 'https://github.com/anna-morawska/gatsby-material-design-for-bootstrap' -demo: 'https://gatsby-starter.mdbootstrap.com/' +github: https://github.com/anna-morawska/gatsby-material-design-for-bootstrap +demo: https://gatsby-starter.mdbootstrap.com/ author: Anna ssg: - Gatsby cms: - No Cms date: 2019-01-24T13:06:10.000Z -github_branch: master description: >- A simple starter which lets you quickly start developing with Gastby and Material Design For Bootstrap -stale: false +stale: true +disabled: true +disabled_reason: error checking demo url --- diff --git a/content/theme/gatsby-material-kit-react.md b/content/theme/gatsby-material-kit-react.md index b7cd69b46..468a70d69 100644 --- a/content/theme/gatsby-material-kit-react.md +++ b/content/theme/gatsby-material-kit-react.md @@ -1,14 +1,13 @@ --- title: gatsby-material-kit-react -github: 'https://github.com/WebCu/gatsby-material-kit-react' -demo: 'https://amazing-jones-e61bda.netlify.com/' +github: https://github.com/WebCu/gatsby-material-kit-react +demo: https://amazing-jones-e61bda.netlify.com/ author: Jorge A. Glez. Mena ssg: - Gatsby cms: - No Cms date: 2019-03-10T21:21:12.000Z -github_branch: master description: Adapt Material Kit React to Gatsby -stale: false +stale: true --- diff --git a/content/theme/gatsby-material-starter.md b/content/theme/gatsby-material-starter.md index d0167cfdb..99a13514a 100644 --- a/content/theme/gatsby-material-starter.md +++ b/content/theme/gatsby-material-starter.md @@ -1,14 +1,83 @@ --- title: Gatsby Material Starter -github: 'https://github.com/Vagr9K/gatsby-material-starter' -demo: 'https://vagr9k.github.io/gatsby-material-starter/' -author: Ruben Harutyunyan +github: https://github.com/Vagr9K/gatsby-material-starter +demo: https://gatsby-theme-material.netlify.app/ +author: vagr9k +date: 2021-12-31T00:00:00.000Z ssg: - Gatsby cms: - - No Cms -date: 2017-07-02T14:02:13.000Z -github_branch: master -description: A high performance blog starter with Material design in mind for GatsbyJS. + - No CMS +description: >- + A Material Design oriented blog starter for GatsbyJS equipped with advanced + features such as SEO, image optimization, PWA capabilities and infinite + scrolling feeds. stale: false --- + +# A starter skeleton with Material Design in mind + +This starter aims to provide a minimal base for building advanced GatsbyJS powered websites by using the latest technologies to simplify your process. + +Starter supports both [TypeScript](https://www.typescriptlang.org/) and JavaScript, comes with [Jest](https://jestjs.io/) and [Cypress](https://www.cypress.io/) configurations and allows you to write Unit/Integration/E2E tests out of the box. + +## Demo + +[Material Demo](https://gatsby-theme-material.netlify.app/). + +## Features + +- Gatsby v3 support +- First class [TypeScript](https://www.typescriptlang.org/) support (for query data and components exposed by the theme) +- [Material UI V5](https://material-ui.com/) components +- [Emotion](https://emotion.sh/docs/introduction) used for styling +- Posts in MDX + - Code syntax highlighting + - Embed videos + - Embed iframes +- Infinite Scrolling +- React Query for client side API calls +- Tags + - Separate page for posts under each tag +- Categories + - Separate page for posts under each category +- Social features + - Twitter tweet button + - Facebook share/share count + - Reddit share/share count + - LinkedIn share button +- Author section +- Related posts computation and display based on category/tag match ranking +- [Disqus](https://disqus.com/) support via [`gatsby-theme-advanced`](https://www.npmjs.com/package/gatsby-theme-advanced) +- [gatsby-plugin-image](https://www.gatsbyjs.com/plugins/gatsby-plugin-image/) for optimized image generation +- Inline SVG imports +- High configurability +- Separate components for everything: + - Gatsby Link utilities + - SEO + - Disqus +- PWA features + - Offline support + - Web App Manifest support + - Loading progress for slow networks +- SEO + - [Google gtag.js](https://developers.google.com/gtagjs/) support + - Sitemap generation + - General description tags + - [Google Structured Data](https://developers.google.com/search/docs/advanced/structured-data/intro-structured-data) + - [OpenGraph Tags (Facebook/Google+/Pinterest)](https://ogp.me/) + - [Twitter Tags (Twitter Cards)](https://developer.twitter.com/en/docs/tweets/optimize-with-cards/overview/markup) +- RSS feeds +- Development tools + - Yarn 3 + - [Jest](https://jestjs.io/) for unit/integration testing + - [Cypress](https://www.cypress.io/) for E2E testing + - CI via GitHub Actions + - CD via GitHub Actions + - [ESLint](https://eslint.org/) for linting + - [Prettier](https://prettier.io/) for code formatting + - [React Hooks Linting](https://www.npmjs.com/package/eslint-plugin-react-hooks) + - Remark-Lint for linting Markdown + - write-good for linting English prose + - gh-pages for deploying to GitHub pages + - [Netlify](https://www.netlify.com/) deploy configuration diff --git a/content/theme/gatsby-material-ui-business-starter.md b/content/theme/gatsby-material-ui-business-starter.md index ad0936fa9..7101f915d 100644 --- a/content/theme/gatsby-material-ui-business-starter.md +++ b/content/theme/gatsby-material-ui-business-starter.md @@ -1,14 +1,13 @@ --- title: Material UI Business -github: 'https://github.com/bluepeter/gatsby-material-ui-business-starter' -demo: 'https://bluepeter.github.io/gatsby-material-ui-business-starter/' +github: https://github.com/bluepeter/gatsby-material-ui-business-starter +demo: https://bluepeter.github.io/gatsby-material-ui-business-starter/ author: bluepeter ssg: - Gatsby cms: - No Cms date: 2019-01-09T23:04:36.000Z -github_branch: master description: Beautiful Gatsby Material UI Business Starter -stale: false +stale: true --- diff --git a/content/theme/gatsby-mdbreact-starter.md b/content/theme/gatsby-mdbreact-starter.md index c042651e9..d8e52ef31 100644 --- a/content/theme/gatsby-mdbreact-starter.md +++ b/content/theme/gatsby-mdbreact-starter.md @@ -1,14 +1,13 @@ --- title: Gatsyb Mdb React -github: 'https://github.com/jjcav84/mdbreact-gatsby-starter' -demo: 'https://gatsbystartermdb.netlify.com/' +github: https://github.com/jjcav84/mdbreact-gatsby-starter +demo: https://gatsbystartermdb.netlify.com/ author: Jacob Cavazos ssg: - Gatsby cms: - No Cms date: 2019-05-04T23:51:02.000Z -github_branch: gh-pages description: >- This is the single page web application starter that I built with MDBootstrap, React, and Gatsby diff --git a/content/theme/gatsby-mdx-netlify-cms-starter.md b/content/theme/gatsby-mdx-netlify-cms-starter.md index 00ae79a36..48c170a64 100644 --- a/content/theme/gatsby-mdx-netlify-cms-starter.md +++ b/content/theme/gatsby-mdx-netlify-cms-starter.md @@ -1,14 +1,13 @@ --- title: Mdx Netlify CMS -github: 'https://github.com/renvrant/gatsby-mdx-netlify-cms-starter' -demo: 'https://mystifying-mclean-5c7fce.netlify.com/' +github: https://github.com/renvrant/gatsby-mdx-netlify-cms-starter +demo: https://mystifying-mclean-5c7fce.netlify.com/ author: Renee Blackburn ssg: - Gatsby cms: - No Cms date: 2019-02-27T19:17:17.000Z -github_branch: master description: Gatsby-MDX with Netlify CMS. Support React components in your CMS editor! stale: true --- diff --git a/content/theme/gatsby-minimal-portfolio-blog.md b/content/theme/gatsby-minimal-portfolio-blog.md index b024abc08..c2782d767 100644 --- a/content/theme/gatsby-minimal-portfolio-blog.md +++ b/content/theme/gatsby-minimal-portfolio-blog.md @@ -1,16 +1,15 @@ --- title: Gatsby Minimal Portfolio Blog -github: 'https://github.com/s-kris/gatsby-minimal-portfolio-blog' -demo: 'https://saikrishna.me/' +github: https://github.com/s-kris/gatsby-minimal-portfolio-blog +demo: https://saikrishna.me/ author: Sai Krishna ssg: - Gatsby cms: - No Cms date: 2019-01-02T16:26:06.000Z -github_branch: master description: >- GatsbyJS starter for a minimal portfolio website with blog. Suitable for developers. -stale: false +stale: true --- diff --git a/content/theme/gatsby-myclicks.md b/content/theme/gatsby-myclicks.md index afdfda2d8..347bac0af 100644 --- a/content/theme/gatsby-myclicks.md +++ b/content/theme/gatsby-myclicks.md @@ -1,14 +1,13 @@ --- title: MyClicks -github: 'https://github.com/himali-patel/MyClicks' -demo: 'https://myclicks.netlify.com' -author: 'https://github.com/himali-patel' +github: https://github.com/himali-patel/MyClicks +demo: https://myclicks.netlify.com +author: https://github.com/himali-patel ssg: - Gatsby cms: - No Cms date: 2019-03-14T09:23:14.000Z -github_branch: master description: Portfolio with gatsby and contentful stale: true --- diff --git a/content/theme/gatsby-nes.md b/content/theme/gatsby-nes.md new file mode 100644 index 000000000..621ccac70 --- /dev/null +++ b/content/theme/gatsby-nes.md @@ -0,0 +1,21 @@ +--- +title: Nes +github: https://github.com/jmau111/gatsby-nes +demo: https://demos.julien-maury.dev/gatsby-nes/ +author: Julien Maury +ssg: + - Gatsby +cms: + - No Cms +category: + - Single Page +date: 2022-04-07T07:07:07.000Z +description: A nostalgic theme using Gatsby, Typescript, and Nes.css +stale: false +disabled: true +disabled_reason: demo url not found +--- + +# A tribute to 8-bit and retrograming using Gatsby and NES.css + +This Gatsby theme uses typescript and Nes.css to build a simple presentation page (One-Page Layout). diff --git a/content/theme/gatsby-netlify-cms.md b/content/theme/gatsby-netlify-cms.md index 418893f1f..5f8e7dd25 100644 --- a/content/theme/gatsby-netlify-cms.md +++ b/content/theme/gatsby-netlify-cms.md @@ -1,14 +1,13 @@ --- title: Gatsby Netlify CMS -github: 'https://github.com/robertcoopercode/gatsby-netlify-cms' -demo: 'https://gatsby-netlify-cms-example.netlify.com/' +github: https://github.com/robertcoopercode/gatsby-netlify-cms +demo: https://gatsby-netlify-cms-example.netlify.com/ author: Robert Cooper ssg: - Gatsby cms: - - NetlifyCMS + - DecapCMS date: 2018-11-19T00:43:34.000Z -github_branch: master description: Example website built with Gatsby V2 and Netlify CMS stale: true --- diff --git a/content/theme/gatsby-netlify-identity-starter.md b/content/theme/gatsby-netlify-identity-starter.md index 0f6be7e70..b98c0db26 100644 --- a/content/theme/gatsby-netlify-identity-starter.md +++ b/content/theme/gatsby-netlify-identity-starter.md @@ -1,14 +1,13 @@ --- title: Gatsby Netlify Identity -github: 'https://github.com/lwz7512/gatsby-netlify-identity-starter' -demo: 'https://inspiring-me-lwz7512.netlify.com/' +github: https://github.com/lwz7512/gatsby-netlify-identity-starter +demo: https://inspiring-me-lwz7512.netlify.com/ author: liwenzhi ssg: - Gatsby cms: - No Cms date: 2018-12-21T19:54:09.000Z -github_branch: master description: a gatsby static site generator with netlify identity control... stale: true --- diff --git a/content/theme/gatsby-netlifycms-blog-web-app.md b/content/theme/gatsby-netlifycms-blog-web-app.md new file mode 100644 index 000000000..9bbabd961 --- /dev/null +++ b/content/theme/gatsby-netlifycms-blog-web-app.md @@ -0,0 +1,46 @@ +--- +title: Gatsby Netlify CMS Modern blog web-app +github: https://github.com/simarmannsingh/silverlux +demo: https://silverlux.netlify.app/ +author: Simar Mann Singh +date: 2021-07-03T00:00:00.000Z +ssg: + - Gatsby +cms: + - DecapCMS +css: + - Bulma +archetype: + - Blog +description: >- + This public repo is an example blog web-app that is built with Gatsby using + Netlify CMS. It follows the JAMstack architecture by using Git as a single + source of truth, and Netlify for continuous deployment, and CDN distribution. +stale: true +--- + +# Gatsby Netlify-CMS Modern blog + +A fully-responsive [Gatsby](https://www.gatsbyjs.org/) based template web-app which can be easily hosted on any platform. This web-app uses the [Netlify CMS](https://www.netlifycms.org) as its content management system. + +**Note:** This starter template is a customized version of the original template by Netlify that can be found on [Netlify CMS](https://www.netlifycms.org/) website and uses [Gatsby v2](https://www.gatsbyjs.org/blog/2018-09-17-gatsby-v2/). + +## Features + +- A simple landing page with a customized blog functionality built with Netlify CMS +- Editable Pages: About, Blog-Collection and Contact page with Netlify Form support +- Create Blog posts from Netlify CMS +- Tags support: Separate page for posts under each tag +- Basic directory organization +- Uses Bulma for styling, but size is reduced by `purge-css-plugin` +- Blazing fast loading times thanks to pre-rendered HTML and automatic chunk loading of JS files +- Uses `gatsby-image` with Netlify-CMS preview support +- Separate components for everything +- Netlify deploy configuration +- Netlify function support, see `lambda` folder +- Perfect score on Lighthouse for SEO, Accessibility and Performance (wip:PWA) +- ..and more + +## License + +This repository has MIT license which can be found [here](https://github.com/simarmannsingh/gatsby-netlifycms-starter-template/blob/master/LICENSE). diff --git a/content/theme/gatsby-nice-blog.md b/content/theme/gatsby-nice-blog.md index 9f0ede630..3625f2d29 100644 --- a/content/theme/gatsby-nice-blog.md +++ b/content/theme/gatsby-nice-blog.md @@ -1,16 +1,18 @@ --- -title: "Gatsby Nice Blog" +title: Gatsby Nice Blog github: https://github.com/abhaynikam/gatsby-nice-blog demo: https://nostalgic-liskov-e76c32.netlify.app/ author: abhaynikam -date: 2020-10-11 -github_branch: master +date: 2020-10-11T00:00:00.000Z ssg: - Gatsby archetype: - Blog - Portfolio -description: "A nice starter gatsby blog post template with" +description: A nice starter gatsby blog post template with +disabled: false +stale: true +disabled_reason: '' --- # Nice blog diff --git a/content/theme/gatsby-oneshopper.md b/content/theme/gatsby-oneshopper.md index 200fbdf5d..7e1f96848 100644 --- a/content/theme/gatsby-oneshopper.md +++ b/content/theme/gatsby-oneshopper.md @@ -1,14 +1,13 @@ --- title: OneShopper -github: 'https://github.com/rohitguptab/OneShopper' -demo: 'https://oneshopper.netlify.com/' +github: https://github.com/rohitguptab/OneShopper +demo: https://oneshopper.netlify.com/ author: Rohit Gupta ssg: - Gatsby cms: - No Cms date: 2019-05-13T05:52:36.000Z -github_branch: master description: This is repository create for Ecommerce site With Gatsby js -stale: false +stale: true --- diff --git a/content/theme/gatsby-personal-starter-blog.md b/content/theme/gatsby-personal-starter-blog.md index 9f696c3eb..5106be50e 100644 --- a/content/theme/gatsby-personal-starter-blog.md +++ b/content/theme/gatsby-personal-starter-blog.md @@ -1,14 +1,15 @@ --- title: Gatsby Personal Starter Blog -github: 'https://github.com/thomaswangio/gatsby-personal-starter-blog' -demo: 'https://gatsby-personal-starter-blog.netlify.com/' +github: https://github.com/thomaswangio/gatsby-personal-starter-blog +demo: https://gatsby-personal-starter-blog.netlify.com/ author: Thomas Wang ssg: - Gatsby cms: - No Cms date: 2019-04-22T00:28:28.000Z -github_branch: master -description: "Gatsby starter for a personal site && blog! \U0001F436" -stale: false +description: Gatsby starter for a personal site && blog! 🐶 +stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/gatsby-portfolio-dev.md b/content/theme/gatsby-portfolio-dev.md index 3e6e260cd..994e0419f 100644 --- a/content/theme/gatsby-portfolio-dev.md +++ b/content/theme/gatsby-portfolio-dev.md @@ -1,14 +1,13 @@ --- title: Gatsby Portfolio Dev -github: 'https://github.com/smakosh/gatsby-portfolio-dev' -demo: 'https://portfolio.smakosh.com/' +github: https://github.com/smakosh/gatsby-portfolio-dev +demo: https://portfolio.smakosh.com/ author: Ismail Ghallou ssg: - Gatsby cms: - No Cms date: 2018-12-27T16:25:46.000Z -github_branch: master description: A portfolio for developers -stale: false +stale: true --- diff --git a/content/theme/gatsby-portfolio.md b/content/theme/gatsby-portfolio.md index ffc114fe0..1f0cbcac0 100644 --- a/content/theme/gatsby-portfolio.md +++ b/content/theme/gatsby-portfolio.md @@ -1,14 +1,13 @@ --- title: Gatsby Portfolio -github: 'https://github.com/datocms/gatsby-portfolio' -demo: 'https://cranky-edison-12166d.netlify.com' +github: https://github.com/datocms/gatsby-portfolio +demo: https://cranky-edison-12166d.netlify.com author: DatoCMS ssg: - Gatsby cms: - DatoCMS date: 2017-12-01T17:08:02.000Z -github_branch: master description: Sample DatoCMS website built with GatsbyJS -stale: false +stale: true --- diff --git a/content/theme/gatsby-prismic-starter-prist.md b/content/theme/gatsby-prismic-starter-prist.md index 0006b7726..35f82f787 100644 --- a/content/theme/gatsby-prismic-starter-prist.md +++ b/content/theme/gatsby-prismic-starter-prist.md @@ -1,14 +1,13 @@ --- title: Gatsby Prismic Starter Prist -github: 'https://github.com/margueriteroth/gatsby-prismic-starter-prist' -demo: 'https://prist.marguerite.io/' +github: https://github.com/margueriteroth/gatsby-prismic-starter-prist +demo: https://prist.marguerite.io/ author: Marguerite Roth ssg: - Gatsby cms: - Prismic date: 2020-03-18T00:00:00.000Z -github_branch: master description: Gatsby starter for portfolios and blogs using Prismic CMS -stale: false +stale: true --- diff --git a/content/theme/gatsby-react-boilerplate.md b/content/theme/gatsby-react-boilerplate.md index 9c335aaa9..f433b6d1e 100644 --- a/content/theme/gatsby-react-boilerplate.md +++ b/content/theme/gatsby-react-boilerplate.md @@ -1,14 +1,13 @@ --- title: Gatsby React Boilerplate -github: 'https://github.com/PrototypeInteractive/gatsby-react-boilerplate' -demo: 'https://prototypeinteractive.github.io/gatsby-react-boilerplate/' +github: https://github.com/PrototypeInteractive/gatsby-react-boilerplate +demo: https://prototypeinteractive.github.io/gatsby-react-boilerplate/ author: Prototype Interactive ssg: - Gatsby cms: - No Cms date: 2017-10-13T18:45:57.000Z -github_branch: master description: Gatsbyjs boilerplate stale: true --- diff --git a/content/theme/gatsby-react-bootstrap-starter.md b/content/theme/gatsby-react-bootstrap-starter.md index e2721521f..4c3017c66 100644 --- a/content/theme/gatsby-react-bootstrap-starter.md +++ b/content/theme/gatsby-react-bootstrap-starter.md @@ -1,8 +1,8 @@ --- title: Gatsby React Bootstrap Starter -github: 'https://github.com/billyjacoby/gatsby-react-bootstrap-starter' -demo: 'https://billyjacoby.github.io/gatsby-react-bootstrap-starter/' -author: 'https://github.com/billyjacoby' +github: https://github.com/billyjacoby/gatsby-react-bootstrap-starter +demo: https://billyjacoby.github.io/gatsby-react-bootstrap-starter/ +author: https://github.com/billyjacoby ssg: - Gatsby cms: @@ -10,6 +10,5 @@ cms: css: - Bootstrap date: 2019-04-30T23:01:02.000Z -github_branch: master stale: true --- diff --git a/content/theme/gatsby-redux-starter.md b/content/theme/gatsby-redux-starter.md index 88fbcce25..61d58603e 100644 --- a/content/theme/gatsby-redux-starter.md +++ b/content/theme/gatsby-redux-starter.md @@ -1,7 +1,7 @@ --- title: Gatsby Redux Starter -github: 'https://github.com/AVivero/gatsby-redux-starter' -demo: 'https://avivero.github.io/gatsby-redux-starter/' +github: https://github.com/AVivero/gatsby-redux-starter +demo: https://avivero.github.io/gatsby-redux-starter/ author: Alex Vivero ssg: - Gatsby @@ -11,7 +11,6 @@ css: - SCSS - Bootstrap date: 2018-11-06T06:56:06.000Z -github_branch: master description: >- A simple GatsbyJS starter that provides multiple technologies out of the box, like Redux, Sass and Bootstrap. diff --git a/content/theme/gatsby-scientific-blog-machine-learning.md b/content/theme/gatsby-scientific-blog-machine-learning.md index f51035f9a..a2c50af80 100644 --- a/content/theme/gatsby-scientific-blog-machine-learning.md +++ b/content/theme/gatsby-scientific-blog-machine-learning.md @@ -1,14 +1,13 @@ --- title: Scientific Blog Machine Learning -github: 'https://github.com/DanShai/gatsbyv2-scientific-blog-machine-learning' -demo: 'https://danshai.github.io/gatsbyv2-scientific-blog-machine-learning/' +github: https://github.com/DanShai/gatsbyv2-scientific-blog-machine-learning +demo: https://danshai.github.io/gatsbyv2-scientific-blog-machine-learning/ author: Dan Shai ssg: - Gatsby cms: - No Cms date: 2018-09-27T10:20:26.000Z -github_branch: master description: gatsby V2 scientific machine learning blog Starter stale: true --- diff --git a/content/theme/gatsby-serif-theme.md b/content/theme/gatsby-serif-theme.md index 99c285288..b46fc28d4 100644 --- a/content/theme/gatsby-serif-theme.md +++ b/content/theme/gatsby-serif-theme.md @@ -1,14 +1,13 @@ --- title: Gatsby Serif Theme -github: 'https://github.com/JugglerX/gatsby-serif-theme' -demo: 'https://gatsby-serif.netlify.com/' +github: https://github.com/JugglerX/gatsby-serif-theme +demo: https://gatsby-serif.netlify.com/ author: Robert Austin ssg: - Gatsby cms: - No Cms date: 2018-12-12T04:58:52.000Z -github_branch: master description: Serif is a beautiful small business theme for Gatsby. -stale: false +stale: true --- diff --git a/content/theme/gatsby-simple-blog.md b/content/theme/gatsby-simple-blog.md index a755ee81d..521a6bc4f 100644 --- a/content/theme/gatsby-simple-blog.md +++ b/content/theme/gatsby-simple-blog.md @@ -1,14 +1,13 @@ --- title: Gatsby Simple Blog -github: 'https://github.com/thundermiracle/gatsby-simple-blog' -demo: 'https://gatsby-simple-blog.thundermiracle.com/' +github: https://github.com/thundermiracle/gatsby-simple-blog +demo: https://gatsby-simple-blog.thundermiracle.com/ author: ThunderMiracle ssg: - Gatsby cms: - No Cms date: 2019-05-14T11:18:12.000Z -github_branch: master description: >- an easily configurable gatsby-starter-blog with overreacted looking and tags, breadcrumbs, disqus, i18n, eslint supported diff --git a/content/theme/gatsby-simple-contentful-starter.md b/content/theme/gatsby-simple-contentful-starter.md index 2f6044474..d4d46dee8 100644 --- a/content/theme/gatsby-simple-contentful-starter.md +++ b/content/theme/gatsby-simple-contentful-starter.md @@ -1,14 +1,13 @@ --- title: Gatsby Simple Contentful Starter -github: 'https://github.com/cwlsn/gatsby-simple-contentful-starter' -demo: 'https://gatsby-simple-contentful-starter.netlify.com/' +github: https://github.com/cwlsn/gatsby-simple-contentful-starter +demo: https://gatsby-simple-contentful-starter.netlify.com/ author: Connor Wilson ssg: - Gatsby cms: - Contentful date: 2018-10-10T00:47:54.000Z -github_branch: master -description: "\U0001F38A A simple Gatsby Starter that talks to Contentful." +description: 🎊 A simple Gatsby Starter that talks to Contentful. stale: true --- diff --git a/content/theme/gatsby-snipcart.md b/content/theme/gatsby-snipcart.md index 397a077b5..484f3d641 100644 --- a/content/theme/gatsby-snipcart.md +++ b/content/theme/gatsby-snipcart.md @@ -1,7 +1,7 @@ --- title: Gatsby Snipcart -github: 'https://github.com/issydennis/gatsby-snipcart' -demo: 'https://gatsby-snipcart-starter.netlify.com/' +github: https://github.com/issydennis/gatsby-snipcart +demo: https://gatsby-snipcart-starter.netlify.com/ author: Issy Dennis ssg: - Gatsby @@ -10,7 +10,6 @@ cms: services: - Snipcart date: 2020-03-18T00:00:00.000Z -github_branch: master description: Gatsby and Snipcart Starter stale: true --- diff --git a/content/theme/gatsby-starter-accessibility.md b/content/theme/gatsby-starter-accessibility.md index 91d410bf6..9de0212d3 100644 --- a/content/theme/gatsby-starter-accessibility.md +++ b/content/theme/gatsby-starter-accessibility.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Accessibility -github: 'https://github.com/benjamingrobertson/gatsby-starter-accessibility' -demo: 'https://gatsby-starter-accessibility.netlify.com/' +github: https://github.com/benjamingrobertson/gatsby-starter-accessibility +demo: https://gatsby-starter-accessibility.netlify.com/ author: Ben Robertson ssg: - Gatsby cms: - No Cms date: 2019-05-01T15:58:21.000Z -github_branch: master description: A Gatsby starter with powerful built-in accessibility tools. -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-act-blog.md b/content/theme/gatsby-starter-act-blog.md index a0811a6bd..1ceecaca9 100644 --- a/content/theme/gatsby-starter-act-blog.md +++ b/content/theme/gatsby-starter-act-blog.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Act Blog -github: 'https://github.com/act-labs/gatsby-starter-act-blog' -demo: 'https://act-labs.github.io' +github: https://github.com/act-labs/gatsby-starter-act-blog +demo: https://act-labs.github.io author: act-labs ssg: - Gatsby cms: - No Cms date: 2019-05-31T16:02:20.000Z -github_branch: master description: >- ACT: Gatsby starter for blog/documentation using MDX, Ant Design, gatsby-plugin-combine diff --git a/content/theme/gatsby-starter-aerial.md b/content/theme/gatsby-starter-aerial.md index f4f3a879b..69b27ea17 100644 --- a/content/theme/gatsby-starter-aerial.md +++ b/content/theme/gatsby-starter-aerial.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Aerial -github: 'https://github.com/anubhavsrivastava/gatsby-starter-aerial' -demo: 'https://anubhavsrivastava.github.io/gatsby-starter-aerial/' +github: https://github.com/anubhavsrivastava/gatsby-starter-aerial +demo: https://anubhavsrivastava.github.io/gatsby-starter-aerial/ author: Anubhav Srivastava ssg: - Gatsby cms: - No Cms date: 2019-05-11T14:53:26.000Z -github_branch: master description: Gatsby.js V2 starter template based on aerial by HTML5 UP -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-apollo-netlify.md b/content/theme/gatsby-starter-apollo-netlify.md index 00e843c2b..4722fbb5c 100644 --- a/content/theme/gatsby-starter-apollo-netlify.md +++ b/content/theme/gatsby-starter-apollo-netlify.md @@ -1,17 +1,16 @@ --- title: Gatsby Apollo Netlify -github: 'https://github.com/piducancore/gatsby-starter-apollo-netlify' -demo: 'https://gatsby-starter-apollo.netlify.com/' +github: https://github.com/piducancore/gatsby-starter-apollo-netlify +demo: https://gatsby-starter-apollo.netlify.com/ author: piducancore ssg: - Gatsby cms: - No Cms date: 2019-07-24T20:30:38.000Z -github_branch: master description: >- This project is an easy way to start developing fullstack apps with Gatsby and Apollo Server (using Netlify Lambda functions). For developing we use Netlify Dev to bring all of this magic to our local machine. -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-auth-aws-amplify.md b/content/theme/gatsby-starter-auth-aws-amplify.md index 12016bb03..1658c7471 100644 --- a/content/theme/gatsby-starter-auth-aws-amplify.md +++ b/content/theme/gatsby-starter-auth-aws-amplify.md @@ -1,14 +1,13 @@ --- title: Gatsby Auth Aws Amplify -github: 'https://github.com/ben-siewert/gatsby-starter-auth-aws-amplify' -demo: 'https://authenticaysh.netlify.com/' +github: https://github.com/ben-siewert/gatsby-starter-auth-aws-amplify +demo: https://authenticaysh.netlify.com/ author: beams ssg: - Gatsby cms: - No Cms date: 2019-08-06T01:31:05.000Z -github_branch: master description: A full-featured AWS Amplify Auth starter made with GatsbyJS -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-bee.md b/content/theme/gatsby-starter-bee.md index a5f30a7da..a96be5058 100644 --- a/content/theme/gatsby-starter-bee.md +++ b/content/theme/gatsby-starter-bee.md @@ -1,14 +1,15 @@ --- title: Gatsby Starter Bee -github: 'https://github.com/JaeYeopHan/gatsby-starter-bee' -demo: 'https://gatsby-starter-bee.netlify.com/' +github: https://github.com/JaeYeopHan/gatsby-starter-bee +demo: https://gatsby-starter-bee.netlify.com/ author: JaeYeopHan ssg: - Gatsby cms: - No Cms date: 2019-02-03T14:27:33.000Z -github_branch: master -description: "\U0001F41DFull Package | Simple | Fresh UI | Blog Template :: Let's start to blogging with gatsby-starter-bee!" +description: >- + 🐝Full Package | Simple | Fresh UI | Blog Template :: Let's start to blogging + with gatsby-starter-bee! stale: false --- diff --git a/content/theme/gatsby-starter-blockstack.md b/content/theme/gatsby-starter-blockstack.md index 5bb8f7bd6..79fdba166 100644 --- a/content/theme/gatsby-starter-blockstack.md +++ b/content/theme/gatsby-starter-blockstack.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Blockstack -github: 'https://github.com/friedger/gatsby-starter-blockstack' -demo: 'https://gatsby-starter-blockstack.openintents.org/' +github: https://github.com/friedger/gatsby-starter-blockstack +demo: https://gatsby-starter-blockstack.openintents.org/ author: Friedger Müffke ssg: - Gatsby cms: - No Cms date: 2019-05-13T09:17:28.000Z -github_branch: master description: Make decentralized apps with Gatsby + Blockstack stale: true --- diff --git a/content/theme/gatsby-starter-blog-amp-to-pwa.md b/content/theme/gatsby-starter-blog-amp-to-pwa.md index be7156969..db7ab06e9 100644 --- a/content/theme/gatsby-starter-blog-amp-to-pwa.md +++ b/content/theme/gatsby-starter-blog-amp-to-pwa.md @@ -1,14 +1,15 @@ --- title: Gatsby Blog AMP to PWA -github: 'https://github.com/tomoyukikashiro/gatsby-starter-blog-amp-to-pwa' -demo: 'https://gatsby-starter-blog-amp-to-pwa.netlify.com/' +github: https://github.com/tomoyukikashiro/gatsby-starter-blog-amp-to-pwa +demo: https://gatsby-starter-blog-amp-to-pwa.netlify.com/ author: Tomoyuki Kashiro ssg: - Gatsby cms: - No Cms date: 2019-02-20T13:07:57.000Z -github_branch: master description: Gatsby starter for creating a blog which support AMP and PWA stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/gatsby-starter-blog-grommet.md b/content/theme/gatsby-starter-blog-grommet.md index 85d69fd8c..34fde91ae 100644 --- a/content/theme/gatsby-starter-blog-grommet.md +++ b/content/theme/gatsby-starter-blog-grommet.md @@ -1,14 +1,13 @@ --- title: Gatsby Blog Grommet -github: 'https://github.com/Ganevru/gatsby-starter-blog-grommet' -demo: 'https://gatsby-starter-blog-grommet.netlify.com/' +github: https://github.com/Ganevru/gatsby-starter-blog-grommet +demo: https://gatsby-starter-blog-grommet.netlify.com/ author: Ivan Ganev ssg: - Gatsby cms: - No Cms date: 2018-09-21T19:19:22.000Z -github_branch: master description: 'A Gatsby v2 starter based on Grommet v2 UI. Demo:' stale: true --- diff --git a/content/theme/gatsby-starter-blog-jumpalottahigh.md b/content/theme/gatsby-starter-blog-jumpalottahigh.md index 7728950bf..9565ad80c 100644 --- a/content/theme/gatsby-starter-blog-jumpalottahigh.md +++ b/content/theme/gatsby-starter-blog-jumpalottahigh.md @@ -1,14 +1,13 @@ --- title: Gatsby Blog Jumpalottahigh -github: 'https://github.com/jumpalottahigh/gatsby-starter-blog-jumpalottahigh' -demo: 'https://gatsby-starter-blog-jumpalottahigh.netlify.com/' +github: https://github.com/jumpalottahigh/gatsby-starter-blog-jumpalottahigh +demo: https://gatsby-starter-blog-jumpalottahigh.netlify.com/ author: Georgi Yanev ssg: - Gatsby cms: - No Cms date: 2018-06-02T18:38:14.000Z -github_branch: master description: >- Gatsby v2 blog starter with SEO, search, filter, reading progress, mobile menu fab diff --git a/content/theme/gatsby-starter-blog-mdx.md b/content/theme/gatsby-starter-blog-mdx.md index 265bc4548..0410589e8 100644 --- a/content/theme/gatsby-starter-blog-mdx.md +++ b/content/theme/gatsby-starter-blog-mdx.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Blog Mdx -github: 'https://github.com/hagnerd/gatsby-starter-blog-mdx' -demo: 'https://gatsby-starter-blog-mdx-demo.netlify.com/' +github: https://github.com/hagnerd/gatsby-starter-blog-mdx +demo: https://gatsby-starter-blog-mdx-demo.netlify.com/ author: Matt Hagner ssg: - Gatsby cms: - No Cms date: 2019-01-03T15:16:26.000Z -github_branch: master description: Live Demo stale: true --- diff --git a/content/theme/gatsby-starter-blog-with-lunr.md b/content/theme/gatsby-starter-blog-with-lunr.md index 62b566e24..4843b1f76 100644 --- a/content/theme/gatsby-starter-blog-with-lunr.md +++ b/content/theme/gatsby-starter-blog-with-lunr.md @@ -1,14 +1,13 @@ --- title: Gatsby Blog With Lunr -github: 'https://github.com/lukewhitehouse/gatsby-starter-blog-with-lunr' -demo: 'https://gatsby-starter-blog-with-lunr.netlify.com/' +github: https://github.com/lukewhitehouse/gatsby-starter-blog-with-lunr +demo: https://gatsby-starter-blog-with-lunr.netlify.com/ author: Luke Whitehouse ssg: - Gatsby cms: - No Cms date: 2019-04-26T20:57:26.000Z -github_branch: master description: >- Building upon Gatsby's blog starter with a Lunr.js powered Site Search. https://gatsby-starter-blog-with-lunr.netlify.com/ diff --git a/content/theme/gatsby-starter-blog.md b/content/theme/gatsby-starter-blog.md index 6ecd319eb..febf4bdf2 100644 --- a/content/theme/gatsby-starter-blog.md +++ b/content/theme/gatsby-starter-blog.md @@ -1,14 +1,15 @@ --- title: Gatsby Starter Blog -github: 'https://github.com/gatsbyjs/gatsby-starter-blog' -demo: 'https://gatsby-starter-blog-demo.netlify.com/' +github: https://github.com/gatsbyjs/gatsby-starter-blog +demo: https://gatsby-starter-blog-demo.netlify.com/ author: Kyle Mathews ssg: - Gatsby cms: - No Cms date: 2015-07-22T00:07:37.000Z -github_branch: master description: Gatsby starter for creating a blog stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/gatsby-starter-bootstrap-netlify.md b/content/theme/gatsby-starter-bootstrap-netlify.md index 114b07550..b7ac9b019 100644 --- a/content/theme/gatsby-starter-bootstrap-netlify.md +++ b/content/theme/gatsby-starter-bootstrap-netlify.md @@ -1,16 +1,15 @@ --- title: Gatsby Starter Bootstrap Netlify -github: 'https://github.com/konsumer/gatsby-starter-bootstrap-netlify' -demo: 'https://gatsby-starter-bootstrap-netlify.netlify.com/' +github: https://github.com/konsumer/gatsby-starter-bootstrap-netlify +demo: https://gatsby-starter-bootstrap-netlify.netlify.com/ author: David Konsumer ssg: - Gatsby cms: - - NetlifyCMS + - DecapCMS css: - Bootstrap date: 2017-11-08T01:59:41.000Z -github_branch: master description: Bootstrap and netlify CMS starter for Gatsby stale: true --- diff --git a/content/theme/gatsby-starter-business.md b/content/theme/gatsby-starter-business.md index 0cf02099e..a2f0e4799 100644 --- a/content/theme/gatsby-starter-business.md +++ b/content/theme/gatsby-starter-business.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Business -github: 'https://github.com/v4iv/gatsby-starter-business' -demo: 'https://gatsby-starter-business.netlify.com/' +github: https://github.com/v4iv/gatsby-starter-business +demo: https://gatsby-starter-business.netlify.com/ author: Vaibhav Sharma ssg: - Gatsby cms: - No Cms date: 2018-03-31T13:20:45.000Z -github_branch: master description: Gatsby Business Website Starter -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-buttercms.md b/content/theme/gatsby-starter-buttercms.md index 6601c4ce2..200aaeeff 100644 --- a/content/theme/gatsby-starter-buttercms.md +++ b/content/theme/gatsby-starter-buttercms.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Buttercms -github: 'https://github.com/ButterCMS/gatsby-starter-buttercms' -demo: 'https://gatsby-starter-buttercms.netlify.com/' +github: https://github.com/ButterCMS/gatsby-starter-buttercms +demo: https://gatsby-starter-buttercms.netlify.com/ author: ButterCMS ssg: - Gatsby cms: - No Cms date: 2019-01-22T19:39:01.000Z -github_branch: master description: A starter template for spinning up a Gatsby+ ButterCMS site stale: false --- diff --git a/content/theme/gatsby-starter-calpa-blog.md b/content/theme/gatsby-starter-calpa-blog.md index 90957a81e..1b1c24242 100644 --- a/content/theme/gatsby-starter-calpa-blog.md +++ b/content/theme/gatsby-starter-calpa-blog.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Calpa Blog -github: 'https://github.com/calpa/gatsby-starter-calpa-blog' -demo: 'https://calpa.me/' +github: https://github.com/calpa/gatsby-starter-calpa-blog +demo: https://calpa.me/ author: Calpa Liu ssg: - Gatsby cms: - No Cms date: 2017-10-15T13:40:48.000Z -github_branch: master description: Calpa's Blog (GatsbyJS Starter X Netlify CMS) stale: false --- diff --git a/content/theme/gatsby-starter-carraway.md b/content/theme/gatsby-starter-carraway.md index d0a7d7378..8a6436607 100644 --- a/content/theme/gatsby-starter-carraway.md +++ b/content/theme/gatsby-starter-carraway.md @@ -1,16 +1,17 @@ --- title: Gatsby Starter Carraway -github: 'https://github.com/endymion1818/gatsby-starter-carraway' -demo: 'https://gatsby-starter-carraway.netlify.com/' +github: https://github.com/endymion1818/gatsby-starter-carraway +demo: https://gatsby-starter-carraway.netlify.com/ author: Ben Read ssg: - Gatsby cms: - No Cms date: 2019-06-08T14:42:17.000Z -github_branch: master description: >- a Gatsby starter theme with Accessibility features, TypeScript, Jest, some basic UI elements, and a CircleCI pipeline -stale: false +stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/gatsby-starter-casual.md b/content/theme/gatsby-starter-casual.md index f56f3bb54..1f77afc75 100644 --- a/content/theme/gatsby-starter-casual.md +++ b/content/theme/gatsby-starter-casual.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Casual -github: 'https://github.com/anubhavsrivastava/gatsby-starter-casual' -demo: 'https://anubhavsrivastava.github.io/gatsby-starter-casual/' +github: https://github.com/anubhavsrivastava/gatsby-starter-casual +demo: https://anubhavsrivastava.github.io/gatsby-starter-casual/ author: Anubhav Srivastava ssg: - Gatsby cms: - No Cms date: 2019-06-27T11:35:02.000Z -github_branch: master description: Gatsby.js V2 starter template based on Casual by startbootstrap -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-contentful-i18n.md b/content/theme/gatsby-starter-contentful-i18n.md index 10a01d637..c4d49aa59 100644 --- a/content/theme/gatsby-starter-contentful-i18n.md +++ b/content/theme/gatsby-starter-contentful-i18n.md @@ -1,14 +1,13 @@ --- title: Gatsby Contentful i18n -github: 'https://github.com/mccrodp/gatsby-starter-contentful-i18n' -demo: 'https://gatsby-starter-contentful-i18n.netlify.com/en-US/' +github: https://github.com/mccrodp/gatsby-starter-contentful-i18n +demo: https://gatsby-starter-contentful-i18n.netlify.com/en-US/ author: Paul McCrodden ssg: - Gatsby cms: - Contentful date: 2018-02-11T06:35:14.000Z -github_branch: master description: i18n support and language switcher for Contentful starter repo stale: true --- diff --git a/content/theme/gatsby-starter-contentstack.md b/content/theme/gatsby-starter-contentstack.md index 1460992a1..b451ecb99 100644 --- a/content/theme/gatsby-starter-contentstack.md +++ b/content/theme/gatsby-starter-contentstack.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Contentstack -github: 'https://github.com/contentstack/gatsby-starter-contentstack' -demo: 'https://gatsby-contentstack-starter.netlify.com/' +github: https://github.com/contentstack/gatsby-starter-contentstack +demo: https://gatsby-contentstack-starter.netlify.com/ author: Contentstack ssg: - Gatsby cms: - No Cms date: 2018-09-21T12:47:31.000Z -github_branch: master description: A starter kit for building a websites using Gatsby and Contentstack stale: false --- diff --git a/content/theme/gatsby-starter-cv.md b/content/theme/gatsby-starter-cv.md index df11542b5..04478c635 100644 --- a/content/theme/gatsby-starter-cv.md +++ b/content/theme/gatsby-starter-cv.md @@ -1,16 +1,15 @@ --- title: Gatsby Starter CV -github: 'https://github.com/santosfrancisco/gatsby-starter-cv' -demo: 'https://santosfrancisco.github.io/gatsby-starter-cv/' +github: https://github.com/santosfrancisco/gatsby-starter-cv +demo: https://santosfrancisco.github.io/gatsby-starter-cv/ author: Francisco Santos ssg: - Gatsby cms: - No Cms date: 2018-12-24T00:05:49.000Z -github_branch: master description: >- A simple starter to get up and developing your digital curriculum with GatsbyJS -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-deck.md b/content/theme/gatsby-starter-deck.md index c5d91f4cc..c25338cad 100644 --- a/content/theme/gatsby-starter-deck.md +++ b/content/theme/gatsby-starter-deck.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Deck -github: 'https://github.com/fabe/gatsby-starter-deck' -demo: 'https://gatsby-deck.netlify.com' +github: https://github.com/fabe/gatsby-starter-deck +demo: https://gatsby-deck.netlify.com author: Fabian Schultz ssg: - Gatsby cms: - No Cms date: 2017-11-23T23:22:27.000Z -github_branch: master -description: "\U0001F5E3 Create presentations using Gatsby, React & Markdown." -stale: false +description: 🗣 Create presentations using Gatsby, React & Markdown. +stale: true --- diff --git a/content/theme/gatsby-starter-default-typescript.md b/content/theme/gatsby-starter-default-typescript.md index 97bc76321..39e31ec3a 100644 --- a/content/theme/gatsby-starter-default-typescript.md +++ b/content/theme/gatsby-starter-default-typescript.md @@ -1,14 +1,15 @@ --- title: Gatsby Starter Default Typescript -github: 'https://github.com/andykenward/gatsby-starter-default-typescript' -demo: 'https://gatsby-starter-default-typescript.netlify.com/' +github: https://github.com/andykenward/gatsby-starter-default-typescript +demo: https://gatsby-starter-default-typescript.netlify.com/ author: Andy Kenward ssg: - Gatsby cms: - No Cms date: 2019-05-27T08:33:21.000Z -github_branch: master description: The default Gatsby starter TypeScript stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/gatsby-starter-default.md b/content/theme/gatsby-starter-default.md index 4dac98d32..81b7eb522 100644 --- a/content/theme/gatsby-starter-default.md +++ b/content/theme/gatsby-starter-default.md @@ -1,14 +1,15 @@ --- title: Gatsby Starter Default -github: 'https://github.com/gatsbyjs/gatsby-starter-default' -demo: 'https://gatsby-starter-default-demo.netlify.com/' +github: https://github.com/gatsbyjs/gatsby-starter-default +demo: https://gatsby-starter-default-demo.netlify.com/ author: Gatsby ssg: - Gatsby cms: - No Cms date: 2015-07-21T00:52:53.000Z -github_branch: master description: The default Gatsby starter stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/gatsby-starter-developer-blog.md b/content/theme/gatsby-starter-developer-blog.md index f46fa21d2..e3f52f0b8 100644 --- a/content/theme/gatsby-starter-developer-blog.md +++ b/content/theme/gatsby-starter-developer-blog.md @@ -1,14 +1,15 @@ --- title: Gatsby Developer Blog -github: 'https://github.com/lgcolella/gatsby-starter-developer-blog' -demo: 'https://lgcolella.github.io/gatsby-starter-developer-blog/' +github: https://github.com/lgcolella/gatsby-starter-developer-blog +demo: https://lgcolella.github.io/gatsby-starter-developer-blog/ author: Luigi Colella ssg: - Gatsby cms: - No Cms date: 2018-12-19T22:42:37.000Z -github_branch: master description: Blog starter made with Gatbsy.js -stale: false +stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/gatsby-starter-developer-diary.md b/content/theme/gatsby-starter-developer-diary.md index ec37e238e..ebef8cf44 100644 --- a/content/theme/gatsby-starter-developer-diary.md +++ b/content/theme/gatsby-starter-developer-diary.md @@ -1,16 +1,15 @@ --- title: Gatsby Developer Diary -github: 'https://github.com/willjw3/gatsby-starter-developer-diary' -demo: 'https://developer-diary.netlify.com/' +github: https://github.com/willjw3/gatsby-starter-developer-diary +demo: https://developer-diary.netlify.com/ author: Will Ward ssg: - Gatsby cms: - No Cms date: 2019-05-27T14:26:21.000Z -github_branch: master description: >- An official Gatsby blog template designed for web developers. Blazing fast, it includes beautful web developer topic tags and social-media links -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-devto.md b/content/theme/gatsby-starter-devto.md index 1b2e6dd3f..6e66afbab 100644 --- a/content/theme/gatsby-starter-devto.md +++ b/content/theme/gatsby-starter-devto.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Devto -github: 'https://github.com/geocine/gatsby-starter-devto' -demo: 'https://gatsby-starter-devto.netlify.com/' +github: https://github.com/geocine/gatsby-starter-devto +demo: https://gatsby-starter-devto.netlify.com/ author: Aivan Monceller ssg: - Gatsby cms: - No Cms date: 2019-03-27T13:44:31.000Z -github_branch: master description: A GatsbyJS starter template that leverages the Dev.to API stale: true --- diff --git a/content/theme/gatsby-starter-dimension.md b/content/theme/gatsby-starter-dimension.md index 5a1d9745c..5ea7d1bec 100644 --- a/content/theme/gatsby-starter-dimension.md +++ b/content/theme/gatsby-starter-dimension.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Dimension -github: 'https://github.com/codebushi/gatsby-starter-dimension' -demo: 'https://gatsby-dimension.surge.sh/' +github: https://github.com/codebushi/gatsby-starter-dimension +demo: https://gatsby-dimension.surge.sh/ author: Code Bushi ssg: - Gatsby cms: - No Cms date: 2017-11-25T18:56:41.000Z -github_branch: master description: >- Gatsby.js V2 starter template based on Dimension, designed by HTML5 UP. Check out https://codebushi.com/gatsby-starters-and-themes/ for more Gatsby diff --git a/content/theme/gatsby-starter-directive.md b/content/theme/gatsby-starter-directive.md index 7f0eaa57b..59f6ff8a9 100644 --- a/content/theme/gatsby-starter-directive.md +++ b/content/theme/gatsby-starter-directive.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Directive -github: 'https://github.com/anubhavsrivastava/gatsby-starter-directive' -demo: 'https://anubhavsrivastava.github.io/gatsby-starter-directive/' +github: https://github.com/anubhavsrivastava/gatsby-starter-directive +demo: https://anubhavsrivastava.github.io/gatsby-starter-directive/ author: ANUBHAV SRIVASTAVA ssg: - Gatsby cms: - No Cms date: 2019-06-07T18:46:04.000Z -github_branch: master description: Gatsby.js V2 starter template based on Directive by HTML5 UP -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-docz.md b/content/theme/gatsby-starter-docz.md index 54740936a..f0d7894dc 100644 --- a/content/theme/gatsby-starter-docz.md +++ b/content/theme/gatsby-starter-docz.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Docz -github: 'https://github.com/RobinCsl/gatsby-starter-docz' -demo: 'https://gatsby-starter-docz.netlify.com/' +github: https://github.com/RobinCsl/gatsby-starter-docz +demo: https://gatsby-starter-docz.netlify.com/ author: Robin Cussol ssg: - Gatsby cms: - No Cms date: 2019-01-19T19:10:34.000Z -github_branch: master description: Simple starter where building your own documentation with Docz is possible stale: true --- diff --git a/content/theme/gatsby-starter-ecommerce.md b/content/theme/gatsby-starter-ecommerce.md index 73903b565..6f41085a0 100644 --- a/content/theme/gatsby-starter-ecommerce.md +++ b/content/theme/gatsby-starter-ecommerce.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Ecommerce -github: 'https://github.com/parmsang/gatsby-starter-ecommerce' -demo: 'https://parmsang.github.io/gatsby-starter-ecommerce/' +github: https://github.com/parmsang/gatsby-starter-ecommerce +demo: https://parmsang.github.io/gatsby-starter-ecommerce/ author: Parminder Sanghera ssg: - Gatsby cms: - No Cms date: 2018-06-08T07:15:32.000Z -github_branch: master description: Gatsby starter for creating an eCommerce site using the Moltin eCommerce Api -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-elemental.md b/content/theme/gatsby-starter-elemental.md index 5b4ff18a5..44774d078 100644 --- a/content/theme/gatsby-starter-elemental.md +++ b/content/theme/gatsby-starter-elemental.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Elemental -github: 'https://github.com/akzhy/gatsby-starter-elemental' -demo: 'https://elemental.netlify.com' +github: https://github.com/akzhy/gatsby-starter-elemental +demo: https://elemental.netlify.com author: Akshay ssg: - Gatsby cms: - No Cms date: 2019-07-25T09:28:07.000Z -github_branch: master description: Gatsby starter for portfolio sites -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-event-calendar.md b/content/theme/gatsby-starter-event-calendar.md index c59e4f179..680206455 100644 --- a/content/theme/gatsby-starter-event-calendar.md +++ b/content/theme/gatsby-starter-event-calendar.md @@ -1,14 +1,13 @@ --- title: Gatsby Event Calendar -github: 'https://github.com/EmaSuriano/gatsby-starter-event-calendar' -demo: 'https://gatsby-starter-event-calendar.netlify.com/' +github: https://github.com/EmaSuriano/gatsby-starter-event-calendar +demo: https://gatsby-starter-event-calendar.netlify.com/ author: Emanuel Suriano ssg: - Gatsby cms: - No Cms date: 2018-11-12T12:55:50.000Z -github_branch: master description: >- Gatsby Starter to display information about events from Google Spreadsheets with Calendars diff --git a/content/theme/gatsby-starter-eventually.md b/content/theme/gatsby-starter-eventually.md index 103f64571..d1f4cc02b 100644 --- a/content/theme/gatsby-starter-eventually.md +++ b/content/theme/gatsby-starter-eventually.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Eventually -github: 'https://github.com/anubhavsrivastava/gatsby-starter-eventually' -demo: 'https://anubhavsrivastava.github.io/gatsby-starter-eventually/' +github: https://github.com/anubhavsrivastava/gatsby-starter-eventually +demo: https://anubhavsrivastava.github.io/gatsby-starter-eventually/ author: Anubhav Srivastava ssg: - Gatsby cms: - No Cms date: 2019-05-12T07:05:30.000Z -github_branch: master description: Gatsby.js V2 starter template based on Eventually by HTML5 UP -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-fashion-portfolio.md b/content/theme/gatsby-starter-fashion-portfolio.md index bf9d4249d..eb94ad548 100644 --- a/content/theme/gatsby-starter-fashion-portfolio.md +++ b/content/theme/gatsby-starter-fashion-portfolio.md @@ -1,14 +1,13 @@ --- title: Gatsby Fashion Portfolio -github: 'https://github.com/shobhitchittora/gatsby-starter-fashion-portfolio' -demo: 'https://gatsby-starter-fashion-portfolio.netlify.com/' +github: https://github.com/shobhitchittora/gatsby-starter-fashion-portfolio +demo: https://gatsby-starter-fashion-portfolio.netlify.com/ author: Shobhit Chittora ssg: - Gatsby cms: - No Cms date: 2019-07-19T17:57:04.000Z -github_branch: master description: A Gatsby starter for a professional and minimal fashion portfolio. stale: true --- diff --git a/content/theme/gatsby-starter-fine.md b/content/theme/gatsby-starter-fine.md index 56da8f52e..2e9ad9835 100644 --- a/content/theme/gatsby-starter-fine.md +++ b/content/theme/gatsby-starter-fine.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Fine -github: 'https://github.com/toboko/gatsby-starter-fine' -demo: 'https://gatsby-starter-fine.netlify.com/' +github: https://github.com/toboko/gatsby-starter-fine +demo: https://gatsby-starter-fine.netlify.com/ author: Nicola Bombaci ssg: - Gatsby cms: - No Cms date: 2019-04-18T17:56:10.000Z -github_branch: master description: 'A fine blog starter for Gatsby ' stale: true --- diff --git a/content/theme/gatsby-starter-firebase.md b/content/theme/gatsby-starter-firebase.md index ec3d1fd14..4c403bdab 100644 --- a/content/theme/gatsby-starter-firebase.md +++ b/content/theme/gatsby-starter-firebase.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Firebase -github: 'https://github.com/muhajirdev/gatsby-starter-firebase' -demo: 'https://gatsby-starter-firebase.netlify.com/' +github: https://github.com/muhajirdev/gatsby-starter-firebase +demo: https://gatsby-starter-firebase.netlify.com/ author: Muhammad Muhajir ssg: - Gatsby cms: - No Cms date: 2018-10-17T12:39:39.000Z -github_branch: master -description: "Gatsby + Firebase = \U0001F44D" +description: Gatsby + Firebase = 👍 stale: true --- diff --git a/content/theme/gatsby-starter-forty.md b/content/theme/gatsby-starter-forty.md index 12be89a1c..f14be84ac 100644 --- a/content/theme/gatsby-starter-forty.md +++ b/content/theme/gatsby-starter-forty.md @@ -1,16 +1,17 @@ --- title: Gatsby Starter Forty -github: 'https://github.com/codebushi/gatsby-starter-forty' -demo: 'https://gatsby-forty.surge.sh/' +github: https://github.com/codebushi/gatsby-starter-forty +demo: https://gatsby-forty.surge.sh/ author: Code Bushi ssg: - Gatsby cms: - No Cms date: 2017-12-02T23:10:35.000Z -github_branch: master description: >- Gatsby.js V2 starter template based on Forty, designed by HTML5 UP. Check out https://codebushi.com/gatsby-starters-and-themes/ for more Gatsby starters. stale: true +disabled: true +disabled_reason: error checking demo url --- diff --git a/content/theme/gatsby-starter-foundation.md b/content/theme/gatsby-starter-foundation.md index 82e92ac8a..7b2d8cd8d 100644 --- a/content/theme/gatsby-starter-foundation.md +++ b/content/theme/gatsby-starter-foundation.md @@ -1,14 +1,13 @@ --- title: Foundation -github: 'https://github.com/stackrole/gatsby-starter-foundation' -demo: 'https://foundation.stackrole.com/' +github: https://github.com/stackrole/gatsby-starter-foundation +demo: https://foundation.stackrole.com/ author: Stackrole date: 2020-05-27T00:00:00.000Z -github_branch: master ssg: - Gatsby cms: - - NetlifyCMS + - DecapCMS css: - scss archetype: diff --git a/content/theme/gatsby-starter-fractal.md b/content/theme/gatsby-starter-fractal.md index 2d01e567d..95e80a261 100644 --- a/content/theme/gatsby-starter-fractal.md +++ b/content/theme/gatsby-starter-fractal.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Fractal -github: 'https://github.com/anubhavsrivastava/gatsby-starter-fractal' -demo: 'https://anubhavsrivastava.github.io/gatsby-starter-fractal/' +github: https://github.com/anubhavsrivastava/gatsby-starter-fractal +demo: https://anubhavsrivastava.github.io/gatsby-starter-fractal/ author: Anubhav Srivastava ssg: - Gatsby cms: - No Cms date: 2019-09-11T03:24:03.000Z -github_branch: master description: Gatsby.js V2 starter template based on Fractal by HTML5 UP -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-gatsbythemes.md b/content/theme/gatsby-starter-gatsbythemes.md index 0e25ae1a0..901ff6ac4 100644 --- a/content/theme/gatsby-starter-gatsbythemes.md +++ b/content/theme/gatsby-starter-gatsbythemes.md @@ -1,14 +1,15 @@ --- title: Gatsby Starter Gatsbythemes -github: 'https://github.com/saschajullmann/gatsby-starter-gatsbythemes' -demo: 'https://themes.gatsbythemes.com/gatsby-starter/' +github: https://github.com/saschajullmann/gatsby-starter-gatsbythemes +demo: https://themes.gatsbythemes.com/gatsby-starter/ author: Sascha Jullmann ssg: - Gatsby cms: - No Cms date: 2017-10-21T09:52:00.000Z -github_branch: master description: Basic gatsby-starter package stale: true +disabled: true +disabled_reason: error checking demo url --- diff --git a/content/theme/gatsby-starter-gcn.md b/content/theme/gatsby-starter-gcn.md index 3f379dbe9..61e31db37 100644 --- a/content/theme/gatsby-starter-gcn.md +++ b/content/theme/gatsby-starter-gcn.md @@ -1,16 +1,15 @@ --- title: Gatsby Starter GCN -github: 'https://github.com/ryanwiemer/gatsby-starter-gcn' -demo: 'https://gcn.netlify.com/' +github: https://github.com/ryanwiemer/gatsby-starter-gcn +demo: https://gcn.netlify.com/ author: Ryan Wiemer ssg: - Gatsby cms: - Contentful date: 2018-02-23T00:09:29.000Z -github_branch: master description: >- A starter template to build amazing static websites with Gatsby, Contentful and Netlify -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-ggt-material-ui-blog.md b/content/theme/gatsby-starter-ggt-material-ui-blog.md index 0b98912b7..c8904b3fe 100644 --- a/content/theme/gatsby-starter-ggt-material-ui-blog.md +++ b/content/theme/gatsby-starter-ggt-material-ui-blog.md @@ -1,16 +1,15 @@ --- title: Gatsby Ggt Material-ui Blog -github: 'https://github.com/greatgatsbyjsthemes/gatsby-starter-ggt-material-ui-blog' -demo: 'https://gatsby-theme-ggt-material-ui-blog.netlify.com/' +github: https://github.com/greatgatsbyjsthemes/gatsby-starter-ggt-material-ui-blog +demo: https://gatsby-theme-ggt-material-ui-blog.netlify.com/ author: greatgatsbyjsthemes ssg: - Gatsby cms: - No Cms date: 2019-04-26T11:47:18.000Z -github_branch: master description: >- Gatsby starter that uses a Material-ui blog theme - letting you set up an blog with minimal effort! -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-ghost.md b/content/theme/gatsby-starter-ghost.md index 4701206e2..7f333b72d 100644 --- a/content/theme/gatsby-starter-ghost.md +++ b/content/theme/gatsby-starter-ghost.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Ghost -github: 'https://github.com/TryGhost/gatsby-starter-ghost' -demo: 'https://gatsby.ghost.org/' +github: https://github.com/TryGhost/gatsby-starter-ghost +demo: https://gatsby.ghost.org/ author: Ghost ssg: - Gatsby cms: - Ghost date: 2018-11-13T05:04:05.000Z -github_branch: master description: A starter template to build lightning fast websites with Ghost & Gatsby stale: false --- diff --git a/content/theme/gatsby-starter-github-api.md b/content/theme/gatsby-starter-github-api.md index eeadf6ac4..a150a55bf 100644 --- a/content/theme/gatsby-starter-github-api.md +++ b/content/theme/gatsby-starter-github-api.md @@ -1,14 +1,13 @@ --- title: Gatsby Github API -github: 'https://github.com/lundgren2/gatsby-starter-github-api' -demo: 'https://gatsby-starter-github-api.netlify.com/' +github: https://github.com/lundgren2/gatsby-starter-github-api +demo: https://gatsby-starter-github-api.netlify.com/ author: Tobias Lundgren ssg: - Gatsby cms: - No Cms date: 2019-06-05T14:38:24.000Z -github_branch: master description: >- Kick off your next, great Gatsby project with this Github source starter based on gatsby-source-github-api diff --git a/content/theme/gatsby-starter-glass.md b/content/theme/gatsby-starter-glass.md new file mode 100644 index 000000000..ecd9c5ad1 --- /dev/null +++ b/content/theme/gatsby-starter-glass.md @@ -0,0 +1,30 @@ +--- +title: Gatsby Starter Glass +github: https://github.com/yinkakun/gatsby-starter-glass +demo: https://gatsbyglass.netlify.app +author: Yinka Adedire +date: 2021-04-03T00:00:00.000Z +ssg: + - Gatsby +cms: + - DecapCMS +archetype: + - Blog +description: >- + A Minimal & Beautiful GatsbyJS Personal Blog Starter With Nice Glassmorphism + UI +stale: false +--- + +# Personal Blog Starter For GatsbyJS + +A Minimal & Beautiful GatsbyJS Personal Blog Starter With Nice Glassmorphism UI + +## Features + +* Fully responsive SEO metadata and Open Graph tags +* Maximize lighthouse score +* Contact form with Netlify Form +* Edit Content with Netlify CMS +* Easy to deploy +* Syntax highlighting via PrismJS diff --git a/content/theme/gatsby-starter-googlesheets.md b/content/theme/gatsby-starter-googlesheets.md index 2f061998c..5ac5c0f9a 100644 --- a/content/theme/gatsby-starter-googlesheets.md +++ b/content/theme/gatsby-starter-googlesheets.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Googlesheets -github: 'https://github.com/harshil1712/gatsby-starter-googlesheets' -demo: 'https://harshil1712.github.io/gatsby-starter-googlesheets/' +github: https://github.com/harshil1712/gatsby-starter-googlesheets +demo: https://harshil1712.github.io/gatsby-starter-googlesheets/ author: Harshil Agrawal ssg: - Gatsby cms: - No Cms date: 2019-05-22T10:09:13.000Z -github_branch: master description: 'A gatsby starter using Google Sheets ' -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-grayscale.md b/content/theme/gatsby-starter-grayscale.md index 6464dda3e..089ac3b7d 100644 --- a/content/theme/gatsby-starter-grayscale.md +++ b/content/theme/gatsby-starter-grayscale.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Grayscale -github: 'https://github.com/anubhavsrivastava/gatsby-starter-grayscale' -demo: 'https://anubhavsrivastava.github.io/gatsby-starter-grayscale/' +github: https://github.com/anubhavsrivastava/gatsby-starter-grayscale +demo: https://anubhavsrivastava.github.io/gatsby-starter-grayscale/ author: Anubhav Srivastava ssg: - Gatsby cms: - No Cms date: 2019-06-24T05:52:10.000Z -github_branch: master description: Gatsby.js V2 starter template based on Grayscale by startbootstrap -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-haezl.md b/content/theme/gatsby-starter-haezl.md index 58eab3044..65b3ad8db 100644 --- a/content/theme/gatsby-starter-haezl.md +++ b/content/theme/gatsby-starter-haezl.md @@ -1,16 +1,17 @@ --- title: Gatsby Starter Haezl -github: 'https://github.com/haezl/gatsby-starter-haezl' -demo: 'https://gatsby-starter.haezl.at/' +github: https://github.com/haezl/gatsby-starter-haezl +demo: https://gatsby-starter.haezl.at/ author: Markus Hösel ssg: - Gatsby cms: - No Cms date: 2019-04-09T19:16:46.000Z -github_branch: master description: >- A lightweight, mobile first blog starter with infinite scroll and Material-UI design for Gatsby. stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/gatsby-starter-hero-blog.md b/content/theme/gatsby-starter-hero-blog.md index fe6c61a38..556fb5a7a 100644 --- a/content/theme/gatsby-starter-hero-blog.md +++ b/content/theme/gatsby-starter-hero-blog.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Hero Blog -github: 'https://github.com/greglobinski/gatsby-starter-hero-blog' -demo: 'https://gatsby-starter-hero-blog.greglobinski.com/' +github: https://github.com/greglobinski/gatsby-starter-hero-blog +demo: https://gatsby-starter-hero-blog.greglobinski.com/ author: Greg Lobinski ssg: - Gatsby cms: - No Cms date: 2018-05-10T07:46:20.000Z -github_branch: master description: >- A ready to use, easy to customize, fully equipped GatsbyJS starter with a 'Hero' section on the home page. diff --git a/content/theme/gatsby-starter-highlights.md b/content/theme/gatsby-starter-highlights.md index 59ca8c941..e59cdc87f 100644 --- a/content/theme/gatsby-starter-highlights.md +++ b/content/theme/gatsby-starter-highlights.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Highlights -github: 'https://github.com/anubhavsrivastava/gatsby-starter-highlights' -demo: 'https://anubhavsrivastava.github.io/gatsby-starter-highlights/' +github: https://github.com/anubhavsrivastava/gatsby-starter-highlights +demo: https://anubhavsrivastava.github.io/gatsby-starter-highlights/ author: Anubhav Srivastava ssg: - Gatsby cms: - No Cms date: 2019-05-25T11:08:00.000Z -github_branch: master description: Gatsby.js V2 starter template based on highlights by HTML5 UP -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-honey.md b/content/theme/gatsby-starter-honey.md index c5677c18a..7eb0624ee 100644 --- a/content/theme/gatsby-starter-honey.md +++ b/content/theme/gatsby-starter-honey.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Honey -github: 'https://github.com/davshoward/gatsby-starter-honey' -demo: 'https://gatsbyhoney.davshoward.com/' +github: https://github.com/davshoward/gatsby-starter-honey +demo: https://gatsbyhoney.davshoward.com/ author: Davs Howard ssg: - Gatsby cms: - No Cms date: 2019-05-28T14:44:20.000Z -github_branch: master description: A delicious baseline for Gatsby (v2). -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-hyperspace.md b/content/theme/gatsby-starter-hyperspace.md index 83da4e7b6..5c3d940f8 100644 --- a/content/theme/gatsby-starter-hyperspace.md +++ b/content/theme/gatsby-starter-hyperspace.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Hyperspace -github: 'https://github.com/anubhavsrivastava/gatsby-starter-hyperspace' -demo: 'https://anubhavsrivastava.github.io/gatsby-starter-hyperspace/' +github: https://github.com/anubhavsrivastava/gatsby-starter-hyperspace +demo: https://anubhavsrivastava.github.io/gatsby-starter-hyperspace/ author: Anubhav Srivastava ssg: - Gatsby cms: - No Cms date: 2019-05-11T10:32:19.000Z -github_branch: master description: Gatsby.js V2 starter template based on Hyperspace by HTML5 UP -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-i18n-blog.md b/content/theme/gatsby-starter-i18n-blog.md index b59163b7c..b307fea77 100644 --- a/content/theme/gatsby-starter-i18n-blog.md +++ b/content/theme/gatsby-starter-i18n-blog.md @@ -1,16 +1,15 @@ --- title: Gatsby Starter i18n Blog -github: 'https://github.com/jackbravo/gatsby-starter-i18n-blog' -demo: 'https://jackbravo.github.io/gatsby-starter-i18n-blog/' +github: https://github.com/jackbravo/gatsby-starter-i18n-blog +demo: https://jackbravo.github.io/gatsby-starter-i18n-blog/ author: Joaquin Bravo ssg: - Gatsby cms: - No Cms date: 2018-10-29T05:31:55.000Z -github_branch: master description: >- Gatsby starter for creating a i18n blog. https://jackbravo.github.io/gatsby-starter-i18n-blog/ -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-i18n.md b/content/theme/gatsby-starter-i18n.md index 6f2576892..022815965 100644 --- a/content/theme/gatsby-starter-i18n.md +++ b/content/theme/gatsby-starter-i18n.md @@ -1,16 +1,15 @@ --- title: Gatsby Starter i18n -github: 'https://github.com/smakosh/gatsby-starter-i18n' -demo: 'https://i18n.smakosh.com/' +github: https://github.com/smakosh/gatsby-starter-i18n +demo: https://i18n.smakosh.com/ author: Ismail Ghallou ssg: - Gatsby cms: - No Cms date: 2018-10-05T23:07:08.000Z -github_branch: master description: Gatsby starter with i18n and some cool features stale: false -disabled: true disabled_reason: demo url not found +disabled: true --- diff --git a/content/theme/gatsby-starter-icarus-blog.md b/content/theme/gatsby-starter-icarus-blog.md new file mode 100644 index 000000000..e015d462b --- /dev/null +++ b/content/theme/gatsby-starter-icarus-blog.md @@ -0,0 +1,15 @@ +--- +title: Gatsby Starter Icarus Blog +github: https://github.com/Kun8018/gatsby-starter-icarus-blog +demo: https://kunzhang.me/ +author: Kun8018 +ssg: + - Gatsby +cms: + - No Cms +date: 2022-08-21T13:40:48.000Z +description: >- + A Gatsby Blog theme like icarus theme in Hexo, Support typescript (GatsbyJS + Starter X Netlify ) +stale: false +--- diff --git a/content/theme/gatsby-starter-identity.md b/content/theme/gatsby-starter-identity.md index 088078ded..9616d4460 100644 --- a/content/theme/gatsby-starter-identity.md +++ b/content/theme/gatsby-starter-identity.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Identity -github: 'https://github.com/anubhavsrivastava/gatsby-starter-identity' -demo: 'https://anubhavsrivastava.github.io/gatsby-starter-identity/' +github: https://github.com/anubhavsrivastava/gatsby-starter-identity +demo: https://anubhavsrivastava.github.io/gatsby-starter-identity/ author: Anubhav Srivastava ssg: - Gatsby cms: - No Cms date: 2019-05-12T09:28:43.000Z -github_branch: master description: Gatsby.js V2 starter template based on Identity by HTML5 UP -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-infinite-scroll.md b/content/theme/gatsby-starter-infinite-scroll.md index cf6351c35..81a9aec67 100644 --- a/content/theme/gatsby-starter-infinite-scroll.md +++ b/content/theme/gatsby-starter-infinite-scroll.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Infinite Scroll -github: 'https://github.com/baobabKoodaa/gatsby-starter-infinite-scroll' -demo: 'https://gatsby-starter-infinite-scroll.baobab.fi/' +github: https://github.com/baobabKoodaa/gatsby-starter-infinite-scroll +demo: https://gatsby-starter-infinite-scroll.baobab.fi/ author: Atte Juvonen ssg: - Gatsby cms: - No Cms date: 2019-03-01T16:48:18.000Z -github_branch: master description: A Gatsby starter with infinite scroll and pagination. -stale: true +stale: false --- diff --git a/content/theme/gatsby-starter-interviews.md b/content/theme/gatsby-starter-interviews.md index 68a93a8a9..6924e72b5 100644 --- a/content/theme/gatsby-starter-interviews.md +++ b/content/theme/gatsby-starter-interviews.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Interviews -github: 'https://github.com/rmagon/gatsby-starter-interviews' -demo: 'https://gatsby-starter-interviews.netlify.com/' +github: https://github.com/rmagon/gatsby-starter-interviews +demo: https://gatsby-starter-interviews.netlify.com/ author: Rachit Magon ssg: - Gatsby cms: - No Cms date: 2019-08-13T14:09:51.000Z -github_branch: master description: A responsive Gatsby starter for structured Q&A Interviews stale: true --- diff --git a/content/theme/gatsby-starter-intl.md b/content/theme/gatsby-starter-intl.md index 4243502a0..fd0b14b29 100644 --- a/content/theme/gatsby-starter-intl.md +++ b/content/theme/gatsby-starter-intl.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Intl -github: 'https://github.com/tomekskuta/gatsby-starter-intl' -demo: 'https://gatsby-starter-intl.tomekskuta.pl/en/' +github: https://github.com/tomekskuta/gatsby-starter-intl +demo: https://gatsby-starter-intl.tomekskuta.pl/en/ author: tomekskuta ssg: - Gatsby cms: - No Cms date: 2019-02-09T20:41:57.000Z -github_branch: master description: >- Gatsby v2 i18n starter which makes static pages for every locale and detect your browsers lang. diff --git a/content/theme/gatsby-starter-julia.md b/content/theme/gatsby-starter-julia.md index 84e48f3bd..ee8896348 100644 --- a/content/theme/gatsby-starter-julia.md +++ b/content/theme/gatsby-starter-julia.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Julia -github: 'https://github.com/niklasmtj/gatsby-starter-julia' -demo: 'https://gatsby-starter-julia.netlify.com/' +github: https://github.com/niklasmtj/gatsby-starter-julia +demo: https://gatsby-starter-julia.netlify.com/ author: niklasmtj ssg: - Gatsby cms: - No Cms date: 2019-03-17T20:42:55.000Z -github_branch: master description: >- A minimal GatsbyJS blog starter with landingpage, estimated reading time, markdown sourcing and much more. diff --git a/content/theme/gatsby-starter-kontent.md b/content/theme/gatsby-starter-kontent.md index 8d2cfedca..00b7257a9 100644 --- a/content/theme/gatsby-starter-kontent.md +++ b/content/theme/gatsby-starter-kontent.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Kentico Kontent -github: 'https://github.com/Kentico/gatsby-starter-kontent' -demo: 'https://gatsby-starter-kontent.netlify.app' +github: https://github.com/Kentico/gatsby-starter-kontent +demo: https://gatsby-starter-kontent.netlify.app author: Kentico ssg: - Gatsby cms: - Kontent date: 2018-08-17T10:25:38.000Z -github_branch: master description: Gatsby starter site with Kentico Kontent. stale: false --- diff --git a/content/theme/gatsby-starter-krisp.md b/content/theme/gatsby-starter-krisp.md index e680c0eb6..9182e63b6 100644 --- a/content/theme/gatsby-starter-krisp.md +++ b/content/theme/gatsby-starter-krisp.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Krisp -github: 'https://github.com/mohanmonu777/gatsby-starter-krisp' -demo: 'https://gatsby-starter-krisp.netlify.com/' +github: https://github.com/mohanmonu777/gatsby-starter-krisp +demo: https://gatsby-starter-krisp.netlify.com/ author: MOhan ssg: - Gatsby cms: - No Cms date: 2019-07-18T17:06:13.000Z -github_branch: master -description: 'A minimal, clean and responsive starter built with gatsby' +description: A minimal, clean and responsive starter built with gatsby stale: true --- diff --git a/content/theme/gatsby-starter-landing-page.md b/content/theme/gatsby-starter-landing-page.md index 982c9102f..8552de66c 100644 --- a/content/theme/gatsby-starter-landing-page.md +++ b/content/theme/gatsby-starter-landing-page.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Landing Page -github: 'https://github.com/gillkyle/gatsby-starter-landing-page' -demo: 'https://gatsby-starter-landing-page.netlify.com/' +github: https://github.com/gillkyle/gatsby-starter-landing-page +demo: https://gatsby-starter-landing-page.netlify.com/ author: Kyle Gill ssg: - Gatsby cms: - No Cms date: 2019-03-19T18:05:37.000Z -github_branch: master -description: "\U0001F5B1 A simple, minimal Gatsby starter for quick and easy landing pages" -stale: false +description: 🖱 A simple, minimal Gatsby starter for quick and easy landing pages +stale: true --- diff --git a/content/theme/gatsby-starter-lightbox.md b/content/theme/gatsby-starter-lightbox.md index f4757efa7..6839f9e38 100644 --- a/content/theme/gatsby-starter-lightbox.md +++ b/content/theme/gatsby-starter-lightbox.md @@ -1,13 +1,14 @@ --- title: Gatsby Starter Lightbox -github: 'https://github.com/416serg/gatsby-starter-lightbox' -demo: 'https://gatsby-lightbox.416serg.me/' +github: https://github.com/416serg/gatsby-starter-lightbox +demo: https://gatsby-lightbox.416serg.me/ author: Sergiy Dybskiy ssg: - Gatsby cms: - No Cms date: 2018-08-05T22:04:23.000Z -github_branch: master stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/gatsby-starter-lumen.md b/content/theme/gatsby-starter-lumen.md index 195fe3ab4..918921d3a 100644 --- a/content/theme/gatsby-starter-lumen.md +++ b/content/theme/gatsby-starter-lumen.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Lumen -github: 'https://github.com/alxshelepenok/gatsby-starter-lumen' -demo: 'https://lumen.netlify.com/' +github: https://github.com/alxshelepenok/gatsby-starter-lumen +demo: https://lumen.netlify.com/ author: Alexander Shelepenok ssg: - Gatsby cms: - No Cms date: 2016-03-11T21:02:37.000Z -github_branch: master description: >- A minimal, lightweight and mobile-first starter for creating blogs uses Gatsby. diff --git a/content/theme/gatsby-starter-markdown.md b/content/theme/gatsby-starter-markdown.md index cf9f92d03..1e97f398f 100644 --- a/content/theme/gatsby-starter-markdown.md +++ b/content/theme/gatsby-starter-markdown.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Markdown -github: 'https://github.com/cvluca/gatsby-starter-markdown' -demo: 'https://cvluca.github.io/gatsby-starter-markdown/' +github: https://github.com/cvluca/gatsby-starter-markdown +demo: https://cvluca.github.io/gatsby-starter-markdown/ author: Luca(Wei) Chen ssg: - Gatsby cms: - No Cms date: 2018-11-08T02:07:22.000Z -github_branch: master description: boilerplate for markdown-based website -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-mate.md b/content/theme/gatsby-starter-mate.md index 6db95dd99..904baf3c1 100644 --- a/content/theme/gatsby-starter-mate.md +++ b/content/theme/gatsby-starter-mate.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Mate -github: 'https://github.com/EmaSuriano/gatsby-starter-mate' -demo: 'https://gatsby-starter-mate.netlify.com/' +github: https://github.com/EmaSuriano/gatsby-starter-mate +demo: https://gatsby-starter-mate.netlify.com/ author: Emanuel Suriano ssg: - Gatsby cms: - Contentful date: 2018-08-31T12:10:46.000Z -github_branch: master description: A portfolio starter for Gatsby integrated with Contentful CMS. stale: false --- diff --git a/content/theme/gatsby-starter-material-business-markdown.md b/content/theme/gatsby-starter-material-business-markdown.md index 0a839c2c6..d1ca49c09 100644 --- a/content/theme/gatsby-starter-material-business-markdown.md +++ b/content/theme/gatsby-starter-material-business-markdown.md @@ -1,14 +1,15 @@ --- title: Gatsby Material Business Markdown -github: 'https://github.com/ANOUN/gatsby-starter-material-business-markdown' -demo: 'https://gatsby-starter-material-business-markdown.netlify.com/' +github: https://github.com/ANOUN/gatsby-starter-material-business-markdown +demo: https://gatsby-starter-material-business-markdown.netlify.com/ author: ANOUN ssg: - Gatsby cms: - No Cms date: 2019-05-02T16:21:45.000Z -github_branch: master description: 'View Live Demo:' -stale: false +stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/gatsby-starter-material-ui.md b/content/theme/gatsby-starter-material-ui.md index a3fca6dec..d472b4f3b 100644 --- a/content/theme/gatsby-starter-material-ui.md +++ b/content/theme/gatsby-starter-material-ui.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Material-ui -github: 'https://github.com/dominicabela/gatsby-starter-material-ui' -demo: 'https://material-ui-starter.netlify.com/' +github: https://github.com/dominicabela/gatsby-starter-material-ui +demo: https://material-ui-starter.netlify.com/ author: Dominic Abela ssg: - Gatsby cms: - No Cms date: 2019-05-30T02:45:42.000Z -github_branch: master description: A gatsby starter with Material UI stale: true --- diff --git a/content/theme/gatsby-starter-minimal-blog.md b/content/theme/gatsby-starter-minimal-blog.md index 0cac8794e..560532ae6 100644 --- a/content/theme/gatsby-starter-minimal-blog.md +++ b/content/theme/gatsby-starter-minimal-blog.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Minimal Blog -github: 'https://github.com/LekoArts/gatsby-starter-minimal-blog' -demo: 'https://minimal-blog.lekoarts.de/' +github: https://github.com/LekoArts/gatsby-starter-minimal-blog +demo: https://minimal-blog.lekoarts.de/ author: LekoArts ssg: - Jekyll cms: - No Cms date: 2018-02-02T18:52:29.000Z -github_branch: master description: >- Typography driven, feature-rich blogging theme with minimal aesthetics. Includes tags/categories support and extensive features for code blocks such diff --git a/content/theme/gatsby-starter-mobx.md b/content/theme/gatsby-starter-mobx.md index 64ce2e92e..604e23059 100644 --- a/content/theme/gatsby-starter-mobx.md +++ b/content/theme/gatsby-starter-mobx.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Mobx -github: 'https://github.com/borekb/gatsby-starter-mobx' -demo: 'https://gatsby-starter-mobx.netlify.com/' +github: https://github.com/borekb/gatsby-starter-mobx +demo: https://gatsby-starter-mobx.netlify.com/ author: Borek Bernard ssg: - Gatsby cms: - No Cms date: 2018-11-25T19:08:28.000Z -github_branch: master description: Gatsby starter with MobX and TypeScript stale: true --- diff --git a/content/theme/gatsby-starter-morning-dew.md b/content/theme/gatsby-starter-morning-dew.md index e1aa999e3..ba0a76d72 100644 --- a/content/theme/gatsby-starter-morning-dew.md +++ b/content/theme/gatsby-starter-morning-dew.md @@ -1,14 +1,13 @@ --- title: Gatsby Morning Dew -github: 'https://github.com/maxpou/gatsby-starter-morning-dew' -demo: 'https://maxpou.github.io/gatsby-starter-morning-dew/' +github: https://github.com/maxpou/gatsby-starter-morning-dew +demo: https://maxpou.github.io/gatsby-starter-morning-dew/ author: Maxence Poutord ssg: - Gatsby cms: - No Cms date: 2018-09-16T20:53:24.000Z -github_branch: master description: ':rocket: A Gatsby theme/starter to build lightning-fast blog/websites' -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-multiverse.md b/content/theme/gatsby-starter-multiverse.md index 2eef93da2..45a9998f1 100644 --- a/content/theme/gatsby-starter-multiverse.md +++ b/content/theme/gatsby-starter-multiverse.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Multiverse -github: 'https://github.com/anubhavsrivastava/gatsby-starter-multiverse' -demo: 'https://anubhavsrivastava.github.io/gatsby-starter-multiverse/' +github: https://github.com/anubhavsrivastava/gatsby-starter-multiverse +demo: https://anubhavsrivastava.github.io/gatsby-starter-multiverse/ author: Anubhav Srivastava ssg: - Gatsby cms: - No Cms date: 2019-05-25T06:49:49.000Z -github_branch: master description: Gatsby.js V2 starter template based on multiverse by HTML5 UP -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-nagui.md b/content/theme/gatsby-starter-nagui.md index cae874647..da5243d80 100644 --- a/content/theme/gatsby-starter-nagui.md +++ b/content/theme/gatsby-starter-nagui.md @@ -1,14 +1,15 @@ --- title: Gatsby Nagui -github: 'https://github.com/kimnagui/gatsby-starter-nagui' -demo: 'https://demo.nagui.me/' +github: https://github.com/kimnagui/gatsby-starter-nagui +demo: https://demo.nagui.me/ author: Kim Gwang Hyeon ssg: - Gatsby cms: - No Cms date: 2019-07-15T06:31:10.000Z -github_branch: master description: Gatsbyjs Starter stale: true +disabled: true +disabled_reason: error checking demo url --- diff --git a/content/theme/gatsby-starter-nehalem.md b/content/theme/gatsby-starter-nehalem.md index 57a6f9166..76b4b7f9c 100644 --- a/content/theme/gatsby-starter-nehalem.md +++ b/content/theme/gatsby-starter-nehalem.md @@ -1,13 +1,12 @@ --- title: Gatsby Starter Nehalem -github: 'https://github.com/nehalist/gatsby-starter-nehalem' -demo: 'https://nehalem.netlify.com/' +github: https://github.com/nehalist/gatsby-starter-nehalem +demo: https://nehalem.netlify.com/ author: Kevin ssg: - Gatsby cms: - No Cms date: 2019-09-07T15:57:10.000Z -github_branch: master -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-netlify-cms.md b/content/theme/gatsby-starter-netlify-cms.md index deafd415a..48969e15e 100644 --- a/content/theme/gatsby-starter-netlify-cms.md +++ b/content/theme/gatsby-starter-netlify-cms.md @@ -1,17 +1,15 @@ --- title: Gatsby Starter Netlify CMS -github: 'https://github.com/netlify-templates/gatsby-starter-netlify-cms' -demo: 'https://gatsby-netlify-cms.netlify.com/' +github: https://github.com/netlify-templates/gatsby-starter-netlify-cms +demo: https://gatsby-netlify-cms.netlify.com/ author: Netlify Templates ssg: - Gatsby cms: - - NetlifyCMS + - DecapCMS css: - Bulma date: 2017-08-15T23:15:14.000Z -github_branch: master -featured: true description: Example gatsby + netlify cms project stale: false --- @@ -20,7 +18,7 @@ stale: false **Note:** This starter uses [Gatsby v2](https://www.gatsbyjs.org/blog/2018-09-17-gatsby-v2/). -This repo contains an example business website that is built with [Gatsby](https://www.gatsbyjs.org/), and [Netlify CMS](https://www.netlifycms.org): **[Demo Link](https://gatsby-netlify-cms.netlify.com/)**. +This repo contains an example business website that is built with [Gatsby](https://www.gatsbyjs.org/), and [Netlify CMS](https://www.DecapCMS.org): **[Demo Link](https://gatsby-netlify-cms.netlify.com/)**. It follows the [JAMstack architecture](https://jamstack.org) by using Git as a single source of truth, and [Netlify](https://www.netlify.com) for continuous deployment, and CDN distribution. @@ -64,7 +62,7 @@ $ yarn $ netlify dev # or ntl dev ``` -This uses the new [Netlify Dev](https://www.netlify.com/products/dev/?utm_source=blog&utm_medium=netlifycms&utm_campaign=devex) CLI feature to serve any functions you have in the `lambda` folder. +This uses the new [Netlify Dev](https://www.netlify.com/products/dev/?utm_source=blog&utm_medium=DecapCMS&utm_campaign=devex) CLI feature to serve any functions you have in the `lambda` folder. To test the CMS locally, you'll need run a production build of the site: @@ -116,7 +114,7 @@ $ npm run serve ### Setting up the CMS -Follow the [Netlify CMS Quick Start Guide](https://www.netlifycms.org/docs/quick-start/#authentication) to set up authentication, and hosting. +Follow the [Netlify CMS Quick Start Guide](https://www.DecapCMS.org/docs/quick-start/#authentication) to set up authentication, and hosting. ## Debugging diff --git a/content/theme/gatsby-starter-newage.md b/content/theme/gatsby-starter-newage.md index 6bd2b11bf..72a96e806 100644 --- a/content/theme/gatsby-starter-newage.md +++ b/content/theme/gatsby-starter-newage.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Newage -github: 'https://github.com/anubhavsrivastava/gatsby-starter-newage' -demo: 'https://anubhavsrivastava.github.io/gatsby-starter-newage/' +github: https://github.com/anubhavsrivastava/gatsby-starter-newage +demo: https://anubhavsrivastava.github.io/gatsby-starter-newage/ author: Anubhav Srivastava ssg: - Gatsby cms: - No Cms date: 2019-07-12T17:18:52.000Z -github_branch: master description: ' Gatsby.js V2 starter template based on New Age by startbootstrap' -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-notes.md b/content/theme/gatsby-starter-notes.md index 41101bb48..96f1c76c3 100644 --- a/content/theme/gatsby-starter-notes.md +++ b/content/theme/gatsby-starter-notes.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Notes -github: 'https://github.com/patricoferris/gatsby-starter-notes' -demo: 'https://gatsby-starter-notes.netlify.com/' +github: https://github.com/patricoferris/gatsby-starter-notes +demo: https://gatsby-starter-notes.netlify.com/ author: Patrick Ferris ssg: - Gatsby cms: - No Cms date: 2018-12-02T23:27:51.000Z -github_branch: master description: Gatsby starter for creating notes organised by subject and topic stale: true --- diff --git a/content/theme/gatsby-starter-organization.md b/content/theme/gatsby-starter-organization.md index 4dbe05239..ac1a48c07 100644 --- a/content/theme/gatsby-starter-organization.md +++ b/content/theme/gatsby-starter-organization.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Organization -github: 'https://github.com/geocine/gatsby-starter-organization' -demo: 'https://gatsby-starter-organization.netlify.com/' +github: https://github.com/geocine/gatsby-starter-organization +demo: https://gatsby-starter-organization.netlify.com/ author: Aivan Monceller ssg: - Gatsby cms: - No Cms date: 2019-08-12T10:41:34.000Z -github_branch: master description: A Gatsby starter template that uses @geocine/gatsby-theme-organization stale: true --- diff --git a/content/theme/gatsby-starter-overflow.md b/content/theme/gatsby-starter-overflow.md index 71a673fd5..426228b4f 100644 --- a/content/theme/gatsby-starter-overflow.md +++ b/content/theme/gatsby-starter-overflow.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Overflow -github: 'https://github.com/anubhavsrivastava/gatsby-starter-overflow' -demo: 'https://anubhavsrivastava.github.io/gatsby-starter-overflow/' +github: https://github.com/anubhavsrivastava/gatsby-starter-overflow +demo: https://anubhavsrivastava.github.io/gatsby-starter-overflow/ author: Anubhav Srivastava ssg: - Gatsby cms: - No Cms date: 2019-05-19T10:28:43.000Z -github_branch: master description: Gatsby.js V2 starter template based on overflow by HTML5 UP -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-paperbase.md b/content/theme/gatsby-starter-paperbase.md index 04e5e9f8c..1b3d55088 100644 --- a/content/theme/gatsby-starter-paperbase.md +++ b/content/theme/gatsby-starter-paperbase.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Paperbase -github: 'https://github.com/willcode4food/gatsby-starter-paperbase' -demo: 'https://gatsby-starter-paperbase.netlify.com/' +github: https://github.com/willcode4food/gatsby-starter-paperbase +demo: https://gatsby-starter-paperbase.netlify.com/ author: Marc Arbesman ssg: - Gatsby cms: - No Cms date: 2019-03-26T17:33:45.000Z -github_branch: master description: A Gatsby starter that implements the Paperbase Premium Theme from Material UI -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-paradigmshift.md b/content/theme/gatsby-starter-paradigmshift.md index 1630dc384..935dff845 100644 --- a/content/theme/gatsby-starter-paradigmshift.md +++ b/content/theme/gatsby-starter-paradigmshift.md @@ -1,14 +1,13 @@ --- title: Gatsby Paradigmshift -github: 'https://github.com/anubhavsrivastava/gatsby-starter-paradigmshift' -demo: 'https://anubhavsrivastava.github.io/gatsby-starter-paradigmshift/' +github: https://github.com/anubhavsrivastava/gatsby-starter-paradigmshift +demo: https://anubhavsrivastava.github.io/gatsby-starter-paradigmshift/ author: Anubhav Srivastava ssg: - Gatsby cms: - No Cms date: 2019-05-31T06:48:11.000Z -github_branch: master description: Gatsby.js V2 starter template based on Paradigm Shift by HTML5 UP -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-personal-portfolio b/content/theme/gatsby-starter-personal-portfolio deleted file mode 100644 index 5d4a8f839..000000000 --- a/content/theme/gatsby-starter-personal-portfolio +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Gatsby Personal Portfolio -github: 'https://github.com/gmlunesa/gatsby-starter-personal-portfolio' -demo: 'https://gatsby-starter-personal-portfolio.vercel.app/' -author: gmlunesa -date: 2020-10-28T00:00:00.000Z -github_branch: main -ssg: - - Gatsby -cms: - - No CMS -css: - - Bootstrap -archetype: - - Blog - - Portfolio - - Personal -description: This theme is a minimalistic resume style Gatsby portfolio -stale: false ---- - -# A minimalistic resume style Gatsby portfolio - -Kick off your personal site with this minimalist resume style broilerplate. This starter features user-friendly components and mobile responsive design. - -## Blazing fast -You might have heard this term about GatsbyJS projects before. However, I am not exagerrating. Check out our Lighthouse scores and see it for yourself! - -## Device independent -Access the website through a laptop, tablet or phone with no problem. This site has been thoroughly tested to make sure that it can be viewed no matter the screen size. - -## Engaging layout -This starter template offers a change in format in how you relay information _about you_ to the readers. You can say goodbye to boring blocks of endless text, while still getting the benefits of organized content. - -## Show off your skills and projects -Separate sections are dedicated to your skills and projects, giving the spotlight to each and every one of them. No, you don't need to copy and paste blocks of HTML code for each additional skill you have. You can enumerate them in JSON files, and the rest gets taken care of. - -## Colors and dark mode -A dark mode toggle is available no matter where your user is on the site. Not quite satisfied with the color palette? Color schemes for both light and dark modes are customizable according to your preference. diff --git a/content/theme/gatsby-starter-personal-portfolio.md b/content/theme/gatsby-starter-personal-portfolio.md new file mode 100644 index 000000000..8399acdd5 --- /dev/null +++ b/content/theme/gatsby-starter-personal-portfolio.md @@ -0,0 +1,38 @@ +--- +title: Gatsby Personal Portfolio +github: https://github.com/gmlunesa/gatsby-starter-personal-portfolio +demo: https://gatsby-starter-personal-portfolio.vercel.app/ +author: gmlunesa +date: 2020-10-28T00:00:00.000Z +ssg: + - Gatsby +cms: + - No CMS +css: + - Bootstrap +archetype: + - Blog + - Portfolio + - Personal +description: This theme is a minimalistic resume style Gatsby portfolio +stale: true +--- + +# A minimalistic resume style Gatsby portfolio + +Kick off your personal site with this minimalist resume style broilerplate. This starter features user-friendly components and mobile responsive design. + +## Blazing fast +You might have heard this term about GatsbyJS projects before. However, I am not exagerrating. Check out our Lighthouse scores and see it for yourself! + +## Device independent +Access the website through a laptop, tablet or phone with no problem. This site has been thoroughly tested to make sure that it can be viewed no matter the screen size. + +## Engaging layout +This starter template offers a change in format in how you relay information _about you_ to the readers. You can say goodbye to boring blocks of endless text, while still getting the benefits of organized content. + +## Show off your skills and projects +Separate sections are dedicated to your skills and projects, giving the spotlight to each and every one of them. No, you don't need to copy and paste blocks of HTML code for each additional skill you have. You can enumerate them in JSON files, and the rest gets taken care of. + +## Colors and dark mode +A dark mode toggle is available no matter where your user is on the site. Not quite satisfied with the color palette? Color schemes for both light and dark modes are customizable according to your preference. diff --git a/content/theme/gatsby-starter-photo-book.md b/content/theme/gatsby-starter-photo-book.md index 06a65af92..ece8e86b9 100644 --- a/content/theme/gatsby-starter-photo-book.md +++ b/content/theme/gatsby-starter-photo-book.md @@ -1,14 +1,13 @@ --- title: Gatsby Photo Book -github: 'https://github.com/baobabKoodaa/gatsby-starter-photo-book' -demo: 'https://gatsby-starter-photo-book.netlify.com/' +github: https://github.com/baobabKoodaa/gatsby-starter-photo-book +demo: https://gatsby-starter-photo-book.netlify.com/ author: Atte Juvonen ssg: - Gatsby cms: - No Cms date: 2019-07-05T01:16:03.000Z -github_branch: master description: A Gatsby starter for sharing photosets. stale: false --- diff --git a/content/theme/gatsby-starter-photon.md b/content/theme/gatsby-starter-photon.md index 140b79d5d..4af0d9286 100644 --- a/content/theme/gatsby-starter-photon.md +++ b/content/theme/gatsby-starter-photon.md @@ -1,16 +1,17 @@ --- title: Gatsby Starter Photon -github: 'https://github.com/codebushi/gatsby-starter-photon' -demo: 'https://gatsby-photon.surge.sh/' +github: https://github.com/codebushi/gatsby-starter-photon +demo: https://gatsby-photon.surge.sh/ author: Code Bushi ssg: - Gatsby cms: - No Cms date: 2018-03-30T20:57:46.000Z -github_branch: master description: >- Gatsby.js V2 starter template based on Photon. Check out https://codebushi.com/gatsby-starters-and-themes/ for more Gatsby starters. stale: true +disabled: true +disabled_reason: error checking demo url --- diff --git a/content/theme/gatsby-starter-plone.md b/content/theme/gatsby-starter-plone.md index ec85ed18b..0996d1a44 100644 --- a/content/theme/gatsby-starter-plone.md +++ b/content/theme/gatsby-starter-plone.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Plone -github: 'https://github.com/collective/gatsby-starter-plone' -demo: 'https://collective.github.io/gatsby-starter-plone/' +github: https://github.com/collective/gatsby-starter-plone +demo: https://collective.github.io/gatsby-starter-plone/ author: Collective ssg: - Gatsby cms: - No Cms date: 2018-07-19T13:08:38.000Z -github_branch: master description: Gatsby starter for Plone -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-point.md b/content/theme/gatsby-starter-point.md index 1f85d372e..37baa37b8 100644 --- a/content/theme/gatsby-starter-point.md +++ b/content/theme/gatsby-starter-point.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Point -github: 'https://github.com/teaware/gatsby-starter-point' -demo: 'https://gatsby-starter-point.netlify.com/' +github: https://github.com/teaware/gatsby-starter-point +demo: https://gatsby-starter-point.netlify.com/ author: George Brown ssg: - Gatsby cms: - No Cms date: 2019-10-24T02:47:15.000Z -github_branch: master description: A humble Gatsby starter for blog -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-portfolio-bella.md b/content/theme/gatsby-starter-portfolio-bella.md index 734f5e682..2d450257c 100644 --- a/content/theme/gatsby-starter-portfolio-bella.md +++ b/content/theme/gatsby-starter-portfolio-bella.md @@ -1,16 +1,17 @@ --- title: Gatsby Starter Portfolio Bella -github: 'https://github.com/LekoArts/gatsby-starter-portfolio-bella' -demo: 'https://portfolio-bella.netlify.com/' +github: https://github.com/LekoArts/gatsby-starter-portfolio-bella +demo: https://portfolio-bella.netlify.com/ author: Lennart ssg: - Gatsby cms: - Prismic date: 2020-03-18T00:00:00.000Z -github_branch: master description: >- A bright single-page portfolio starter for Gatsby powered by Prismic.io. The target audience are designers and photographers. stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/gatsby-starter-portfolio-emma.md b/content/theme/gatsby-starter-portfolio-emma.md index b5a95de17..47cf05020 100644 --- a/content/theme/gatsby-starter-portfolio-emma.md +++ b/content/theme/gatsby-starter-portfolio-emma.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Portfolio Emma -github: 'https://github.com/LekoArts/gatsby-starter-portfolio-emma' -demo: 'https://emma.lekoarts.de/' +github: https://github.com/LekoArts/gatsby-starter-portfolio-emma +demo: https://emma.lekoarts.de/ author: Lennart ssg: - Gatsby cms: - No Cms date: 2017-10-18T19:20:05.000Z -github_branch: master description: >- Minimalistic portfolio with full-width grid, page transitions, support for additional MDX pages, and a focus on large images. Especially designers and/or diff --git a/content/theme/gatsby-starter-portfolio-jodie.md b/content/theme/gatsby-starter-portfolio-jodie.md index 9bdb329a2..743600614 100644 --- a/content/theme/gatsby-starter-portfolio-jodie.md +++ b/content/theme/gatsby-starter-portfolio-jodie.md @@ -1,14 +1,13 @@ --- title: Gatsby Jodie -github: 'https://github.com/LekoArts/gatsby-starter-portfolio-jodie' -demo: 'https://jodie.lekoarts.de/' +github: https://github.com/LekoArts/gatsby-starter-portfolio-jodie +demo: https://jodie.lekoarts.de/ author: Lennart ssg: - Gatsby cms: - No Cms date: 2019-02-19T15:17:30.000Z -github_branch: master description: Image-heavy photography portfolio with colorful accents & great typography stale: false --- diff --git a/content/theme/gatsby-starter-portfolio.md b/content/theme/gatsby-starter-portfolio.md index 3adf2e992..0462c2128 100644 --- a/content/theme/gatsby-starter-portfolio.md +++ b/content/theme/gatsby-starter-portfolio.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Portfolio -github: 'https://github.com/LekovicMilos/gatsby-starter-portfolio' -demo: 'https://relaxed-bhaskara-5abd0a.netlify.com/' +github: https://github.com/LekovicMilos/gatsby-starter-portfolio +demo: https://relaxed-bhaskara-5abd0a.netlify.com/ author: Milos Lekovic ssg: - Gatsby cms: - No Cms date: 2019-02-27T20:42:33.000Z -github_branch: master description: Gatsby starter for creating a portfolio website stale: true --- diff --git a/content/theme/gatsby-starter-primer.md b/content/theme/gatsby-starter-primer.md index 4f1df9f4f..9ef5b27ed 100644 --- a/content/theme/gatsby-starter-primer.md +++ b/content/theme/gatsby-starter-primer.md @@ -1,14 +1,17 @@ --- title: Gatsby Starter Primer -github: 'https://github.com/thomaswangio/gatsby-starter-primer' -demo: 'https://gatsby-starter-primer.netlify.com/' +github: https://github.com/thomaswangio/gatsby-starter-primer +demo: https://gatsby-starter-primer.netlify.com/ author: Thomas Wang ssg: - Gatsby cms: - No Cms date: 2019-05-06T15:26:58.000Z -github_branch: master -description: "A Gatsby starter featuring GitHub Primer Design System and React components \U0001F419⚪️" -stale: false +description: >- + A Gatsby starter featuring GitHub Primer Design System and React components + 🐙⚪️ +stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/gatsby-starter-prismic-i18n.md b/content/theme/gatsby-starter-prismic-i18n.md index d2abf6881..d456d5075 100644 --- a/content/theme/gatsby-starter-prismic-i18n.md +++ b/content/theme/gatsby-starter-prismic-i18n.md @@ -1,14 +1,13 @@ --- title: Gatsby Prismic i18n -github: 'https://github.com/LekoArts/gatsby-starter-prismic-i18n' -demo: 'https://prismic-i18n.lekoarts.de/' +github: https://github.com/LekoArts/gatsby-starter-prismic-i18n +demo: https://prismic-i18n.lekoarts.de/ author: Lennart ssg: - Gatsby cms: - Prismic date: 2020-03-18T00:00:00.000Z -github_branch: master description: Based on gatsby-starter-prismic with Internationalization (i18n) support stale: true --- diff --git a/content/theme/gatsby-starter-prismic-resume.md b/content/theme/gatsby-starter-prismic-resume.md index 67f8d361c..e6db00140 100644 --- a/content/theme/gatsby-starter-prismic-resume.md +++ b/content/theme/gatsby-starter-prismic-resume.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Prismic Resume -github: 'https://github.com/deamme/gatsby-starter-prismic-resume' -demo: 'https://compassionate-morse-5204bf.netlify.com/' +github: https://github.com/deamme/gatsby-starter-prismic-resume +demo: https://compassionate-morse-5204bf.netlify.com/ author: Deam ssg: - Gatsby cms: - Prismic date: 2020-03-18T00:00:00.000Z -github_branch: master description: Resume/CV page - Gatsby starter which uses Prismic as a headless CMS. stale: true --- diff --git a/content/theme/gatsby-starter-prologue.md b/content/theme/gatsby-starter-prologue.md index 3c4cad37f..bf96667e8 100644 --- a/content/theme/gatsby-starter-prologue.md +++ b/content/theme/gatsby-starter-prologue.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Prologue -github: 'https://github.com/anubhavsrivastava/gatsby-starter-prologue' -demo: 'https://anubhavsrivastava.github.io/gatsby-starter-prologue/' +github: https://github.com/anubhavsrivastava/gatsby-starter-prologue +demo: https://anubhavsrivastava.github.io/gatsby-starter-prologue/ author: Anubhav Srivastava ssg: - Gatsby cms: - No Cms date: 2019-05-18T11:51:19.000Z -github_branch: master description: Gatsby.js V2 starter template based on readonly by HTML5 UP -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-quiet.md b/content/theme/gatsby-starter-quiet.md index ac2d5cc9d..12d69cc12 100644 --- a/content/theme/gatsby-starter-quiet.md +++ b/content/theme/gatsby-starter-quiet.md @@ -1,16 +1,15 @@ --- title: Gatsby Starter Quiet -github: 'https://github.com/zhouyuexie/gatsby-starter-quiet' -demo: 'https://www.quietboy.net/' +github: https://github.com/zhouyuexie/gatsby-starter-quiet +demo: https://www.quietboy.net/ author: zhouyuexie ssg: - Gatsby cms: - No Cms date: 2019-06-17T09:17:32.000Z -github_branch: master -description: '开箱即用的Gastby脚手架,支持系统级主题切换、MarkDown草稿、TypeScript、自定义主题...' -stale: false +description: 开箱即用的Gastby脚手架,支持系统级主题切换、MarkDown草稿、TypeScript、自定义主题... +stale: true +disabled_reason: demo url not found disabled: true -disabled_reason: "demo url not working" --- diff --git a/content/theme/gatsby-starter-quiz.md b/content/theme/gatsby-starter-quiz.md deleted file mode 100644 index bff44d495..000000000 --- a/content/theme/gatsby-starter-quiz.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: Gatsby Starter Quiz -github: 'https://github.com/raphadeluca/gatsby-starter-quiz' -demo: 'https://gatsby-starter-quiz.netlify.com/' -author: raphadeluca -ssg: - - Gatsby -cms: - - No Cms -date: 2019-04-13T20:22:30.000Z -github_branch: master -description: ':grapes: Create rich quizzes with Gatsby and MDX' -stale: true ---- diff --git a/content/theme/gatsby-starter-readonly.md b/content/theme/gatsby-starter-readonly.md index 5e19d12c0..aa32dcd6e 100644 --- a/content/theme/gatsby-starter-readonly.md +++ b/content/theme/gatsby-starter-readonly.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Readonly -github: 'https://github.com/anubhavsrivastava/gatsby-starter-readonly' -demo: 'https://anubhavsrivastava.github.io/gatsby-starter-readonly/' +github: https://github.com/anubhavsrivastava/gatsby-starter-readonly +demo: https://anubhavsrivastava.github.io/gatsby-starter-readonly/ author: Anubhav Srivastava ssg: - Gatsby cms: - No Cms date: 2019-05-17T10:45:41.000Z -github_branch: master description: Gatsby.js V2 starter template based on readonly by HTML5 UP -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-reasonml.md b/content/theme/gatsby-starter-reasonml.md index e412bfe91..0d77235dc 100644 --- a/content/theme/gatsby-starter-reasonml.md +++ b/content/theme/gatsby-starter-reasonml.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Reasonml -github: 'https://github.com/iwilsonq/gatsby-starter-reasonml' -demo: 'https://hopeful-keller-943d65.netlify.com/' +github: https://github.com/iwilsonq/gatsby-starter-reasonml +demo: https://hopeful-keller-943d65.netlify.com/ author: Ian Wilson ssg: - Gatsby cms: - No Cms date: 2018-10-22T08:55:17.000Z -github_branch: master description: Gatsby starter to create static sites using type-safe ReasonML stale: true --- diff --git a/content/theme/gatsby-starter-redux-firebase.md b/content/theme/gatsby-starter-redux-firebase.md index 849804e3f..43459cdf2 100644 --- a/content/theme/gatsby-starter-redux-firebase.md +++ b/content/theme/gatsby-starter-redux-firebase.md @@ -1,13 +1,12 @@ --- title: Gatsby Redux Firebase -github: 'https://github.com/muhajirdev/gatsby-starter-redux-firebase' -demo: 'https://gatsby-starter-redux-firebase.netlify.com/' +github: https://github.com/muhajirdev/gatsby-starter-redux-firebase +demo: https://gatsby-starter-redux-firebase.netlify.com/ author: Muhammad Muhajir ssg: - Gatsby cms: - Firebase date: 2018-11-15T23:30:09.000Z -github_branch: master stale: true --- diff --git a/content/theme/gatsby-starter-redux.md b/content/theme/gatsby-starter-redux.md index fc3a7973f..26804c65e 100644 --- a/content/theme/gatsby-starter-redux.md +++ b/content/theme/gatsby-starter-redux.md @@ -1,14 +1,15 @@ --- title: Gatsby Starter Redux -github: 'https://github.com/caki0915/gatsby-starter-redux' -demo: 'https://caki0915.github.io/gatsby-starter-redux/' +github: https://github.com/caki0915/gatsby-starter-redux +demo: https://caki0915.github.io/gatsby-starter-redux/ author: Carl-Johan Kihl ssg: - Gatsby cms: - No Cms date: 2018-02-11T03:38:08.000Z -github_branch: master description: 'Simple and clean Startersite for Gatsby with Redux and Emotion ' stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/gatsby-starter-resume.md b/content/theme/gatsby-starter-resume.md index f371323ba..e413c093d 100644 --- a/content/theme/gatsby-starter-resume.md +++ b/content/theme/gatsby-starter-resume.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Resume -github: 'https://github.com/anubhavsrivastava/gatsby-starter-resume' -demo: 'https://anubhavsrivastava.github.io/gatsby-starter-resume/' +github: https://github.com/anubhavsrivastava/gatsby-starter-resume +demo: https://anubhavsrivastava.github.io/gatsby-starter-resume/ author: Anubhav Srivastava ssg: - Gatsby cms: - No Cms date: 2019-06-22T16:31:13.000Z -github_branch: master description: Gatsby.js V2 starter template based on Resume by startbootstrap -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-santa-fe.md b/content/theme/gatsby-starter-santa-fe.md index 039d60d3b..b0bd7fba3 100644 --- a/content/theme/gatsby-starter-santa-fe.md +++ b/content/theme/gatsby-starter-santa-fe.md @@ -1,13 +1,12 @@ --- title: Gatsby Starter Santa Fe -github: 'https://github.com/osogrizz/gatsby-starter-santa-fe' -demo: 'https://gatsby-starter-santa-fe.netlify.com/' +github: https://github.com/osogrizz/gatsby-starter-santa-fe +demo: https://gatsby-starter-santa-fe.netlify.com/ author: Leo Torres ssg: - Gatsby cms: - No Cms date: 2019-01-25T22:42:31.000Z -github_branch: master stale: true --- diff --git a/content/theme/gatsby-starter-sass.md b/content/theme/gatsby-starter-sass.md index 4471f1b75..30e9e0264 100644 --- a/content/theme/gatsby-starter-sass.md +++ b/content/theme/gatsby-starter-sass.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Sass -github: 'https://github.com/colbyfayock/gatsby-starter-sass' -demo: 'https://gatsby-starter-sass.netlify.com/' +github: https://github.com/colbyfayock/gatsby-starter-sass +demo: https://gatsby-starter-sass.netlify.com/ author: Colby Fayock ssg: - Gatsby cms: - No Cms date: 2019-04-27T20:01:35.000Z -github_branch: master description: A Gatsby starter with Sass and no assumptions! stale: false --- diff --git a/content/theme/gatsby-starter-scientist.md b/content/theme/gatsby-starter-scientist.md index 5808b846f..d514894bd 100644 --- a/content/theme/gatsby-starter-scientist.md +++ b/content/theme/gatsby-starter-scientist.md @@ -1,10 +1,9 @@ --- title: Gatsby Starter for Scientists -github: 'https://github.com/knightjdr/gatsby-starter-scientist' -demo: 'https://knightjdr.github.io/gatsby-starter-scientist' +github: https://github.com/knightjdr/gatsby-starter-scientist +demo: https://knightjdr.github.io/gatsby-starter-scientist author: knightjdr date: 2019-12-10T00:00:00.000Z -github_branch: master ssg: - Gatsby cms: diff --git a/content/theme/gatsby-starter-simple.md b/content/theme/gatsby-starter-simple.md index fd670bcd4..525fc118f 100644 --- a/content/theme/gatsby-starter-simple.md +++ b/content/theme/gatsby-starter-simple.md @@ -1,10 +1,9 @@ --- title: Gastsby Simple Blog -github: 'https://github.com/thecodemint/gatsby-starter-simple' -demo: 'https://thecodemint.github.io/gatsby-starter-simple/' +github: https://github.com/thecodemint/gatsby-starter-simple +demo: https://thecodemint.github.io/gatsby-starter-simple/ author: collinsmuriuki date: 2020-04-14T00:00:00.000Z -github_branch: master ssg: - Gatsby archetype: @@ -12,7 +11,9 @@ archetype: cms: - No Cms description: This is a minimal and lightweight blogging Gatsby template -stale: false +stale: true +disabled: true +disabled_reason: demo url not found --- # A Simple Blogging Gatsby Starter diff --git a/content/theme/gatsby-starter-solidstate.md b/content/theme/gatsby-starter-solidstate.md index d694dfc05..e4678121e 100644 --- a/content/theme/gatsby-starter-solidstate.md +++ b/content/theme/gatsby-starter-solidstate.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Solidstate -github: 'https://github.com/anubhavsrivastava/gatsby-starter-solidstate' -demo: 'https://anubhavsrivastava.github.io/gatsby-starter-solidstate/' +github: https://github.com/anubhavsrivastava/gatsby-starter-solidstate +demo: https://anubhavsrivastava.github.io/gatsby-starter-solidstate/ author: Anubhav Srivastava ssg: - Gatsby cms: - No Cms date: 2019-06-08T18:34:29.000Z -github_branch: master description: Gatsby.js V2 starter template based on Solid State by HTML5 UP -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-spectral.md b/content/theme/gatsby-starter-spectral.md index 79df9ec06..ca207adab 100644 --- a/content/theme/gatsby-starter-spectral.md +++ b/content/theme/gatsby-starter-spectral.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Spectral -github: 'https://github.com/anubhavsrivastava/gatsby-starter-spectral' -demo: 'https://anubhavsrivastava.github.io/gatsby-starter-spectral/' +github: https://github.com/anubhavsrivastava/gatsby-starter-spectral +demo: https://anubhavsrivastava.github.io/gatsby-starter-spectral/ author: Anubhav Srivastava ssg: - Gatsby cms: - No Cms date: 2019-06-08T08:30:22.000Z -github_branch: master description: Gatsby.js V2 starter template based on Spectral by HTML5 UP -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-stellar.md b/content/theme/gatsby-starter-stellar.md index fb2520d07..887896308 100644 --- a/content/theme/gatsby-starter-stellar.md +++ b/content/theme/gatsby-starter-stellar.md @@ -1,16 +1,17 @@ --- title: Gatsby Starter Stellar -github: 'https://github.com/codebushi/gatsby-starter-stellar' -demo: 'https://gatsby-stellar.surge.sh/' +github: https://github.com/codebushi/gatsby-starter-stellar +demo: https://gatsby-stellar.surge.sh/ author: Code Bushi ssg: - Gatsby cms: - No Cms date: 2018-03-18T22:04:12.000Z -github_branch: master description: >- Gatsby.js V2 starter template based on Stellar. Check out https://codebushi.com/gatsby-starters-and-themes/ for more Gatsby starters. -stale: false +stale: true +disabled: true +disabled_reason: error checking demo url --- diff --git a/content/theme/gatsby-starter-storybook.md b/content/theme/gatsby-starter-storybook.md index c0a17e51c..ad4736dc3 100644 --- a/content/theme/gatsby-starter-storybook.md +++ b/content/theme/gatsby-starter-storybook.md @@ -1,14 +1,15 @@ --- title: Gatsby Starter Storybook -github: 'https://github.com/markoradak/gatsby-starter-storybook' -demo: 'https://gatsby-starter-storybook.netlify.com/' +github: https://github.com/markoradak/gatsby-starter-storybook +demo: https://gatsby-starter-storybook.netlify.com/ author: Marko Radak ssg: - Gatsby cms: - No Cms date: 2018-11-01T10:06:05.000Z -github_branch: master -description: "\U0001F47E Gatsby Storybook Starter" +description: 👾 Gatsby Storybook Starter stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/gatsby-starter-strata.md b/content/theme/gatsby-starter-strata.md index 8b340ee9c..ca2141b0d 100644 --- a/content/theme/gatsby-starter-strata.md +++ b/content/theme/gatsby-starter-strata.md @@ -1,16 +1,17 @@ --- title: Gatsby Strata -github: 'https://github.com/codebushi/gatsby-starter-strata' -demo: 'https://gatsby-strata.surge.sh/' +github: https://github.com/codebushi/gatsby-starter-strata +demo: https://gatsby-strata.surge.sh/ author: Code Bushi ssg: - Gatsby cms: - No Cms date: 2018-01-09T23:53:31.000Z -github_branch: master description: >- Gatsby.js V2 starter template based on Strata, designed by HTML5 UP. Check out https://codebushi.com/gatsby-starters-and-themes/ for more Gatsby starters. -stale: false +stale: true +disabled: true +disabled_reason: error checking demo url --- diff --git a/content/theme/gatsby-starter-stripe.md b/content/theme/gatsby-starter-stripe.md index 28ad580e3..0b6409711 100644 --- a/content/theme/gatsby-starter-stripe.md +++ b/content/theme/gatsby-starter-stripe.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Stripe -github: 'https://github.com/brxck/gatsby-starter-stripe' -demo: 'https://gatsby-starter-stripe.netlify.com/' +github: https://github.com/brxck/gatsby-starter-stripe +demo: https://gatsby-starter-stripe.netlify.com/ author: Brock McElroy ssg: - Gatsby cms: - No Cms date: 2019-02-22T00:49:32.000Z -github_branch: master -description: " \U0001F6D2 A starter storefront with Gatsby, Stripe, & Netlify Functions." -stale: false +description: ' 🛒 A starter storefront with Gatsby, Stripe, & Netlify Functions.' +stale: true --- diff --git a/content/theme/gatsby-starter-styled-components.md b/content/theme/gatsby-starter-styled-components.md index a323c808e..de29933be 100644 --- a/content/theme/gatsby-starter-styled-components.md +++ b/content/theme/gatsby-starter-styled-components.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Styled Components -github: 'https://github.com/blakenoll/gatsby-starter-styled-components' -demo: 'https://gatsby-starter-styled-components.netlify.com/' +github: https://github.com/blakenoll/gatsby-starter-styled-components +demo: https://gatsby-starter-styled-components.netlify.com/ author: Blake Noll ssg: - Gatsby cms: - No Cms date: 2019-02-26T23:36:59.000Z -github_branch: master description: Gatsby starter using styled components with a sticky footer -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-stylish.md b/content/theme/gatsby-starter-stylish.md index ed8356006..5ed993710 100644 --- a/content/theme/gatsby-starter-stylish.md +++ b/content/theme/gatsby-starter-stylish.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Stylish -github: 'https://github.com/anubhavsrivastava/gatsby-starter-stylish' -demo: 'https://anubhavsrivastava.github.io/gatsby-starter-stylish/' +github: https://github.com/anubhavsrivastava/gatsby-starter-stylish +demo: https://anubhavsrivastava.github.io/gatsby-starter-stylish/ author: Anubhav Srivastava ssg: - Gatsby cms: - No Cms date: 2019-06-25T11:47:44.000Z -github_branch: master description: Gatsby.js V2 starter template based on Stylish Portfolio by startbootstrap -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-tachyons.md b/content/theme/gatsby-starter-tachyons.md index 818195283..ea33cd17d 100644 --- a/content/theme/gatsby-starter-tachyons.md +++ b/content/theme/gatsby-starter-tachyons.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Tachyons -github: 'https://github.com/pixelsign/gatsby-starter-tachyons' -demo: 'https://gatsby-tachyons.netlify.com/' +github: https://github.com/pixelsign/gatsby-starter-tachyons +demo: https://gatsby-tachyons.netlify.com/ author: Angelos Arnis ssg: - Gatsby cms: - No Cms date: 2018-06-19T13:39:10.000Z -github_branch: master description: Simple starter demo stale: true --- diff --git a/content/theme/gatsby-starter-tailwindplay.md b/content/theme/gatsby-starter-tailwindplay.md index c0904cca4..cf24fc945 100644 --- a/content/theme/gatsby-starter-tailwindplay.md +++ b/content/theme/gatsby-starter-tailwindplay.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Tailwindplay -github: 'https://github.com/app-generator/gatsbyjs-starter-tailwindplay' -demo: 'https://gatsbyjs-starter-tailwindplay.appseed.us/' +github: https://github.com/app-generator/gatsbyjs-starter-tailwindplay +demo: https://gatsbyjs-starter-tailwindplay.appseed.us/ author: App Generator ssg: - Gatsby cms: - No Cms date: 2019-06-24T18:26:49.000Z -github_branch: master description: GatsbyJS Tailwind Starter - TailwindPlay stale: true --- diff --git a/content/theme/gatsby-starter-tech-blog.md b/content/theme/gatsby-starter-tech-blog.md index a1dcf7b2a..897bdf666 100644 --- a/content/theme/gatsby-starter-tech-blog.md +++ b/content/theme/gatsby-starter-tech-blog.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Tech Blog -github: 'https://github.com/email2vimalraj/gatsby-starter-tech-blog' -demo: 'https://gatsby-starter-tech-blog.netlify.com/' +github: https://github.com/email2vimalraj/gatsby-starter-tech-blog +demo: https://gatsby-starter-tech-blog.netlify.com/ author: VimalRaj Selvam ssg: - Gatsby cms: - No Cms date: 2018-12-23T05:32:24.000Z -github_branch: master description: A Gatsby Starter Tech Blog template stale: true --- diff --git a/content/theme/gatsby-starter-traveler-blog.md b/content/theme/gatsby-starter-traveler-blog.md index dbb2462af..3efa341bf 100644 --- a/content/theme/gatsby-starter-traveler-blog.md +++ b/content/theme/gatsby-starter-traveler-blog.md @@ -1,13 +1,12 @@ --- title: Gatsby Starter Traveler Blog -github: 'https://github.com/QingpingMeng/gatsby-starter-traveler-blog' -demo: 'https://traveler-blog.netlify.com' +github: https://github.com/QingpingMeng/gatsby-starter-traveler-blog +demo: https://traveler-blog.netlify.com author: Qingping Meng ssg: - Gatsby cms: - No Cms date: 2019-01-04T06:13:13.000Z -github_branch: master stale: false --- diff --git a/content/theme/gatsby-starter-typescript-jest.md b/content/theme/gatsby-starter-typescript-jest.md index 4a32d6e62..0765d92b3 100644 --- a/content/theme/gatsby-starter-typescript-jest.md +++ b/content/theme/gatsby-starter-typescript-jest.md @@ -1,14 +1,13 @@ --- title: Gatsby Typescript Jest -github: 'https://github.com/denningk/gatsby-starter-typescript-jest' -demo: 'https://gatsby-starter-typescript-jest.netlify.com/' +github: https://github.com/denningk/gatsby-starter-typescript-jest +demo: https://gatsby-starter-typescript-jest.netlify.com/ author: Keith Denning ssg: - Gatsby cms: - No Cms date: 2019-06-22T14:09:18.000Z -github_branch: master description: The default Gatsby starter with Typescript and Jest -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-typescript-plus.md b/content/theme/gatsby-starter-typescript-plus.md index 93c96d2a6..df0a8ca12 100644 --- a/content/theme/gatsby-starter-typescript-plus.md +++ b/content/theme/gatsby-starter-typescript-plus.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Typescript Plus -github: 'https://github.com/resir014/gatsby-starter-typescript-plus' -demo: 'https://gatsby-starter-typescript-plus.netlify.com/' +github: https://github.com/resir014/gatsby-starter-typescript-plus +demo: https://gatsby-starter-typescript-plus.netlify.com/ author: Resi Respati ssg: - Gatsby cms: - No Cms date: 2018-02-12T18:34:22.000Z -github_branch: master description: A starter kit for TypeScript-based Gatsby projects with sensible defaults. -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-typescript-power-blog.md b/content/theme/gatsby-starter-typescript-power-blog.md index 1b869eba1..8e13619f0 100644 --- a/content/theme/gatsby-starter-typescript-power-blog.md +++ b/content/theme/gatsby-starter-typescript-power-blog.md @@ -1,14 +1,13 @@ --- title: Typescript Power Blog -github: 'https://github.com/mhadaily/gatsby-starter-typescript-power-blog' -demo: 'https://gatsby-starter-typescript-power-blog.majidhajian.com/' +github: https://github.com/mhadaily/gatsby-starter-typescript-power-blog +demo: https://gatsby-starter-typescript-power-blog.majidhajian.com/ author: Majid Hajian ssg: - Gatsby cms: - No Cms date: 2018-10-19T12:42:53.000Z -github_branch: master description: Minimal Personal Blog with Gatsby and Typescript -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-typescript-rebass-netlifycms.md b/content/theme/gatsby-starter-typescript-rebass-netlifycms.md index bdc3e9545..9f889939f 100644 --- a/content/theme/gatsby-starter-typescript-rebass-netlifycms.md +++ b/content/theme/gatsby-starter-typescript-rebass-netlifycms.md @@ -1,14 +1,13 @@ --- -title: Typescript Rebass Netlifycms -github: 'https://github.com/damassi/gatsby-starter-typescript-rebass-netlifycms' -demo: 'https://frosty-ride-4ff3b9.netlify.com/' +title: Typescript Rebass DecapCMS +github: https://github.com/damassi/gatsby-starter-typescript-rebass-netlifycms +demo: https://frosty-ride-4ff3b9.netlify.com/ author: Christopher Pappas ssg: - Gatsby cms: - - NetlifyCMS + - DecapCMS date: 2019-01-26T04:06:58.000Z -github_branch: master description: 'My default Gatsby setup. Includes rich MDX support. ' stale: true --- diff --git a/content/theme/gatsby-starter-typescript-sass.md b/content/theme/gatsby-starter-typescript-sass.md index 4afdbb4f3..c035f50a3 100644 --- a/content/theme/gatsby-starter-typescript-sass.md +++ b/content/theme/gatsby-starter-typescript-sass.md @@ -1,14 +1,13 @@ --- title: Gatsby Typescript Sass -github: 'https://github.com/thetrevorharmon/gatsby-starter-typescript-sass' -demo: 'https://gatsby-starter-typescript-sass.netlify.com' +github: https://github.com/thetrevorharmon/gatsby-starter-typescript-sass +demo: https://gatsby-starter-typescript-sass.netlify.com author: Trevor Harmon ssg: - Gatsby cms: - No Cms date: 2018-09-04T20:48:42.000Z -github_branch: master description: A starter repo for using Gatsby with Typescript and SASS. stale: false --- diff --git a/content/theme/gatsby-starter-tyra.md b/content/theme/gatsby-starter-tyra.md index cfb410100..b4fe73db1 100644 --- a/content/theme/gatsby-starter-tyra.md +++ b/content/theme/gatsby-starter-tyra.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Tyra -github: 'https://github.com/madelyneriksen/gatsby-starter-tyra' -demo: 'https://tyra-starter.netlify.com/' +github: https://github.com/madelyneriksen/gatsby-starter-tyra +demo: https://tyra-starter.netlify.com/ author: Madelyn Eriksen ssg: - Gatsby cms: - No Cms date: 2018-12-12T14:21:33.000Z -github_branch: master description: Tyra - Feminine Gatsby Starter optimized for SEO -stale: false +stale: true --- diff --git a/content/theme/gatsby-starter-under-construction.md b/content/theme/gatsby-starter-under-construction.md index 27e0b0cbb..f9a33cdd0 100644 --- a/content/theme/gatsby-starter-under-construction.md +++ b/content/theme/gatsby-starter-under-construction.md @@ -1,16 +1,15 @@ --- title: Gatsby Starter Under Construction -github: 'https://github.com/robinmetral/gatsby-starter-under-construction' -demo: 'https://gatsby-starter-under-construction.netlify.com/' +github: https://github.com/robinmetral/gatsby-starter-under-construction +demo: https://gatsby-starter-under-construction.netlify.com/ author: Robin Métral ssg: - Gatsby cms: - No Cms date: 2019-01-23T18:50:25.000Z -github_branch: master description: A Gatsby theme to showcase your open-source work stale: false -disabled: true disabled_reason: demo url not found +disabled: true --- diff --git a/content/theme/gatsby-starter-wordpress-community.md b/content/theme/gatsby-starter-wordpress-community.md index e81f6eae2..10d70439c 100644 --- a/content/theme/gatsby-starter-wordpress-community.md +++ b/content/theme/gatsby-starter-wordpress-community.md @@ -1,14 +1,13 @@ --- title: Gatsby Wordpress Community -github: 'https://github.com/pablovila/gatsby-starter-wordpress-community' -demo: 'https://gatsby-starter-wordpress-community.netlify.com/' +github: https://github.com/pablovila/gatsby-starter-wordpress-community +demo: https://gatsby-starter-wordpress-community.netlify.com/ author: Pablo Vila ssg: - Gatsby cms: - No Cms date: 2019-02-20T20:16:18.000Z -github_branch: master description: Gatsby Starter to launch your blog from WordPress stale: true --- diff --git a/content/theme/gatsby-starter-wordpress.md b/content/theme/gatsby-starter-wordpress.md index 2faa7c3b2..93e624786 100644 --- a/content/theme/gatsby-starter-wordpress.md +++ b/content/theme/gatsby-starter-wordpress.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter Wordpress -github: 'https://github.com/GatsbyCentral/gatsby-starter-wordpress' -demo: 'https://gatsby-starter-wordpress.netlify.com/' +github: https://github.com/GatsbyCentral/gatsby-starter-wordpress +demo: https://gatsby-starter-wordpress.netlify.com/ author: Gatsby Central ssg: - Gatsby cms: - Wordpress date: 2018-02-03T21:55:52.000Z -github_branch: master -description: 'A GatsbyJS starter template that leverages the WordPress API, ACF and more' -stale: false +description: A GatsbyJS starter template that leverages the WordPress API, ACF and more +stale: true --- diff --git a/content/theme/gatsby-starter-zenii.md b/content/theme/gatsby-starter-zenii.md index 1c137dc45..7e1a12cfc 100644 --- a/content/theme/gatsby-starter-zenii.md +++ b/content/theme/gatsby-starter-zenii.md @@ -1,10 +1,9 @@ --- title: Gastby Starter Zenii -github: 'https://github.com/thebakerdev/gatsby-starter-zenii' -demo: 'https://gatsby-starter-zenii.netlify.app/' +github: https://github.com/thebakerdev/gatsby-starter-zenii +demo: https://gatsby-starter-zenii.netlify.app/ author: The Bakerdev date: 2019-08-20T00:00:00.000Z -github_branch: master ssg: - Gatsby cms: @@ -16,7 +15,7 @@ archetype: - Business - Single Page description: A One-page Gatsby starter built with Tailwindcss and Postcss. -stale: false +stale: true --- # A simple one-page theme for Gatsby diff --git a/content/theme/gatsby-starter.md b/content/theme/gatsby-starter.md index a0176cdf9..86547f4f3 100644 --- a/content/theme/gatsby-starter.md +++ b/content/theme/gatsby-starter.md @@ -1,14 +1,13 @@ --- title: Gatsby Starter -github: 'https://github.com/fabien0102/gatsby-starter' -demo: 'https://fabien0102-gatsby-starter.netlify.com/' +github: https://github.com/fabien0102/gatsby-starter +demo: https://fabien0102-gatsby-starter.netlify.com/ author: Fabien BERNARD ssg: - Gatsby cms: - No Cms date: 2017-04-13T12:50:52.000Z -github_branch: master description: Gatsby 2.0 starter with typescript and many cools dev tools -stale: true +stale: false --- diff --git a/content/theme/gatsby-tailwind-emotion-starter.md b/content/theme/gatsby-tailwind-emotion-starter.md index 934e53448..8ec33835a 100644 --- a/content/theme/gatsby-tailwind-emotion-starter.md +++ b/content/theme/gatsby-tailwind-emotion-starter.md @@ -1,14 +1,13 @@ --- title: Gatsby Tailwind Emotion Starter -github: 'https://github.com/muhajirdev/gatsby-tailwind-emotion-starter' -demo: 'https://gatsby-tailwind-emotion-starter.netlify.com/' +github: https://github.com/muhajirdev/gatsby-tailwind-emotion-starter +demo: https://gatsby-tailwind-emotion-starter.netlify.com/ author: Muhammad Muhajir ssg: - Gatsby cms: - No Cms date: 2018-10-05T10:34:13.000Z -github_branch: master description: A Gatsby Starter with Tailwind CSS + Emotion Js stale: true --- diff --git a/content/theme/gatsby-tailwind-serif.md b/content/theme/gatsby-tailwind-serif.md index 48cfdf211..da8aa4a76 100644 --- a/content/theme/gatsby-tailwind-serif.md +++ b/content/theme/gatsby-tailwind-serif.md @@ -1,14 +1,13 @@ --- title: Gatsby Tailwind Serif -github: 'https://github.com/windedge/gatsby-tailwind-serif' -demo: 'https://gatsby-tailwind-serif.netlify.com/' +github: https://github.com/windedge/gatsby-tailwind-serif +demo: https://gatsby-tailwind-serif.netlify.com/ author: windedge ssg: - Gatsby cms: - No Cms date: 2019-07-08T15:05:18.000Z -github_branch: master -description: 'A Gatsby theme based on gatsby-serif-theme, rewrite with Tailwind CSS.' +description: A Gatsby theme based on gatsby-serif-theme, rewrite with Tailwind CSS. stale: false --- diff --git a/content/theme/gatsby-tailwindcss-sass-starter.md b/content/theme/gatsby-tailwindcss-sass-starter.md index 8b46f91bc..050f72e7a 100644 --- a/content/theme/gatsby-tailwindcss-sass-starter.md +++ b/content/theme/gatsby-tailwindcss-sass-starter.md @@ -1,7 +1,7 @@ --- title: Gatsby Tailwindcss Sass Starter -github: 'https://github.com/durianstack/gatsby-tailwindcss-sass-starter' -demo: 'https://gatsby-tailwindcss-sass-starter-demo.netlify.com/' +github: https://github.com/durianstack/gatsby-tailwindcss-sass-starter +demo: https://gatsby-tailwindcss-sass-starter-demo.netlify.com/ author: null ssg: - Gatsby @@ -11,7 +11,6 @@ css: - Tailwind - SCSS date: 2019-01-02T07:24:27.000Z -github_branch: master description: Just another Gatsby Tailwind with SASS starter stale: true --- diff --git a/content/theme/gatsby-the-plain.md b/content/theme/gatsby-the-plain.md index 7dd18b92c..d36a25893 100644 --- a/content/theme/gatsby-the-plain.md +++ b/content/theme/gatsby-the-plain.md @@ -1,14 +1,13 @@ --- title: The Plain Gatsby -github: 'https://github.com/wangonya/the-plain-gatsby' -demo: 'https://the-plain-gatsby.netlify.com/' +github: https://github.com/wangonya/the-plain-gatsby +demo: https://the-plain-gatsby.netlify.com/ author: Kinyanjui Wangonya ssg: - Gatsby cms: - No Cms date: 2019-05-25T12:43:28.000Z -github_branch: master description: A minimalist GatsbyJs starter for your personal blog. stale: true --- diff --git a/content/theme/gatsby-theme-emilia.md b/content/theme/gatsby-theme-emilia.md index 4e0b173f1..543e3611f 100644 --- a/content/theme/gatsby-theme-emilia.md +++ b/content/theme/gatsby-theme-emilia.md @@ -1,14 +1,13 @@ --- title: Gatsby Emilia -github: 'https://github.com/LekoArts/gatsby-starter-portfolio-emilia' -demo: 'https://emilia.lekoarts.de' +github: https://github.com/LekoArts/gatsby-starter-portfolio-emilia +demo: https://emilia.lekoarts.de author: LekoArts ssg: - Gatsby cms: - No Cms date: 2017-11-30T18:53:29.000Z -github_branch: master description: >- Minimalistic portfolio/photography site with masonry grid, page transitions and big images. Themeable with Theme UI. Includes Light/Dark mode. diff --git a/content/theme/gatsby-theme-intro.md b/content/theme/gatsby-theme-intro.md index 64cb482a6..b5bbfdc4d 100644 --- a/content/theme/gatsby-theme-intro.md +++ b/content/theme/gatsby-theme-intro.md @@ -1,10 +1,9 @@ --- title: Intro. -github: 'https://github.com/wkocjan/gatsby-theme-intro' -demo: 'https://weeby.studio/intro/preview' +github: https://github.com/wkocjan/gatsby-theme-intro +demo: https://weeby.studio/intro/preview author: Wojciech Kocjan date: 2020-04-23T00:00:00.000Z -github_branch: master ssg: - Gatsby cms: @@ -12,14 +11,12 @@ cms: css: - Tailwind archetype: - - Multi Purpose - Portfolio - Single Page services: - Formspree description: Personal branding theme for developers -stale: false -weight: 14 +stale: true --- # Intro - Personal branding theme for developers diff --git a/content/theme/gatsby-theme-novela.md b/content/theme/gatsby-theme-novela.md index ee08f145e..5e6397b3a 100644 --- a/content/theme/gatsby-theme-novela.md +++ b/content/theme/gatsby-theme-novela.md @@ -1,17 +1,17 @@ --- title: Gatsby Novela -github: 'https://github.com/narative/gatsby-theme-novela' -demo: 'https://novela.narative.co/' +github: https://github.com/narative/gatsby-theme-novela +demo: https://novela.narative.co/ author: Narative ssg: - Gatsby cms: - Contentful date: 2019-08-01T00:00:00.000Z -github_branch: master -description: 'Welcome to Novela, the simplest way to start publishing with Gatsby.' +description: Welcome to Novela, the simplest way to start publishing with Gatsby. stale: false -weight: 10 +disabled: true +disabled_reason: 'Github repo not found, status: 404' --- Welcome to Novela, the simplest way to start publishing with Gatsby. diff --git a/content/theme/gatsby-theme-pocket.md b/content/theme/gatsby-theme-pocket.md index 3d3911697..98dee9629 100644 --- a/content/theme/gatsby-theme-pocket.md +++ b/content/theme/gatsby-theme-pocket.md @@ -1,14 +1,13 @@ --- title: Gatsby Pocket -github: 'https://github.com/molebox/gatsby-theme-pocket' -demo: 'https://gatsby-theme-pocket-example.netlify.com/articleIndex/' +github: https://github.com/molebox/gatsby-theme-pocket +demo: https://gatsby-theme-pocket-example.netlify.com/articleIndex/ author: Hungry Bear Studio ssg: - Gatsby date: 2019-12-10T00:00:00.000Z -github_branch: master description: A Gatsby theme that adds a pocket to your website. -stale: false +stale: true --- A Gatsby theme that adds your saved pocket articles to your gatsby site with inbuilt SEO. \ No newline at end of file diff --git a/content/theme/gatsby-theme-profile-builder.md b/content/theme/gatsby-theme-profile-builder.md index 9bbdb52f0..854181c08 100644 --- a/content/theme/gatsby-theme-profile-builder.md +++ b/content/theme/gatsby-theme-profile-builder.md @@ -1,13 +1,12 @@ --- title: Profile Builder -github: 'https://github.com/ashr81/gatsby-theme-profile-builder' -demo: 'https://gatsby-theme-profile-builder.netlify.com/' +github: https://github.com/ashr81/gatsby-theme-profile-builder +demo: https://gatsby-theme-profile-builder.netlify.com/ author: Ashrith Reddy ssg: - Gatsby cms: - No Cms date: 2019-07-31T17:42:47.000Z -github_branch: master stale: true --- diff --git a/content/theme/gatsby-theme-serial-programmer.md b/content/theme/gatsby-theme-serial-programmer.md new file mode 100644 index 000000000..13299cb91 --- /dev/null +++ b/content/theme/gatsby-theme-serial-programmer.md @@ -0,0 +1,17 @@ +--- +title: Serial Programmer +github: https://github.com/sharadcodes/gatsby-theme-serial-programmer +demo: https://gatsby-theme-serial-programmer.vercel.app/ +author: Sharad Raj Singh Maurya +ssg: + - Gatsby +cms: + - No Cms +category: + - Blog +date: 2021-11-07T00:00:00.000Z +description: A Gatsby theme for serial programmers by Sharad Raj Singh Maurya +archetype: + - Blog +stale: false +--- diff --git a/content/theme/gatsby-theme-ultronele.md b/content/theme/gatsby-theme-ultronele.md index 19b74be04..559a07676 100644 --- a/content/theme/gatsby-theme-ultronele.md +++ b/content/theme/gatsby-theme-ultronele.md @@ -1,12 +1,11 @@ --- title: Ultronele eLearning -github: 'https://github.com/runbytech/gatsby-theme-ultronele' -demo: 'https://ultronele.netlify.com/' +github: https://github.com/runbytech/gatsby-theme-ultronele +demo: https://ultronele.netlify.com/ author: lwz7512 ssg: - Gatsby date: 2019-07-04T11:28:21.000Z -github_branch: master description: Gatsby Theme for UltronEle - the Fastest Elearning Engine in the world stale: true stackit: false diff --git a/content/theme/gatsby-tiny-agency.md b/content/theme/gatsby-tiny-agency.md index 7ed85044a..4c8341d10 100644 --- a/content/theme/gatsby-tiny-agency.md +++ b/content/theme/gatsby-tiny-agency.md @@ -1,14 +1,13 @@ --- title: Tiny Agency -github: 'https://github.com/foxandgeese/tiny-agency' -demo: 'https://foxandgeese.github.io/tiny-agency/' +github: https://github.com/foxandgeese/tiny-agency +demo: https://foxandgeese.github.io/tiny-agency/ author: Versionista ssg: - Gatsby cms: - No Cms date: 2019-02-08T20:22:56.000Z -github_branch: master description: >- Simple Gatsby.js starter that uses material design and that's perfect for tiny agencies. diff --git a/content/theme/gatsby-typescript-mdx-prismjs-starter.md b/content/theme/gatsby-typescript-mdx-prismjs-starter.md index 6f84cb433..dbd3d6f65 100644 --- a/content/theme/gatsby-typescript-mdx-prismjs-starter.md +++ b/content/theme/gatsby-typescript-mdx-prismjs-starter.md @@ -1,13 +1,12 @@ --- title: Typescript Mdx Prismjs -github: 'https://github.com/tylergreulich/gatsby-typescript-mdx-prismjs-starter' -demo: 'https://infallible-brown-28846b.netlify.com' +github: https://github.com/tylergreulich/gatsby-typescript-mdx-prismjs-starter +demo: https://infallible-brown-28846b.netlify.com author: tylergreulich ssg: - Gatsby cms: - No Cms date: 2018-12-18T15:30:09.000Z -github_branch: master stale: true --- diff --git a/content/theme/gatsby-typescript-scss-docker.md b/content/theme/gatsby-typescript-scss-docker.md index 065f5ad3f..cc3f25dba 100644 --- a/content/theme/gatsby-typescript-scss-docker.md +++ b/content/theme/gatsby-typescript-scss-docker.md @@ -1,14 +1,13 @@ --- title: Gatsby Typescript Scss Docker -github: 'https://github.com/OFranke/gatsby-typescript-scss-docker' -demo: 'https://gatsby-typescript-scss-docker-starter.netlify.com/' +github: https://github.com/OFranke/gatsby-typescript-scss-docker +demo: https://gatsby-typescript-scss-docker-starter.netlify.com/ author: OFranke ssg: - Gatsby cms: - No Cms date: 2018-12-16T20:28:09.000Z -github_branch: master -description: 'gatsby with typescript, scss typed modules, eslint, prettier & husky, docker' +description: gatsby with typescript, scss typed modules, eslint, prettier & husky, docker stale: true --- diff --git a/content/theme/gatsby-typescript-starter-blog.md b/content/theme/gatsby-typescript-starter-blog.md index 507f54675..8292831ea 100644 --- a/content/theme/gatsby-typescript-starter-blog.md +++ b/content/theme/gatsby-typescript-starter-blog.md @@ -1,14 +1,13 @@ --- title: Gatsby Typescript Starter Blog -github: 'https://github.com/frnki/gatsby-typescript-starter-blog' -demo: 'https://gatsby-typescript-starter-blog.netlify.com/' +github: https://github.com/frnki/gatsby-typescript-starter-blog +demo: https://gatsby-typescript-starter-blog.netlify.com/ author: frnki ssg: - Gatsby cms: - No Cms date: 2018-12-16T12:12:14.000Z -github_branch: master description: A starter blog for TypeScript-based Gatsby projects with minimal settings. stale: true --- diff --git a/content/theme/gatsby-universal.md b/content/theme/gatsby-universal.md index b3e382087..fa947fbf3 100644 --- a/content/theme/gatsby-universal.md +++ b/content/theme/gatsby-universal.md @@ -1,14 +1,13 @@ --- title: Gatsby Universal -github: 'https://github.com/fabe/gatsby-universal' -demo: 'https://gatsby-universal.netlify.com/' +github: https://github.com/fabe/gatsby-universal +demo: https://gatsby-universal.netlify.com/ author: Fabian Schultz ssg: - Gatsby cms: - No Cms date: 2018-06-20T23:34:15.000Z -github_branch: master -description: "\U0001F52E An opinionated Gatsby v2 starter for state-of-the-art marketing sites." +description: 🔮 An opinionated Gatsby v2 starter for state-of-the-art marketing sites. stale: true --- diff --git a/content/theme/gatsby-v2-starter-casper.md b/content/theme/gatsby-v2-starter-casper.md index 2d7c336cd..7a82f8a71 100644 --- a/content/theme/gatsby-v2-starter-casper.md +++ b/content/theme/gatsby-v2-starter-casper.md @@ -1,14 +1,13 @@ --- title: Gatsby V2 Starter Casper -github: 'https://github.com/GatsbyCentral/gatsby-v2-starter-casper' -demo: 'https://gatsby-starter-v2-casper.netlify.com/' +github: https://github.com/GatsbyCentral/gatsby-v2-starter-casper +demo: https://gatsby-starter-v2-casper.netlify.com/ author: Gatsby Central ssg: - Gatsby cms: - No Cms date: 2018-10-19T10:22:22.000Z -github_branch: master description: The Casper theme v1.4 ported to Gatsby v2 stale: true --- diff --git a/content/theme/gatsby-v2-starter-lumen.md b/content/theme/gatsby-v2-starter-lumen.md index 99095a2b1..4f6a60327 100644 --- a/content/theme/gatsby-v2-starter-lumen.md +++ b/content/theme/gatsby-v2-starter-lumen.md @@ -1,14 +1,13 @@ --- title: Gatsby V2 Starter Lumen -github: 'https://github.com/GatsbyCentral/gatsby-v2-starter-lumen' -demo: 'https://lumen-v2.netlify.com/' +github: https://github.com/GatsbyCentral/gatsby-v2-starter-lumen +demo: https://lumen-v2.netlify.com/ author: Gatsby Central ssg: - Gatsby cms: - No Cms date: 2018-03-30T12:45:33.000Z -github_branch: master description: >- A minimal, lightweight and mobile-first starter for creating blazing-fast static blogs diff --git a/content/theme/gatsby-v2-tutorial-starter.md b/content/theme/gatsby-v2-tutorial-starter.md index e5b2a6e0b..746ebdea9 100644 --- a/content/theme/gatsby-v2-tutorial-starter.md +++ b/content/theme/gatsby-v2-tutorial-starter.md @@ -1,14 +1,13 @@ --- title: Gatsby V2 Tutorial Starter -github: 'https://github.com/justinformentin/gatsby-v2-tutorial-starter' -demo: 'https://gatsby-tutorial-starter.netlify.com' +github: https://github.com/justinformentin/gatsby-v2-tutorial-starter +demo: https://gatsby-tutorial-starter.netlify.com author: Justin Formentin ssg: - Gatsby cms: - No Cms date: 2018-10-28T04:45:46.000Z -github_branch: master description: Gatsby V2 Starter - product of step by step tutorial stale: true --- diff --git a/content/theme/gatsby-website-static.md b/content/theme/gatsby-website-static.md index f36bdb7c0..06db535c6 100644 --- a/content/theme/gatsby-website-static.md +++ b/content/theme/gatsby-website-static.md @@ -1,13 +1,12 @@ --- title: Website Static -github: 'https://github.com/histaff/website-static' -demo: 'https://histaff.io/' +github: https://github.com/histaff/website-static +demo: https://histaff.io/ author: HiStaff ssg: - Gatsby cms: - No Cms date: 2019-06-04T16:34:12.000Z -github_branch: master -stale: false +stale: true --- diff --git a/content/theme/gatsby-wordpress-typescript-scss-blog.md b/content/theme/gatsby-wordpress-typescript-scss-blog.md index 64b9b5b14..387881065 100644 --- a/content/theme/gatsby-wordpress-typescript-scss-blog.md +++ b/content/theme/gatsby-wordpress-typescript-scss-blog.md @@ -1,14 +1,13 @@ --- title: Gatsby Wordpress Typescript Scss Blog -github: 'https://github.com/sagar7993/gatsby-wordpress-typescript-scss-blog' -demo: 'https://gatsby-wordpress-typescript-scss-blog.netlify.com' +github: https://github.com/sagar7993/gatsby-wordpress-typescript-scss-blog +demo: https://gatsby-wordpress-typescript-scss-blog.netlify.com author: Sagar Jain ssg: - Gatsby cms: - Wordpress date: 2019-09-03T17:34:27.000Z -github_branch: master description: Gatsby Wordpress Typescript Blog Boilerplate stale: false --- diff --git a/content/theme/gatsby-xylo-bulma-starter.md b/content/theme/gatsby-xylo-bulma-starter.md index 154478b4c..cbc17c315 100644 --- a/content/theme/gatsby-xylo-bulma-starter.md +++ b/content/theme/gatsby-xylo-bulma-starter.md @@ -1,7 +1,7 @@ --- title: Gatsby Xylo Bulma -github: 'https://github.com/xydac/xylo-gatsby-bulma-starter' -demo: 'https://xylo-gatsby-bulma-starter.netlify.com/' +github: https://github.com/xydac/xylo-gatsby-bulma-starter +demo: https://xylo-gatsby-bulma-starter.netlify.com/ author: Deepak Seth ssg: - Gatsby @@ -10,7 +10,6 @@ cms: css: - Bulma date: 2018-10-07T03:53:26.000Z -github_branch: master description: Gatsby v2 Starter with Bulma based on default starter. stale: true --- diff --git a/content/theme/gatsby-yellowcake.md b/content/theme/gatsby-yellowcake.md index 59588684b..7f285d975 100644 --- a/content/theme/gatsby-yellowcake.md +++ b/content/theme/gatsby-yellowcake.md @@ -1,14 +1,13 @@ --- title: Yellowcake -github: 'https://github.com/thriveweb/yellowcake' -demo: 'https://yellowcake.netlify.com/' +github: https://github.com/thriveweb/yellowcake +demo: https://yellowcake.netlify.com/ author: THRIVE ssg: - Gatsby cms: - - NetlifyCMS + - DecapCMS date: 2018-10-15T04:47:58.000Z -github_branch: master description: >- A starter project for creating lightning-fast websites with Gatsby v2 and Netlify-CMS v2 + Uploadcare intergration. diff --git a/content/theme/geekyll-starter-blog.md b/content/theme/geekyll-starter-blog.md index a8950aa97..1bcb2acee 100644 --- a/content/theme/geekyll-starter-blog.md +++ b/content/theme/geekyll-starter-blog.md @@ -1,10 +1,9 @@ --- title: Geekyll Starter Blog -github: 'https://github.com/sharadcodes/geekyll-starter-blog' -demo: 'https://sharadcodes.github.io/geekyll-starter-blog/' +github: https://github.com/sharadcodes/geekyll-starter-blog +demo: https://sharadcodes.github.io/geekyll-starter-blog/ author: Sharad Raj Singh Maurya date: 2020-05-30T00:00:00.000Z -github_branch: master ssg: - Jekyll cms: @@ -12,7 +11,7 @@ cms: archetype: - Blog description: A minimal Jekyll theme for blogging inspired by Gatsby Starter Blog. -stale: false +stale: true --- ## Features diff --git a/content/theme/gohugo-amp.md b/content/theme/gohugo-amp.md index f7b618330..063616ee6 100644 --- a/content/theme/gohugo-amp.md +++ b/content/theme/gohugo-amp.md @@ -1,14 +1,15 @@ --- title: Gohugo Amp -github: 'https://github.com/wildhaber/gohugo-amp' -demo: 'https://gohugo-amp.gohugohq.com/' +github: https://github.com/wildhaber/gohugo-amp +demo: https://gohugo-amp.gohugohq.com/ author: Raphael Wildhaber ssg: - Hugo cms: - No Cms date: 2016-11-13T01:26:33.000Z -github_branch: develop -description: '⚡ AMP starter theme for gohugo https://gohugo-amp.gohugohq.com' +description: ⚡ AMP starter theme for gohugo https://gohugo-amp.gohugohq.com stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/gohugo-theme-ananke.md b/content/theme/gohugo-theme-ananke.md index 48f689624..4f1fc10f5 100644 --- a/content/theme/gohugo-theme-ananke.md +++ b/content/theme/gohugo-theme-ananke.md @@ -1,14 +1,13 @@ --- title: Ananke -github: 'https://github.com/budparr/gohugo-theme-ananke' -demo: 'https://gohugo-ananke-theme-demo.netlify.com/' +github: https://github.com/theNewDynamic/gohugo-theme-ananke +demo: https://gohugo-ananke-theme-demo.netlify.app/ author: Bud Parr ssg: - Hugo cms: - No Cms date: 2017-04-11T01:24:05.000Z -github_branch: master description: 'Ananke: A theme for Hugo Sites' stale: false --- diff --git a/content/theme/gozer-magazine.md b/content/theme/gozer-magazine.md new file mode 100644 index 000000000..663460419 --- /dev/null +++ b/content/theme/gozer-magazine.md @@ -0,0 +1,29 @@ +--- +title: "Magazine" +github: https://github.com/htejera/magazine-gozer +demo: https://magazine-gozer.surge.sh +author: htejera +date: 2024-03-13 +ssg: + - Gozer +cms: + - No CMS +css: + - Bootstrap +archetype: + - Blog + - Portfolio +description: Free CSS “Magazine” template, adapted for the Gozer static generator. +--- + +# A simple template for Gozer + +Free CSS “Magazine” template, adapted for the Gozer static generator. +This template is a basic version of the original. +Pagination and support for tags is not included. + +## Features + +* Blog Home +* Blog post +* RSS diff --git a/content/theme/gradfolio.md b/content/theme/gradfolio.md new file mode 100644 index 000000000..a286b99f3 --- /dev/null +++ b/content/theme/gradfolio.md @@ -0,0 +1,33 @@ +--- +title: Gradfolio +github: https://github.com/jitinnair1/gradfolio +demo: https://jitinnair1.github.io/gradfolio/ +author: Jitin Nair +date: 2021-03-11T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +archetype: + - Personal + - Blog + - Portfolio +description: >- + responsive, dark-mode ready Jekyll theme designed for use as a personal + website and portfolio +stale: false +--- + +## Features +- Responsive +- Respects Dark Mode preference set by user +- Projects Page to showcase your work/side projects +- Easily link to your profiles on ResearchGate and ORCID + +## Installation +* Click on `Use this template` on the [GitHub homepage](https://github.com/jitinnair1/gradfolio) +* Your new site should be ready at https://username.github.io/gradfolio/ +* You can now modify the contents and personalise the template + +## License +MIT License \ No newline at end of file diff --git a/content/theme/graphcms-blog.md b/content/theme/graphcms-blog.md new file mode 100644 index 000000000..da43d00b9 --- /dev/null +++ b/content/theme/graphcms-blog.md @@ -0,0 +1,61 @@ +--- +title: GraphCMS Blog +github: https://github.com/GraphCMS/gatsby-starter-graphcms-blog +demo: https://blog.withheadlesscms.com/ +author: GraphCMS +ssg: + - Gatsby +cms: + - GraphCMS +css: + - Tailwind +date: 2021-07-18T19:00:00.000Z +description: Gatsby starter for creating a basic blog with GraphCMS +stale: false +archetype: + - Blog +--- + +# gatsby-starter-graphcms-blog + +> A [Gatsby](httsp://gatsbyjs.com) starter for creating a basic blog with [GraphCMS](https://graphcms.com) + +• [Demo](https://gatsby-starter-graphcms-blog.vercel.app) • [`gatsby-source-graphcms`](https://github.com/GraphCMS/gatsby-source-graphcms) + +## Quick start + +1. **Create a new Gatsby project via the [Gatsby CLI](https://www.npmjs.com/package/gatsby-cli)** + +```shell +gatsby new graphcms-blog https://github.com/GraphCMS/gatsby-starter-graphcms-blog +``` + +2. **Provide your GraphCMS project keys** + +> In order to use this starter, you'll need to have created a new GraphCMS project using our `Blog Template`. + +Navigate into your new site’s directory and copy the `.env.sample` file. + +```shell +cd graphcms-blog +cp .env.sample .env +``` + +Inside of your newly created `.env` file, provide values for each variable. These variables can be found in the [project settings UI](https://graphcms.com/docs/guides/concepts/apis#working-with-apis). + +```env +GRAPHCMS_ENDPOINT="" +GRAPHCMS_TOKEN="" +``` + +3. **Start building!** + +```shell +yarn dev +``` + +## Features + +- Use [`gatsby-image`](https://www.gatsbyjs.org/packages/gatsby-image) with your GraphCMS image assets. +- MDX support via [`gatsby-plugin-mdx`](https://www.gatsbyjs.org/packages/gatsby-plugin-mdx) on GraphCMS `RichText` fields. +- Built with [Tailwind CSS](https://tailwindcss.com/). diff --git a/content/theme/graphcms-commerce.md b/content/theme/graphcms-commerce.md new file mode 100644 index 000000000..cc89276b9 --- /dev/null +++ b/content/theme/graphcms-commerce.md @@ -0,0 +1,19 @@ +--- +title: GraphCMS eCommerce Storefront +github: https://github.com/GraphCMS/graphcms-commerce-starter +demo: https://commerce.withheadlesscms.com/ +author: GraphCMS +ssg: + - Next +cms: + - GraphCMS +css: + - Tailwind +date: 2021-07-18T19:00:00.000Z +description: >- + Modern, SEO ready commerce storefront built with GraphCMS, Next.js, Stripe, + and Tailwind CSS +stale: false +archetype: + - Ecommerce +--- diff --git a/content/theme/graphcms-marketing-website.md b/content/theme/graphcms-marketing-website.md new file mode 100644 index 000000000..e4c2d288e --- /dev/null +++ b/content/theme/graphcms-marketing-website.md @@ -0,0 +1,90 @@ +--- +title: GraphCMS Marketing Website +github: https://github.com/GraphCMS/reference-marketing-website +demo: https://marketing-websites.withheadlesscms.com/ +author: GraphCMS +ssg: + - Next +cms: + - GraphCMS +css: + - Tailwind +date: 2021-07-18T19:00:00.000Z +description: Next.js starter for creating a SaaS Marketing Website with GraphCMS +stale: false +archetype: + - Business +--- + +# reference-marketing-website + +> A [Next.js](https://nextjs.org/) starter for creating a SaaS Marketing Website with [GraphCMS](https://graphcms.com) + +• [Demo](https://marketing-websites.withheadlesscms.com/) + +## Quick start + +1. Clone the repository and install project dependencies + +```shell +npx degit GraphCMS/reference-marketing-website#main reference-marketing-website +cd reference-marketing-website +yarn +``` + +2. **Provide your GraphCMS project keys** + +> In order to use this starter, you'll need to have created a new GraphCMS project using our `Marketing Website Template`. + +Navigate into your new site’s directory and copy the `.env.local.example` file. + +```shell +cp .env.local.example .env.local +``` + +Inside of your newly created `.env.local` file, provide values for the variable. These variables can be found in the [project settings UI](https://graphcms.com/docs/guides/concepts/apis#working-with-apis). + +```env +NEXT_PUBLIC_GRAPHCMS_URL= +``` + +3. **Start building!** + +```shell +yarn dev +``` + +## Next.js Preview Mode + +If you want to enable [Next.js Preview Mode](https://nextjs.org/docs/advanced-features/preview-mode) you'll need to add the following to your `.env`: + +```env +GRAPHCMS_TOKEN= +GRAPHCMS_PREVIEW_TOKEN= +GRAPHCMS_PREVIEW_SECRET= +``` + +### `GRAPHCMS_TOKEN` + +This should be a Permanent Auth Token that is set to fetch content from _PUBLISHED_ content stage by default. + +### `GRAPHCMS_PREVIEW_TOKEN` + +This should be a Permanent Auth Token that is set to fetch content from _DRAFT_ content stage by default. + +## `GRAPHCMS_PREVIEW_SECRET` + +You'll need to make sure when configuring the Preview URL inside GraphCMS that it passes the same secret value you assigned to `GRAPHCMS_PREVIEW_SECRET`. + +You'll need to update both the Page & Blog Post model to add a Preview URL. The URLs should look like this: + +- **Page**: `https://]your-domain.com]/api/preview?secret=[GRAPHCMS_PREVIEW_SECRET_VALUE_HERE]&slug={slug}` +- **Blog Post**: `https://]your-domain.com]/api/preview?secret=[GRAPHCMS_PREVIEW_SECRET_VALUE_HERE]&slug=blog/{slug}` + +## Features + +- [Next.js Preview Mode](https://nextjs.org/docs/advanced-features/preview-mode) +- [next/image](https://nextjs.org/docs/api-reference/next/image) +- [Internationalized Routing](https://nextjs.org/docs/advanced-features/i18n-routing) +- [GraphQL Union Types (Polymorphic Relations)](https://graphcms.com/docs/schema/field-types) +- [next-seo](https://www.npmjs.com/package/next-seo) diff --git a/content/theme/gray-jekyll.md b/content/theme/gray-jekyll.md index 64c745fc8..699364acd 100644 --- a/content/theme/gray-jekyll.md +++ b/content/theme/gray-jekyll.md @@ -1,10 +1,9 @@ --- title: Gray -github: 'https://github.com/ronv/gray' -demo: 'https://gray-jekyll.netlify.com' +github: https://github.com/ronv/gray +demo: https://gray-jekyll.netlify.com author: Ronalds Vilcins date: 2019-11-09T00:00:00.000Z -github_branch: master ssg: - Jekyll description: Gray - Single column blog and portfolio Jekyll theme diff --git a/content/theme/grayscale-theme.md b/content/theme/grayscale-theme.md index 442b18431..c0859cbf9 100644 --- a/content/theme/grayscale-theme.md +++ b/content/theme/grayscale-theme.md @@ -1,14 +1,13 @@ --- title: Grayscale -github: 'https://github.com/jeromelachaud/grayscale-theme' -demo: 'https://jeromelachaud.com/grayscale-theme/' +github: https://github.com/jeromelachaud/grayscale-theme +demo: https://jeromelachaud.com/grayscale-theme/ author: Jeromelachaud ssg: - Jekyll cms: - No Cms date: 2015-02-02T14:45:08.000Z -github_branch: master description: Jekyll theme based on Grayscale Start Bootstrap theme -stale: true +stale: false --- \ No newline at end of file diff --git a/content/theme/gridsome-airtable-starter.md b/content/theme/gridsome-airtable-starter.md index 749f1b1f0..693f8fba5 100644 --- a/content/theme/gridsome-airtable-starter.md +++ b/content/theme/gridsome-airtable-starter.md @@ -1,15 +1,14 @@ --- -title: "Gridsome Airtable Starter" +title: Gridsome Airtable Starter github: https://github.com/12vanblart/gridsome-airtable-starter demo: https://gridsomeairtable.netlify.com/ author: Tyler VanBlargan -date: 2019-12-18 -github_branch: master +date: 2019-12-18T00:00:00.000Z ssg: - Gridsome cms: - Airtable -description: "A Gridsome starter leveraging Airtable with a minimalist design. " +description: 'A Gridsome starter leveraging Airtable with a minimalist design. ' stale: false --- diff --git a/content/theme/gridsome-forestry-starter.md b/content/theme/gridsome-forestry-starter.md index 97c3c24a0..f1a3f5551 100644 --- a/content/theme/gridsome-forestry-starter.md +++ b/content/theme/gridsome-forestry-starter.md @@ -1,14 +1,13 @@ --- title: Gridsome Forestry Starter -github: 'https://github.com/itsnwa/gridsome-forestry-starter' -demo: 'https://gridsome-forestry.netlify.com' +github: https://github.com/itsnwa/gridsome-forestry-starter +demo: https://gridsome-forestry.netlify.com author: Nichlas Wærnes Andersen ssg: - Gridsome cms: - Forestry date: 2019-01-03T21:54:32.000Z -github_branch: master description: Gridsome starter kit with Forestry (CMS) stale: false --- diff --git a/content/theme/gridsome-kontent-dancing-goat.md b/content/theme/gridsome-kontent-dancing-goat.md index bc3f54b53..a08bb5a98 100644 --- a/content/theme/gridsome-kontent-dancing-goat.md +++ b/content/theme/gridsome-kontent-dancing-goat.md @@ -1,14 +1,13 @@ --- title: Gridsome Kontent Dancing Goat -github: 'https://github.com/Kentico/kontent-sample-dancing-goat-gridsome' -demo: 'https://kontent-sample-dancing-goat-gridsome.netlify.app/' +github: https://github.com/Kentico/kontent-sample-dancing-goat-gridsome +demo: https://kontent-sample-dancing-goat-gridsome.netlify.app/ author: Kentico ssg: - Gridsome cms: - Kontent date: 2020-12-01T00:00:00.000Z -github_branch: master archetype: - Business description: Gridsome implementation of the Dancing Goat Starter site. diff --git a/content/theme/gridsome-kontent-lumen.md b/content/theme/gridsome-kontent-lumen.md index f033460bd..13f8516ff 100644 --- a/content/theme/gridsome-kontent-lumen.md +++ b/content/theme/gridsome-kontent-lumen.md @@ -1,10 +1,9 @@ --- title: Gridsome Kontent Lumen -github: 'https://github.com/ondrabus/gridsome-starter-kontent-lumen' -demo: 'https://gridsome-starter-kontent-lumen.netlify.app' +github: https://github.com/ondrabus/gridsome-starter-kontent-lumen +demo: https://gridsome-starter-kontent-lumen.netlify.app author: makma date: 2020-12-01T00:00:00.000Z -github_branch: master ssg: - Gridsome cms: @@ -15,7 +14,7 @@ archetype: description: >- Lumen is a minimal, lightweight and mobile-first starter for creating blogs using Gridsome. -stale: false +stale: true --- # Gridsome Kontent Lumen diff --git a/content/theme/gridsome-shopify.md b/content/theme/gridsome-shopify.md index 7ee655bc6..3abe3d210 100644 --- a/content/theme/gridsome-shopify.md +++ b/content/theme/gridsome-shopify.md @@ -1,7 +1,7 @@ --- title: Gridsome Tailwind CSS Shopify Starter -github: 'https://github.com/jsappme/gridsome-shopify-starter' -demo: 'https://gridsome-shopify.netlify.app/' +github: https://github.com/jsappme/gridsome-shopify-starter +demo: https://gridsome-shopify.netlify.app/ author: Gridsomify ssg: - Gridsome @@ -14,7 +14,6 @@ archetype: services: - Shopify date: 2020-07-03T18:24:48.000Z -github_branch: master description: This Gridsome Shopify starter app is built with Tailwind CSS. -stale: false +stale: true --- diff --git a/content/theme/gridsome-starter-blog.md b/content/theme/gridsome-starter-blog.md index 988d05f9c..42cbb66d3 100644 --- a/content/theme/gridsome-starter-blog.md +++ b/content/theme/gridsome-starter-blog.md @@ -1,14 +1,13 @@ --- title: Gridsome Starter Blog -github: 'https://github.com/gridsome/gridsome-starter-blog' -demo: 'https://gridsome-starter-blog.netlify.com/' +github: https://github.com/gridsome/gridsome-starter-blog +demo: https://gridsome-starter-blog.netlify.com/ author: Gridsome ssg: - Gridsome cms: - No Cms date: 2019-02-26T13:28:03.000Z -github_branch: master description: >- A simple, hackable & minimalistic starter for Gridsome that uses Markdown for content. diff --git a/content/theme/halide.md b/content/theme/halide.md new file mode 100644 index 000000000..020517472 --- /dev/null +++ b/content/theme/halide.md @@ -0,0 +1,43 @@ +--- +title: "Halide" +github: https://github.com/danurbanowicz/halide +demo: https://halide.netlify.app +author: danurbanowicz +date: 2023-12-11 +ssg: + - Eleventy +cms: + - Tina + - No CMS +css: + - CSS +archetype: + - Portfolio +description: Responsive image portfolio theme, built with Eleventy and Tina CMS +--- + +# Responsive image portfolio theme, built with Eleventy and Tina CMS + +Halide is a very simple and fast image portfolio template, ready for deployment to Netlify. + +It uses Eleventy under the hood to generate static HTML files from Markdown and YAML content, and responsive images in next-gen formats like AVIF and WebP. + +It doesn't use a front-end framework, and only contains a few lines of vanilla JavaScript to provide some progressive enhancement. Halide leverages native browser features as much as possible. + +Halide also comes with Tina CMS pre-configured. Tina CMS is an open source, headless content management system that uses GitHub as a robust and convenient content store. + +## Features + +* Responsive, static HTML front-end +* Exceptional performance ([Lighthouse test report](https://halide.netlify.app/reports/lighthouse/) +* Eleventy Image for optimized images in next-gen formats +* Automated syntax markup with srcset and sizes +* Optional Tina CMS for easy content management +* Dark mode support +* Customizable theme settings, colors, and typography +* Simple HTML/CSS/JS minification pipeline +* Clientside framework-free +* Markdown files for content +* Simple YAML configuration +* Netlify build caching for faster deploys +* Automatic CSP headers \ No newline at end of file diff --git a/content/theme/hallo-hugo.md b/content/theme/hallo-hugo.md index 582c91321..c3ca3cdd1 100644 --- a/content/theme/hallo-hugo.md +++ b/content/theme/hallo-hugo.md @@ -1,14 +1,15 @@ --- title: Hallo Hugo -github: 'https://github.com/EmielH/hallo-hugo' -demo: 'https://themes.gohugo.io/theme/hallo-hugo/' +github: https://github.com/EmielH/hallo-hugo +demo: https://themes.gohugo.io/theme/hallo-hugo/ author: Emiel Hollander ssg: - Hugo cms: - No Cms date: 2018-10-28T13:02:54.000Z -github_branch: master description: Hallo is a single-page Hugo theme to introduce yourself. stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hamilton.md b/content/theme/hamilton.md index 8b6f68fd3..ea75cc4f4 100644 --- a/content/theme/hamilton.md +++ b/content/theme/hamilton.md @@ -1,10 +1,9 @@ --- title: Hamilton -github: 'https://github.com/ngzhio/jekyll-theme-hamilton' -demo: 'https://ngzhio.github.io/jekyll-theme-hamilton/' +github: https://github.com/zivhub/jekyll-theme-hamilton +demo: https://zivlog.io/jekyll-theme-hamilton/ author: Shangzhi Huang date: 2020-07-02T00:00:00.000Z -github_branch: master ssg: - Jekyll cms: @@ -15,6 +14,8 @@ archetype: - Blog description: A minimal and beautiful Jekyll theme best for writing and note-taking. stale: false +disabled: true +disabled_reason: demo url not found --- # Hamilton diff --git a/content/theme/hawksworx.md b/content/theme/hawksworx.md index fc07b487c..7c03e384d 100644 --- a/content/theme/hawksworx.md +++ b/content/theme/hawksworx.md @@ -1,14 +1,15 @@ --- title: Hawksworth -github: 'https://github.com/philhawksworth/hawksworx.com' -demo: 'https://www.hawksworx.com/' +github: https://github.com/philhawksworth/hawksworx.com +demo: https://www.hawksworx.com/ author: Phil Hawksworth ssg: - Eleventy cms: - No Cms date: 2012-07-23T11:28:15.000Z -github_branch: master -description: 'My hawksworx.com blog site, powered by Eleventy and Netlify' +description: My hawksworx.com blog site, powered by Eleventy and Netlify stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/headless-gatsby-multilang.md b/content/theme/headless-gatsby-multilang.md new file mode 100644 index 000000000..0614a2948 --- /dev/null +++ b/content/theme/headless-gatsby-multilang.md @@ -0,0 +1,36 @@ +--- +title: Gatsby Headless Multilingual +github: https://github.com/smastrom/headless-gatsby-multilang +demo: https://headlessmultilingual.gatsbyjs.io/ +author: smastrom +date: 2021-10-17T00:00:00.000Z +ssg: + - Gatsby +cms: + - DatoCMS +archetype: + - Blog + - Business + - Personal +description: The most powerful multilanguage blog starter for Gatsby. Completely headless. +stale: false +--- + +# Headless Multilanguage Starter for Gatsby + +The most powerful multilanguage blog starter for Gatsby. Completely headless. + +## Features + +* 100% Headless: Define languages and translate pages, posts, slugs, SEO meta tags and PWA settings directly on DatoCMS. +* Language switcher component swapping between different slugs/paths per locale +* Automatic and easy internal links localization using custom Navigator component +* User preferred language detection and redirection +* Built-in support for RTL languages such as Arabic or Hebrew +* Per-locale PWA webmanifest files generation on build time, dynamically injected according to the page locale. +* Support for any language code path such as "/en-GB" or "/en" +* 404 page displaying localized content according to the user preferred language +* Choose which post or category to translate (and generate) for each locale. +* Related posts, social sharing and synthax highlighting. +* Dark mode with CSS variables +* Built without any internationalization plugin, just Gatsby APIs. diff --git a/content/theme/hello-friend-ng.md b/content/theme/hello-friend-ng.md index dadeb3149..8eb242e7e 100644 --- a/content/theme/hello-friend-ng.md +++ b/content/theme/hello-friend-ng.md @@ -1,16 +1,17 @@ --- title: Hello Friend Ng -github: 'https://github.com/rhazdon/hugo-theme-hello-friend-ng' -demo: 'https://themes.gohugo.io/theme/hugo-theme-hello-friend-ng/' +github: https://github.com/rhazdon/hugo-theme-hello-friend-ng +demo: https://themes.gohugo.io/theme/hugo-theme-hello-friend-ng/ author: Djordje Atlialp ssg: - Hugo cms: - No Cms date: 2019-01-26T08:46:36.000Z -github_branch: master description: >- Pretty basic theme for Hugo that covers all of the essentials. All you have to do is start typing! stale: false +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/hexo-material-netlify.md b/content/theme/hexo-material-netlify.md index 1389d7a66..448bf978f 100644 --- a/content/theme/hexo-material-netlify.md +++ b/content/theme/hexo-material-netlify.md @@ -1,14 +1,13 @@ --- title: Hexo Material Netlify -github: 'https://github.com/lunaceee/hexo-material-netlify' -demo: 'https://hexo-material-cms.netlify.com/' +github: https://github.com/lunaceee/hexo-material-netlify +demo: https://hexo-material-cms.netlify.com/ author: Luna Yu ssg: - Hexo cms: - - NetlifyCMS + - DecapCMS date: 2018-07-14T20:02:15.000Z -github_branch: master description: Hexo + Netlify CMS starter based on material design stale: true --- \ No newline at end of file diff --git a/content/theme/hexo-theme-3-hexo.md b/content/theme/hexo-theme-3-hexo.md index 20596aed4..8e710fa09 100644 --- a/content/theme/hexo-theme-3-hexo.md +++ b/content/theme/hexo-theme-3-hexo.md @@ -1,14 +1,13 @@ --- title: 3-Hexo -github: 'https://github.com/yelog/hexo-theme-3-hexo' -demo: 'https://yelog.org/' +github: https://github.com/yelog/hexo-theme-3-hexo +demo: https://yelog.org/ author: Chris Yang ssg: - Hexo cms: - No Cms date: 2017-02-05T09:26:14.000Z -github_branch: master description: hexo主题:三段式设计,极简,方便 stale: false --- \ No newline at end of file diff --git a/content/theme/hexo-theme-A-RSnippet.md b/content/theme/hexo-theme-A-RSnippet.md index 9a37a0f2b..856b87f77 100644 --- a/content/theme/hexo-theme-A-RSnippet.md +++ b/content/theme/hexo-theme-A-RSnippet.md @@ -1,14 +1,15 @@ --- title: A-RSnippet -github: 'https://github.com/huyingjie/hexo-theme-A-RSnippet' -demo: 'https://arsnippet.yingjiehu.com/' +github: https://github.com/huyingjie/hexo-theme-A-RSnippet +demo: https://arsnippet.yingjiehu.com/ author: Yingjie ssg: - Hexo cms: - No Cms date: 2018-01-21T18:18:25.000Z -github_branch: master -description: "\U0001F980 A Responsive Theme for Hexo \U0001F980 " +description: '🦀 A Responsive Theme for Hexo 🦀 ' stale: true +disabled: true +disabled_reason: error checking demo url --- \ No newline at end of file diff --git a/content/theme/hexo-theme-Aath.md b/content/theme/hexo-theme-Aath.md index 7b0571420..4c96c6fb6 100644 --- a/content/theme/hexo-theme-Aath.md +++ b/content/theme/hexo-theme-Aath.md @@ -1,16 +1,15 @@ --- title: Aath -github: 'https://github.com/lewis-geek/hexo-theme-Aath' -demo: 'https://lewis.suclub.cn/' +github: https://github.com/lewis-geek/hexo-theme-Aath +demo: https://lewis.suclub.cn/ author: Yang Liu ssg: - Hexo cms: - No Cms date: 2017-09-04T02:41:19.000Z -github_branch: develop description: Hexo 主题 stale: true +disabled_reason: error checking demo url disabled: true -disabled_reason: "demo url not working" --- diff --git a/content/theme/hexo-theme-BlueLake.md b/content/theme/hexo-theme-BlueLake.md index 52cdb3e21..98ab3d802 100644 --- a/content/theme/hexo-theme-BlueLake.md +++ b/content/theme/hexo-theme-BlueLake.md @@ -1,14 +1,15 @@ --- title: BlueLake -github: 'https://github.com/chaooo/hexo-theme-BlueLake' -demo: 'https://chaoo.oschina.io/' +github: https://github.com/chaooo/hexo-theme-BlueLake +demo: https://chaoo.oschina.io/ author: Chaooo ssg: - Hexo cms: - No Cms date: 2016-11-02T13:05:25.000Z -github_branch: master description: A simple theme for Hexo with great performance on different devices . stale: false +disabled: true +disabled_reason: error checking demo url --- \ No newline at end of file diff --git a/content/theme/hexo-theme-Daily.md b/content/theme/hexo-theme-Daily.md index 2efc523b8..9a8272a50 100644 --- a/content/theme/hexo-theme-Daily.md +++ b/content/theme/hexo-theme-Daily.md @@ -1,14 +1,13 @@ --- title: Daily -github: 'https://github.com/GallenHu/hexo-theme-Daily' -demo: 'https://hinpc.github.io/Daily/' +github: https://github.com/GallenHu/hexo-theme-Daily +demo: https://hinpc.github.io/Daily/ author: Gallen.Hu ssg: - Hexo cms: - No Cms date: 2016-07-26T06:13:14.000Z -github_branch: master description: A simple theme for Hexo -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/hexo-theme-aloha.md b/content/theme/hexo-theme-aloha.md index 3a94d32a2..d7e3826a3 100644 --- a/content/theme/hexo-theme-aloha.md +++ b/content/theme/hexo-theme-aloha.md @@ -1,14 +1,13 @@ --- title: Aloha -github: 'https://github.com/henryhuang/hexo-theme-aloha' -demo: 'https://huangyijie.com/' +github: https://github.com/henryhuang/hexo-theme-aloha +demo: https://huangyijie.com/ author: Henry Huang ssg: - Hexo cms: - No Cms date: 2016-08-27T16:11:12.000Z -github_branch: master -description: 'A hexo theme, use semantic ui.' +description: A hexo theme, use semantic ui. stale: true --- \ No newline at end of file diff --git a/content/theme/hexo-theme-alpha-dust.md b/content/theme/hexo-theme-alpha-dust.md index 27a525651..8b1e820ff 100644 --- a/content/theme/hexo-theme-alpha-dust.md +++ b/content/theme/hexo-theme-alpha-dust.md @@ -1,14 +1,13 @@ --- title: Alpha Dust -github: 'https://github.com/klugjo/hexo-theme-alpha-dust' -demo: 'https://www.codeblocq.com/assets/projects/hexo-theme-alpha-dust/' +github: https://github.com/klugjo/hexo-theme-alpha-dust +demo: https://www.codeblocq.com/assets/projects/hexo-theme-alpha-dust/ author: Klughertz Jonathan ssg: - Hexo cms: - No Cms date: 2016-06-21T01:22:11.000Z -github_branch: master -description: "\U0001F320 Original Futuristic Hexo Theme" -stale: false +description: 🌠 Original Futuristic Hexo Theme +stale: true --- \ No newline at end of file diff --git a/content/theme/hexo-theme-anodyne.md b/content/theme/hexo-theme-anodyne.md index 1b3f6d2eb..c3c88d20a 100644 --- a/content/theme/hexo-theme-anodyne.md +++ b/content/theme/hexo-theme-anodyne.md @@ -1,14 +1,13 @@ --- title: Anodyne -github: 'https://github.com/klugjo/hexo-theme-anodyne' -demo: 'https://www.codeblocq.com/assets/projects/hexo-theme-anodyne/' +github: https://github.com/klugjo/hexo-theme-anodyne +demo: https://www.codeblocq.com/assets/projects/hexo-theme-anodyne/ author: Klughertz Jonathan ssg: - Hexo cms: - No Cms date: 2017-01-27T03:59:03.000Z -github_branch: master -description: "\U0001F30B Original Bright Theme for Hexo" +description: 🌋 Original Bright Theme for Hexo stale: true --- \ No newline at end of file diff --git a/content/theme/hexo-theme-antiquity.md b/content/theme/hexo-theme-antiquity.md index 27f8e1cea..165a9a97d 100644 --- a/content/theme/hexo-theme-antiquity.md +++ b/content/theme/hexo-theme-antiquity.md @@ -1,14 +1,15 @@ --- title: Antiquity -github: 'https://github.com/yiluyanxia/hexo-theme-antiquity' -demo: 'https://yiluyanxia.site/' +github: https://github.com/yiluyanxia/hexo-theme-antiquity +demo: https://yiluyanxia.site/ author: Yiluyanxia ssg: - Hexo cms: - No Cms date: 2019-01-12T09:22:31.000Z -github_branch: master description: 一个有点古风的Hexo主题,来自一个不会设计不会配色的前端渣渣。点击这里预览--> -stale: false +stale: true +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/hexo-theme-aria.md b/content/theme/hexo-theme-aria.md index f51728bf9..1687256f4 100644 --- a/content/theme/hexo-theme-aria.md +++ b/content/theme/hexo-theme-aria.md @@ -1,14 +1,13 @@ --- title: Aria -github: 'https://github.com/AlynxZhou/hexo-theme-aria' -demo: 'https://aria.ismyonly.one/' +github: https://github.com/AlynxZhou/hexo-theme-aria +demo: https://aria.ismyonly.one/ author: Alynx Zhou ssg: - Hexo cms: - No Cms date: 2018-03-15T03:06:27.000Z -github_branch: master description: A Hexo theme inspired by Kalafina's song ARIA. stale: true --- \ No newline at end of file diff --git a/content/theme/hexo-theme-beantech.md b/content/theme/hexo-theme-beantech.md index bc1ac3794..d60589932 100644 --- a/content/theme/hexo-theme-beantech.md +++ b/content/theme/hexo-theme-beantech.md @@ -1,14 +1,15 @@ --- title: Beantech -github: 'https://github.com/YenYuHsuan/hexo-theme-beantech/' -demo: 'https://beantech.org/' +github: https://github.com/YenYuHsuan/hexo-theme-beantech/ +demo: https://beantech.org/ author: Yu Hsuan Yen ssg: - Hexo cms: - No Cms date: 2017-03-21T02:57:50.000Z -github_branch: master description: ':sparkles: Ported theme of Hux Blog by Kaijun, Modified by YuHsuan :sparkles:' stale: true +disabled: true +disabled_reason: error checking demo url --- \ No newline at end of file diff --git a/content/theme/hexo-theme-butterfly.md b/content/theme/hexo-theme-butterfly.md index 2c4189a40..8a20d01be 100644 --- a/content/theme/hexo-theme-butterfly.md +++ b/content/theme/hexo-theme-butterfly.md @@ -1,14 +1,15 @@ --- title: Butterfly -github: 'https://github.com/jerryc127/hexo-theme-butterfly' -demo: 'https://jerryc.me/' +github: https://github.com/jerryc127/hexo-theme-butterfly +demo: https://jerryc.me/ author: Jerry Wong ssg: - Hexo cms: - No Cms date: 2019-06-04T13:38:41.000Z -github_branch: master description: 'A Hexo Theme: Butterfly' stale: false +disabled: false +disabled_reason: '' --- \ No newline at end of file diff --git a/content/theme/hexo-theme-chan.md b/content/theme/hexo-theme-chan.md index f6333e220..358cad1b5 100644 --- a/content/theme/hexo-theme-chan.md +++ b/content/theme/hexo-theme-chan.md @@ -1,14 +1,15 @@ --- title: Chan -github: 'https://github.com/denjones/hexo-theme-chan' -demo: 'https://blog.sprabbit.com/hexo-theme-chan/' +github: https://github.com/denjones/hexo-theme-chan +demo: https://blog.sprabbit.com/hexo-theme-chan/ author: JKenneth Teng ssg: - Hexo cms: - No Cms date: 2016-02-20T03:07:57.000Z -github_branch: master description: A super simple and elegant theme for hexo stale: true +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/hexo-theme-clean-blog.md b/content/theme/hexo-theme-clean-blog.md index 3bd8c7c1b..72a594020 100644 --- a/content/theme/hexo-theme-clean-blog.md +++ b/content/theme/hexo-theme-clean-blog.md @@ -1,14 +1,13 @@ --- title: Hexo Clean Blog -github: 'https://github.com/klugjo/hexo-theme-clean-blog' -demo: 'https://www.codeblocq.com/assets/projects/hexo-theme-clean-blog/' +github: https://github.com/klugjo/hexo-theme-clean-blog +demo: https://www.codeblocq.com/assets/projects/hexo-theme-clean-blog/ author: Klughertz Jonathan ssg: - Hexo cms: - No Cms date: 2016-03-11T05:53:04.000Z -github_branch: master description: >- Hexo implementation of Clean Blog https://blackrockdigital.github.io/startbootstrap-clean-blog/index.html diff --git a/content/theme/hexo-theme-clover.md b/content/theme/hexo-theme-clover.md index f1a38c731..74d13d5ad 100644 --- a/content/theme/hexo-theme-clover.md +++ b/content/theme/hexo-theme-clover.md @@ -1,16 +1,15 @@ --- title: Clover -github: 'https://github.com/esappear/hexo-theme-clover' -demo: 'https://clovertuan.github.io/' +github: https://github.com/esappear/hexo-theme-clover +demo: https://clovertuan.github.io/ author: Shawn ssg: - Hexo cms: - No Cms date: 2018-10-05T13:57:23.000Z -github_branch: master description: Clover theme for Hexo. stale: true -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/hexo-theme-edinburgh.md b/content/theme/hexo-theme-edinburgh.md index 2d27771f6..a33c340d2 100644 --- a/content/theme/hexo-theme-edinburgh.md +++ b/content/theme/hexo-theme-edinburgh.md @@ -1,14 +1,13 @@ --- title: Edinburgh -github: 'https://github.com/sharvaridesai/hexo-theme-edinburgh' -demo: 'https://sharvaridesai.github.io/hexo-theme-edinburgh-demo/' +github: https://github.com/sharvaridesai/hexo-theme-edinburgh +demo: https://sharvaridesai.github.io/hexo-theme-edinburgh-demo/ author: Sharvari Desai ssg: - Hexo cms: - No Cms date: 2017-02-04T15:40:03.000Z -github_branch: master description: Beautiful minimal portfolio theme for Hexo. stale: true --- diff --git a/content/theme/hexo-theme-huweihuang.md b/content/theme/hexo-theme-huweihuang.md index 1bdd4196f..43515ac1b 100644 --- a/content/theme/hexo-theme-huweihuang.md +++ b/content/theme/hexo-theme-huweihuang.md @@ -1,14 +1,13 @@ --- title: HuWeihuang -github: 'https://github.com/huweihuang/hexo-theme-huweihuang' -demo: 'https://www.huweihuang.com/' +github: https://github.com/huweihuang/hexo-theme-huweihuang +demo: https://www.huweihuang.com/ author: huweihuang ssg: - Hexo cms: - No Cms date: 2017-10-22T03:07:50.000Z -github_branch: master description: ' Ported theme of Hux Blog by YuHsuan, Modified by Hu Weihuang' stale: true --- \ No newline at end of file diff --git a/content/theme/hexo-theme-lx.md b/content/theme/hexo-theme-lx.md index aff599674..4078c6063 100644 --- a/content/theme/hexo-theme-lx.md +++ b/content/theme/hexo-theme-lx.md @@ -1,14 +1,13 @@ --- title: Lx -github: 'https://github.com/blleng/hexo-theme-lx' -demo: 'https://lx.blleng.cn/' +github: https://github.com/blleng/hexo-theme-lx +demo: https://lx.blleng.cn/ author: Blleng ssg: - Hexo cms: - No Cms date: 2019-11-02T09:48:38.000Z -github_branch: master description: A simple & clear & elegant hexo theme stale: false --- \ No newline at end of file diff --git a/content/theme/hexo-theme-mictheme.md b/content/theme/hexo-theme-mictheme.md index 8c838d6d2..002796c34 100644 --- a/content/theme/hexo-theme-mictheme.md +++ b/content/theme/hexo-theme-mictheme.md @@ -1,14 +1,15 @@ --- title: Mic Theme -github: 'https://github.com/miccall/hexo-theme-Mic_Theme' -demo: 'https://miccall.tech/' +github: https://github.com/miccall/hexo-theme-Mic_Theme +demo: https://miccall.tech/ author: Mitro ssg: - Hexo cms: - No Cms date: 2017-05-24T13:43:59.000Z -github_branch: master description: 'hexo theme ' stale: true +disabled: true +disabled_reason: error checking demo url --- \ No newline at end of file diff --git a/content/theme/hexo-theme-minima.md b/content/theme/hexo-theme-minima.md index da4f91822..b38f3aafa 100644 --- a/content/theme/hexo-theme-minima.md +++ b/content/theme/hexo-theme-minima.md @@ -1,10 +1,9 @@ --- title: Minima -github: 'https://github.com/adisaktijrs/hexo-theme-minima' -demo: 'https://adisaktijrs.github.io/minima/' +github: https://github.com/adisaktijrs/hexo-theme-minima +demo: https://adisaktijrs.github.io/minima/ author: Adi Sakti Jrs date: 2020-10-12T00:00:00.000Z -github_branch: master ssg: - Hexo cms: diff --git a/content/theme/hexo-theme-paperwhite.md b/content/theme/hexo-theme-paperwhite.md new file mode 100644 index 000000000..81b95ed01 --- /dev/null +++ b/content/theme/hexo-theme-paperwhite.md @@ -0,0 +1,26 @@ +--- +title: "Hexo Theme Paperwhite" +github: https://github.com/aeilot/hexo-theme-paperwhite +demo: https://en.blog.aeilot.top +author: aeilot +date: 2024-08-10 +ssg: + - Hexo +cms: + - No CMS +css: + - Stylus +archetype: + - Blog +description: This is a minimalist theme built with the belief that Less is More! +--- + +# A minialist homemade theme for Hexo + +This theme is minimalist, offering a plain, simple, and visually comfortable design. It’s crafted to meet its creator's needs, featuring a clean homepage and a serif font. + +## Features + +* (Absolutely) Minimalist design +* Giscus support +* Great support for serif fonts diff --git a/content/theme/hexo-theme-phantom.md b/content/theme/hexo-theme-phantom.md index ecfabade1..ba385fc99 100644 --- a/content/theme/hexo-theme-phantom.md +++ b/content/theme/hexo-theme-phantom.md @@ -1,14 +1,13 @@ --- title: Phantom -github: 'https://github.com/klugjo/hexo-theme-phantom' -demo: 'https://www.codeblocq.com/assets/projects/hexo-theme-phantom/' +github: https://github.com/klugjo/hexo-theme-phantom +demo: https://www.codeblocq.com/assets/projects/hexo-theme-phantom/ author: Klughertz Jonathan ssg: - Hexo cms: - No Cms date: 2016-03-30T06:14:41.000Z -github_branch: master -description: 'Hexo implementation of Phantom (https://html5up.net/phantom)' +description: Hexo implementation of Phantom (https://html5up.net/phantom) stale: true --- \ No newline at end of file diff --git a/content/theme/hexo-theme-snippet.md b/content/theme/hexo-theme-snippet.md index 3b6952865..bc9494528 100644 --- a/content/theme/hexo-theme-snippet.md +++ b/content/theme/hexo-theme-snippet.md @@ -1,14 +1,13 @@ --- title: Snippet -github: 'https://github.com/shenliyang/hexo-theme-snippet' -demo: 'https://www.91h5.cc/' +github: https://github.com/shenliyang/hexo-theme-snippet +demo: https://www.91h5.cc/ author: Shenliyang ssg: - Hexo cms: - No Cms date: 2017-07-10T09:26:39.000Z -github_branch: master description: Snippet 简洁而不简单,也许是一款你寻找已久的hexo主题 stale: true --- \ No newline at end of file diff --git a/content/theme/hexo-theme-solitude.md b/content/theme/hexo-theme-solitude.md new file mode 100644 index 000000000..72c47cef5 --- /dev/null +++ b/content/theme/hexo-theme-solitude.md @@ -0,0 +1,28 @@ +--- +title: "Hexo Theme Solitude" +github: https://github.com/everfu/hexo-theme-solitude +demo: https://www.efu.me/ +author: Ever Fu +date: 2024-06-15 +ssg: + - Hexo +cms: + - No CMS +archetype: + - Blog + - Portfolio +description: An elegant Hexo theme that supports lazy loading, PWA, Latex, and multiple comment systems. +--- + +# An elegant Hexo theme + +An elegant Hexo theme that supports lazy loading, PWA, Latex, and multiple comment systems. + +## Features +* Pjax、LazyLoad、PWA. +* Comments(Twikoo、Waline、Valine、Artalk、Giscus), Can double comment. +* ColorMode. +* Lightbox(medium-zoom、fancybox). +* Mathematical formulas(Latex). +* Featured pages: Instant Short Article, My Equipment, Online Tools, Music Gallery, Friend Chain Fish Pond, Photo Album Page, Douban Page, Barrage message page. +* Article features: AI summary, code highlighting. diff --git a/content/theme/hexo-webnary-template.md b/content/theme/hexo-webnary-template.md index fddde5422..de633c126 100644 --- a/content/theme/hexo-webnary-template.md +++ b/content/theme/hexo-webnary-template.md @@ -1,10 +1,9 @@ --- title: Web-Nary -github: 'https://github.com/DFCommunity/Hexo-Web-Nary' -demo: 'https://webnary.netlify.app' +github: https://github.com/DFCommunity/Hexo-Web-Nary +demo: https://webnary.netlify.app author: BRAVO68WEB date: 2020-08-14T00:00:00.000Z -github_branch: master ssg: - Hexo cms: @@ -19,6 +18,8 @@ description: >- open online library, testimonial blogs, news article and whatever you need it for. stale: false +disabled: true +disabled_reason: 'Github repo not found, status: 404' --- # A Fully Customisable starter template for Hexo diff --git a/content/theme/hitchens.md b/content/theme/hitchens.md index 9e5b2519c..f5f97012f 100644 --- a/content/theme/hitchens.md +++ b/content/theme/hitchens.md @@ -1,12 +1,11 @@ --- title: Hitchens -github: 'https://github.com/patdryburgh/hitchens' -demo: 'https://patdryburgh.github.io/hitchens/' +github: https://github.com/patdryburgh/hitchens +demo: https://patdryburgh.github.io/hitchens/ author: Pat Dryburgh ssg: - Jekyll date: 2018-07-31T01:12:09.000Z -github_branch: master description: An inarguably well-designed Jekyll theme. View the demo at -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/hugo-aafu.md b/content/theme/hugo-aafu.md index 1ae98541a..6ab63a6b4 100644 --- a/content/theme/hugo-aafu.md +++ b/content/theme/hugo-aafu.md @@ -1,14 +1,15 @@ --- title: Aafu -github: 'https://github.com/darshanbaral/aafu' -demo: 'https://themes.gohugo.io/theme/aafu/' +github: https://github.com/darshanbaral/aafu +demo: https://themes.gohugo.io/theme/aafu/ author: Darshan Baral ssg: - Hugo cms: - No Cms date: 2019-03-10T23:26:13.000Z -github_branch: master description: Single page portfolio theme with accordion and switchable dark/light theme stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-academic.md b/content/theme/hugo-academic.md index 77fc30f77..a75d63533 100644 --- a/content/theme/hugo-academic.md +++ b/content/theme/hugo-academic.md @@ -1,15 +1,16 @@ --- title: Academic -github: 'https://github.com/gcushen/hugo-academic' -demo: 'https://academic-demo.netlify.com/' +github: https://github.com/gcushen/hugo-academic +demo: https://academic-demo.netlify.com/ author: gcushen ssg: - Hugo cms: - No Cms date: 2016-04-26T22:09:15.000Z -github_branch: master -description: "\U0001F4DD The website builder for Hugo. Build and deploy a beautiful website in minutes!" +description: >- + 📝 The website builder for Hugo. Build and deploy a beautiful website in + minutes! stale: false --- diff --git a/content/theme/hugo-adam-eve.md b/content/theme/hugo-adam-eve.md index 1c26e1b66..17abacdeb 100644 --- a/content/theme/hugo-adam-eve.md +++ b/content/theme/hugo-adam-eve.md @@ -1,14 +1,15 @@ --- title: Adam & Eve -github: 'https://github.com/blankoworld/hugo_theme_adam_eve' -demo: 'https://themes.gohugo.io/theme/hugo_theme_adam_eve/' +github: https://github.com/blankoworld/hugo_theme_adam_eve +demo: https://themes.gohugo.io/theme/hugo_theme_adam_eve/ author: Olivier DOSSMANN ssg: - Hugo cms: - No Cms date: 2017-06-21T19:35:04.000Z -github_branch: master description: Adam & Eve theme for Hugo -stale: false +stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-aerial-theme.md b/content/theme/hugo-aerial-theme.md deleted file mode 100644 index 57fbc0f18..000000000 --- a/content/theme/hugo-aerial-theme.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Aerial" -github: https://github.com/sethmacleod/aerial -demo: https://themes.gohugo.io/theme/aerial/ -author: Seth MacLeod - -ssg: - - Hugo -cms: - - No Cms -date: 2017-01-17T06:21:48Z -github_branch: master -description: "Ported theme of HTML5 UP's Aerial: a single page, single screen responsive site template." -stale: true -disabled: true ---- diff --git a/content/theme/hugo-alageek.md b/content/theme/hugo-alageek.md index b03a35823..cf141ecca 100644 --- a/content/theme/hugo-alageek.md +++ b/content/theme/hugo-alageek.md @@ -1,14 +1,13 @@ --- title: AlaGeek -github: 'https://github.com/gkmngrgn/hugo-alageek-theme' -demo: 'https://gokmengorgen.net/' +github: https://github.com/gkmngrgn/hugo-alageek-theme +demo: https://gokmengorgen.net/ author: Gökmen Görgen ssg: - Hugo cms: - No Cms date: 2018-09-08T19:32:11.000Z -github_branch: master description: >- alaGeek is an enhanced version of the Cocoa theme featuring a customizable homepage with different sections including the latest posts, syntax diff --git a/content/theme/hugo-allegiant-theme.md b/content/theme/hugo-allegiant-theme.md index 1203eb3df..2e1f4fab7 100644 --- a/content/theme/hugo-allegiant-theme.md +++ b/content/theme/hugo-allegiant-theme.md @@ -1,16 +1,17 @@ --- title: Allegiant -github: 'https://github.com/brycematheson/allegiant' -demo: 'https://themes.gohugo.io/theme/allegiant/' +github: https://github.com/brycematheson/allegiant +demo: https://themes.gohugo.io/theme/allegiant/ author: Bryce Matheson ssg: - Hugo cms: - No Cms date: 2015-11-21T18:05:54.000Z -github_branch: master description: >- A kick-ass theme for Hugo, a static-site generator, similar to Jekyll, but programmed in Go. (It's fast). stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-alpha-church.md b/content/theme/hugo-alpha-church.md index c73b16c01..ac4a705e8 100644 --- a/content/theme/hugo-alpha-church.md +++ b/content/theme/hugo-alpha-church.md @@ -1,14 +1,15 @@ --- title: Alpha Church -github: 'https://github.com/funkydan2/alpha-church' -demo: 'https://themes.gohugo.io/theme/alpha-church/' +github: https://github.com/funkydan2/alpha-church +demo: https://themes.gohugo.io/theme/alpha-church/ author: Daniel Saunders ssg: - Hugo cms: - No Cms date: 2018-04-30T04:03:34.000Z -github_branch: master description: Hugo theme for churches based on a html5up theme stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-anatole.md b/content/theme/hugo-anatole.md new file mode 100644 index 000000000..958713224 --- /dev/null +++ b/content/theme/hugo-anatole.md @@ -0,0 +1,34 @@ +--- +title: Anatole +github: https://github.com/lxndrblz/anatole +demo: https://anatole-demo.netlify.app/ +author: Alexander Bilz +date: 2021-12-26T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +archetype: + - Blog + - Portfolio +description: Anatole is a minimalist two-column Hugo theme based on farbox-theme-Anatole. +stale: false +--- + +## Features + +* Dark mode +* Multilingual +* RTL support +* Portfolio +* Post Thumbnails +* Publish posts as part of a series +* 100⁄100 Google Lighthouse score +* Support for Google Analytics +* Comments powered by Disqus, Commento or Utteranc.es +* Support for SimpleAnalytics +* Katex support +* Formspree Contact Form +* Twitter Cards support +* Open Graph support +* Custom CSS and JavaScript diff --git a/content/theme/hugo-anybodyhome-theme.md b/content/theme/hugo-anybodyhome-theme.md index 6f0ba7f30..d6f070c61 100644 --- a/content/theme/hugo-anybodyhome-theme.md +++ b/content/theme/hugo-anybodyhome-theme.md @@ -1,14 +1,15 @@ --- title: Anybody Home -github: 'https://github.com/lasseborly/anybodyhome' -demo: 'https://themes.gohugo.io/theme/anybodyhome/' +github: https://github.com/lasseborly/anybodyhome +demo: https://themes.gohugo.io/theme/anybodyhome/ author: Lasse Borly ssg: - Hugo cms: - No Cms date: 2016-08-31T14:03:59.000Z -github_branch: master description: A simple theme for simple people stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-apps-theme.md b/content/theme/hugo-apps-theme.md index ccf9cd443..ca421bd4e 100644 --- a/content/theme/hugo-apps-theme.md +++ b/content/theme/hugo-apps-theme.md @@ -1,14 +1,15 @@ --- title: Hugo Apps Theme -github: 'https://github.com/gonapps-org/hugo-apps-theme' -demo: 'https://themes.gohugo.io/theme/hugo-apps-theme/' +github: https://github.com/gonapps-org/hugo-apps-theme +demo: https://themes.gohugo.io/theme/hugo-apps-theme/ author: Byeonggon Lee ssg: - Hugo cms: - No Cms date: 2018-10-28T08:09:14.000Z -github_branch: master description: Hugo Apps Theme -stale: false +stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-appyness-theme.md b/content/theme/hugo-appyness-theme.md deleted file mode 100644 index 3ceae49e8..000000000 --- a/content/theme/hugo-appyness-theme.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: Appyness -github: 'https://github.com/uicardiodev/hugo-appyness' -demo: 'https://themes.gohugo.io/theme/hugo-appyness/' -author: UICardio -ssg: - - Hugo -cms: - - No Cms -date: 2019-03-07T00:00:00.000Z -github_branch: master -description: Responsive Hugo theme to show case your app -disabled: true -disabled_reason: Not Found ---- - - -# Testing the scene - -this is a paragraph diff --git a/content/theme/hugo-apsho.md b/content/theme/hugo-apsho.md new file mode 100644 index 000000000..941c0fe87 --- /dev/null +++ b/content/theme/hugo-apsho.md @@ -0,0 +1,33 @@ +--- +title: Apsho Hugo +github: https://github.com/StaticMania/hugo-apsho +demo: https://apsho.staticmania.com/ +author: StaticMania +date: 2022-04-07T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +css: + - Bootstrap +archetype: + - Business +description: >- + Apsho Hugo – App Landing Page is the perfect app showcase Hugo Theme. Apsho is + a better way to present your modern business and app showcasing. It’s easy to + customize and also well documented. And compatible with Desktop, laptop, + mobile, and also compatible with major browsers. We follow the modern design + system to craft the template. +stale: false +--- + +## Features + +* Responsive Ready. +* Powered by Bootstrap 4. +* Blog Support. +* Well formatted code. +* Easy Customization. +* Formspree Contact form. +* Google Analytics. +* Crafted for Personal Portfolio diff --git a/content/theme/hugo-arabica.md b/content/theme/hugo-arabica.md index 4006efef9..6f192ec94 100644 --- a/content/theme/hugo-arabica.md +++ b/content/theme/hugo-arabica.md @@ -1,14 +1,15 @@ --- title: Arabica -github: 'https://github.com/nirocfz/arabica' -demo: 'https://arabica.netlify.com/' +github: https://github.com/nirocfz/arabica +demo: https://arabica.netlify.com/ author: Chen Fangzhou ssg: - Hugo cms: - No Cms date: 2018-09-11T05:31:47.000Z -github_branch: master description: A port of the Ghost arabica theme for Hugo -stale: true +stale: false +disabled: true +disabled_reason: error checking demo url --- diff --git a/content/theme/hugo-artists-theme.md b/content/theme/hugo-artists-theme.md index 71651c884..cfff360c3 100644 --- a/content/theme/hugo-artists-theme.md +++ b/content/theme/hugo-artists-theme.md @@ -1,16 +1,15 @@ --- title: Artists -github: 'https://github.com/digitalcraftsman/hugo-artists-theme' -demo: 'https://themes.gohugo.io/theme/artists/' +github: https://github.com/digitalcraftsman/hugo-artists-theme +demo: https://themes.gohugo.io/theme/artists/ author: digitalcraftsman ssg: - Hugo cms: - No Cms date: 2015-06-16T17:22:06.000Z -github_branch: master description: Port of Travis Neilson's (DevTips) awesome Artists Theme to Hugo -stale: false -disabled: true +stale: true disabled_reason: demo url not found +disabled: true --- diff --git a/content/theme/hugo-assembly-theme.md b/content/theme/hugo-assembly-theme.md index 1cc2ebef3..f87e97c64 100644 --- a/content/theme/hugo-assembly-theme.md +++ b/content/theme/hugo-assembly-theme.md @@ -1,14 +1,15 @@ --- title: Hugo Assembly -github: 'https://github.com/salsysd/hugo-assembly' -demo: 'https://themes.gohugo.io/theme/hugo-assembly/' +github: https://github.com/salsysd/hugo-assembly +demo: https://themes.gohugo.io/theme/hugo-assembly/ author: Salomon Valverde ssg: - Hugo cms: - No Cms date: 2018-06-30T06:36:45.000Z -github_branch: master description: Assembly - a hugo theme stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-atlantic.md b/content/theme/hugo-atlantic.md new file mode 100644 index 000000000..93962479b --- /dev/null +++ b/content/theme/hugo-atlantic.md @@ -0,0 +1,46 @@ +--- +title: Hugo Atlantic Tailwind Blog +date: 2022-03-21T00:00:00.000Z +github: https://github.com/zerostaticthemes/hugo-atlantic-theme +demo: https://hugo-atlantic.netlify.app/ +author: Robert Austin +ssg: + - Hugo +cms: + - No Cms +css: + - Tailwind +archetype: + - Blog +description: Hugo Atlantic is a Tailwind 3 blog theme +stale: false +--- + +# Hugo Atlantic - Hugo Tailwind 3 Theme + +Atlantic is a clean and modern Tailwind 3 theme for Hugo. + +[Live Demo](https://hugo-atlantic.netlify.app/) | +[Zerostatic Themes](https://www.zerostatic.io/) + +![Hugo Atlantic Theme screenshot](https://www.zerostatic.io/theme/hugo-atlantic/hugo-atlantic-screenshot.png) + +## Features + + +- [Tailwind CSS v3](https://tailwindcss.com/docs) +- [PostCSS v8](https://postcss.org/) +- Uses PostCSS with `postcss-import` and `postcss-nested` +- Full Hugo blog functionality +- Beautfifuly designed responsive blog and post layouts +- Blog categories +- Blog pagination +- Responsive design +- Responsive menu +- 100/100 Google Lighthouse speed score ⚡ +- 100/100 Google Lighthouse seo score 🏆 +- 94/100 Google Lighthouse accessibility score (but this is just because of the green text color contrast) +- Page size is 8.7kB without images. You could load this site on a 56k modem in 1.5 seconds. +- Robust example content included +- Royalty free illustrations included +- Netlify ready - `netlify.toml` included diff --git a/content/theme/hugo-ava.md b/content/theme/hugo-ava.md new file mode 100644 index 000000000..721ca8c7e --- /dev/null +++ b/content/theme/hugo-ava.md @@ -0,0 +1,30 @@ +--- +title: Ava +github: https://github.com/jmau111/hugo-theme-ava +demo: https://demos.julien-maury.dev/hugo-theme-ava/ +author: Julien Maury +date: 2021-08-10T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +archetype: + - Blog +description: Ava is a light theme for your blog with essential features you might dig in. +stale: false +disabled: true +disabled_reason: demo url not found +--- + +# A simple theme for blogging with Hugo + +This theme is a very lightweight blog but with frequently needed features, such as dark mode toggle and SEO meta tags. It also gives you a starting point to extend it for yourself. + +## Features + +* SEO-oriented +* Dark/light mode with no Flash of inAccurate coloR (no FART ^^) +* Syntax highlighting with Chroma (no additional JavaScript) +* Progressively enhanced, semantic and accessible +* Automatic CSS prefix + diff --git a/content/theme/hugo-avicenna.md b/content/theme/hugo-avicenna.md index a9155316d..d06788b58 100644 --- a/content/theme/hugo-avicenna.md +++ b/content/theme/hugo-avicenna.md @@ -1,14 +1,15 @@ --- title: Avicenna -github: 'https://github.com/hadisinaee/avicenna' -demo: 'https://themes.gohugo.io/theme/avicenna/' +github: https://github.com/hadisinaee/avicenna +demo: https://themes.gohugo.io/theme/avicenna/ author: Hadi Sinaee ssg: - Hugo cms: - No Cms date: 2019-06-29T12:33:47.000Z -github_branch: develop description: a minimal academic page for hugo -stale: true +stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-bare-min-theme.md b/content/theme/hugo-bare-min-theme.md index 0349a165d..ca3afd620 100644 --- a/content/theme/hugo-bare-min-theme.md +++ b/content/theme/hugo-bare-min-theme.md @@ -1,14 +1,13 @@ --- title: Bare Min -github: 'https://github.com/kaushalmodi/hugo-bare-min-theme' -demo: 'https://hugo-bare-min.netlify.com/' +github: https://github.com/kaushalmodi/hugo-bare-min-theme +demo: https://hugo-bare-min.netlify.com/ author: Kaushal Modi ssg: - Hugo cms: - No Cms date: 2018-01-29T21:33:59.000Z -github_branch: master description: >- A bare minimum theme for Hugo (https://gohugo.io) to help develop and debug Hugo sites -- https://hugo-bare-min.netlify.com/, diff --git a/content/theme/hugo-base16-theme.md b/content/theme/hugo-base16-theme.md index d035a05d6..172aa87e8 100644 --- a/content/theme/hugo-base16-theme.md +++ b/content/theme/hugo-base16-theme.md @@ -1,14 +1,15 @@ --- title: Base16 -github: 'https://github.com/htdvisser/hugo-base16-theme' -demo: 'https://themes.gohugo.io/theme/base16/' +github: https://github.com/htdvisser/hugo-base16-theme +demo: https://themes.gohugo.io/theme/base16/ author: Hylke Visser ssg: - Hugo cms: - No Cms date: 2015-12-09T16:01:53.000Z -github_branch: master description: Hugo theme with base16 eighties colorscheme stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-beautifulhugo.md b/content/theme/hugo-beautifulhugo.md index 0f0aaa750..906e6f139 100644 --- a/content/theme/hugo-beautifulhugo.md +++ b/content/theme/hugo-beautifulhugo.md @@ -1,14 +1,15 @@ --- title: Beautiful Hugo -github: 'https://github.com/halogenica/beautifulhugo' -demo: 'https://themes.gohugo.io/theme/beautifulhugo/' +github: https://github.com/halogenica/beautifulhugo +demo: https://themes.gohugo.io/theme/beautifulhugo/ author: Michael Romero ssg: - Hugo cms: - No Cms date: 2016-03-08T10:44:16.000Z -github_branch: master description: Theme for the Hugo static website generator stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-beyondnothing.md b/content/theme/hugo-beyondnothing.md index ab056264b..9378d3915 100644 --- a/content/theme/hugo-beyondnothing.md +++ b/content/theme/hugo-beyondnothing.md @@ -1,14 +1,15 @@ --- title: BeyondNothing -github: 'https://github.com/salcan/BeyondNothing' -demo: 'https://themes.gohugo.io/theme/BeyondNothing/' +github: https://github.com/salcan/BeyondNothing +demo: https://themes.gohugo.io/theme/BeyondNothing/ author: Sal Cangeloso ssg: - Hugo cms: - No Cms date: 2018-06-03T01:57:33.000Z -github_branch: master description: Hugo Theme stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-bilberry-theme.md b/content/theme/hugo-bilberry-theme.md deleted file mode 100644 index 8df799be0..000000000 --- a/content/theme/hugo-bilberry-theme.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: Bilberry -github: 'https://github.com/Lednerb/bilberry-hugo-theme' -demo: 'https://lednerb.github.io/bilberry-hugo-theme/' -author: Sascha Brendel -ssg: - - Hugo -cms: - - No Cms -date: 2017-10-27T02:20:38.000Z -github_branch: master -description: 'Premium theme for the hugo site builder. DEMO:' -stale: false ---- diff --git a/content/theme/hugo-binario.md b/content/theme/hugo-binario.md index 2b2e7be11..2be09d613 100644 --- a/content/theme/hugo-binario.md +++ b/content/theme/hugo-binario.md @@ -1,14 +1,15 @@ --- title: Binario -github: 'https://github.com/Vimux/Binario' -demo: 'https://themes.gohugo.io/theme/binario/' +github: https://github.com/Vimux/Binario +demo: https://themes.gohugo.io/theme/binario/ author: Vimux ssg: - Hugo cms: - No Cms date: 2018-04-27T06:39:54.000Z -github_branch: master description: Responsive card-based & code-light Hugo theme stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-bingo-theme.md b/content/theme/hugo-bingo-theme.md index 802cbced5..3ae8567ce 100644 --- a/content/theme/hugo-bingo-theme.md +++ b/content/theme/hugo-bingo-theme.md @@ -1,14 +1,15 @@ --- title: Bingo -github: 'https://github.com/gundamew/hugo-bingo' -demo: 'https://themes.gohugo.io/theme/hugo-bingo/' +github: https://github.com/gundamew/hugo-bingo +demo: https://themes.gohugo.io/theme/hugo-bingo/ author: Bing-Sheng Chen ssg: - Hugo cms: - No Cms date: 2018-07-01T07:40:12.000Z -github_branch: master description: Nothing but texts. -stale: true +stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-black-and-light-theme.md b/content/theme/hugo-black-and-light-theme.md index b1e095439..a859b69cf 100644 --- a/content/theme/hugo-black-and-light-theme.md +++ b/content/theme/hugo-black-and-light-theme.md @@ -1,13 +1,14 @@ --- title: Black & Light -github: 'https://github.com/davidhampgonsalves/hugo-black-and-light-theme' -demo: 'https://themes.gohugo.io//theme/black-and-light/' +github: https://github.com/davidhampgonsalves/hugo-black-and-light-theme +demo: https://themes.gohugo.io//theme/black-and-light/ author: David Hamp-Gonsalves ssg: - Hugo cms: - No Cms date: 2017-01-10T01:03:05.000Z -github_branch: master -stale: false +stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-blank.md b/content/theme/hugo-blank.md index f6ea29581..3682f6708 100644 --- a/content/theme/hugo-blank.md +++ b/content/theme/hugo-blank.md @@ -1,14 +1,15 @@ --- title: Blank -github: 'https://github.com/vimux/blank' -demo: 'https://themes.gohugo.io/theme/blank/' +github: https://github.com/vimux/blank +demo: https://themes.gohugo.io/theme/blank/ author: Vimux ssg: - Hugo cms: - No Cms date: 2016-10-14T20:36:04.000Z -github_branch: master description: Starter Hugo theme for use as a template for building custom themes -stale: true +stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-blist.md b/content/theme/hugo-blist.md new file mode 100644 index 000000000..797000540 --- /dev/null +++ b/content/theme/hugo-blist.md @@ -0,0 +1,31 @@ +--- +title: Blist +github: https://github.com/apvarun/blist-hugo-theme +demo: https://blist.vercel.app/ +author: Varun A P +date: 2021-07-17T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +css: + - Tailwind +archetype: + - Blog + - Personal +description: Blist is a clean and fast blog theme for your Hugo site. +stale: false +--- + +# Blist is a clean and fast blog theme for your Hugo site. + +This is a hugo theme for creating a performant and SEO-optimzied personal blog. + +## Features: + +- Responsive content +- Blog pagination +- Text Search +- Social links +- Dark mode +- Fast performance diff --git a/content/theme/hugo-blog-awesome.md b/content/theme/hugo-blog-awesome.md new file mode 100644 index 000000000..deb499729 --- /dev/null +++ b/content/theme/hugo-blog-awesome.md @@ -0,0 +1,282 @@ +--- +title: Hugo blog awesome +github: https://github.com/hugo-sid/hugo-blog-awesome +demo: https://hba.sid.one/ +author: Sidharth R +date: 2023-02-15T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +css: + - SCSS +archetype: + - Blog + - Portfolio +description: Fast, minimal blog with dark mode support. +--- + +
+ + + + Hashnode logo + + +
+

Hugo Blog Awesome | Demo

+ +

⚡ Fast | 📰 Clean UI | 🌙 Dark mode support | 📱 Responsive design

+ +## Screenshots + +| Dark mode | Light mode | +| --- | --- | +| ![Dark mode](https://raw.githubusercontent.com/hugo-sid/hugo-blog-awesome/master/images/dark.png) | ![Light mode](https://raw.githubusercontent.com/hugo-sid/hugo-blog-awesome/master/images/light.png) | + +
+ Page speed score (click to expand) + +![Page speed score](https://raw.githubusercontent.com/hugo-sid/hugo-blog-awesome/master/images/pagespeed.png) + +Google PageSpeed Insights [test link](https://pagespeed.web.dev/report?url=https%3A%2F%2Fhugo-blog-awesome.netlify.app%2F). + +
+ +## Why this theme? + +Hugo Blog Awesome is a theme crafted to capture your readers' attention. + +Additionally, it's fast, [privacy-conscious](https://themarkup.org/blacklight?url=hba.sid.one), and comes with no external dependencies. That's right. There are no Google fonts, icon packs, or JavaScript frameworks. No trackers or ads to bloat your website. + +Its focus on minimalism and clean UI ensures that your content takes the spotlight. This, coupled with the support for dark mode, provides a stress-free (on the eyes) reading experience for your audience. + +Built with Hugo, SCSS, and vanilla JavaScript. + +## Features + +- Minimal design +- Responsive design +- Light and dark modes +- Syntax highlighting +- RSS feed +- No jQuery, Bootstrap +- 100/100 Google PageSpeed Insights [score](https://pagespeed.web.dev/report?url=https%3A%2F%2Fhugo-blog-awesome.netlify.app%2F) on all 4 metrics + +## Setup + +> **Note**: You need to have the Hugo extended version installed in order to use this theme. This theme uses SCSS for styling. With the Hugo extended version, SCSS can be compiled to CSS without any additional tools. + +To create a new Hugo site with this theme, run the following command: + + hugo new site myblog + +Then, clone this repository into the `themes` directory of your new site: + + cd myblog + git clone https://github.com/hugo-sid/hugo-blog-awesome.git themes/hugo-blog-awesome + +To preview the theme with example content, run the following command from the `exampleSite` directory: + + hugo server --themesDir ../.. + +## Usage + +To use this theme, set the `theme` variable in your site's `config.toml` to `hugo-blog-awesome`: + + theme = "hugo-blog-awesome" + +## Configuration + +You can take a look at the `config.toml` file in the `exampleSite` directory for an example configuration. +It is recommended that you copy the `config.toml` file from the `exampleSite` directory to the root directory of your Hugo site. You can then edit the `config.toml` file to suit your needs. + +### Adding favicon + +I used [realfavicongenerator.net](https://realfavicongenerator.net/) to generate the favicons. You can place the resulting files in the `assets\icons` folder. That should get your favicon working. + +If you want to customize anything further, you can modify `layouts\partials\head.html`. + +### Adding Social icons + +Social icons can be added by congifuring `config.toml` file in the following manner. + +```toml +[[params.socialIcons]] +name = "github" +url = "https://github.com/hugo-sid" + +[[params.socialIcons]] +name = "twitter" +url = "https://twitter.com" + +[[params.socialIcons]] +name = "Rss" +url = "index.xml" +``` + +
+ List of available icons (click to expand) + +| Name | Platform | +| --------------- | ------------------------------- | +| `123rf` | 123rf.com | +| `adobestock` | stock.adobe.com | +| `applemusic` | music.apple.com | +| `behance` | behance.net | +| `bilibili` | bilibili.com | +| `bitcoin` | - | +| `buymeacoffee` | buymeacoffee.com | +| `codepen` | codepen.io | +| `cryptohack` | cryptohack.org | +| `ctftime` | ctftime.org | +| `cv` | - | +| `deezer` | deezer.com | +| `dev` | dev.to | +| `discogs` | discogs.com | +| `discord` | discord.com | +| `dreamstime` | dreamstime.com | +| `dribbble` | dribbble.com | +| `email` | - | +| `facebook` | facebook.com | +| `flickr` | flickr.com | +| `freepik` | freepik.com | +| `gitea` | gitea.io | +| `github` | github.com | +| `gitlab` | gitlab.com | +| `goodreads` | goodreads.com | +| `googlescholar` | scholar.google.com | +| `guruShots` | gurushots.com | +| `hackerone` | hackerone.com | +| `hackerrank` | hackerrank.com | +| `hackthebox` | hackthebox.eu | +| `instagram` | instagram.com | +| `itchio` | itch.io | +| `kaggle` | - | +| `kakaotalk` | kakaocorp.com/service/KakaoTalk | +| `key` | - | +| `keybase` | keybase.io | +| `kofi` | ko-fi.com | +| `komoot` | - | +| `lastfm` | last.fm | +| `letterboxd` | - | +| `liberapay` | liberapay.com | +| `linkedin` | linkedin.com | +| `mastodon` | mastodon.social | +| `matrix` | matrix.org | +| `medium` | medium.com | +| `monero` | - | +| `mixcloud` | mixcloud.com | +| `nuget` | nuget.org | +| `paypal` | paypal.com | +| `peertube` | - | +| `pgp` | - | +| `phone` | - | +| `ploywork` | ploywork.com | +| `qq` | qq.com | +| `reddit` | reddit.com | +| `researchgate` | researchgate.net | +| `rss` | - | +| `serverfault` | serverfault.com | +| `soundcloud` | soundcloud.com | +| `shutterstock` | shutterstock.com | +| `slack` | slack.com | +| `snapchat` | snapchat.com/add | +| `spotify` | spotify.com | +| `stackoverflow` | stackoverflow.com | +| `steam` | steampowered.com | +| `strava` | strava.com | +| `telegram` | telegram.org | +| `tiktok` | tiktok.com | +| `twitch` | twitch.tv | +| `twitter` | twitter.com | +| `unsplash` | unsplash.com | +| `xda` | xda-developers.com | +| `xing` | xing.com | +| `ycombinator` | ycombinator.com | +| `youtube` | youtube.com | +| `other` | - | + +
+ +If you are trying to add an icon that is not listed above, you can modify `layouts\partials\svgs\svgs.html` to include your icon (SVG). You are encouraged to submit your icon by creating a pull request, so that others can benefit. + +### Enable go to top button + +To enable go to top button on blog posts, set `goToTop` to `true` in `config.toml` file. + +```toml +[params] + goToTop = true +``` + +## Content + +### Posts + +To create a new post, run the following command: + + hugo new posts/my-first-post.md + +Then, edit the `my-first-post.md` file to suit your needs. + +### Comments + +To enable Disqus comments, set `disqusShortname` in your site's `config.toml`. + +To use another comments system, provide your own `comments.html` partial in `layouts\partials\comments.html`. + +## Contributing + +Please read [CONTRIBUTING.md](https://github.com/hugo-sid/hugo-blog-awesome/blob/main/CONTRIBUTING.md). + +## Contributors + +Thanks to these wonderful people for contributing to Hugo blog awesome: + + + + + +## Websites using this theme + +If you are using this theme for any website, feel free to list the website here. You can submit a pull request (PR) to include your website. + +- +- +- +- +- +- +- +- +- +- +- +- + +## Support + +Don't forget to ⭐️ the repo if you liked this theme! + +Buy Me a Coffee at ko-fi.com + +## Credits + +The social icons are made possible thanks to [Aditya Telange](https://github.com/adityatelange)'s [hugo-PaperMod](https://github.com/adityatelange/hugo-PaperMod) theme. + +Thanks to [piharpi](https://harpi.me/) for creating the [Jekyll klise theme](https://github.com/piharpi/jekyll-klise). It served as an inspiration to create this Hugo theme. + +## License + +This theme is released under the MIT license. For more information read the [License](https://github.com/hugo-sid/hugo-blog-awesome/blob/main/LICENSE). + +## Stats + +### Visitors + +[![Visitors](https://api.visitorbadge.io/api/visitors?path=https%3A%2F%2Fgithub.com%2Fhugo-sid%2Fhugo-blog-awesome&countColor=%2337d67a&style=flat)](https://visitorbadge.io/status?path=https%3A%2F%2Fgithub.com%2Fhugo-sid%2Fhugo-blog-awesome) + +### Star History + +[![Star History Chart](https://api.star-history.com/svg?repos=hugo-sid/hugo-blog-awesome&type=Date)](https://star-history.com/#hugo-sid/hugo-blog-awesome&Date) diff --git a/content/theme/hugo-blog-jeffprod.md b/content/theme/hugo-blog-jeffprod.md index ae9162bf5..fab12cec8 100644 --- a/content/theme/hugo-blog-jeffprod.md +++ b/content/theme/hugo-blog-jeffprod.md @@ -1,16 +1,17 @@ --- title: Jeffprod -github: 'https://github.com/Tazeg/hugo-blog-jeffprod' -demo: 'https://themes.gohugo.io/theme/hugo-blog-jeffprod/' +github: https://github.com/Tazeg/hugo-blog-jeffprod +demo: https://themes.gohugo.io/theme/hugo-blog-jeffprod/ author: JeffProd ssg: - Hugo cms: - No Cms date: 2018-08-10T21:13:26.000Z -github_branch: master description: >- A free blog theme for HUGO (https://gohugo.io/), with tags, archives, last posts... -stale: false +stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-book.md b/content/theme/hugo-book.md index 4f6696713..0ad21adfb 100644 --- a/content/theme/hugo-book.md +++ b/content/theme/hugo-book.md @@ -1,14 +1,15 @@ --- title: Book -github: 'https://github.com/alex-shpak/hugo-book' -demo: 'https://themes.gohugo.io/theme/hugo-book/' +github: https://github.com/alex-shpak/hugo-book +demo: https://hugo-book-demo.netlify.app/ author: Alex Shpak ssg: - Hugo cms: - No Cms date: 2018-09-05T14:21:31.000Z -github_branch: master description: Hugo documentation theme as simple as plain book stale: false +disabled: false +disabled_reason: null --- diff --git a/content/theme/hugo-bootstrap-bp-startpage.md b/content/theme/hugo-bootstrap-bp-startpage.md index df01c3022..e9b7a7646 100644 --- a/content/theme/hugo-bootstrap-bp-startpage.md +++ b/content/theme/hugo-bootstrap-bp-startpage.md @@ -1,16 +1,17 @@ --- title: Bootstrap-BP-Startpage -github: 'https://github.com/spech66/bootstrap-bp-hugo-startpage' -demo: 'https://themes.gohugo.io/theme/bootstrap-bp-hugo-startpage/' +github: https://github.com/spech66/bootstrap-bp-hugo-startpage +demo: https://themes.gohugo.io/theme/bootstrap-bp-hugo-startpage/ author: Sebastian Pech ssg: - Hugo cms: - No Cms date: 2019-07-22T09:15:15.000Z -github_branch: master description: >- Bootstrap based Hugo startpage theme which provides out of the box best practices. stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-bootstrap-bp.md b/content/theme/hugo-bootstrap-bp.md index e38eb89ea..039522dd5 100644 --- a/content/theme/hugo-bootstrap-bp.md +++ b/content/theme/hugo-bootstrap-bp.md @@ -1,14 +1,15 @@ --- title: Bootstrap-BP -github: 'https://github.com/spech66/bootstrap-bp-hugo-theme' -demo: 'https://themes.gohugo.io/theme/bootstrap-bp-hugo-theme/' +github: https://github.com/spech66/bootstrap-bp-hugo-theme +demo: https://themes.gohugo.io/theme/bootstrap-bp-hugo-theme/ author: Sebastian Pech ssg: - Hugo cms: - No Cms date: 2018-10-27T19:44:58.000Z -github_branch: master description: Bootstrap based Hugo theme which provides out of the box best practices. stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-bootstrap.md b/content/theme/hugo-bootstrap.md new file mode 100644 index 000000000..7b504a034 --- /dev/null +++ b/content/theme/hugo-bootstrap.md @@ -0,0 +1,62 @@ +--- +title: Hugo Bootstrap Theme +github: https://github.com/razonyang/hugo-theme-bootstrap +demo: https://hugo-theme-bootstrap.netlify.app/ +author: razonyang +date: 2021-07-26T00:00:00.000Z +ssg: + - Hugo +css: + - Bootstrap +cms: + - No CMS +archetype: + - Blog +description: An extreme fast, responsive and feature-rich blog theme for Hugo. +stale: false +--- + +[English](https://github.com/razonyang/hugo-theme-bootstrap/blob/master/README.md) · +[简体中文](https://github.com/razonyang/hugo-theme-bootstrap/blob/master/README.zh-CN.md) · +[繁體中文](https://github.com/razonyang/hugo-theme-bootstrap/blob/master/README.zh-TW.md) + +## Screenshots + +![Screenshot](https://raw.githubusercontent.com/razonyang/hugo-theme-bootstrap/master/images/screenshot.png) + +**Dark Mode** + +![Screenshot in Dark Mode](https://raw.githubusercontent.com/razonyang/hugo-theme-bootstrap/master/images/screenshot-dark.png) + +## Live Preview + +- https://hugo-theme-bootstrap.netlify.app/ - Deploy on Netlify. +- https://hugo-theme-bootstrap.razonyang.com/ - A self-hosted server located in Asia. + +There is also a [list of websites that use this theme](https://github.com/razonyang/hugo-theme-bootstrap/blob/master/USERS.md). + +## Features + +- Extreme Fast: [Google PageSpeed Insights](https://developers.google.com/speed/pagespeed/insights/?url=https://hugo-theme-bootstrap.netlify.app/en/)'s score `95-100`. +- Built on top of [Bootstrap 5](https://getbootstrap.com/). +- Responsive. +- Various Palettes: `blue`, `blue-gray`, `brown`, `cyan`, `green`, `indigo`, `orange`, `pink`, `purple`, `red`, `teal`, `yellow`. +- [Highly Configurable](#configuration). +- Dark Mode Switcher. +- Font Size Switcher. +- Multilingual(I18N). +- Search. +- Breadcrumb. +- Archive. +- [Syntax Highlighting](#syntax-highlighting) +- Resources Lazy Loading: `image` and `iframe`. +- Reward Widget: supports Alipay and Wechat. +- Table of Contents. +- Share Buttons: supports [AddThis](https://www.addthis.com). +- [Comments](#comments): supports [Disqus](#disqus) and [Utterances](#utterances). +- [Custom Assets](#custom-assets): custom CSS and JS. +- [Hooks](#hooks): provides ability to add custom code in page, such as `head`, `body`, `sidebar` etc. +- [Social Links](#social-links). +- [Various Shortcodes](#shortcodes). +- [Twitter Cards](https://gohugo.io/templates/internal/#configure-twitter-cards) and [Open Graph](https://gohugo.io/templates/internal/#configure-open-graph). +- [Creative Commons License](https://creativecommons.org/licenses/) diff --git a/content/theme/hugo-bootstrap4-theme.md b/content/theme/hugo-bootstrap4-theme.md index ea0d5e6fc..70fc678fa 100644 --- a/content/theme/hugo-bootstrap4-theme.md +++ b/content/theme/hugo-bootstrap4-theme.md @@ -1,14 +1,15 @@ --- title: Hugo Bootstrap4 -github: 'https://github.com/mmrath/hugo-bootstrap' -demo: 'https://themes.gohugo.io//theme/hugo-bootstrap4/' +github: https://github.com/mmrath/hugo-bootstrap +demo: https://themes.gohugo.io//theme/hugo-bootstrap4/ author: Murali Rath ssg: - Hugo cms: - No Cms date: 2015-10-27T13:16:12.000Z -github_branch: master description: Bootstrap theme for Hugo stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-bulma-theme.md b/content/theme/hugo-bulma-theme.md index 99decfcf4..56e03af31 100644 --- a/content/theme/hugo-bulma-theme.md +++ b/content/theme/hugo-bulma-theme.md @@ -1,18 +1,17 @@ --- title: Hugo Bulma -github: 'https://github.com/jeblister/bulma' -demo: 'https://themes.gohugo.io/theme/bulma/' +github: https://github.com/jeblister/bulma +demo: https://themes.gohugo.io/theme/bulma/ author: Mohamed ssg: - Hugo cms: - No Cms date: 2017-04-03T18:38:58.000Z -github_branch: master 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!. stale: true -disabled: true disabled_reason: demo url not found +disabled: true --- diff --git a/content/theme/hugo-cactus-theme.md b/content/theme/hugo-cactus-theme.md index ad607764e..e99468f29 100644 --- a/content/theme/hugo-cactus-theme.md +++ b/content/theme/hugo-cactus-theme.md @@ -1,16 +1,15 @@ --- title: Cactus -github: 'https://github.com/digitalcraftsman/hugo-cactus-theme' -demo: 'https://themes.gohugo.io/theme/cactus/' +github: https://github.com/digitalcraftsman/hugo-cactus-theme +demo: https://themes.gohugo.io/theme/cactus/ author: digitalcraftsman ssg: - Hugo cms: - No Cms date: 2015-06-18T16:26:37.000Z -github_branch: master description: Port of Nick Balestra's Cactus theme to Hugo. -stale: false -disabled: true +stale: true disabled_reason: demo url not found +disabled: true --- diff --git a/content/theme/hugo-capsule.md b/content/theme/hugo-capsule.md index 009ea2531..cf493fdce 100644 --- a/content/theme/hugo-capsule.md +++ b/content/theme/hugo-capsule.md @@ -1,7 +1,7 @@ --- title: Capsule -github: 'https://github.com/sudorook/capsule' -demo: 'https://themes.gohugo.io/theme/capsule/' +github: https://github.com/sudorook/capsule +demo: https://themes.gohugo.io/theme/capsule/ author: sudorook ssg: - Hugo @@ -10,7 +10,8 @@ cms: css: - Bulma date: 2017-09-30T15:29:45.000Z -github_branch: master description: A Hugo theme based on the CSS-only Bulma framework. stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-cards-theme.md b/content/theme/hugo-cards-theme.md index d74f36d18..c93f0966c 100644 --- a/content/theme/hugo-cards-theme.md +++ b/content/theme/hugo-cards-theme.md @@ -1,14 +1,15 @@ --- title: Hugo Cards -github: 'https://github.com/bul-ikana/hugo-cards' -demo: 'https://themes.gohugo.io/theme/hugo-cards/' +github: https://github.com/bul-ikana/hugo-cards +demo: https://themes.gohugo.io/theme/hugo-cards/ author: Hugo Aguirre ssg: - Hugo cms: - No Cms date: 2018-09-29T23:11:06.000Z -github_branch: master description: A bootstrap based minimal hugo theme based on webjeda-cards stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-cayman-theme.md b/content/theme/hugo-cayman-theme.md index ece1841a0..d03b9dda8 100644 --- a/content/theme/hugo-cayman-theme.md +++ b/content/theme/hugo-cayman-theme.md @@ -1,14 +1,13 @@ --- title: Cayman -github: 'https://github.com/zwbetz-gh/cayman-hugo-theme' -demo: 'https://cayman-hugo-theme.netlify.com/' +github: https://github.com/zwbetz-gh/cayman-hugo-theme +demo: https://cayman-hugo-theme.netlify.com/ author: Zachary Betz ssg: - Hugo cms: - No Cms date: 2019-03-26T19:37:52.000Z -github_branch: master description: >- Cayman is a clean, responsive theme for Hugo, ported from the original Jekyll Cayman Theme. diff --git a/content/theme/hugo-changelog-theme.md b/content/theme/hugo-changelog-theme.md index 1774898ef..85d54ebff 100644 --- a/content/theme/hugo-changelog-theme.md +++ b/content/theme/hugo-changelog-theme.md @@ -1,14 +1,15 @@ --- title: Changelog -github: 'https://github.com/jsnjack/hugo-changelog-theme' -demo: 'https://themes.gohugo.io/theme/hugo-changelog-theme/' +github: https://github.com/jsnjack/hugo-changelog-theme +demo: https://themes.gohugo.io/theme/hugo-changelog-theme/ author: Yauhen Shulitski ssg: - Hugo cms: - No Cms date: 2018-09-02T19:35:09.000Z -github_branch: master description: A Hugo changelog theme stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-chowdown-theme.md b/content/theme/hugo-chowdown-theme.md index 0d204f897..8e9bea075 100644 --- a/content/theme/hugo-chowdown-theme.md +++ b/content/theme/hugo-chowdown-theme.md @@ -1,14 +1,13 @@ --- title: GoChowdown -github: 'https://github.com/seanlane/gochowdown' -demo: 'https://chowdown.io/' +github: https://github.com/seanlane/gochowdown +demo: https://chowdown.io/ author: Sean Lane ssg: - Hugo cms: - No Cms date: 2019-01-20T22:05:30.000Z -github_branch: master description: Hugo theme based on the Jekyll chowdown theme stale: false --- diff --git a/content/theme/hugo-chringel.md b/content/theme/hugo-chringel.md new file mode 100644 index 000000000..61d4e4987 --- /dev/null +++ b/content/theme/hugo-chringel.md @@ -0,0 +1,34 @@ +--- +title: chringel +github: https://github.com/chringel21/chringel-hugo-theme +demo: https://chringel21.github.io/chringel-hugo-theme/ +author: Christian Engel +date: 2022-03-22T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +css: + - Tailwind +archetype: + - Blog +description: Privacy focused theme for Hugo using TailwindCSS +stale: false +--- + +# Privacy focused theme for Hugo 🕵️ + +This theme was created with privacy in mind. By default, Disqus and Google Analytics are disabled, but you are free to use them, if you want. Instead this theme comes with configuration options for [Isso](https://posativ.org/isso/) and [umami](https://umami.is/). + +## Features + +* 🌝 /🌚 Automatic dark mode based on device setting +* 💬 Isso commenting server similar to Disqus ([self-hosted](https://posativ.org/isso/docs/install/)) +* 📈 umami - simple, easy to use, web analytics solution ([self-hosted](https://umami.is/docs/install)) +* 🐦 SVG (social) icons powered by [ionicons](https://ionic.io/ionicons), currently Twitter and Github are available, but more can be downloaded with a simple shell script +* 🧑‍💻 Syntax highlighting with copy function +* 🔗 Deeplinks to headings in a blog post + +## Full Installation Instructions + +https://github.com/chringel21/chringel-hugo-theme diff --git a/content/theme/hugo-clarity.md b/content/theme/hugo-clarity.md index f484c09aa..77c8a7eb3 100644 --- a/content/theme/hugo-clarity.md +++ b/content/theme/hugo-clarity.md @@ -1,10 +1,9 @@ --- title: Clarity -github: 'https://github.com/chipzoller/hugo-clarity' -demo: 'https://themes.gohugo.io/theme/hugo-clarity/' +github: https://github.com/chipzoller/hugo-clarity +demo: https://themes.gohugo.io/theme/hugo-clarity/ author: Dan Weru and Chip Zoller date: 2020-10-10T00:00:00.000Z -github_branch: master ssg: - Hugo cms: @@ -16,6 +15,8 @@ description: >- Design System featuring rich code support, dark/light mode, mobile support, and much more. stale: false +disabled: true +disabled_reason: demo url not found --- # A perfect theme for bloggers who code diff --git a/content/theme/hugo-classic-theme.md b/content/theme/hugo-classic-theme.md index dcf14c75f..a3a3aff88 100644 --- a/content/theme/hugo-classic-theme.md +++ b/content/theme/hugo-classic-theme.md @@ -1,14 +1,13 @@ --- title: Hugo-Classic -github: 'https://github.com/goodroot/hugo-classic' -demo: 'https://goodroot.ca/' +github: https://github.com/goodroot/hugo-classic +demo: https://goodroot.ca/ author: Kellen Evan Person ssg: - Hugo cms: - No Cms date: 2017-07-13T02:02:26.000Z -github_branch: master description: A simple and text-centric theme for Hugo.io -stale: false +stale: true --- diff --git a/content/theme/hugo-classless-theme.md b/content/theme/hugo-classless-theme.md index 40438c25b..af67aaabd 100644 --- a/content/theme/hugo-classless-theme.md +++ b/content/theme/hugo-classless-theme.md @@ -1,14 +1,15 @@ --- title: Classless -github: 'https://github.com/fiatjaf/classless-hugo' -demo: 'https://themes.gohugo.io/theme/classless-hugo/' +github: https://github.com/fiatjaf/classless-hugo +demo: https://themes.gohugo.io/theme/classless-hugo/ author: fiatjaf ssg: - Hugo cms: - No Cms date: 2018-04-10T04:11:51.000Z -github_branch: master description: The Classless templates and themes implemented in Hugo stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-coder.md b/content/theme/hugo-coder.md index 2619dd87b..83ecc21c5 100644 --- a/content/theme/hugo-coder.md +++ b/content/theme/hugo-coder.md @@ -1,7 +1,7 @@ --- title: Coder -github: 'https://github.com/luizdepra/hugo-coder' -demo: 'https://themes.gohugo.io/theme/hugo-coder/' +github: https://github.com/luizdepra/hugo-coder +demo: https://themes.gohugo.io/theme/hugo-coder/ author: Luiz F. A. de Prá ssg: - Hugo @@ -10,7 +10,8 @@ cms: css: - SCSS date: 2018-02-17T13:45:54.000Z -github_branch: master description: A minimalist blog theme for hugo. stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-cohub.md b/content/theme/hugo-cohub.md new file mode 100644 index 000000000..04393e45b --- /dev/null +++ b/content/theme/hugo-cohub.md @@ -0,0 +1,32 @@ +--- +title: CoHub Hugo +github: https://github.com/StaticMania/hugo-cohub +demo: https://cohub.staticmania.com/ +author: StaticMania +date: 2022-04-07T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +css: + - Bootstrap +archetype: + - Business +description: >- + coHub is a simple, minimal and responsive Portfolio Hugo Theme. coHub is well + organized, well-formatted and named accordingly so it’s easy to change any and + all of the design. coHub is built with Bootstrap 4.5. You can customize it + very easy to fit your needs. +stale: false +--- + +## Features + +* Responsive Ready. +* Powered by Bootstrap 4.5. +* Blog Support. +* Well formatted code. +* Easy Customization. +* Formspree Contact form. +* Google Analytics. +* Crafted for Personal Portfolio diff --git a/content/theme/hugo-colordrop.md b/content/theme/hugo-colordrop.md index 94a7ccf1d..8f3d4f6c7 100644 --- a/content/theme/hugo-colordrop.md +++ b/content/theme/hugo-colordrop.md @@ -1,14 +1,13 @@ --- title: ColorDrop -github: 'https://github.com/humrochagf/colordrop' -demo: 'https://humberto.io/' +github: https://github.com/humrochagf/colordrop +demo: https://humberto.io/ author: Humberto Rocha ssg: - Hugo cms: - No Cms date: 2019-07-24T01:14:27.000Z -github_branch: master -description: 'Customizable, monochromatic and minimalist hugo theme for personal blogs' +description: Customizable, monochromatic and minimalist hugo theme for personal blogs stale: false --- diff --git a/content/theme/hugo-conference-theme.md b/content/theme/hugo-conference-theme.md index 6668c8a15..2e43d1316 100644 --- a/content/theme/hugo-conference-theme.md +++ b/content/theme/hugo-conference-theme.md @@ -1,14 +1,15 @@ --- title: Hugo Conference -github: 'https://github.com/jweslley/hugo-conference' -demo: 'https://themes.gohugo.io/theme/hugo-conference/' +github: https://github.com/jweslley/hugo-conference +demo: https://themes.gohugo.io/theme/hugo-conference/ author: jweslley ssg: - Hugo cms: - No Cms date: 2017-10-29T12:19:33.000Z -github_branch: master description: The easiest way to create websites for conference/events stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-congo.md b/content/theme/hugo-congo.md new file mode 100644 index 000000000..ec763b979 --- /dev/null +++ b/content/theme/hugo-congo.md @@ -0,0 +1,47 @@ +--- +title: Congo +github: https://github.com/jpanther/congo +demo: https://jpanther.github.io/congo/ +author: jpanther +date: 2021-08-23T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +css: + - Tailwind +archetype: + - Blog + - Personal +description: A powerful, lightweight theme for Hugo built with Tailwind CSS. +stale: false +--- + +Congo is designed to be a powerful, lightweight theme for Hugo. It's built using Tailwind CSS with a clean and minimalist design that prioritises to your content. + +## Features + +- Fully responsive layout built with Tailwind CSS 3.0 +- Multiple colour schemes (or fully customise your own) +- Dark mode (forced on/off or auto-switching with user toggle) +- Highly customisable configuration +- Multiple homepage layouts +- Flexible with any content types, taxonomies and menus +- Multilingual content support inlcuding support for RTL languages +- Ability to link to posts on third-party websites +- Client-side site search powered by Fuse.js +- Diagrams and visualisations using Mermaid +- Charts using Chart.js +- Mathematical notation using KaTeX +- SVG icons from FontAwesome 5 +- Automatic image resizing using Hugo Pipes +- Heading anchors, Tables of Contents, Code copy, Buttons, Badges and more +- HTML and Emoji support in articles 🎉 +- SEO friendly with links for sharing to social media +- Fathom Analytics and Google Analytics support +- RSS feeds, Favicons and comments support +- Advanced customisation using simple Tailwind colour definitions and styles +- Optimised for performance and accessibility with perfect Lighthouse scores +- Fully documented with regular updates + +Check out the [demo site](https://jpanther.github.io/congo/) or [theme documentation](https://jpanther.github.io/congo/docs/) to learn more. diff --git a/content/theme/hugo-connectome.md b/content/theme/hugo-connectome.md index 70eb99337..eb724f180 100644 --- a/content/theme/hugo-connectome.md +++ b/content/theme/hugo-connectome.md @@ -1,10 +1,9 @@ --- title: Hugo Connectome Theme -github: 'https://github.com/kausalflow/connectome' -demo: 'https://hugo-connectome.kausalflow.com' +github: https://github.com/kausalflow/connectome +demo: https://hugo-connectome.kausalflow.com author: KausalFlow date: 2020-11-20T00:00:00.000Z -github_branch: master ssg: - Hugo cms: diff --git a/content/theme/hugo-contrast-theme.md b/content/theme/hugo-contrast-theme.md index d6740ac7e..e36e00215 100644 --- a/content/theme/hugo-contrast-theme.md +++ b/content/theme/hugo-contrast-theme.md @@ -1,14 +1,15 @@ --- title: Hugo Contrast -github: 'https://github.com/niklasbuschmann/contrast-hugo' -demo: 'https://themes.gohugo.io/theme/contrast-hugo/' +github: https://github.com/niklasbuschmann/contrast-hugo +demo: https://themes.gohugo.io/theme/contrast-hugo/ author: Niklas Buschmann ssg: - Hugo cms: - No Cms date: 2019-07-15T13:03:07.000Z -github_branch: master description: Minimalistic Hugo theme stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-crab-theme.md b/content/theme/hugo-crab-theme.md index 2f3ec7062..327501578 100644 --- a/content/theme/hugo-crab-theme.md +++ b/content/theme/hugo-crab-theme.md @@ -1,14 +1,15 @@ --- title: Crab -github: 'https://github.com/thomasheller/crab' -demo: 'https://themes.gohugo.io/theme/crab/' +github: https://github.com/thomasheller/crab +demo: https://themes.gohugo.io/theme/crab/ author: Thomas Heller ssg: - Hugo cms: - No Cms date: 2017-03-18T10:48:37.000Z -github_branch: master description: Crab theme for Hugo -stale: false +stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-creative-portfolio-theme.md b/content/theme/hugo-creative-portfolio-theme.md index 9ff3ca147..ed46f1b01 100644 --- a/content/theme/hugo-creative-portfolio-theme.md +++ b/content/theme/hugo-creative-portfolio-theme.md @@ -1,14 +1,15 @@ --- title: Creative portfolio -github: 'https://github.com/kishaningithub/hugo-creative-portfolio-theme' -demo: 'https://themes.gohugo.io/theme/hugo-creative-portfolio-theme/portfolio/' +github: https://github.com/kishaningithub/hugo-creative-portfolio-theme +demo: https://themes.gohugo.io/theme/hugo-creative-portfolio-theme/portfolio/ author: Kishan B ssg: - Hugo cms: - No Cms date: 2016-11-02T09:44:46.000Z -github_branch: master description: Port of the creative portfolio theme to Hugo stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-creative-theme.md b/content/theme/hugo-creative-theme.md index bf32e180a..4cbd7f3ed 100644 --- a/content/theme/hugo-creative-theme.md +++ b/content/theme/hugo-creative-theme.md @@ -1,16 +1,15 @@ --- title: Creative -github: 'https://github.com/digitalcraftsman/hugo-creative-theme' -demo: 'https://themes.gohugo.io/theme/creative/' +github: https://github.com/digitalcraftsman/hugo-creative-theme +demo: https://themes.gohugo.io/theme/creative/ author: Digitalcraftsman ssg: - Hugo cms: - No Cms date: 2015-06-12T18:40:58.000Z -github_branch: master description: Port of Startbootstrap's Creative theme to Hugo -stale: true -disabled: true +stale: false disabled_reason: demo url not found +disabled: true --- diff --git a/content/theme/hugo-curious.md b/content/theme/hugo-curious.md new file mode 100644 index 000000000..22a240b82 --- /dev/null +++ b/content/theme/hugo-curious.md @@ -0,0 +1,44 @@ +--- +title: Hugo Curious +github: https://github.com/vietanhdev/hugo-curious +demo: https://hugo-curious.aicurious.io/ +author: vietanhdev +date: 2021-05-16T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS + - DecapCMS +css: + - SCSS +archetype: + - Blog + - Portfolio +description: >- + A modern and full-featured Hugo theme for personal blog. Blogs, Notes, + Projects, Contact form, Subscriber form, Comments... +stale: true +--- + +## Story + +**Hugo Curious** theme was originally developed for [AICurious Blog](https://aicurious.io/) based on [Hugo Clarity](https://github.com/chipzoller/hugo-clarity). However, the differences between the two themes are a lot in terms of design and features. Therefore, the author wants to pack it as a new theme and share it with the community. + +## Features + +* Blog with tagging and category options +* Deeplinks +* Native Image Lazy Loading +* Customizable (see config) +* Dark Mode (with UI controls for user preference setting) +* Toggleable table of contents +* Flexible image configuration +* Logo alignment +* Mobile support with configurable menu alignment +* Syntax Highlighting +* Rich code block functions +* Math typing using MathJax +* Auto TOC using tocbot +* Search page +* Contact form +* Subscription form \ No newline at end of file diff --git a/content/theme/hugo-devlitecv-theme.md b/content/theme/hugo-devlitecv-theme.md new file mode 100644 index 000000000..948528eb9 --- /dev/null +++ b/content/theme/hugo-devlitecv-theme.md @@ -0,0 +1,42 @@ +--- +title: "DevLite CV" +github: https://github.com/oborshch/devlite-cv +demo: https://oborshch.github.io/devlite-cv/ +author: oborshch +date: 2022-09-23 +ssg: + - Hugo +cms: + - No CMS +css: + - Bootstrap +archetype: + - CV + - Resume +description: Hugo Devlite CV theme is created for developers so they can create their CV effortlessly +--- + +### Features + +* Fully Responsive +* HTML5 + CSS3 +* Built on Bootstrap 3 +* Shields shields.io +* FontAwesome icons +* **LESS** files included +* Compatible with all modern browsers + +### Using + +1. Install Hugo +[How to install hugo](https://gohugo.io/overview/installing/) + +2. Create a new site +``` +hugo new site examplesite +``` +3. Clone this Git repository +``` +cd examplesite +git clone https://github.com/oborshch/devlite-cv.git themes/devlite-cv/ +``` diff --git a/content/theme/hugo-dgraph-theme.md b/content/theme/hugo-dgraph-theme.md index 48856d8d3..5b75ff14c 100644 --- a/content/theme/hugo-dgraph-theme.md +++ b/content/theme/hugo-dgraph-theme.md @@ -1,14 +1,13 @@ --- title: Dgraph -github: 'https://github.com/dgraph-io/hugo-dgraph-theme' -demo: 'https://blog.dgraph.io/' +github: https://github.com/dgraph-io/hugo-dgraph-theme +demo: https://blog.dgraph.io/ author: Dgraph Labs ssg: - Hugo cms: - No Cms date: 2016-07-25T08:45:30.000Z -github_branch: master description: Hugo theme used for our blog -stale: false +stale: true --- diff --git a/content/theme/hugo-digital-garden.md b/content/theme/hugo-digital-garden.md new file mode 100644 index 000000000..10435d797 --- /dev/null +++ b/content/theme/hugo-digital-garden.md @@ -0,0 +1,37 @@ +--- +title: Digital Garden +github: https://github.com/apvarun/digital-garden-hugo-theme +demo: https://digital-garden-hugo-theme.vercel.app/ +author: Varun A P +date: 2021-12-23T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +css: + - Tailwind +archetype: + - Blog + - Portfolio + - Personal +description: Build your own personal Digital Garden effortlessly with this Hugo theme +stale: false +disabled: false +--- + +Digital Garden theme is a well-optimized theme to build your personal digital presense. + +### Features: + +- Multi-column layout +- Responsive Website, Optimized for mobile reading +- Custom portfolio showcase layout +- Social media links +- Code highlighting (highlight.js) +- Light and Dark mode +- KaTeX math expression support +- Fast performance with perfect score on Lighthouse (Report) +- SEO optimized with support for Twitter Cards and Open Graph +- Built-in 404 page +- Google Analytics support +- Sitemap and RSS feed for your content (OOTB with Hugo) diff --git a/content/theme/hugo-docter-theme.md b/content/theme/hugo-docter-theme.md index 86fd1ae7a..5ff82c7a4 100644 --- a/content/theme/hugo-docter-theme.md +++ b/content/theme/hugo-docter-theme.md @@ -1,14 +1,13 @@ --- title: Docter -github: 'https://github.com/edavidaja/docter' -demo: 'https://edavidaja.gitlab.io/docter/' +github: https://github.com/edavidaja/docter +demo: https://edavidaja.gitlab.io/docter/ author: E. David Aja ssg: - Hugo cms: - No Cms date: 2019-06-08T12:33:56.000Z -github_branch: master description: Hugo port of cfpb/docter -stale: false +stale: true --- diff --git a/content/theme/hugo-doks.md b/content/theme/hugo-doks.md index fda5b52d5..e979fe35b 100644 --- a/content/theme/hugo-doks.md +++ b/content/theme/hugo-doks.md @@ -1,10 +1,9 @@ --- title: Doks -github: 'https://github.com/h-enk/doks' -demo: 'https://doks.netlify.app' +github: https://github.com/h-enk/doks +demo: https://doks.netlify.app author: Henk Verlinde date: 2020-12-07T00:00:00.000Z -github_branch: master ssg: - Hugo cms: diff --git a/content/theme/hugo-dot-org-theme.md b/content/theme/hugo-dot-org-theme.md new file mode 100644 index 000000000..0064217a2 --- /dev/null +++ b/content/theme/hugo-dot-org-theme.md @@ -0,0 +1,54 @@ +--- +title: Dot-Org +github: https://github.com/cncf/dot-org-hugo-theme +demo: https://dot-org-hugo-theme-demo.netlify.app/ +author: CNCF +date: 2023-09-17T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +css: + - SCSS + - PostCSS +archetype: + - Blog + - Business + - Multi Purpose +description: Hugo theme for a small organization, developed by CNCF. +stale: false +--- + +# Dot-Org Theme for Hugo + +This Hugo theme is ideal for powering the website of a small organization or project. It was built initially by [CNCF.io](https://www.cncf.io) (part of [The Linux Foundation](https://www.linuxfoundation.org)) for the [TODO Group](https://todogroup.org) and has the following strengths: + +- **Modern** - simple yet effective modern design +- **Responsive** - works on mobile through to desktop, mobile first design +- **Accessible** - design and markup comply with WCAG 2.1 AA guidelines +- **Fast** - HTML/CSS/JS written from scratch to be as fast as possible without relying on frameworks or libraries +- **Performance** - perfect 100 Lighthouse/[PageSpeed Insight](https://pagespeed.web.dev/) scores :rocket: +- **Multilingual** - ready to support multiple languages of content +- **Mega Menu** - large menu with dropdown sections, custom footer menu +- **Blog** - blog posts ready to go +- **FAQ accordion** - FAQ page with accordion structure +- **Custom Shortcodes** - Easily insert advanced features with simple shortcodes +- **Social links** - Insert URLs to activate +- **Much more** - Google Analytics, insert custom JS and CSS, Open Graph OG content, favicons, Blog post authors linked to Twitter, Edit page link. + +#### Custom Shortcodes Included: + +- Buttons +- Cards +- Columns +- Current Year +- Img +- iFrame +- Linebreak +- Responsive Table +- Spacer +- Table of Contents +- YouTube Enhanced Embed + +For feedback, support or bug reporting, please see our [GitHub repo](https://github.com/cncf/dot-org-hugo-theme). + diff --git a/content/theme/hugo-dusk.md b/content/theme/hugo-dusk.md index 603577940..0dc691560 100644 --- a/content/theme/hugo-dusk.md +++ b/content/theme/hugo-dusk.md @@ -1,16 +1,15 @@ --- title: Hugo-dusk -github: 'https://github.com/gyorb/hugo-dusk' -demo: 'https://themes.gohugo.io/theme/hugo-dusk/' +github: https://github.com/gyorb/hugo-dusk +demo: https://themes.gohugo.io/theme/hugo-dusk/ author: Gyorgy Orban ssg: - Hugo cms: - No Cms date: 2017-04-22T11:43:42.000Z -github_branch: master -description: 'Simple, minimalistic dark theme for Hugo.' -stale: false -disabled: true +description: Simple, minimalistic dark theme for Hugo. +stale: true disabled_reason: demo url not found +disabled: true --- diff --git a/content/theme/hugo-dusky-neon-potato.md b/content/theme/hugo-dusky-neon-potato.md index 889e8df3b..d1ac8f49b 100644 --- a/content/theme/hugo-dusky-neon-potato.md +++ b/content/theme/hugo-dusky-neon-potato.md @@ -1,14 +1,15 @@ --- title: Dusky Neon Potato -github: 'https://github.com/VVelox/hugo-dusky-neon-potato' -demo: 'https://themes.gohugo.io/theme/hugo-dusky-neon-potato/' +github: https://github.com/VVelox/hugo-dusky-neon-potato +demo: https://themes.gohugo.io/theme/hugo-dusky-neon-potato/ author: Zane C. Bowers-Hadley ssg: - Hugo cms: - No Cms date: 2018-09-04T04:55:12.000Z -github_branch: master description: a merging of the dusk and potato-dark themes for hugo stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-edidor-theme.md b/content/theme/hugo-edidor-theme.md index de9f2f89f..12d19b02c 100644 --- a/content/theme/hugo-edidor-theme.md +++ b/content/theme/hugo-edidor-theme.md @@ -1,14 +1,17 @@ --- title: Edidor -github: 'https://github.com/jacobsun/edidor' -demo: 'https://themes.gohugo.io/theme/edidor/' +github: https://github.com/jacobsun/edidor +demo: https://themes.gohugo.io/theme/edidor/ author: Jacob Sun ssg: - Hugo cms: - No Cms date: 2019-05-08T12:49:36.000Z -github_branch: master -description: "A hugo theme that looks like an editor with a builtin style generator, INFINITE COLOR MODE from a market perspective. \U0001F602" -stale: true +description: >- + A hugo theme that looks like an editor with a builtin style generator, + INFINITE COLOR MODE from a market perspective. 😂 +stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-eiio.md b/content/theme/hugo-eiio.md index f49490dcc..33af14bf8 100644 --- a/content/theme/hugo-eiio.md +++ b/content/theme/hugo-eiio.md @@ -1,14 +1,15 @@ --- title: Eiio -github: 'https://github.com/leonhe/hugo_eiio' -demo: 'https://themes.gohugo.io/theme/hugo_eiio/' +github: https://github.com/leonhe/hugo_eiio +demo: https://themes.gohugo.io/theme/hugo_eiio/ author: Leon He ssg: - Hugo cms: - No Cms date: 2016-12-03T09:41:16.000Z -github_branch: master description: Hugo Blog Theme stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-elate-theme.md b/content/theme/hugo-elate-theme.md index b93d0e4b6..082913079 100644 --- a/content/theme/hugo-elate-theme.md +++ b/content/theme/hugo-elate-theme.md @@ -1,14 +1,15 @@ --- title: Elate -github: 'https://github.com/saey55/hugo-elate-theme' -demo: 'https://themes.gohugo.io/theme/hugo-elate-theme/' +github: https://github.com/saey55/hugo-elate-theme +demo: https://themes.gohugo.io/theme/hugo-elate-theme/ author: Pieter Saey ssg: - Hugo cms: - No Cms date: 2016-11-18T15:14:54.000Z -github_branch: master description: A one page parallax theme with animation for Hugo stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-elephants.md b/content/theme/hugo-elephants.md index 330795366..3ac13a11c 100644 --- a/content/theme/hugo-elephants.md +++ b/content/theme/hugo-elephants.md @@ -1,14 +1,15 @@ --- title: Elephants -github: 'https://github.com/meibenny/elephants' -demo: 'https://themes.gohugo.io/theme/elephants/' +github: https://github.com/meibenny/elephants +demo: https://themes.gohugo.io/theme/elephants/ author: Benny Mei ssg: - Hugo cms: - No Cms date: 2018-01-01T20:30:49.000Z -github_branch: master description: Minimal Hugo theme using the Ubuntu font stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-engimo-theme.md b/content/theme/hugo-engimo-theme.md index 397d00eef..99a12179a 100644 --- a/content/theme/hugo-engimo-theme.md +++ b/content/theme/hugo-engimo-theme.md @@ -1,16 +1,15 @@ --- title: Engimo -github: 'https://github.com/achary/engimo' -demo: 'https://engimo.netlify.com/' +github: https://github.com/achary/engimo +demo: https://engimo.netlify.com/ author: Adam Charytoniuk ssg: - Hugo cms: - No Cms date: 2018-07-26T17:44:04.000Z -github_branch: master description: >- minimo-eng - Minimalist theme for Hugo tuned for engineering content, based on Minimo -stale: true +stale: false --- diff --git a/content/theme/hugo-er-theme.md b/content/theme/hugo-er-theme.md index 1e8ccd751..0248beaf5 100644 --- a/content/theme/hugo-er-theme.md +++ b/content/theme/hugo-er-theme.md @@ -1,14 +1,15 @@ --- title: Er -github: 'https://github.com/lingxz/er' -demo: 'https://themes.gohugo.io/theme/er/' +github: https://github.com/lingxz/er +demo: https://themes.gohugo.io/theme/er/ author: Lingyi Hu ssg: - Hugo cms: - No Cms date: 2018-04-30T18:02:34.000Z -github_branch: master description: ':snail: a hugo theme' stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-eureka.md b/content/theme/hugo-eureka.md index 88dfaf563..f53032fca 100644 --- a/content/theme/hugo-eureka.md +++ b/content/theme/hugo-eureka.md @@ -1,10 +1,9 @@ --- title: Eureka -github: 'https://github.com/wangchucheng/hugo-eureka' -demo: 'https://themes.gohugo.io/theme/hugo-eureka/' +github: https://github.com/wangchucheng/hugo-eureka +demo: https://themes.gohugo.io/theme/hugo-eureka/ author: C. Wang date: 2020-11-22T00:00:00.000Z -github_branch: master ssg: - Hugo cms: @@ -16,6 +15,8 @@ archetype: - Blog description: Eureka is a feature-rich and highly customizable Hugo theme. stale: false +disabled: true +disabled_reason: demo url not found --- English | [简体中文](https://github.com/wangchucheng/hugo-eureka/blob/master/README.zh.md) diff --git a/content/theme/hugo-ezhil.md b/content/theme/hugo-ezhil.md index 1076a0112..521efbda9 100644 --- a/content/theme/hugo-ezhil.md +++ b/content/theme/hugo-ezhil.md @@ -1,14 +1,13 @@ --- title: Ezhil -github: 'https://github.com/vividvilla/ezhil' -demo: 'https://ezhil-hugo.netlify.com/' +github: https://github.com/vividvilla/ezhil +demo: https://ezhil-hugo.netlify.com/ author: Vivek R ssg: - Hugo cms: - No Cms date: 2019-04-09T20:57:27.000Z -github_branch: master description: Clean and minimal personal blog theme for Hugo -stale: false +stale: true --- diff --git a/content/theme/hugo-fabric-theme.md b/content/theme/hugo-fabric-theme.md index 1bfa05fff..4d5e3a60d 100644 --- a/content/theme/hugo-fabric-theme.md +++ b/content/theme/hugo-fabric-theme.md @@ -1,14 +1,15 @@ --- title: Hugo Fabric -github: 'https://github.com/wd/hugo-fabric' -demo: 'https://themes.gohugo.io/theme/hugo-fabric/' +github: https://github.com/wd/hugo-fabric +demo: https://themes.gohugo.io/theme/hugo-fabric/ author: wd ssg: - Hugo cms: - No Cms date: 2017-03-08T10:25:13.000Z -github_branch: master description: Hugo Fabric Theme stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-faq-theme.md b/content/theme/hugo-faq-theme.md index 2cc6601c4..fffef609c 100644 --- a/content/theme/hugo-faq-theme.md +++ b/content/theme/hugo-faq-theme.md @@ -1,14 +1,15 @@ --- title: Hugo Faq -github: 'https://github.com/aerohub/hugo-faq-theme' -demo: 'https://themes.gohugo.io/theme/hugo-faq-theme/' +github: https://github.com/aerohub/hugo-faq-theme +demo: https://themes.gohugo.io/theme/hugo-faq-theme/ author: Pavel Kanyshev ssg: - Hugo cms: - No Cms date: 2016-09-21T20:55:08.000Z -github_branch: master description: Simple FAQ Theme for Hugo stale: true +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/hugo-flex.md b/content/theme/hugo-flex.md index 8119d8970..86d3227d9 100644 --- a/content/theme/hugo-flex.md +++ b/content/theme/hugo-flex.md @@ -1,14 +1,51 @@ --- title: Hugo Flex -github: 'https://github.com/de-souza/hugo-flex' -demo: 'https://themes.gohugo.io/theme/hugo-flex/' -author: Léo De Souza +github: https://github.com/ldeso/hugo-flex +demo: https://ldeso.github.io/hugo-flex-demo/ +author: Léo de Souza ssg: - Hugo cms: - - No Cms -date: 2019-02-17T17:31:39.000Z -github_branch: master -description: A lightweight Hugo theme leveraging CSS Flexbox + - DecapCMS +archetype: + - Blog + - Personal +date: 2024-01-23T08:26:31.000Z +description: A lightweight Hugo theme leveraging CSS Flexbox. stale: false --- + +# Hugo Flex + +A lightweight Hugo theme leveraging [CSS Flexbox](https://developer.mozilla.org/docs/Web/CSS/CSS_Flexible_Box_Layout). + +## Features + +- [Flexbox](https://developer.mozilla.org/docs/Web/CSS/CSS_Flexible_Box_Layout)-based responsive layout +- [100% performance and accessibility scores](https://pagespeed.web.dev/analysis/https-ldeso-github-io-hugo-flex-demo/2fffkrwjoi) on PageSpeed Insights +- No framework +- No javascript +- Full posts in RSS feed +- RSS page looks like a normal page +- [Multilingual support](https://gohugo.io/content-management/multilingual/) +- [Dark theme](https://mzl.la/3PVbdQX) + +Optional features: + +- [Syntax highlighting](https://github.com/ldeso/hugo-flex#syntax-highlighting) +- Show [summaries](https://gohugo.io/content-management/summaries/) on homepage +- [Schema.org](https://schema.org/), [Open Graph](https://ogp.me/) and [Twitter Cards](https://developer.twitter.com/cards/) metadata +- [Utterances](https://utteranc.es/) comments widget +- Custom CSS and JS may be added [site-wide](https://github.com/ldeso/hugo-flex#custom-css-and-js), or [dynamically](https://github.com/ldeso/hugo-flex#dynamically-embedded) with shortcodes +- Built-in shortcodes: + - [Math rendering](https://github.com/ldeso/hugo-flex#math-rendering) with [KaTeX](https://katex.org/) + - [Netlify contact form](https://github.com/ldeso/hugo-flex#netlify-contact-form) + - Privacy-friendly [SoundCloud player](https://github.com/ldeso/hugo-flex#soundcloud-player) + +## Instructions + +Instructions on how to use the theme are available [on GitHub](https://github.com/ldeso/hugo-flex). + +## License + +This theme is licensed under the [Apache License 2.0](https://github.com/ldeso/hugo-flex/raw/master/LICENSE). diff --git a/content/theme/hugo-foundation-theme.md b/content/theme/hugo-foundation-theme.md index 63646dba2..eb0401965 100644 --- a/content/theme/hugo-foundation-theme.md +++ b/content/theme/hugo-foundation-theme.md @@ -1,14 +1,15 @@ --- title: Hugof -github: 'https://github.com/hdcdstr8fwd/foundation-theme' -demo: 'https://themes.gohugo.io/theme/foundation-theme/' +github: https://github.com/hdcdstr8fwd/foundation-theme +demo: https://themes.gohugo.io/theme/foundation-theme/ author: Howard Colin ssg: - Hugo cms: - No Cms date: 2016-12-11T17:15:15.000Z -github_branch: master description: Core theme files for Hugo Foundation. stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-frais-theme.md b/content/theme/hugo-frais-theme.md index 7a63ed3c4..5cc95a21a 100644 --- a/content/theme/hugo-frais-theme.md +++ b/content/theme/hugo-frais-theme.md @@ -1,14 +1,15 @@ --- title: Hugo Frais -github: 'https://github.com/the2ne/hugo-frais' -demo: 'https://themes.gohugo.io/theme/hugo-frais/' +github: https://github.com/the2ne/hugo-frais +demo: https://themes.gohugo.io/theme/hugo-frais/ author: Olivier Fredon ssg: - Hugo cms: - No Cms date: 2016-10-06T16:42:56.000Z -github_branch: master description: A fresh and french theme for Hugo stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-freelancer-theme.md b/content/theme/hugo-freelancer-theme.md index 46953d9eb..ede2714e6 100644 --- a/content/theme/hugo-freelancer-theme.md +++ b/content/theme/hugo-freelancer-theme.md @@ -1,16 +1,15 @@ --- title: Hugo Freelancer -github: 'https://github.com/digitalcraftsman/hugo-freelancer-theme' -demo: 'https://themes.gohugo.io/theme/freelancer/' +github: https://github.com/digitalcraftsman/hugo-freelancer-theme +demo: https://themes.gohugo.io/theme/freelancer/ author: digitalcraftsman ssg: - Hugo cms: - No Cms date: 2015-06-10T13:59:47.000Z -github_branch: master description: Port of Startbootstrap's Freelancer theme to Hugo -stale: true -disabled: true +stale: false disabled_reason: demo url not found +disabled: true --- diff --git a/content/theme/hugo-future-imperfect-slim.md b/content/theme/hugo-future-imperfect-slim.md index 436e82da8..b0ab183e6 100644 --- a/content/theme/hugo-future-imperfect-slim.md +++ b/content/theme/hugo-future-imperfect-slim.md @@ -1,14 +1,15 @@ --- title: Future Imperfect Slim -github: 'https://github.com/pacollins/hugo-future-imperfect-slim' -demo: 'https://themes.gohugo.io/theme/hugo-future-imperfect-slim/' +github: https://github.com/pacollins/hugo-future-imperfect-slim +demo: https://themes.gohugo.io/theme/hugo-future-imperfect-slim/ author: Patrick Collins ssg: - Hugo cms: - No Cms date: 2019-04-06T17:48:53.000Z -github_branch: master description: Multilingual Blogging Theme for Hugo stale: false +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/hugo-future-imperfect.md b/content/theme/hugo-future-imperfect.md index bc9f9a7a4..ca20292d6 100644 --- a/content/theme/hugo-future-imperfect.md +++ b/content/theme/hugo-future-imperfect.md @@ -1,14 +1,15 @@ --- title: Hugo Future Imperfect -github: 'https://github.com/jpescador/hugo-future-imperfect' -demo: 'https://themes.gohugo.io/theme/future-imperfect/' +github: https://github.com/jpescador/hugo-future-imperfect +demo: https://themes.gohugo.io/theme/future-imperfect/ author: Julio Pescador ssg: - Hugo cms: - No Cms date: 2016-03-21T00:52:47.000Z -github_branch: master description: A ported theme with some extras for the Hugo static website engine stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-ghostwriter.md b/content/theme/hugo-ghostwriter.md index 93edc527e..3b5ca6967 100644 --- a/content/theme/hugo-ghostwriter.md +++ b/content/theme/hugo-ghostwriter.md @@ -1,14 +1,15 @@ --- title: Ghostwriter -github: 'https://github.com/jbub/ghostwriter' -demo: 'https://themes.gohugo.io/theme/ghostwriter/' +github: https://github.com/jbub/ghostwriter +demo: https://themes.gohugo.io/theme/ghostwriter/ author: Juraj Bubniak ssg: - Hugo cms: - No Cms date: 2015-04-26T09:57:24.000Z -github_branch: master description: A port of ghostwriter theme to Hugo. stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-goa.md b/content/theme/hugo-goa.md index 1a9adb770..c54f8c0e1 100644 --- a/content/theme/hugo-goa.md +++ b/content/theme/hugo-goa.md @@ -1,14 +1,15 @@ --- title: Goa -github: 'https://github.com/shenoybr/hugo-goa' -demo: 'https://shenoybr.github.io/hugo-goa-demo/' +github: https://github.com/shenoybr/hugo-goa +demo: https://shenoybr.github.io/hugo-goa-demo/ author: Rajesh Shenoy ssg: - Hugo cms: - No Cms date: 2016-10-08T02:59:24.000Z -github_branch: master description: Simple Minimalistic Theme for Hugo stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-gokarna.md b/content/theme/hugo-gokarna.md new file mode 100644 index 000000000..1de8af1fc --- /dev/null +++ b/content/theme/hugo-gokarna.md @@ -0,0 +1,30 @@ +--- +title: Gokarna +github: https://github.com/526avijitgupta/gokarna +demo: https://gokarna-hugo.netlify.app/ +author: 526avijitgupta +date: 2022-08-15T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +archetype: + - Blog + - Portfolio +description: An opinionated theme with a focus on minimalism and simplicity. +stale: false +--- + +## Features + +- Minimalistic & fast +- Customizable header +- Responsive +- Available in light and dark themes +- Native fonts and support for [feather icons](https://feathericons.com/) and [svg icons](https://gokarna-hugo.netlify.app/posts/theme-documentation-advanced/#icons-on-homepage) +- Syntax highlighting +- SEO Ready +- Table of contents which can be configured per page +- Option to add custom javascript and css +- RSS Feed +- Math typesetting using [Katex](https://gokarna-hugo.netlify.app/posts/theme-documentation-advanced/#katex) diff --git a/content/theme/hugo-grapes-theme.md b/content/theme/hugo-grapes-theme.md index 4daf9b091..2871719d9 100644 --- a/content/theme/hugo-grapes-theme.md +++ b/content/theme/hugo-grapes-theme.md @@ -1,14 +1,15 @@ --- title: Hugo Grapes -github: 'https://github.com/shankar/hugo-grapes' -demo: 'https://themes.gohugo.io/theme/hugo-grapes/' +github: https://github.com/shankar/hugo-grapes +demo: https://themes.gohugo.io/theme/hugo-grapes/ author: Shankar ssg: - Hugo cms: - No Cms date: 2018-10-23T04:13:29.000Z -github_branch: master description: A minimalistic text based theme for Hugo with grapes color theme stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-gridside-theme.md b/content/theme/hugo-gridside-theme.md index f8e80d0c4..693163f7d 100644 --- a/content/theme/hugo-gridside-theme.md +++ b/content/theme/hugo-gridside-theme.md @@ -1,14 +1,15 @@ --- title: GridSide -github: 'https://github.com/chipsenkbeil/grid-side' -demo: 'https://themes.gohugo.io/theme/grid-side/' +github: https://github.com/chipsenkbeil/grid-side +demo: https://themes.gohugo.io/theme/grid-side/ author: Chip Senkbeil ssg: - Hugo cms: - No Cms date: 2015-08-09T19:22:58.000Z -github_branch: master description: Personal portfolio and blog for use by the Hugo generator. stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-h5bp-simple.md b/content/theme/hugo-h5bp-simple.md index e6ff8cf57..248255737 100644 --- a/content/theme/hugo-h5bp-simple.md +++ b/content/theme/hugo-h5bp-simple.md @@ -1,14 +1,15 @@ --- title: Hugo H5bp Simple -github: 'https://github.com/garvincasimir/hugo-h5bp-simple' -demo: 'https://themes.gohugo.io/theme/hugo-h5bp/' +github: https://github.com/garvincasimir/hugo-h5bp-simple +demo: https://themes.gohugo.io/theme/hugo-h5bp/ author: Garvin Casimir ssg: - Hugo cms: - No Cms date: 2015-07-24T20:42:48.000Z -github_branch: master description: Simple responsive them for Go Hugo stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-hb-theme.md b/content/theme/hugo-hb-theme.md new file mode 100644 index 000000000..7e7276ada --- /dev/null +++ b/content/theme/hugo-hb-theme.md @@ -0,0 +1,59 @@ +--- +title: "HB Starter Theme" +github: https://github.com/hbstack/theme +demo: https://hb-theme.hugomods.com/ +author: Razon Yang +date: 2023-03-31 +ssg: + - Hugo +cms: + - No CMS +css: + - Bootstrap +archetype: + - Blog + - Documentation + - Personal + - Multi Purpose +description: The starter theme of Hugo Bootstrap framework (HB). +--- + +The starter theme template of [HB Framework](https://hb.hugomods.com). + +## Features + +- **Fast** and **SEO** friendly: [PageSpeed Insight](https://pagespeed.web.dev/analysis?url=https://hb-theme.hugomods.com/en/) scored perfect :100: in all four metrics on mobile and desktop. +- **Multi-purpose**: blog, project documentations, digital garden and so on. +- **Responsive**: mobile first, built on top of Bootstrap v5.3. +- :ice_cube: **Modular** and **flexible**: extend features via various modules. +- :first_quarter_moon: **Dark mode**: light, dark or auto (follow system). +- :mag: **Search**: powerful client side *fuzzy* search that allows *filtering* and *sorting* of results, as well as searching from all multilingual sites. +- **PurgeCSS**: remove unused CSS. +- :rocket: **PWA**: + - Installable: add site to home screen. + - Offline available: offline page and offline image. + - Allow precaching resources, such as CSS, JS and fonts. +- :framed_picture: **Images Processing**: process images via URL query string and fragment, such as alignment, resizing, cropping and so on, friendly to Markdown. +- :computer: **Code block panel**: expand toggle, code copy button, line number toggle and wrap toggle. +- **Menus**: supports header menus and footer menus. +- :framed_picture: Image viewer: zoom in/out image. +- :card_index_dividers: **Archives**: group by year and month. +- :memo: **Multiple authors**: articles can be co-authored. +- :globe_with_meridians: **Multilingual**. +- :arrow_left: **RTL**: supports Right-to-Left languages. +- :arrow_up: Back/Return to top button. +- Social links: supports header and footer social links. +- Content: supports KaTex (math), Mermaid (diagrams) and Bootstrap shortcodes. +- ... + +## Live Demos + +| Platform | URL | +| -------- | --- | +| Cloudflare Pages | https://hb-theme.hugomods.com/ | +| GitHub Pages | https://hbstack.github.io/theme/ | +| Netlify | https://hb-theme.netlify.app/ | + +## Screenshot + +![Screenshot](https://raw.githubusercontent.com/hbstack/theme/main/images/screenshot.png) diff --git a/content/theme/hugo-hello-friend.md b/content/theme/hugo-hello-friend.md index 2b3200ddf..c7f6c2208 100644 --- a/content/theme/hugo-hello-friend.md +++ b/content/theme/hugo-hello-friend.md @@ -1,14 +1,13 @@ --- title: hello-friend -github: 'https://github.com/panr/hugo-theme-hello-friend' -demo: 'https://hugo-hello-friend.now.sh/' +github: https://github.com/panr/hugo-theme-hello-friend +demo: https://hugo-hello-friend.now.sh/ author: Radek Kozieł ssg: - Hugo cms: - No Cms date: 2018-07-20T17:13:14.000Z -github_branch: master description: >- Pretty basic theme for Hugo that covers all of the essentials. All you have to do is start typing! diff --git a/content/theme/hugo-hello-programmer-theme.md b/content/theme/hugo-hello-programmer-theme.md index 48e2945a8..0c570434c 100644 --- a/content/theme/hugo-hello-programmer-theme.md +++ b/content/theme/hugo-hello-programmer-theme.md @@ -1,14 +1,13 @@ --- title: Hello Programmer -github: 'https://github.com/lubang/hugo-hello-programmer-theme' -demo: 'https://blog.lulab.net/' +github: https://github.com/lubang/hugo-hello-programmer-theme +demo: https://blog.lulab.net/ author: lubang ssg: - Hugo cms: - No Cms date: 2016-11-20T14:49:37.000Z -github_branch: master description: This is a hugo theme for a programmer. It's simple and simple. stale: true --- diff --git a/content/theme/hugo-hero-theme.md b/content/theme/hugo-hero-theme.md index 592cb1f27..b19062dd0 100644 --- a/content/theme/hugo-hero-theme.md +++ b/content/theme/hugo-hero-theme.md @@ -1,14 +1,13 @@ --- title: Hero -github: 'https://github.com/JugglerX/hugo-hero-theme' -demo: 'https://hugo-hero.netlify.com/' +github: https://github.com/JugglerX/hugo-hero-theme +demo: https://hugo-hero.netlify.com/ author: Robert Austin ssg: - Hugo cms: - No Cms date: 2019-11-05T00:00:00.000Z -github_branch: master description: 'Hero is a modern fullwidth business theme for Hugo. ' stale: false --- diff --git a/content/theme/hugo-hestia-pure-theme.md b/content/theme/hugo-hestia-pure-theme.md index 4e36d67e0..905b40044 100644 --- a/content/theme/hugo-hestia-pure-theme.md +++ b/content/theme/hugo-hestia-pure-theme.md @@ -1,14 +1,15 @@ --- title: Hestia Pure -github: 'https://github.com/diwao/hestia-pure' -demo: 'https://themes.gohugo.io/theme/hestia-pure/' +github: https://github.com/diwao/hestia-pure +demo: https://themes.gohugo.io/theme/hestia-pure/ author: Daisuke Iwao ssg: - Hugo cms: - No Cms date: 2017-06-28T09:14:32.000Z -github_branch: master description: Hestia Pure is a Hugo theme based on Pure CSS. stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-highlights-theme.md b/content/theme/hugo-highlights-theme.md index a0c3d7379..c7e9aeacc 100644 --- a/content/theme/hugo-highlights-theme.md +++ b/content/theme/hugo-highlights-theme.md @@ -1,14 +1,15 @@ --- title: Highlights -github: 'https://github.com/schmanat/hugo-highlights-theme' -demo: 'https://themes.gohugo.io/theme/highlights/' +github: https://github.com/schmanat/hugo-highlights-theme +demo: https://themes.gohugo.io/theme/highlights/ author: Manuel Schneider ssg: - Hugo cms: - No Cms date: 2016-06-03T08:33:42.000Z -github_branch: master description: a one page layout for gohugo.io -stale: false +stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-hikari-theme.md b/content/theme/hugo-hikari-theme.md index a44513e6e..cd4cce405 100644 --- a/content/theme/hugo-hikari-theme.md +++ b/content/theme/hugo-hikari-theme.md @@ -1,16 +1,15 @@ --- title: Hikari -github: 'https://github.com/digitalcraftsman/hugo-hikari-theme' -demo: 'https://themes.gohugo.io/theme/hikari/' +github: https://github.com/digitalcraftsman/hugo-hikari-theme +demo: https://themes.gohugo.io/theme/hikari/ author: digitalcraftsman ssg: - Hugo cms: - No Cms date: 2015-07-26T17:27:04.000Z -github_branch: master description: Port of Mathieu Mayer-Mazzoli's Hikari theme to Hugo -stale: false -disabled: true +stale: true disabled_reason: demo url not found +disabled: true --- diff --git a/content/theme/hugo-hpstr-theme.md b/content/theme/hugo-hpstr-theme.md index 1c392b577..ef934af57 100644 --- a/content/theme/hugo-hpstr-theme.md +++ b/content/theme/hugo-hpstr-theme.md @@ -1,14 +1,15 @@ --- title: Hpstr -github: 'https://github.com/dldx/hpstr-hugo-theme' -demo: 'https://themes.gohugo.io/theme/hpstr-hugo-theme/' +github: https://github.com/dldx/hpstr-hugo-theme +demo: https://themes.gohugo.io/theme/hpstr-hugo-theme/ author: Durand D'souza ssg: - Hugo cms: - No Cms date: 2016-09-20T06:39:12.000Z -github_branch: master description: ':art: A Hugo theme based on the HPSTR Jekyll theme.' stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-hugotube.md b/content/theme/hugo-hugotube.md index f2ad0bae6..738111c8a 100644 --- a/content/theme/hugo-hugotube.md +++ b/content/theme/hugo-hugotube.md @@ -1,14 +1,13 @@ --- title: Hugotube -github: 'https://github.com/marcanuy/hugotube' -demo: 'https://marcanuy.github.io/hugotube/' +github: https://github.com/marcanuy/hugotube +demo: https://marcanuy.github.io/hugotube/ author: Marcelo Canina ssg: - Hugo cms: - No Cms date: 2017-12-04T12:35:17.000Z -github_branch: master description: Responsive Hugo theme inspired in YouTube layout stale: true --- diff --git a/content/theme/hugo-hugrid-theme.md b/content/theme/hugo-hugrid-theme.md index aae8e55ee..ad029b3ee 100644 --- a/content/theme/hugo-hugrid-theme.md +++ b/content/theme/hugo-hugrid-theme.md @@ -1,17 +1,18 @@ --- title: Hugrid -github: 'https://github.com/aerohub/hugrid' -demo: 'https://themes.gohugo.io/theme/hugrid/' +github: https://github.com/aerohub/hugrid +demo: https://themes.gohugo.io/theme/hugrid/ author: Pavel Kanyshev ssg: - Hugo cms: - No Cms date: 2016-08-17T16:59:32.000Z -github_branch: master 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. stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-hyde-theme.md b/content/theme/hugo-hyde-theme.md index 1eedabf09..047805648 100644 --- a/content/theme/hugo-hyde-theme.md +++ b/content/theme/hugo-hyde-theme.md @@ -1,14 +1,15 @@ --- title: Hyde -github: 'https://github.com/spf13/hyde' -demo: 'https://themes.gohugo.io/theme/hyde/' +github: https://github.com/spf13/hyde +demo: https://themes.gohugo.io/theme/hyde/ author: Steve Francia ssg: - Hugo cms: - No Cms date: 2014-05-23T19:47:51.000Z -github_branch: master description: Port of Mdo's excellent theme to Hugo stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-icarus.md b/content/theme/hugo-icarus.md index fb7166ba6..31ccf021d 100644 --- a/content/theme/hugo-icarus.md +++ b/content/theme/hugo-icarus.md @@ -1,16 +1,15 @@ --- title: Icarus -github: 'https://github.com/digitalcraftsman/hugo-icarus-theme' -demo: 'https://themes.gohugo.io/theme/hugo-icarus/' +github: https://github.com/digitalcraftsman/hugo-icarus-theme +demo: https://themes.gohugo.io/theme/hugo-icarus/ author: Digitalcraftsman ssg: - Hugo cms: - No Cms date: 2015-10-02T18:57:45.000Z -github_branch: master description: Port of Ruipeng Zhang's Hexo theme Icarus to Hugo. -stale: false -disabled: true +stale: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/hugo-icon.md b/content/theme/hugo-icon.md index eec1878a7..31c5cb7a0 100644 --- a/content/theme/hugo-icon.md +++ b/content/theme/hugo-icon.md @@ -1,14 +1,15 @@ --- title: Hugo Icon -github: 'https://github.com/SteveLane/hugo-icon' -demo: 'https://themes.gohugo.io/theme/hugo-icon/' +github: https://github.com/SteveLane/hugo-icon +demo: https://themes.gohugo.io/theme/hugo-icon/ author: Steve Lane ssg: - Hugo cms: - No Cms date: 2017-09-19T11:24:46.000Z -github_branch: master description: Icon theme for Hugo stale: true +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/hugo-identity-theme.md b/content/theme/hugo-identity-theme.md index 977976973..db7ada489 100644 --- a/content/theme/hugo-identity-theme.md +++ b/content/theme/hugo-identity-theme.md @@ -1,14 +1,15 @@ --- title: Hugo Identity -github: 'https://github.com/aerohub/hugo-identity-theme' -demo: 'https://themes.gohugo.io/theme/hugo-identity-theme/' +github: https://github.com/aerohub/hugo-identity-theme +demo: https://themes.gohugo.io/theme/hugo-identity-theme/ author: Pavel Kanyshev ssg: - Hugo cms: - No Cms date: 2016-03-31T15:43:08.000Z -github_branch: master description: Little profile/card-style template for Hugo. Based on Identity by HTML5 UP. stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-indigo.md b/content/theme/hugo-indigo.md index 066ee8ecf..59459cae5 100644 --- a/content/theme/hugo-indigo.md +++ b/content/theme/hugo-indigo.md @@ -1,14 +1,15 @@ --- title: Hugo Indigo -github: 'https://github.com/AngeloStavrow/indigo' -demo: 'https://themes.gohugo.io/theme/indigo/' +github: https://github.com/AngeloStavrow/indigo +demo: https://themes.gohugo.io/theme/indigo/ author: Angelo Stavrow ssg: - Hugo cms: - No Cms date: 2018-08-14T10:10:53.000Z -github_branch: master description: An IndieWeb-friendly custom theme for Hugo -stale: false +stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-infinity.md b/content/theme/hugo-infinity.md deleted file mode 100644 index 1c6668d77..000000000 --- a/content/theme/hugo-infinity.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: Infinity -github: 'https://github.com/themefisher/infinity-hugo' -demo: 'https://themes.gohugo.io/theme/infinity-hugo/' -author: Themefisher -ssg: - - Hugo -cms: - - No Cms -date: 2018-07-04T11:01:47.000Z -github_branch: master -description: Infinity Coming Soon Template Hugo Version by themefisher -stale: false ---- diff --git a/content/theme/hugo-initio-theme.md b/content/theme/hugo-initio-theme.md index 84b16951b..062f07958 100644 --- a/content/theme/hugo-initio-theme.md +++ b/content/theme/hugo-initio-theme.md @@ -1,14 +1,15 @@ --- title: Hugo Initio -github: 'https://github.com/miguelsimoni/hugo-initio' -demo: 'https://themes.gohugo.io/theme/hugo-initio/' +github: https://github.com/miguelsimoni/hugo-initio +demo: https://themes.gohugo.io/theme/hugo-initio/ author: Miguel Simoni ssg: - Hugo cms: - No Cms date: 2017-05-30T14:34:35.000Z -github_branch: master description: Hugo Theme adaptation of Initio from GetTemplate stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-inkblotty.md b/content/theme/hugo-inkblotty.md index 844d5a1c3..ee110242a 100644 --- a/content/theme/hugo-inkblotty.md +++ b/content/theme/hugo-inkblotty.md @@ -1,14 +1,15 @@ --- title: Inkblotty -github: 'https://github.com/tosi29/inkblotty' -demo: 'https://themes.gohugo.io/theme/inkblotty/' +github: https://github.com/tosi29/inkblotty +demo: https://themes.gohugo.io/theme/inkblotty/ author: tosi ssg: - Hugo cms: - No Cms date: 2019-03-19T14:10:18.000Z -github_branch: master description: Responsive Hugo theme based on Inkblot of WordPress theme stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-internet-webblog.md b/content/theme/hugo-internet-webblog.md index 7e92d893a..2338afac7 100644 --- a/content/theme/hugo-internet-webblog.md +++ b/content/theme/hugo-internet-webblog.md @@ -1,14 +1,15 @@ --- title: Internet Weblog -github: 'https://github.com/jnjosh/internet-weblog' -demo: 'https://themes.gohugo.io/theme/internet-weblog/' +github: https://github.com/jnjosh/internet-weblog +demo: https://themes.gohugo.io/theme/internet-weblog/ author: Josh Johnson ssg: - Hugo cms: - No Cms date: 2016-02-20T05:44:23.000Z -github_branch: master description: internet weblog theme for Hugo stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-journal.md b/content/theme/hugo-journal.md index 3256ab957..a9389aa5c 100644 --- a/content/theme/hugo-journal.md +++ b/content/theme/hugo-journal.md @@ -1,14 +1,13 @@ --- title: Journal -github: 'https://github.com/dashdashzako/hugo-journal' -demo: 'https://dashdashzako.github.io/hugo-journal-demo/' +github: https://github.com/dashdashzako/hugo-journal +demo: https://dashdashzako.github.io/hugo-journal-demo/ author: Damien Caselli ssg: - Hugo cms: - No Cms date: 2017-07-23T16:16:34.000Z -github_branch: master description: Minimalist theme for gohugo stale: true --- diff --git a/content/theme/hugo-keepit.md b/content/theme/hugo-keepit.md index ac2f8724e..97184e6ea 100644 --- a/content/theme/hugo-keepit.md +++ b/content/theme/hugo-keepit.md @@ -1,14 +1,13 @@ --- title: KeepIt -github: 'https://github.com/Fastbyte01/KeepIt' -demo: 'https://suspicious-archimedes-ab369d.netlify.com/' +github: https://github.com/Fastbyte01/KeepIt +demo: https://suspicious-archimedes-ab369d.netlify.com/ author: Fastbyte01 ssg: - Hugo cms: - No Cms date: 2019-02-03T09:52:26.000Z -github_branch: master description: The most powerful minimal Hugo theme. stale: false --- diff --git a/content/theme/hugo-khata.md b/content/theme/hugo-khata.md index ac8daff5e..3fb262090 100644 --- a/content/theme/hugo-khata.md +++ b/content/theme/hugo-khata.md @@ -1,14 +1,15 @@ --- title: Khata -github: 'https://github.com/darshanbaral/khata' -demo: 'https://themes.gohugo.io/theme/khata/' +github: https://github.com/darshanbaral/khata +demo: https://themes.gohugo.io/theme/khata/ author: Darshan Baral ssg: - Hugo cms: - No Cms date: 2019-07-02T02:28:29.000Z -github_branch: master description: Hugo theme for documentation. -stale: false +stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-kiera.md b/content/theme/hugo-kiera.md index 1037800af..05d99c98c 100644 --- a/content/theme/hugo-kiera.md +++ b/content/theme/hugo-kiera.md @@ -1,14 +1,15 @@ --- title: Kiera -github: 'https://github.com/avianto/hugo-kiera' -demo: 'https://themes.gohugo.io/theme/hugo-kiera/' +github: https://github.com/avianto/hugo-kiera +demo: https://themes.gohugo.io/theme/hugo-kiera/ author: b. avianto ssg: - Hugo cms: - No Cms date: 2017-11-13T00:53:41.000Z -github_branch: master description: Kiera - A Hugo Theme for writing stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-kiss-theme.md b/content/theme/hugo-kiss-theme.md index 0a3481c7b..23d399800 100644 --- a/content/theme/hugo-kiss-theme.md +++ b/content/theme/hugo-kiss-theme.md @@ -1,14 +1,15 @@ --- title: Kiss -github: 'https://github.com/ribice/kiss' -demo: 'https://themes.gohugo.io/theme/kiss/' +github: https://github.com/ribice/kiss +demo: https://themes.gohugo.io/theme/kiss/ author: Emir Ribić ssg: - Hugo cms: - No Cms date: 2017-10-23T19:57:06.000Z -github_branch: master description: Stupidly simple Hugo blogging theme stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-kitab.md b/content/theme/hugo-kitab.md index 966643e26..acb777671 100644 --- a/content/theme/hugo-kitab.md +++ b/content/theme/hugo-kitab.md @@ -1,14 +1,15 @@ --- title: Kitab -github: 'https://github.com/darshanbaral/kitab' -demo: 'https://themes.gohugo.io/theme/kitab/' +github: https://github.com/darshanbaral/kitab +demo: https://themes.gohugo.io/theme/kitab/ author: Darshan Baral ssg: - Hugo cms: - No Cms date: 2019-05-19T01:32:59.000Z -github_branch: master description: A hugo theme for publishing books -stale: false +stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-kraiklyn-theme.md b/content/theme/hugo-kraiklyn-theme.md index bc40be19b..746a6f8f8 100644 --- a/content/theme/hugo-kraiklyn-theme.md +++ b/content/theme/hugo-kraiklyn-theme.md @@ -1,14 +1,15 @@ --- title: Kraiklyn -github: 'https://github.com/jsnjack/kraiklyn' -demo: 'https://themes.gohugo.io/theme/kraiklyn/' +github: https://github.com/jsnjack/kraiklyn +demo: https://themes.gohugo.io/theme/kraiklyn/ author: Yauhen Shulitski ssg: - Hugo cms: - No Cms date: 2018-01-28T19:59:39.000Z -github_branch: master description: A Hugo theme for one page documentation stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-kube-theme.md b/content/theme/hugo-kube-theme.md index 6d097874d..77b3d0380 100644 --- a/content/theme/hugo-kube-theme.md +++ b/content/theme/hugo-kube-theme.md @@ -1,17 +1,18 @@ --- title: Kube Hugo -github: 'https://github.com/jeblister/kube' -demo: 'https://kube.elemnts.net/' +github: https://github.com/jeblister/kube +demo: https://kube.elemnts.net/ author: Mohamed ssg: - Hugo cms: - No Cms date: 2017-04-13T09:32:56.000Z -github_branch: master description: >- Kube is a professional and a responsive Hugo theme for developers and designers that offers a documentation section mixed with a landing page and a blog. -stale: true +stale: false +disabled: false +disabled_reason: '' --- diff --git a/content/theme/hugo-lamp.md b/content/theme/hugo-lamp.md index 5bbce06ac..924228305 100644 --- a/content/theme/hugo-lamp.md +++ b/content/theme/hugo-lamp.md @@ -1,14 +1,15 @@ --- title: Hugo Lamp -github: 'https://github.com/huyb1991/hugo-lamp' -demo: 'https://themes.gohugo.io/theme/hugo-lamp/' +github: https://github.com/huyb1991/hugo-lamp +demo: https://themes.gohugo.io/theme/hugo-lamp/ author: Huy Ng ssg: - Hugo cms: - No Cms date: 2018-05-28T08:10:44.000Z -github_branch: master description: A light Hugo AMP responsive theme for blogger ⚡. -stale: false +stale: true +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/hugo-landing-page.md b/content/theme/hugo-landing-page.md new file mode 100644 index 000000000..a62e26329 --- /dev/null +++ b/content/theme/hugo-landing-page.md @@ -0,0 +1,29 @@ +--- +title: Hugo Landing Page +github: https://github.com/ttntm/hugo-landing-page +demo: https://awesome.ttntm.me +author: ttntm +date: 2021-04-16T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +css: + - PostCSS + - Tailwind +archetype: + - Business +description: A simple landing page built with Hugo and Tailwind CSS. +stale: true +--- + +# Hugo Landing Page + +A simple landing page starter template built with Hugo, Gulp and Tailwind CSS. + +## Features + +* Modular single page approach based on sections +* Customisable global data for feature lists +* Fully responsive and tested on a wide range of devices +* Fast and low on dependencies diff --git a/content/theme/hugo-lanyon-theme.md b/content/theme/hugo-lanyon-theme.md index 138ebfb83..fb8de4c29 100644 --- a/content/theme/hugo-lanyon-theme.md +++ b/content/theme/hugo-lanyon-theme.md @@ -1,14 +1,13 @@ --- title: Lanyon -github: 'https://github.com/tummychow/lanyon-hugo' -demo: 'https://tummychow.github.io/lanyon-hugo/' +github: https://github.com/tummychow/lanyon-hugo +demo: https://tummychow.github.io/lanyon-hugo/ author: Stephen Jung ssg: - Hugo cms: - No Cms date: 2014-03-14T05:52:03.000Z -github_branch: master -description: 'Port of poole/lanyon, to spf13/hugo' -stale: false +description: Port of poole/lanyon, to spf13/hugo +stale: true --- diff --git a/content/theme/hugo-leaveit-theme.md b/content/theme/hugo-leaveit-theme.md index 11ccaffd8..30545e18e 100644 --- a/content/theme/hugo-leaveit-theme.md +++ b/content/theme/hugo-leaveit-theme.md @@ -1,14 +1,15 @@ --- title: LeaveIt -github: 'https://github.com/liuzc/LeaveIt' -demo: 'https://themes.gohugo.io/theme/LeaveIt/' +github: https://github.com/liuzc/LeaveIt +demo: https://themes.gohugo.io/theme/LeaveIt/ author: LiuZhichao ssg: - Hugo cms: - No Cms date: 2018-09-12T08:46:04.000Z -github_branch: master -description: 'A simple, minimal, clean blog theme for hugo.' +description: A simple, minimal, clean blog theme for hugo. stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-light-theme.md b/content/theme/hugo-light-theme.md index 9c307b71a..c5cad5532 100644 --- a/content/theme/hugo-light-theme.md +++ b/content/theme/hugo-light-theme.md @@ -1,13 +1,14 @@ --- title: Light Hugo -github: 'https://github.com/tblyler/light-hugo' -demo: 'https://themes.gohugo.io/theme/light-hugo/' +github: https://github.com/tblyler/light-hugo +demo: https://themes.gohugo.io/theme/light-hugo/ author: Tony Blyler ssg: - Hugo cms: - No Cms date: 2016-11-03T03:04:10.000Z -github_branch: master stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-lime.md b/content/theme/hugo-lime.md index aaf4df559..720f1b088 100644 --- a/content/theme/hugo-lime.md +++ b/content/theme/hugo-lime.md @@ -1,14 +1,15 @@ --- title: Hugo Lime -github: 'https://github.com/uicardiodev/hugo-lime' -demo: 'https://themes.gohugo.io/theme/hugo-lime/' +github: https://github.com/uicardiodev/hugo-lime +demo: https://themes.gohugo.io/theme/hugo-lime/ author: UICardio ssg: - Hugo cms: - No Cms date: 2018-08-25T17:12:50.000Z -github_branch: master -description: 'Hugo Lime is a business theme for GoHugo by https://uicard.io' +description: Hugo Lime is a business theme for GoHugo by https://uicard.io stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-liquorice.md b/content/theme/hugo-liquorice.md index 65a91fd8f..8318b783e 100644 --- a/content/theme/hugo-liquorice.md +++ b/content/theme/hugo-liquorice.md @@ -1,14 +1,15 @@ --- title: Liquorice -github: 'https://github.com/eliasson/liquorice' -demo: 'https://themes.gohugo.io/theme/liquorice/' +github: https://github.com/eliasson/liquorice +demo: https://themes.gohugo.io/theme/liquorice/ author: Markus Eliasson ssg: - Hugo cms: - No Cms date: 2014-08-17T22:54:01.000Z -github_branch: master description: Liquorice is a small black and white theme for Hugo. -stale: false +stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-lithium-theme.md b/content/theme/hugo-lithium-theme.md index dda9ebc56..3cb99c768 100644 --- a/content/theme/hugo-lithium-theme.md +++ b/content/theme/hugo-lithium-theme.md @@ -1,14 +1,15 @@ --- title: Lithium -github: 'https://github.com/jrutheiser/hugo-lithium-theme' -demo: 'https://themes.gohugo.io/theme/hugo-lithium-theme/' +github: https://github.com/jrutheiser/hugo-lithium-theme +demo: https://themes.gohugo.io/theme/hugo-lithium-theme/ author: Jonathan Rutheiser ssg: - Hugo cms: - No Cms date: 2016-05-06T02:29:31.000Z -github_branch: master description: Lithium - A simple responsive Hugo theme stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-lodi-theme.md b/content/theme/hugo-lodi-theme.md index f0ee0b29a..92fc41d50 100644 --- a/content/theme/hugo-lodi-theme.md +++ b/content/theme/hugo-lodi-theme.md @@ -1,14 +1,15 @@ --- title: Hugo Lodi Theme -github: 'https://github.com/xaviablaza/hugo-lodi-theme' -demo: 'https://themes.gohugo.io/theme/hugo-lodi-theme/' +github: https://github.com/xaviablaza/hugo-lodi-theme +demo: https://themes.gohugo.io/theme/hugo-lodi-theme/ author: Xavi Ablaza ssg: - Hugo cms: - No Cms date: 2017-10-15T09:52:43.000Z -github_branch: master description: Lodi theme for Hugo stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-lynx.md b/content/theme/hugo-lynx.md new file mode 100644 index 000000000..d8aca37cb --- /dev/null +++ b/content/theme/hugo-lynx.md @@ -0,0 +1,29 @@ +--- +title: Lynx +github: https://github.com/jpanther/lynx +demo: https://jpanther.github.io/lynx/ +author: jpanther +date: 2021-11-01T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +css: + - Tailwind +archetype: + - Personal +description: A simple links theme for Hugo built with Tailwind CSS. +stale: false +--- + +Lynx is designed to be a simple links page powered by Hugo. It's built using Tailwind CSS and inspired by services like LinkTree. + +## Features + +- Built with Tailwind CSS JIT for minified stylesheets without any excess code +- Fully responsive layout +- Dark mode (auto-switching based upon browser) +- SVG icons from FontAwesome 5 +- HTML and Emoji support +- Fathom Analytics and Google Analytics support +- Favicons support diff --git a/content/theme/hugo-m10c-theme.md b/content/theme/hugo-m10c-theme.md index 4850e9554..0bf112eca 100644 --- a/content/theme/hugo-m10c-theme.md +++ b/content/theme/hugo-m10c-theme.md @@ -1,14 +1,15 @@ --- title: M10c -github: 'https://github.com/vaga/hugo-theme-m10c' -demo: 'https://themes.gohugo.io/theme/hugo-theme-m10c/' +github: https://github.com/vaga/hugo-theme-m10c +demo: https://themes.gohugo.io/theme/hugo-theme-m10c/ author: vaga ssg: - Hugo cms: - No Cms date: 2019-01-19T09:43:35.000Z -github_branch: master description: A minimalistic (m10c) blog theme for Hugo stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-mainroad.md b/content/theme/hugo-mainroad.md index ddc96684c..6606c08fa 100644 --- a/content/theme/hugo-mainroad.md +++ b/content/theme/hugo-mainroad.md @@ -1,14 +1,13 @@ --- title: Mainroad -github: 'https://github.com/Vimux/Mainroad' -demo: 'https://mainroad-demo.netlify.app/' +github: https://github.com/Vimux/Mainroad +demo: https://mainroad-demo.netlify.app/ author: Vimux ssg: - Hugo cms: - No Cms date: 2016-12-15T13:21:09.000Z -github_branch: master description: >- Responsive, simple, clean and content-focused Hugo theme based on the MH Magazine lite WordPress theme diff --git a/content/theme/hugo-manis.md b/content/theme/hugo-manis.md index 8a27c4391..9f7a56c69 100644 --- a/content/theme/hugo-manis.md +++ b/content/theme/hugo-manis.md @@ -1,14 +1,15 @@ --- title: Manis -github: 'https://github.com/yursan9/manis-hugo-theme' -demo: 'https://themes.gohugo.io/theme/manis-hugo-theme/' +github: https://github.com/yursan9/manis-hugo-theme +demo: https://themes.gohugo.io/theme/manis-hugo-theme/ author: Yurizal Susanto ssg: - Hugo cms: - No Cms date: 2017-06-24T04:21:19.000Z -github_branch: master description: Sweet little Hugo's theme for personal website stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-material-blog.md b/content/theme/hugo-material-blog.md index e2fbd2fff..f220e2039 100644 --- a/content/theme/hugo-material-blog.md +++ b/content/theme/hugo-material-blog.md @@ -1,14 +1,15 @@ --- title: Hugo Material Blog -github: 'https://github.com/Xzya/hugo-material-blog' -demo: 'https://themes.gohugo.io/theme/hugo-material-blog/' +github: https://github.com/Xzya/hugo-material-blog +demo: https://themes.gohugo.io/theme/hugo-material-blog/ author: Mihail Cristian Dumitru ssg: - Hugo cms: - No Cms date: 2018-04-21T15:43:28.000Z -github_branch: master description: Clean Material Design blog theme for Hugo. stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-material-design.md b/content/theme/hugo-material-design.md index 151819dfe..170b70d60 100644 --- a/content/theme/hugo-material-design.md +++ b/content/theme/hugo-material-design.md @@ -1,14 +1,15 @@ --- title: Material Design -github: 'https://github.com/pdevty/material-design' -demo: 'https://themes.gohugo.io/theme/material-design/' +github: https://github.com/pdevty/material-design +demo: https://themes.gohugo.io/theme/material-design/ author: pdevty ssg: - Hugo cms: - No Cms date: 2015-05-15T13:44:38.000Z -github_branch: master description: Simple Material Design Theme for Hugo stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-mediumish-theme.md b/content/theme/hugo-mediumish-theme.md index ffaa5d40d..193931d9f 100644 --- a/content/theme/hugo-mediumish-theme.md +++ b/content/theme/hugo-mediumish-theme.md @@ -1,14 +1,13 @@ --- title: Hugo Mediumish -github: 'https://github.com/lgaida/mediumish-gohugo-theme' -demo: 'https://lgaida.github.io/mediumish-gohugo-theme-demo/' +github: https://github.com/lgaida/mediumish-gohugo-theme +demo: https://lgaida.github.io/mediumish-gohugo-theme-demo/ author: lgaida ssg: - Hugo cms: - No Cms date: 2018-10-07T08:26:20.000Z -github_branch: master -description: 'A mediumish gohugo theme, ported from jekyll' -stale: false +description: A mediumish gohugo theme, ported from jekyll +stale: true --- diff --git a/content/theme/hugo-mero-theme.md b/content/theme/hugo-mero-theme.md index d1877a507..f01e3e41b 100644 --- a/content/theme/hugo-mero-theme.md +++ b/content/theme/hugo-mero-theme.md @@ -1,14 +1,15 @@ --- title: Mero -github: 'https://github.com/darshanbaral/mero' -demo: 'https://themes.gohugo.io/theme/mero/' +github: https://github.com/darshanbaral/mero +demo: https://themes.gohugo.io/theme/mero/ author: Darshan Baral ssg: - Hugo cms: - No Cms date: 2019-03-03T03:55:20.000Z -github_branch: master description: Hugo theme for personal blogs -stale: true +stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-min-night.md b/content/theme/hugo-min-night.md index 6461aed81..5f2cb228b 100644 --- a/content/theme/hugo-min-night.md +++ b/content/theme/hugo-min-night.md @@ -1,14 +1,13 @@ --- title: Min_night -github: 'https://github.com/nathancday/min_night' -demo: 'https://www.natedayta.com/' +github: https://github.com/nathancday/min_night +demo: https://www.natedayta.com/ author: Nate Day ssg: - Hugo cms: - No Cms date: 2018-05-19T17:36:39.000Z -github_branch: master description: An easy on the eyes Hugo blog theme with dark mode. -stale: false +stale: true --- diff --git a/content/theme/hugo-minial-bootstrap-theme.md b/content/theme/hugo-minial-bootstrap-theme.md index 791668039..c98dfe125 100644 --- a/content/theme/hugo-minial-bootstrap-theme.md +++ b/content/theme/hugo-minial-bootstrap-theme.md @@ -1,14 +1,13 @@ --- title: Minimal Bootstrap -github: 'https://github.com/zwbetz-gh/minimal-bootstrap-hugo-theme' -demo: 'https://minimal-bootstrap-hugo-theme.netlify.com/' +github: https://github.com/zwbetz-gh/minimal-bootstrap-hugo-theme +demo: https://minimal-bootstrap-hugo-theme.netlify.com/ author: Zachary Betz ssg: - Hugo cms: - No Cms date: 2018-10-08T04:39:24.000Z -github_branch: master description: A minimal hugo theme made with bootstrap stale: false --- diff --git a/content/theme/hugo-minimage.md b/content/theme/hugo-minimage.md index 3e478b7bf..506f9cb06 100644 --- a/content/theme/hugo-minimage.md +++ b/content/theme/hugo-minimage.md @@ -1,14 +1,15 @@ --- title: Minimage -github: 'https://github.com/d-kusk/minimage' -demo: 'https://themes.gohugo.io/theme/minimage/' +github: https://github.com/d-kusk/minimage +demo: https://themes.gohugo.io/theme/minimage/ author: Daisuke Konishi ssg: - Hugo cms: - No Cms date: 2017-11-04T10:52:19.000Z -github_branch: master description: Hugo's theme stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-minimalist-spa.md b/content/theme/hugo-minimalist-spa.md index e8a73e5c7..cac8cc3c7 100644 --- a/content/theme/hugo-minimalist-spa.md +++ b/content/theme/hugo-minimalist-spa.md @@ -1,14 +1,15 @@ --- title: Hugo minimalist SPA -github: 'https://github.com/Sag-Dev/hugo-minimalist-spa' -demo: 'https://themes.gohugo.io/theme/hugo-minimalist-spa/' +github: https://github.com/Sag-Dev/hugo-minimalist-spa +demo: https://themes.gohugo.io/theme/hugo-minimalist-spa/ author: Sergio Abreu García ssg: - Hugo cms: - No Cms date: 2018-09-15T14:57:06.000Z -github_branch: master description: A minimalist single page application theme for Hugo stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-minimo.md b/content/theme/hugo-minimo.md index fe9431c72..03a05e286 100644 --- a/content/theme/hugo-minimo.md +++ b/content/theme/hugo-minimo.md @@ -1,14 +1,13 @@ --- title: Minimo -github: 'https://github.com/MunifTanjim/minimo' -demo: 'https://minimo.netlify.com/' +github: https://github.com/MunifTanjim/minimo +demo: https://minimo.netlify.com/ author: Munif Tanjim ssg: - Hugo cms: - No Cms date: 2017-05-18T22:32:21.000Z -github_branch: master description: Minimo - Minimalist theme for Hugo stale: false --- diff --git a/content/theme/hugo-myportfolio-theme.md b/content/theme/hugo-myportfolio-theme.md index 0e4fe66c8..7066f0e5a 100644 --- a/content/theme/hugo-myportfolio-theme.md +++ b/content/theme/hugo-myportfolio-theme.md @@ -1,14 +1,15 @@ --- title: MyPortfolio -github: 'https://github.com/2-REC/hugo-myportfolio-theme' -demo: 'https://themes.gohugo.io/theme/hugo-myportfolio-theme/' +github: https://github.com/2-REC/hugo-myportfolio-theme +demo: https://themes.gohugo.io/theme/hugo-myportfolio-theme/ author: Derek ssg: - Hugo cms: - No Cms date: 2018-09-10T06:57:49.000Z -github_branch: master description: Adaptation of the HUGO Creative Theme to support several portfolios. -stale: false +stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-navigator.md b/content/theme/hugo-navigator.md deleted file mode 100644 index 1deac4e33..000000000 --- a/content/theme/hugo-navigator.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: Navigator Hugo -github: 'https://github.com/themefisher/navigator-hugo' -demo: 'https://themes.gohugo.io/theme/navigator-hugo/en' -author: Theme Fisher -ssg: - - Hugo -cms: - - No Cms -date: 2018-07-08T10:28:35.000Z -github_branch: master -description: 'Navigator Template Hugo Version by themefisher . ' -stale: false ---- diff --git a/content/theme/hugo-nederburg-theme.md b/content/theme/hugo-nederburg-theme.md index 9cc18d970..a4ecef2b2 100644 --- a/content/theme/hugo-nederburg-theme.md +++ b/content/theme/hugo-nederburg-theme.md @@ -1,14 +1,15 @@ --- title: Nederburg -github: 'https://github.com/appernetic/hugo-nederburg-theme' -demo: 'https://themes.gohugo.io/theme/hugo-nederburg-theme/' +github: https://github.com/appernetic/hugo-nederburg-theme +demo: https://themes.gohugo.io/theme/hugo-nederburg-theme/ author: Göran Svensson ssg: - Hugo cms: - No Cms date: 2018-03-16T01:18:29.000Z -github_branch: master description: Nederburg is a fast and secure hugo theme and is a port of the Tracks WP theme stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-niello-theme.md b/content/theme/hugo-niello-theme.md index f27d5cc27..f89865b5a 100644 --- a/content/theme/hugo-niello-theme.md +++ b/content/theme/hugo-niello-theme.md @@ -1,14 +1,15 @@ --- title: Niello -github: 'https://github.com/guangmean/Niello' -demo: 'https://themes.gohugo.io/theme/Niello/' +github: https://github.com/guangmean/Niello +demo: https://themes.gohugo.io/theme/Niello/ author: guangmean ssg: - Hugo cms: - No Cms date: 2019-01-03T09:47:08.000Z -github_branch: master description: A Dark Theme for Hugo stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-nofancy.md b/content/theme/hugo-nofancy.md index 9f1505313..5c26e9df2 100644 --- a/content/theme/hugo-nofancy.md +++ b/content/theme/hugo-nofancy.md @@ -1,14 +1,15 @@ --- title: Nofancy -github: 'https://github.com/gizak/nofancy' -demo: 'https://themes.gohugo.io/theme/nofancy/' +github: https://github.com/gizak/nofancy +demo: https://themes.gohugo.io/theme/nofancy/ author: Zack Guo ssg: - Hugo cms: - No Cms date: 2015-01-08T23:10:17.000Z -github_branch: master description: A Hugo blog theme stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-now-ui.md b/content/theme/hugo-now-ui.md index 970888061..7c27ebe49 100644 --- a/content/theme/hugo-now-ui.md +++ b/content/theme/hugo-now-ui.md @@ -1,16 +1,15 @@ --- title: Now UI -github: 'https://github.com/cboettig/hugo-now-ui' -demo: 'https://themes.gohugo.io/theme/hugo-now-ui/' +github: https://github.com/cboettig/hugo-now-ui +demo: https://themes.gohugo.io/theme/hugo-now-ui/ author: Carl Boettiger ssg: - Hugo cms: - No Cms date: 2017-11-24T22:14:31.000Z -github_branch: master description: ':globe_with_meridians: Hugo adaptation of Now-UI from Creative Tim' -stale: false -disabled: true +stale: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/hugo-now.md b/content/theme/hugo-now.md index 435c11746..737bbf713 100644 --- a/content/theme/hugo-now.md +++ b/content/theme/hugo-now.md @@ -1,14 +1,15 @@ --- title: Hugo Now -github: 'https://github.com/mikeblum/hugo-now' -demo: 'https://themes.gohugo.io/theme/hugo-now/' +github: https://github.com/mikeblum/hugo-now +demo: https://themes.gohugo.io/theme/hugo-now/ author: Michael Blum ssg: - Hugo cms: - No Cms date: 2017-07-02T23:22:27.000Z -github_branch: master description: a Hugo port of Jekyll Now stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-octopress-theme.md b/content/theme/hugo-octopress-theme.md index a1f02ac07..bdb94b3ab 100644 --- a/content/theme/hugo-octopress-theme.md +++ b/content/theme/hugo-octopress-theme.md @@ -1,14 +1,15 @@ --- title: Hugo-Octopress -github: 'https://github.com/parsiya/Hugo-Octopress' -demo: 'https://hugo-octopress-test.s3-website-us-east-1.amazonaws.com/' +github: https://github.com/parsiya/Hugo-Octopress +demo: https://hugo-octopress-test.s3-website-us-east-1.amazonaws.com/ author: Parsia Hakimian ssg: - Hugo cms: - No Cms date: 2016-02-02T06:55:49.000Z -github_branch: master description: Port of the classic Octopress theme to Hugo stale: false +disabled: true +disabled_reason: error checking demo url --- diff --git a/content/theme/hugo-onedly-theme.md b/content/theme/hugo-onedly-theme.md index 0096caafa..b326f8de9 100644 --- a/content/theme/hugo-onedly-theme.md +++ b/content/theme/hugo-onedly-theme.md @@ -1,14 +1,15 @@ --- title: OneDly Project -github: 'https://github.com/cdeck3r/OneDly-Theme' -demo: 'https://themes.gohugo.io/theme/OneDly-Theme/' +github: https://github.com/cdeck3r/OneDly-Theme +demo: https://themes.gohugo.io/theme/OneDly-Theme/ author: Christian Decker ssg: - Hugo cms: - No Cms date: 2019-08-05T19:25:52.000Z -github_branch: master description: Hugo theme for documenting One-Day-Only projects stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-onepress.md b/content/theme/hugo-onepress.md index c43795f1e..43cf61b27 100644 --- a/content/theme/hugo-onepress.md +++ b/content/theme/hugo-onepress.md @@ -1,16 +1,17 @@ --- title: Onepress -github: 'https://github.com/ijsucceed/onepress' -demo: 'https://themes.gohugo.io/theme/onepress/' +github: https://github.com/ijsucceed/onepress +demo: https://themes.gohugo.io/theme/onepress/ author: Jeremiah Succeed ssg: - Hugo cms: - No Cms date: 2018-12-19T14:27:31.000Z -github_branch: master description: >- A simple, clean, and responsive 'Hugo - Static Site Generator' theme for bloggers stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-onetwothree.md b/content/theme/hugo-onetwothree.md index db3474502..eb1bbe98b 100644 --- a/content/theme/hugo-onetwothree.md +++ b/content/theme/hugo-onetwothree.md @@ -1,14 +1,13 @@ --- title: Onetwothree -github: 'https://github.com/schollz/onetwothree' -demo: 'https://schollz.github.io/onetwothree/' +github: https://github.com/schollz/onetwothree +demo: https://schollz.github.io/onetwothree/ author: Zack Scholl ssg: - Hugo cms: - No Cms date: 2017-11-02T18:03:28.000Z -github_branch: master -description: 'A responsive minimalist theme for Hugo that is simple as 1, 2, 3' +description: A responsive minimalist theme for Hugo that is simple as 1, 2, 3 stale: true --- diff --git a/content/theme/hugo-orbit-theme.md b/content/theme/hugo-orbit-theme.md index 8531b0932..05c10eb3d 100644 --- a/content/theme/hugo-orbit-theme.md +++ b/content/theme/hugo-orbit-theme.md @@ -1,14 +1,15 @@ --- title: Orbit -github: 'https://github.com/aerohub/hugo-orbit-theme' -demo: 'https://themes.gohugo.io/theme/hugo-orbit-theme/' +github: https://github.com/aerohub/hugo-orbit-theme +demo: https://themes.gohugo.io/theme/hugo-orbit-theme/ author: Pavel Kanyshev ssg: - Hugo cms: - No Cms date: 2016-09-26T06:30:06.000Z -github_branch: master description: Great looking resume/CV theme designed for developers. stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-osprey-theme.md b/content/theme/hugo-osprey-theme.md index 5d5aa99ed..815b76d73 100644 --- a/content/theme/hugo-osprey-theme.md +++ b/content/theme/hugo-osprey-theme.md @@ -1,14 +1,13 @@ --- title: Osprey -github: 'https://github.com/tomanistor/osprey' -demo: 'https://tomanistor.com/' +github: https://github.com/tomanistor/osprey +demo: https://tomanistor.com/ author: Toma Nistor ssg: - Hugo cms: - No Cms date: 2017-05-15T05:32:08.000Z -github_branch: master -description: 'Simple, clean, and fast one-page Hugo portfolio theme accompanied by a blog' +description: Simple, clean, and fast one-page Hugo portfolio theme accompanied by a blog stale: true --- diff --git a/content/theme/hugo-osprey_delight.md b/content/theme/hugo-osprey_delight.md new file mode 100644 index 000000000..cd01c36f5 --- /dev/null +++ b/content/theme/hugo-osprey_delight.md @@ -0,0 +1,60 @@ +--- +title: Osprey Delight +github: https://github.com/kdevo/osprey-delight +demo: https://hugo-mods.github.io/ +author: kdevo +date: 2022-05-01T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +css: + - SCSS +archetype: + - Single-Page + - Portfolio + - Blog +description: >- + Modular and fast theme perfectly suited for showing your work. Built with + hugo-mods. +stale: false +--- + +[![Osprey Delight Logo](https://raw.githubusercontent.com/kdevo/osprey-delight/master/images/osprey-delight-logo.png)](https://github.com/kdevo/osprey-delight) + +[![GitHub Release](https://img.shields.io/github/v/release/kdevo/osprey-delight?style=flat-square&color=%230097a7&logo=github)](https://github.com/kdevo/osprey-delight/releases/latest) +[![Discussions](https://img.shields.io/badge/GitHub-Discussions-%230097a7?logo=github&style=flat-square)](https://github.com/kdevo/osprey-delight/discussions) +[![Hugo Minimum Version](https://img.shields.io/badge/hugo-%3E=v0.83-%230097a7?logo=hugo&style=flat-square)](https://github.com/gohugoio/hugo/releases) +[![Built with hugo-mods](https://img.shields.io/static/v1?label=%E2%9D%A4&message=hugo-mods&color=0097a7&style=flat-square)](https://github.com/hugo-mods) + +Osprey Delight is the free-minded artist's choice for a clutter-free and blazingly fast single-page portfolio. It's perfectly suited to show off your awesome work! + +This theme is built around the modules shown on the demo site [Hugo Mods](https://hugo-mods.github.io/), making it highly customizable. +If you are only interested in a subset of the functionality, take a look at the existing modules [in the `hugo-mods` GitHub organization](https://github.com/hugo-mods). + +> Originating from [the great Osprey theme](https://github.com/tomanistor/osprey), it brings new features to your **delight** while keeping the original design idea. + +### Features + +- Modular and made out of extensible section building blocks: + - About: Introduce yourself + - Gallery: Show your work using a grid-based gallery with interactive modal boxes + - Blog: Lightweight blog features + - Contact: Contact form with Basin support and built-in spambot protection +- Use your high-quality images [assets](https://gohugo.io/categories/asset-management): + - Lazy image loading plus completely automatic resizing using [lazyimg](https://github.com/hugo-mods/lazyimg) module + - Blur-up technique using automatic low-quality image placeholders (LQIP) + - Modern WebP support with fallback for older browsers +- SEO: + - Score 100 at PageSpeed Insights ([example](https://pagespeed.web.dev/report?url=https%3A%2F%2Fkdevo.github.io%2F)) + - Auto-generated structured ensures that everyone finds you +- Delightful UX: + - Choose between different themes + - Awesome social icons in footer via [icons module](https://github.com/hugo-mods/icons) + - Smooth scrolling plus scroll-spy + - Fetches GitHub repo data if wanted + - Sane fallbacks for No-Script/No-JS users +- Highly [customizable](https://github.com/kdevo/osprey-delight/blob/master/CUSTOMIZING.md) + + +### [Get started!](https://github.com/kdevo/osprey-delight#quickstart) diff --git a/content/theme/hugo-pacman-theme.md b/content/theme/hugo-pacman-theme.md index b3c2f2b07..bda1a000a 100644 --- a/content/theme/hugo-pacman-theme.md +++ b/content/theme/hugo-pacman-theme.md @@ -1,14 +1,15 @@ --- title: Pacman -github: 'https://github.com/coderzh/hugo-pacman-theme' -demo: 'https://themes.gohugo.io/theme/hugo-pacman-theme/' +github: https://github.com/coderzh/hugo-pacman-theme +demo: https://themes.gohugo.io/theme/hugo-pacman-theme/ author: coderzh ssg: - Hugo cms: - No Cms date: 2016-03-20T16:05:24.000Z -github_branch: master description: pacman theme support Hugo v0.37.1 now -stale: false +stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-paper.md b/content/theme/hugo-paper.md index 9d48d0f49..e60874cd9 100644 --- a/content/theme/hugo-paper.md +++ b/content/theme/hugo-paper.md @@ -1,14 +1,15 @@ --- title: Paper -github: 'https://github.com/nanxiaobei/hugo-paper' -demo: 'https://nanxiaobei.github.io/hugo-paper/' +github: https://github.com/nanxiaobei/hugo-paper +demo: https://nanxiaobei.github.io/hugo-paper/ author: nanxiaobei ssg: - Hugo cms: - No Cms date: 2018-01-08T16:26:30.000Z -github_branch: master -description: "\U0001F329 A simple, clean, flexible Hugo theme" +description: 🌩 A simple, clean, flexible Hugo theme stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-paperback.md b/content/theme/hugo-paperback.md index 76848d9de..b609d2328 100644 --- a/content/theme/hugo-paperback.md +++ b/content/theme/hugo-paperback.md @@ -1,14 +1,15 @@ --- title: Paperback -github: 'https://github.com/dashdashzako/paperback' -demo: 'https://dashdashzako.github.io/paperback-demo/' +github: https://github.com/dashdashzako/paperback +demo: https://dashdashzako.github.io/paperback-demo/ author: Damien Caselli ssg: - Hugo cms: - No Cms date: 2016-08-09T13:58:20.000Z -github_branch: master description: Theme for Hugo static website engine -stale: true +stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-papercss-theme.md b/content/theme/hugo-papercss-theme.md index 7f17dbf18..014bf9b9b 100644 --- a/content/theme/hugo-papercss-theme.md +++ b/content/theme/hugo-papercss-theme.md @@ -1,14 +1,13 @@ --- title: PaperCSS -github: 'https://github.com/zwbetz-gh/papercss-hugo-theme' -demo: 'https://papercss-hugo-theme.netlify.com/' +github: https://github.com/zwbetz-gh/papercss-hugo-theme +demo: https://papercss-hugo-theme.netlify.com/ author: Zachary Betz ssg: - Hugo cms: - No Cms date: 2019-02-21T21:33:54.000Z -github_branch: master -description: 'A Hugo theme made with PaperCSS, the less formal CSS framework.' +description: A Hugo theme made with PaperCSS, the less formal CSS framework. stale: false --- diff --git a/content/theme/hugo-papermod.md b/content/theme/hugo-papermod.md index dd68a8a7a..02906a6e2 100644 --- a/content/theme/hugo-papermod.md +++ b/content/theme/hugo-papermod.md @@ -1,10 +1,9 @@ --- title: PaperMod -github: 'https://github.com/adityatelange/hugo-PaperMod' -demo: 'https://adityatelange.github.io/hugo-PaperMod/' +github: https://github.com/adityatelange/hugo-PaperMod +demo: https://adityatelange.github.io/hugo-PaperMod/ author: adityatelange date: 2020-11-22T00:00:00.000Z -github_branch: master ssg: - Hugo cms: @@ -12,6 +11,30 @@ cms: archetype: - Blog - Portfolio -description: 'A fast, clean, responsive Hugo theme based on Paper' +description: A fast, clean, responsive Hugo theme based on Paper stale: false --- + +## Features + +- Multilingual support. (with language selector) +- Light/Dark theme (automatic theme switch a/c to browser theme and theme-switch button). +- SEO Friendly. +- Multiple Author support. +- Search Page with Fuse.js +- No webpack, nodejs and other dependencies are required to edit the theme. +- Uses Hugo's asset generator with pipelining, fingerprinting, bundling and minification by default. +- 3 Modes: + - [Regular Mode.](https://github.com/adityatelange/hugo-PaperMod/wiki/Features#regular-mode-default-mode) + - [Home-Info Mode.](https://github.com/adityatelange/hugo-PaperMod/wiki/Features#home-info-mode) + - [Profile Mode.](https://github.com/adityatelange/hugo-PaperMod/wiki/Features#profile-mode) +- Table of Content Generation (newer implementation). +- Archive of posts. +- Social Icons (home-info and profile-mode) +- Social-Media Share buttons on posts. +- Menu location indicator. +- Taxonomies +- Cover image for each post (with Responsive image support). +- Other Posts suggestion below a post +- Breadcrumb Navigation +- Code Block Copy buttons diff --git a/content/theme/hugo-personal-web.md b/content/theme/hugo-personal-web.md index 87bfe240e..fa1cb8ff7 100644 --- a/content/theme/hugo-personal-web.md +++ b/content/theme/hugo-personal-web.md @@ -1,14 +1,15 @@ --- title: Personal Web -github: 'https://github.com/bjacquemet/personal-web' -demo: 'https://themes.gohugo.io/theme/personal-web/' +github: https://github.com/bjacquemet/personal-web +demo: https://themes.gohugo.io/theme/personal-web/ author: Baptiste Jacquemet ssg: - Hugo cms: - No Cms date: 2019-02-25T16:08:01.000Z -github_branch: master description: Hugo Template for Freelancer Portfolio and Blog stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-piercer-theme.md b/content/theme/hugo-piercer-theme.md index 2dde11731..7661a0904 100644 --- a/content/theme/hugo-piercer-theme.md +++ b/content/theme/hugo-piercer-theme.md @@ -1,16 +1,17 @@ --- title: Piercer -github: 'https://github.com/danielkvist/hugo-piercer-theme' -demo: 'https://piercer.netlify.com/' +github: https://github.com/danielkvist/hugo-piercer-theme +demo: https://piercer.netlify.com/ author: Daniel ssg: - Hugo cms: - No Cms date: 2019-03-24T13:23:10.000Z -github_branch: master description: >- Piercer is a very customizable, fast and simple Hugo theme designed under the mobile-first philosophy. stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-poison.md b/content/theme/hugo-poison.md new file mode 100644 index 000000000..ac4d5f92e --- /dev/null +++ b/content/theme/hugo-poison.md @@ -0,0 +1,42 @@ +--- +title: "Poison" +github: https://github.com/lukeorth/poison +demo: https://poison.lukeorth.com +author: Luke Orth +date: 2022-11-04 +ssg: + - Hugo +cms: + - No CMS +archetype: + - Blog + - Personal + - Portfolio +description: Professional Hugo theme for dev bloggers. Based on Mdo's classic Hyde theme. +--- + +# A clean, professional Hugo theme + +*Poison* is a **clean**, **professional** Hugo theme designed to **captivate** your readers. + +It's also **tiny** and **privacy conscious** with *no external dependencies* (unless you opt to include comments). No JavaScript frameworks, icon packs, or Google fonts. No ads or trackers polluting your console window. + +**We kept things simple**. A little vanilla JavaScript, a dash of CSS, and the power of Hugo. + +All the static assets for the site (JS files, CSS, and fonts) are kept in the theme's */assets/* directory. **That way you know *exactly* what's going on your site**. + +## Features + +* Light and dark mode +* Table of contents +* comments (Disqus and Remark42) +* Series +* Tabs +* KaTeX support +* Mermaid diagram support +* PlantUML diagram support + +## Full Installation Instructions + +* [README](https://github.com/lukeorth/poison) +* [Demo site (with instructions)](https://poison.lukeorth.com/posts/introducing-poison/) diff --git a/content/theme/hugo-polymer-theme.md b/content/theme/hugo-polymer-theme.md index 177e6945c..b8818792f 100644 --- a/content/theme/hugo-polymer-theme.md +++ b/content/theme/hugo-polymer-theme.md @@ -1,14 +1,15 @@ --- title: Polymer -github: 'https://github.com/pdevty/polymer' -demo: 'https://themes.gohugo.io/theme/polymer/' +github: https://github.com/pdevty/polymer +demo: https://themes.gohugo.io/theme/polymer/ author: pdevty ssg: - Hugo cms: - No Cms date: 2015-06-30T09:07:58.000Z -github_branch: master description: Polymer Material Design Theme for Hugo stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-primer-theme.md b/content/theme/hugo-primer-theme.md index 9a7cc4ac8..9329e2aec 100644 --- a/content/theme/hugo-primer-theme.md +++ b/content/theme/hugo-primer-theme.md @@ -1,14 +1,15 @@ --- title: Hugo Primer -github: 'https://github.com/qqhann/hugo-primer' -demo: 'https://themes.gohugo.io/theme/hugo-primer/' +github: https://github.com/qqhann/hugo-primer +demo: https://themes.gohugo.io/theme/hugo-primer/ author: Qiushi Pan ssg: - Hugo cms: - No Cms date: 2019-12-02T10:25:28.000Z -github_branch: master description: Hugo theme based on GitHub's Primer CSS stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-profile.md b/content/theme/hugo-profile.md index 23c3c65b9..72769ea01 100644 --- a/content/theme/hugo-profile.md +++ b/content/theme/hugo-profile.md @@ -1,14 +1,13 @@ --- title: Hugo-profile -github: 'https://github.com/gurusabarish/hugo-profile' -demo: 'https://hugo-profile.netlify.app' +github: https://github.com/gurusabarish/hugo-profile +demo: https://hugo-profile.netlify.app author: GuruSabarish date: 2020-10-22T00:00:00.000Z -github_branch: master ssg: - Hugo cms: - - NetlifyCMS + - DecapCMS css: - Bootstrap archetype: diff --git a/content/theme/hugo-prologue-theme.md b/content/theme/hugo-prologue-theme.md deleted file mode 100644 index 087243643..000000000 --- a/content/theme/hugo-prologue-theme.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: Prologue -github: 'https://github.com/sethmacleod/prologue' -demo: 'https://themes.gohugo.io/theme/prologue/' -author: Seth MacLeod -ssg: - - Hugo -cms: - - No Cms -date: 2017-01-18T00:38:16.000Z -github_branch: master -description: >- - Ported theme by HTML5 UP. Prologue is a single page responsive site template - with a sticky sidebar. -stale: true -disabled: true -disabled_reason: Not Found ---- diff --git a/content/theme/hugo-pulp.md b/content/theme/hugo-pulp.md index 0426d8df8..9a7a0c6e2 100644 --- a/content/theme/hugo-pulp.md +++ b/content/theme/hugo-pulp.md @@ -1,14 +1,15 @@ --- title: Pulp -github: 'https://github.com/koirand/pulp' -demo: 'https://themes.gohugo.io/theme/pulp/' +github: https://github.com/koirand/pulp +demo: https://themes.gohugo.io/theme/pulp/ author: Kazuki Koide ssg: - Hugo cms: - No Cms date: 2018-09-23T10:34:53.000Z -github_branch: master -description: 'Pulp is a Hugo theme for getting a simple, easy-to-read blog site.' +description: Pulp is a Hugo theme for getting a simple, easy-to-read blog site. stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-purehugo.md b/content/theme/hugo-purehugo.md index f80cf9c78..ff80d4bb1 100644 --- a/content/theme/hugo-purehugo.md +++ b/content/theme/hugo-purehugo.md @@ -1,14 +1,13 @@ --- title: Purehugo -github: 'https://github.com/dplesca/purehugo' -demo: 'https://dplesca.github.io/purehugo/' +github: https://github.com/dplesca/purehugo +demo: https://dplesca.github.io/purehugo/ author: Dragos Plesca ssg: - Hugo cms: - No Cms date: 2014-06-01T18:10:47.000Z -github_branch: master description: Hugo theme based on purecss from Yahoo. stale: true --- diff --git a/content/theme/hugo-refresh.md b/content/theme/hugo-refresh.md index 25ba87672..d3cbe3c6b 100644 --- a/content/theme/hugo-refresh.md +++ b/content/theme/hugo-refresh.md @@ -1,13 +1,14 @@ --- title: Hugo ReFresh -github: 'https://github.com/PippoRJ/hugo-refresh' -demo: 'https://themes.gohugo.io/theme/hugo-fresh/' +github: https://github.com/PippoRJ/hugo-refresh +demo: https://themes.gohugo.io/theme/hugo-fresh/ author: Roberto Jordaney ssg: - Hugo cms: - No Cms date: 2019-07-01T23:19:32.000Z -github_branch: master stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-restaurant.md b/content/theme/hugo-restaurant.md deleted file mode 100644 index 401859bd8..000000000 --- a/content/theme/hugo-restaurant.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Restaurant -github: 'https://github.com/themefisher/restaurant-hugo' -demo: 'https://themes.gohugo.io/theme/restaurant-hugo/' -author: Themefisher -ssg: - - Hugo -cms: - - No Cms -date: 2019-03-17T09:52:58.000Z -github_branch: master -stale: false ---- diff --git a/content/theme/hugo-resume-theme.md b/content/theme/hugo-resume-theme.md index 347310a40..0b6fc8a0b 100644 --- a/content/theme/hugo-resume-theme.md +++ b/content/theme/hugo-resume-theme.md @@ -1,14 +1,15 @@ --- title: Resume -github: 'https://github.com/eddiewebb/hugo-resume' -demo: 'https://themes.gohugo.io/theme/hugo-resume/' +github: https://github.com/eddiewebb/hugo-resume +demo: https://themes.gohugo.io/theme/hugo-resume/ author: Eddie Webb ssg: - Hugo cms: - No Cms date: 2018-02-12T22:23:50.000Z -github_branch: master description: A Hugo theme ported from startbootrap.com's resume template stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-reveal.md b/content/theme/hugo-reveal.md index dc0324474..c53ae5a03 100644 --- a/content/theme/hugo-reveal.md +++ b/content/theme/hugo-reveal.md @@ -1,14 +1,13 @@ --- title: Reveal-Hugo -github: 'https://github.com/dzello/reveal-hugo' -demo: 'https://reveal-hugo.dzello.com/#/' +github: https://github.com/dzello/reveal-hugo +demo: https://reveal-hugo.dzello.com/#/ author: Josh Dzielak ssg: - Hugo cms: - No Cms date: 2018-04-26T22:21:56.000Z -github_branch: master -description: "\U0001F4FD️ Create rich HTML-based presentations with Hugo and Reveal.js" +description: 📽️ Create rich HTML-based presentations with Hugo and Reveal.js stale: false --- diff --git a/content/theme/hugo-sada-theme.md b/content/theme/hugo-sada-theme.md index 4de1538c8..bd5c93d8a 100644 --- a/content/theme/hugo-sada-theme.md +++ b/content/theme/hugo-sada-theme.md @@ -1,14 +1,15 @@ --- title: Sada -github: 'https://github.com/darshanbaral/sada' -demo: 'https://themes.gohugo.io/theme/sada/' +github: https://github.com/darshanbaral/sada +demo: https://themes.gohugo.io/theme/sada/ author: Darshan Baral ssg: - Hugo cms: - No Cms date: 2018-12-16T23:03:20.000Z -github_branch: master description: Simple hugo theme for resume created using Bootstrap 4 -stale: true +stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-serif.md b/content/theme/hugo-serif.md index f75e3ec3d..f703bce96 100644 --- a/content/theme/hugo-serif.md +++ b/content/theme/hugo-serif.md @@ -1,27 +1,25 @@ --- title: Hugo Serif -github: 'https://github.com/zerostaticthemes/hugo-serif-theme' -demo: 'https://hugo-serif.netlify.app' +github: https://github.com/zerostaticthemes/hugo-serif-theme +demo: https://hugo-serif.netlify.app author: Robert Austin ssg: - Hugo cms: - No Cms date: 2020-10-12T00:00:00.000Z -github_branch: master description: >- Serif is a modern business theme for Hugo. It contains content types for the archetypical business website. The theme is fully responsive, blazing fast and artfully illustrated. stale: false -weight: 11 --- # Deployment ## Stackbit -Use Stackbit to deploy this theme and connect any headless CMS _(Forestry, NetlifyCMS, Sanity, Contentful, DatoCMS)_ - It's actually really amazing. This theme contains a valid and tested `stackbit.yaml` +Use Stackbit to deploy this theme and connect any headless CMS _(Forestry, DecapCMS, Sanity, Contentful, DatoCMS)_ - It's actually really amazing. This theme contains a valid and tested `stackbit.yaml` [![Create with Stackbit](https://assets.stackbit.com/badge/create-with-stackbit.svg)](https://app.stackbit.com/create?theme=https://github.com/zerostaticthemes/hugo-serif-theme) diff --git a/content/theme/hugo-showfolio.md b/content/theme/hugo-showfolio.md new file mode 100644 index 000000000..403ac1ecc --- /dev/null +++ b/content/theme/hugo-showfolio.md @@ -0,0 +1,32 @@ +--- +title: ShowFolio +github: https://github.com/apvarun/showfolio-hugo-theme +demo: https://showfolio.vercel.app/ +author: Varun A P +date: 2021-04-26T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +css: + - Tailwind +archetype: + - Blog + - Portfolio + - Personal +description: Modern portfolio theme for your Hugo site +stale: false +--- + +# ShowFolio is a modern portfolio theme for your Hugo site. + +This is a performance optimized theme for creating a simple yet attractive portfollio website. + +## Features: + +* Responsive content +* Codepen Embeds +* Blog +* Social links +* Performant +* Dark mode diff --git a/content/theme/hugo-silhouette-theme.md b/content/theme/hugo-silhouette-theme.md index 293163dfd..489dd49b1 100644 --- a/content/theme/hugo-silhouette-theme.md +++ b/content/theme/hugo-silhouette-theme.md @@ -1,13 +1,14 @@ --- title: Silhouette Hugo -github: 'https://github.com/mattbutton/silhouette-hugo' -demo: 'https://themes.gohugo.io/theme/silhouette-hugo/' +github: https://github.com/mattbutton/silhouette-hugo +demo: https://themes.gohugo.io/theme/silhouette-hugo/ author: Matt Button ssg: - Hugo cms: - No Cms date: 2018-12-15T10:28:21.000Z -github_branch: master -stale: true +stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-simple-a.md b/content/theme/hugo-simple-a.md index 3a539501a..40156795c 100644 --- a/content/theme/hugo-simple-a.md +++ b/content/theme/hugo-simple-a.md @@ -1,14 +1,15 @@ --- title: Simple-A -github: 'https://github.com/AlexFinn/simple-a' -demo: 'https://simple-a.alxschwarz.com/' +github: https://github.com/AlexFinn/simple-a +demo: https://simple-a.alxschwarz.com/ author: AlexFinn ssg: - Hugo cms: - No Cms date: 2014-06-19T09:30:36.000Z -github_branch: master description: Minimalistic Hugo theme stale: true +disabled: true +disabled_reason: error checking demo url --- diff --git a/content/theme/hugo-simpleit.md b/content/theme/hugo-simpleit.md index 499ad2d5f..f4a7dfe21 100644 --- a/content/theme/hugo-simpleit.md +++ b/content/theme/hugo-simpleit.md @@ -1,14 +1,15 @@ --- title: SimpleIT -github: 'https://github.com/marcanuy/simpleit-hugo-theme' -demo: 'https://themes.gohugo.io/theme/simpleit-hugo-theme/' +github: https://github.com/marcanuy/simpleit-hugo-theme +demo: https://themes.gohugo.io/theme/simpleit-hugo-theme/ author: Marcelo Canina ssg: - Hugo cms: - No Cms date: 2018-08-06T20:17:57.000Z -github_branch: master description: Responsive Hugo theme for hierarchical content websites stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-simplicity-theme.md b/content/theme/hugo-simplicity-theme.md index 48ba44c49..4a90d9217 100644 --- a/content/theme/hugo-simplicity-theme.md +++ b/content/theme/hugo-simplicity-theme.md @@ -1,14 +1,15 @@ --- title: Simplicity -github: 'https://github.com/eshlox/simplicity' -demo: 'https://themes.gohugo.io/theme/simplicity/' +github: https://github.com/eshlox/simplicity +demo: https://themes.gohugo.io/theme/simplicity/ author: Przemysław Kołodziejczyk ssg: - Hugo cms: - No Cms date: 2017-11-05T18:54:34.000Z -github_branch: master description: Hugo theme. stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-slate-theme.md b/content/theme/hugo-slate-theme.md index 94d7c8244..44719230c 100644 --- a/content/theme/hugo-slate-theme.md +++ b/content/theme/hugo-slate-theme.md @@ -1,14 +1,13 @@ --- title: Slate -github: 'https://github.com/gesquive/slate' -demo: 'https://gesquive.github.io/hugo-slate-demo/' +github: https://github.com/gesquive/slate +demo: https://gesquive.github.io/hugo-slate-demo/ author: Gus Esquivel ssg: - Hugo cms: - No Cms date: 2017-05-18T22:56:52.000Z -github_branch: master description: a single-page speed-dial theme for Hugo stale: true --- diff --git a/content/theme/hugo-slick-theme.md b/content/theme/hugo-slick-theme.md index 0d01e04dc..cd1c2c87d 100644 --- a/content/theme/hugo-slick-theme.md +++ b/content/theme/hugo-slick-theme.md @@ -1,14 +1,15 @@ --- title: Slick -github: 'https://github.com/spookey/slick' -demo: 'https://themes.gohugo.io/theme/slick/' +github: https://github.com/spookey/slick +demo: https://themes.gohugo.io/theme/slick/ author: Frieder Grießhammer ssg: - Hugo cms: - No Cms date: 2018-12-09T14:04:20.000Z -github_branch: master -description: 'A fast, minimal, responsive theme for Hugo which honours your privacy' +description: A fast, minimal, responsive theme for Hugo which honours your privacy stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-sodium-theme.md b/content/theme/hugo-sodium-theme.md index 7f3999e95..b37b7b499 100644 --- a/content/theme/hugo-sodium-theme.md +++ b/content/theme/hugo-sodium-theme.md @@ -1,13 +1,14 @@ --- title: Sodium -github: 'https://github.com/uicardiodev/hugo-sodium-theme' -demo: 'https://themes.gohugo.io/theme/hugo-sodium-theme/' +github: https://github.com/uicardiodev/hugo-sodium-theme +demo: https://themes.gohugo.io/theme/hugo-sodium-theme/ author: UICardio ssg: - Hugo cms: - No Cms date: 2018-06-28T04:01:56.000Z -github_branch: master stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-solar-theme.md b/content/theme/hugo-solar-theme.md index 9853eaa8f..55b0c12fa 100644 --- a/content/theme/hugo-solar-theme.md +++ b/content/theme/hugo-solar-theme.md @@ -1,14 +1,15 @@ --- title: Solar -github: 'https://github.com/bake/solar-theme-hugo' -demo: 'https://themes.gohugo.io/theme/solar-theme-hugo/' +github: https://github.com/bake/solar-theme-hugo +demo: https://themes.gohugo.io/theme/solar-theme-hugo/ author: bake ssg: - Hugo cms: - No Cms date: 2017-07-24T09:16:53.000Z -github_branch: master description: A port of solar-theme-ghost for Hugo -stale: true +stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-split-theme.md b/content/theme/hugo-split-theme.md index 6e4e6c393..902e50b2b 100644 --- a/content/theme/hugo-split-theme.md +++ b/content/theme/hugo-split-theme.md @@ -1,14 +1,15 @@ --- title: Split -github: 'https://github.com/christianmendoza/hugo-split-theme' -demo: 'https://themes.gohugo.io/theme/hugo-split-theme/' +github: https://github.com/christianmendoza/hugo-split-theme +demo: https://themes.gohugo.io/theme/hugo-split-theme/ author: Christian Mendoza ssg: - Hugo cms: - No Cms date: 2017-12-20T22:30:43.000Z -github_branch: master description: Port of Split template by One Page Love to Hugo stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-starter-blog-theme-casper.md b/content/theme/hugo-starter-blog-theme-casper.md index ec20d5583..60d54767f 100644 --- a/content/theme/hugo-starter-blog-theme-casper.md +++ b/content/theme/hugo-starter-blog-theme-casper.md @@ -1,20 +1,19 @@ --- title: Hugo Casper -github: 'https://github.com/bdougie/casper-cms-template' +github: https://github.com/bdougie/casper-cms-template author: bdougie -demo: 'https://casper-theme.netlify.com/' +demo: https://casper-theme.netlify.com/ date: 2020-06-03T00:00:00.000Z ssg: - Hugo cms: - - NetlifyCMS + - DecapCMS archetype: - Blog -description: A Hugo boilerplate for creating a blog site backed with NetlifyCMS. -github_branch: master +description: A Hugo boilerplate for creating a blog site backed with DecapCMS. stale: true --- -A Hugo boilerplate for creating a blog site backed with [NetlifyCMS](https://www.netlifycms.org) for content authoring. +A Hugo boilerplate for creating a blog site backed with [DecapCMS](https://www.DecapCMS.org) for content authoring. This site template has an asset pipeline using Gulp and Webpack for processing JavaScript with Babel, and CSS with PostCSS. \ No newline at end of file diff --git a/content/theme/hugo-starter-blog-theme-kaldi.md b/content/theme/hugo-starter-blog-theme-kaldi.md index 0c9b81a9b..2243af1bc 100644 --- a/content/theme/hugo-starter-blog-theme-kaldi.md +++ b/content/theme/hugo-starter-blog-theme-kaldi.md @@ -1,20 +1,19 @@ --- title: Hugo starter Kaldi -github: 'https://github.com/netlify-templates/one-click-hugo-cms' +github: https://github.com/netlify-templates/one-click-hugo-cms author: netlify-templates -demo: 'https://master-template-one-click-hugo-cms.netlify.com/' +demo: https://master-template-one-click-hugo-cms.netlify.com/ date: 2020-06-03T00:00:00.000Z ssg: - Hugo cms: - - NetlifyCMS + - DecapCMS archetype: - Blog description: A Hugo boilerplate for creating a blog site -github_branch: master stale: false --- -A Hugo boilerplate for creating a blog site backed with [NetlifyCMS](https://www.netlifycms.org) for content authoring and [Netlify Identity](https://www.netlify.com/docs/identity/) for CMS user authentication. +A Hugo boilerplate for creating a blog site backed with [DecapCMS](https://www.DecapCMS.org) for content authoring and [Netlify Identity](https://www.netlify.com/docs/identity/) for CMS user authentication. It has an asset pipeline using Gulp and Webpack for processing JavaScript with Babel, and CSS with PostCSS. \ No newline at end of file diff --git a/content/theme/hugo-startpage-theme.md b/content/theme/hugo-startpage-theme.md index 6d2021a39..fc673a71d 100644 --- a/content/theme/hugo-startpage-theme.md +++ b/content/theme/hugo-startpage-theme.md @@ -1,14 +1,15 @@ --- title: Startpage -github: 'https://github.com/tnwhitwell/hugo-startpage-theme' -demo: 'https://themes.gohugo.io/theme/hugo-startpage-theme/' +github: https://github.com/tnwhitwell/hugo-startpage-theme +demo: https://themes.gohugo.io/theme/hugo-startpage-theme/ author: Tom Whitwell ssg: - Hugo cms: - No Cms date: 2018-04-23T09:40:29.000Z -github_branch: master -description: 'Hugo start page theme, link listing built from yaml' +description: Hugo start page theme, link listing built from yaml stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-stellar-theme.md b/content/theme/hugo-stellar-theme.md index c4c072f42..ee8946b49 100644 --- a/content/theme/hugo-stellar-theme.md +++ b/content/theme/hugo-stellar-theme.md @@ -1,14 +1,15 @@ --- title: Stellar -github: 'https://github.com/antonpolishko/hugo-stellar-theme' -demo: 'https://themes.gohugo.io/theme/hugo-stellar-theme/' +github: https://github.com/antonpolishko/hugo-stellar-theme +demo: https://themes.gohugo.io/theme/hugo-stellar-theme/ author: Anton Polishko ssg: - Hugo cms: - No Cms date: 2018-06-09T03:49:08.000Z -github_branch: master description: a port of html5up.net/stellar template for Hugo static site generator stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-stip-theme.md b/content/theme/hugo-stip-theme.md index 517c16be2..ff75cee81 100644 --- a/content/theme/hugo-stip-theme.md +++ b/content/theme/hugo-stip-theme.md @@ -1,16 +1,17 @@ --- title: Stip -github: 'https://github.com/EmielH/stip-hugo' -demo: 'https://themes.gohugo.io/theme/stip-hugo/' +github: https://github.com/EmielH/stip-hugo +demo: https://themes.gohugo.io/theme/stip-hugo/ author: Emiel Hollander ssg: - Hugo cms: - No Cms date: 2019-03-31T18:25:34.000Z -github_branch: master description: >- Stip is a single-page Hugo theme to introduce yourself, based on Material Design's tap target design pattern. stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-strange-case.md b/content/theme/hugo-strange-case.md index 3dc04acb8..b8d850f86 100644 --- a/content/theme/hugo-strange-case.md +++ b/content/theme/hugo-strange-case.md @@ -1,16 +1,17 @@ --- title: Strange Case -github: 'https://github.com/ExchangeRate-API/strange-case' -demo: 'https://themes.gohugo.io/theme/strange-case/' +github: https://github.com/ExchangeRate-API/strange-case +demo: https://themes.gohugo.io/theme/strange-case/ author: Exchange Rate API ssg: - Hugo cms: - No Cms date: 2016-08-25T17:44:29.000Z -github_branch: master description: >- Strange Case is a Hugo theme for people who like the Hyde theme ported from Jekyll but prefer using Bootstrap. -stale: true +stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-sugoi.md b/content/theme/hugo-sugoi.md index 53107dd41..afaab6203 100644 --- a/content/theme/hugo-sugoi.md +++ b/content/theme/hugo-sugoi.md @@ -1,14 +1,13 @@ --- title: Sugoi -github: 'https://github.com/aanupam23/hugo-sugoi' -demo: 'https://gosugoi.onrender.com/' +github: https://github.com/aanupam23/hugo-sugoi +demo: https://gosugoi.onrender.com/ author: aanupam23 ssg: - Hugo cms: - No Cms date: 2020-05-18T00:00:00.000Z -github_branch: master description: An Ultra Minimal Hugo Theme based on Skeleton -stale: false ---- +stale: true +--- diff --git a/content/theme/hugo-sustain.md b/content/theme/hugo-sustain.md index 2a34f923d..f5bd0abd3 100644 --- a/content/theme/hugo-sustain.md +++ b/content/theme/hugo-sustain.md @@ -1,16 +1,17 @@ --- title: Sustain -github: 'https://github.com/nurlansu/hugo-sustain' -demo: 'https://demo.nurlan.co/hugo-sustain/' +github: https://github.com/nurlansu/hugo-sustain +demo: https://demo.nurlan.co/hugo-sustain/ author: Nurlan Su ssg: - Hugo cms: - No Cms date: 2016-10-22T07:21:04.000Z -github_branch: master -description: "\U0001F981 Personal blog theme built with Bootstrap, powered by Hugo." +description: 🦁 Personal blog theme built with Bootstrap, powered by Hugo. stale: true +disabled: true +disabled_reason: error checking demo url --- Personal blog theme built with Bootstrap, powered by Hugo. diff --git a/content/theme/hugo-swift-theme.md b/content/theme/hugo-swift-theme.md index 22c8562c8..105a5b236 100644 --- a/content/theme/hugo-swift-theme.md +++ b/content/theme/hugo-swift-theme.md @@ -1,14 +1,13 @@ --- title: Swift -github: 'https://github.com/onweru/hugo-swift-theme' -demo: 'https://neuralvibes.com' +github: https://github.com/onweru/hugo-swift-theme +demo: https://neuralvibes.com author: Weru ssg: - Hugo cms: - No Cms date: 2019-02-14T21:49:30.000Z -github_branch: master description: A simple open source theme for publishing with hugo -stale: false +stale: true --- diff --git a/content/theme/hugo-syna.md b/content/theme/hugo-syna.md index d32cd1d9d..e809a7512 100644 --- a/content/theme/hugo-syna.md +++ b/content/theme/hugo-syna.md @@ -1,14 +1,15 @@ --- title: Syna -github: 'https://github.com/okkur/syna' -demo: 'https://themes.gohugo.io/theme/syna/' +github: https://github.com/okkur/syna +demo: https://themes.gohugo.io/theme/syna/ author: Okkur Labs ssg: - Hugo cms: - No Cms date: 2017-09-07T11:51:44.000Z -github_branch: master description: Highly customizable open source theme for Hugo based static websites stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-tale.md b/content/theme/hugo-tale.md index d31f19594..6e228d6be 100644 --- a/content/theme/hugo-tale.md +++ b/content/theme/hugo-tale.md @@ -1,16 +1,17 @@ --- title: Hugo Tale -github: 'https://github.com/EmielH/tale-hugo' -demo: 'https://themes.gohugo.io/theme/tale-hugo/' +github: https://github.com/EmielH/tale-hugo +demo: https://themes.gohugo.io/theme/tale-hugo/ author: Emiel Hollander ssg: - Hugo cms: - No Cms date: 2018-07-28T14:12:03.000Z -github_branch: master description: >- A port of the Tale theme for Hugo. Tale is a minimal theme curated for storytellers. stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-terrassa-theme.md b/content/theme/hugo-terrassa-theme.md index c447848f4..cdb4d5cfb 100644 --- a/content/theme/hugo-terrassa-theme.md +++ b/content/theme/hugo-terrassa-theme.md @@ -1,16 +1,17 @@ --- title: Terrassa -github: 'https://github.com/danielkvist/hugo-terrassa-theme' -demo: 'https://terrassa.netlify.com/' +github: https://github.com/danielkvist/hugo-terrassa-theme +demo: https://terrassa.netlify.com/ author: Daniel Zaragoza ssg: - Hugo cms: - No Cms date: 2018-12-04T19:18:39.000Z -github_branch: master description: >- Terrassa is a simple, fast and responsive theme for Hugo with a strong focus on accessibility. -stale: false +stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-texify2.md b/content/theme/hugo-texify2.md new file mode 100644 index 000000000..a904b2553 --- /dev/null +++ b/content/theme/hugo-texify2.md @@ -0,0 +1,37 @@ +--- +title: "TeXify2" +github: https://github.com/weastur/hugo-texify2 +demo: https://texify2.io +author: weastur +date: 2023-06-21 +ssg: + - Hugo +cms: + - No CMS +archetype: + - Blog + - Portfolio +description: A minimal, latex-style hugo theme for personal blogging +--- + +# TeXify2 + +A minimal, latex-style hugo theme for personal blogging. + +## Features + +- Social sharing buttons +- Any comment engine (giscus, remark42, hyvor, etc.) +- Word Counter and Reading Time +- [Meramid](https://mermaid.js.org) support +- DuckDuckGo search +- Configurable root font size +- Buymeacoffee widget +- Simplified config +- Hugo modules support +- [Disqus](https://disqus.com/) & Google Analytics included +- Responsive design for mobile devices +- Customize the site with your stylesheets +- Math equations powered by [KaTeX](https://katex.org/) +([MathJax](https://www.mathjax.org/) has been deleted) +- Minimal CSS, No JavaScript, Blazing Fast! diff --git a/content/theme/hugo-theme-air.md b/content/theme/hugo-theme-air.md index e2b3eb4b3..d2bbd38fb 100644 --- a/content/theme/hugo-theme-air.md +++ b/content/theme/hugo-theme-air.md @@ -1,14 +1,15 @@ --- title: Air -github: 'https://github.com/syui/hugo-theme-air' -demo: 'https://themes.gohugo.io/theme/air/' +github: https://github.com/syui/hugo-theme-air +demo: https://themes.gohugo.io/theme/air/ author: syui ssg: - Hugo cms: - No Cms date: 2015-07-24T20:15:24.000Z -github_branch: master description: 'cname : syui.cf' stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-theme-autophugo.md b/content/theme/hugo-theme-autophugo.md index d6d0f7f25..86b133dab 100644 --- a/content/theme/hugo-theme-autophugo.md +++ b/content/theme/hugo-theme-autophugo.md @@ -1,10 +1,9 @@ --- title: AutoPhugo -github: 'https://github.com/kc0bfv/autophugo' -demo: 'https://kc0bfv.github.io/autophugo' -author: 'Karl Sickendick, Pavel Kanyshev' +github: https://github.com/kc0bfv/autophugo +demo: https://kc0bfv.github.io/autophugo +author: Karl Sickendick, Pavel Kanyshev date: 2020-12-21T00:00:00.000Z -github_branch: master ssg: - Hugo cms: diff --git a/content/theme/hugo-theme-basic.md b/content/theme/hugo-theme-basic.md index 101d878af..7ff1204ea 100644 --- a/content/theme/hugo-theme-basic.md +++ b/content/theme/hugo-theme-basic.md @@ -1,14 +1,15 @@ --- title: Basic -github: 'https://github.com/siegerts/hugo-theme-basic' -demo: 'https://hugo-theme-basic.netlify.com/' +github: https://github.com/siegerts/hugo-theme-basic +demo: https://hugo-theme-basic.netlify.com/ author: Stephen Siegert ssg: - Hugo cms: - No Cms date: 2019-02-01T18:42:50.000Z -github_branch: master -description: "Basic site theme styled with minimal tachyons, syntax highlighting, and blog series configuration. \U0001F4E6" -stale: false +description: >- + Basic site theme styled with minimal tachyons, syntax highlighting, and blog + series configuration. 📦 +stale: true --- diff --git a/content/theme/hugo-theme-blueberry-detox.md b/content/theme/hugo-theme-blueberry-detox.md index a48cfad2e..c8c741c6c 100644 --- a/content/theme/hugo-theme-blueberry-detox.md +++ b/content/theme/hugo-theme-blueberry-detox.md @@ -1,13 +1,14 @@ --- title: Detox -github: 'https://github.com/allnightgrocery/hugo-theme-blueberry-detox' -demo: 'https://themes.gohugo.io/theme/detox/' +github: https://github.com/allnightgrocery/hugo-theme-blueberry-detox +demo: https://themes.gohugo.io/theme/detox/ author: Andrew R. Jenkins ssg: - Hugo cms: - No Cms date: 2015-04-25T16:51:59.000Z -github_branch: master stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-theme-bootie-docs.md b/content/theme/hugo-theme-bootie-docs.md index cee4b2df3..3a9f71e93 100644 --- a/content/theme/hugo-theme-bootie-docs.md +++ b/content/theme/hugo-theme-bootie-docs.md @@ -1,14 +1,13 @@ --- title: Bootie Docs -github: 'https://github.com/progrhyme/hugo-theme-bootie-docs' -demo: 'https://progrhy.me/bootie-docs-demo/' +github: https://github.com/progrhyme/hugo-theme-bootie-docs +demo: https://progrhy.me/bootie-docs-demo/ author: IKEDA Kiyoshi ssg: - Hugo cms: - No Cms date: 2015-04-19T10:27:41.000Z -github_branch: master description: A simple Hugo theme for documentation stale: true --- diff --git a/content/theme/hugo-theme-bootstrap4-blog.md b/content/theme/hugo-theme-bootstrap4-blog.md index 8482d2412..6aa6add90 100644 --- a/content/theme/hugo-theme-bootstrap4-blog.md +++ b/content/theme/hugo-theme-bootstrap4-blog.md @@ -1,14 +1,13 @@ --- title: Hugo Bootstrap v4 Blog -github: 'https://github.com/alanorth/hugo-theme-bootstrap4-blog' -demo: 'https://picturingjordan.com/' +github: https://github.com/alanorth/hugo-theme-bootstrap4-blog +demo: https://picturingjordan.com/ author: Alan Orth ssg: - Hugo cms: - No Cms date: 2016-08-28T13:23:53.000Z -github_branch: master description: A blogging-centric Bootstrap v4 theme for the Hugo static site generator. stale: false --- diff --git a/content/theme/hugo-theme-cactus-plus.md b/content/theme/hugo-theme-cactus-plus.md index a6d879b77..af66abd70 100644 --- a/content/theme/hugo-theme-cactus-plus.md +++ b/content/theme/hugo-theme-cactus-plus.md @@ -1,14 +1,15 @@ --- title: Cactus Plus -github: 'https://github.com/nodejh/hugo-theme-cactus-plus' -demo: 'https://themes.gohugo.io/theme/hugo-theme-cactus-plus/' +github: https://github.com/nodejh/hugo-theme-cactus-plus +demo: https://themes.gohugo.io/theme/hugo-theme-cactus-plus/ author: Hang Jiang ssg: - Hugo cms: - No Cms date: 2017-01-15T14:56:47.000Z -github_branch: master description: A minimalistic hugo theme based on cactus -stale: true +stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-theme-charaka.md b/content/theme/hugo-theme-charaka.md index 4f226a3fe..90c3dbe4e 100644 --- a/content/theme/hugo-theme-charaka.md +++ b/content/theme/hugo-theme-charaka.md @@ -1,14 +1,15 @@ --- title: Charaka -github: 'https://github.com/natarajmb/charaka-hugo-theme' -demo: 'https://themes.gohugo.io/theme/charaka-hugo-theme/' +github: https://github.com/natarajmb/charaka-hugo-theme +demo: https://themes.gohugo.io/theme/charaka-hugo-theme/ author: Nataraj Basappa ssg: - Hugo cms: - No Cms date: 2018-08-21T20:17:16.000Z -github_branch: master description: Minimalistic and Responsive blog theme for hugo stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-theme-chunky-poster.md b/content/theme/hugo-theme-chunky-poster.md index 6c6a759f0..632344775 100644 --- a/content/theme/hugo-theme-chunky-poster.md +++ b/content/theme/hugo-theme-chunky-poster.md @@ -1,16 +1,15 @@ --- title: Chunky Poster -github: 'https://github.com/puresyntax71/hugo-theme-chunky-poster' -demo: 'https://hugo-theme-chunky-poster.netlify.com' +github: https://github.com/puresyntax71/hugo-theme-chunky-poster +demo: https://hugo-theme-chunky-poster.netlify.com author: virtualcursor date: 2019-12-17T00:00:00.000Z -github_branch: master ssg: - Hugo css: - Bootstrap -description: 'A simple, bootstrap 4 based hugo blog theme.' -stale: false +description: A simple, bootstrap 4 based hugo blog theme. +stale: true --- # Features diff --git a/content/theme/hugo-theme-cleanwhite.md b/content/theme/hugo-theme-cleanwhite.md index b327b59bc..313ea2ada 100644 --- a/content/theme/hugo-theme-cleanwhite.md +++ b/content/theme/hugo-theme-cleanwhite.md @@ -1,14 +1,13 @@ --- title: Hugo Clean White -github: 'https://github.com/zhaohuabing/hugo-theme-cleanwhite' -demo: 'https://zhaohuabing.com/' +github: https://github.com/zhaohuabing/hugo-theme-cleanwhite +demo: https://zhaohuabing.com/ author: Huabing Zhao ssg: - Hugo cms: - No Cms date: 2018-06-16T13:57:14.000Z -github_branch: master -description: 'A clean, elegant blog theme for hugo' +description: A clean, elegant blog theme for hugo stale: false --- diff --git a/content/theme/hugo-theme-den.md b/content/theme/hugo-theme-den.md index 6ce99df67..8d8c1a0d0 100644 --- a/content/theme/hugo-theme-den.md +++ b/content/theme/hugo-theme-den.md @@ -1,14 +1,15 @@ --- title: Den -github: 'https://github.com/shaform/hugo-theme-den' -demo: 'https://themes.gohugo.io/theme/hugo-theme-den/en' +github: https://github.com/shaform/hugo-theme-den +demo: https://themes.gohugo.io/theme/hugo-theme-den/en author: Yong-Siang Shih ssg: - Hugo cms: - No Cms date: 2018-07-15T13:29:45.000Z -github_branch: master description: A Simple Theme for Hugo -stale: false +stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-theme-docura.md b/content/theme/hugo-theme-docura.md new file mode 100644 index 000000000..351153b34 --- /dev/null +++ b/content/theme/hugo-theme-docura.md @@ -0,0 +1,28 @@ +--- +title: Docura +github: https://github.com/docura/docura +demo: https://docura.github.io +author: Dumindu Madunuwan +date: 2023-07-26 +ssg: + - Hugo +cms: + - No CMS +archetype: + - Documentation +description: A modular Hugo theme to build your next documentation site +--- + +# Docura + +A modular Hugo theme to build your next documentation site. + +## Features + +- Responsive and adaptive layouts. +- Built-in dark, light and night themes. +- Customizable menu with Hugo configs. +- Customizable sidebars using Hugo data templates. +- Support for multiple documentation sets. +- Minimal reliance on external frameworks (No CSS, JS/npm, icon, font frameworks). +- SCSS/Vanilla JS based UI components and Hugo pipes based building process. diff --git a/content/theme/hugo-theme-doors.md b/content/theme/hugo-theme-doors.md index 294a4261f..acf33971e 100644 --- a/content/theme/hugo-theme-doors.md +++ b/content/theme/hugo-theme-doors.md @@ -1,14 +1,13 @@ --- title: Doors -github: 'https://github.com/zzzmisa/hugo-theme-doors' -demo: 'https://zzzmisa.com/' +github: https://github.com/zzzmisa/hugo-theme-doors +demo: https://zzzmisa.com/ author: zzzmisa ssg: - Hugo cms: - No Cms date: 2019-08-05T14:40:43.000Z -github_branch: master -description: "\U0001F6AASingle page theme for links to your works" +description: 🚪Single page theme for links to your works stale: false --- diff --git a/content/theme/hugo-theme-dopetrope.md b/content/theme/hugo-theme-dopetrope.md index 490fcd0e4..3c02ac05c 100644 --- a/content/theme/hugo-theme-dopetrope.md +++ b/content/theme/hugo-theme-dopetrope.md @@ -1,14 +1,13 @@ --- title: Dopetrope -github: 'https://github.com/curtistimson/hugo-theme-dopetrope' -demo: 'https://hugo-theme-dopetrope.netlify.com/' +github: https://github.com/curtiscde/hugo-theme-dopetrope +demo: https://hugo-theme-dopetrope.netlify.com/ author: Curtis Timson ssg: - Hugo cms: - No Cms date: 2018-02-10T14:10:30.000Z -github_branch: master description: Dopetrope theme for Hugo static site generator -stale: true +stale: false --- diff --git a/content/theme/hugo-theme-dream.md b/content/theme/hugo-theme-dream.md index 67e283e52..e25f586fe 100644 --- a/content/theme/hugo-theme-dream.md +++ b/content/theme/hugo-theme-dream.md @@ -1,14 +1,15 @@ --- title: Dream -github: 'https://github.com/g1eny0ung/hugo-theme-dream' -demo: 'https://themes.gohugo.io//theme/hugo-theme-dream/' +github: https://github.com/g1eny0ung/hugo-theme-dream +demo: https://themes.gohugo.io//theme/hugo-theme-dream/ author: Yue Yang ssg: - Hugo cms: - No Cms date: 2017-10-06T07:19:22.000Z -github_branch: master -description: "\U0001F331Hugo theme named Dream." +description: 🌱Hugo theme named Dream. stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-theme-e25dx.md b/content/theme/hugo-theme-e25dx.md new file mode 100644 index 000000000..d83dab009 --- /dev/null +++ b/content/theme/hugo-theme-e25dx.md @@ -0,0 +1,25 @@ +--- +title: E25DX +github: https://github.com/dumindu/E25DX +demo: https://learning-rust.github.io/docs/overview/ +author: Dumindu Madunuwan +date: 2024-06-24 +ssg: + - Hugo +cms: + - No CMS +archetype: + - Documentation +description: Your next documentation theme... +--- + +# E25DX + +Your next documentation theme... + +## Features + +- Responsive and adaptive layouts. +- Built-in dark, light and night themes. +- Customizable sidebars using Hugo data templates. +- Minimal reliance on external frameworks (No CSS, JS/npm, icon, font frameworks). diff --git a/content/theme/hugo-theme-even.md b/content/theme/hugo-theme-even.md index 76ee9ef1c..98b69bb16 100644 --- a/content/theme/hugo-theme-even.md +++ b/content/theme/hugo-theme-even.md @@ -1,16 +1,15 @@ --- title: Even -github: 'https://github.com/olOwOlo/hugo-theme-even' -demo: 'https://blog.olowolo.com/example-site/' +github: https://github.com/olOwOlo/hugo-theme-even +demo: https://blog.olowolo.com/example-site/ author: olOwOlo ssg: - Hugo cms: - No Cms date: 2017-08-28T09:20:45.000Z -github_branch: master -description: "\U0001F680 A super concise theme for Hugo https://blog.olowolo.com/example-site/" +description: 🚀 A super concise theme for Hugo https://blog.olowolo.com/example-site/ stale: false -disabled: true disabled_reason: demo url not found +disabled: true --- diff --git a/content/theme/hugo-theme-hamburg.md b/content/theme/hugo-theme-hamburg.md index d9dc407ef..9d97532f8 100644 --- a/content/theme/hugo-theme-hamburg.md +++ b/content/theme/hugo-theme-hamburg.md @@ -1,14 +1,15 @@ --- title: Hamburg -github: 'https://github.com/hauke96/hugo-theme-hamburg' -demo: 'https://themes.gohugo.io/theme/hugo-theme-hamburg/' +github: https://github.com/hauke96/hugo-theme-hamburg +demo: https://themes.gohugo.io/theme/hugo-theme-hamburg/ author: Hauke Stieler ssg: - Hugo cms: - No Cms date: 2018-08-24T23:12:19.000Z -github_branch: master description: Simple and clean blog theme for hugo stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-theme-hermit.md b/content/theme/hugo-theme-hermit.md index 1c5bd0b18..773ba127f 100644 --- a/content/theme/hugo-theme-hermit.md +++ b/content/theme/hugo-theme-hermit.md @@ -1,14 +1,15 @@ --- title: Hermit -github: 'https://github.com/Track3/hermit' -demo: 'https://themes.gohugo.io/theme/hermit' +github: https://github.com/Track3/hermit +demo: https://themes.gohugo.io/theme/hermit author: Track3 ssg: - Hugo cms: - No Cms date: 2018-10-23T04:59:56.000Z -github_branch: master description: A minimal & fast Hugo theme for bloggers -stale: false +stale: true +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/hugo-theme-introduction.md b/content/theme/hugo-theme-introduction.md index 0dec2bfae..e3a04fb37 100644 --- a/content/theme/hugo-theme-introduction.md +++ b/content/theme/hugo-theme-introduction.md @@ -1,14 +1,13 @@ --- title: Introduction -github: 'https://github.com/victoriadrake/hugo-theme-introduction' -demo: 'https://hugo-introduction.netlify.com/' +github: https://github.com/victoriadrake/hugo-theme-introduction +demo: https://hugo-introduction.netlify.com/ author: Victoria Drake ssg: - Hugo cms: - No Cms date: 2017-03-13T06:50:23.000Z -github_branch: master -description: 'Minimal, single page, smooth-scrolling theme for Hugo.' +description: Minimal, single page, smooth-scrolling theme for Hugo. stale: false --- diff --git a/content/theme/hugo-theme-iris.md b/content/theme/hugo-theme-iris.md index 991ef2b6b..84180da37 100644 --- a/content/theme/hugo-theme-iris.md +++ b/content/theme/hugo-theme-iris.md @@ -1,14 +1,13 @@ --- title: Hugo Iris -github: 'https://github.com/peaceiris/hugo-theme-iris' -demo: 'https://hugothemeiris.peaceiris.app' +github: https://github.com/peaceiris/hugo-theme-iris +demo: https://hugothemeiris.peaceiris.app author: peaceiris date: 2020-06-25T00:00:00.000Z -github_branch: master ssg: - Hugo cms: - - NetlifyCMS + - DecapCMS css: - Bulma archetype: diff --git a/content/theme/hugo-theme-jane.md b/content/theme/hugo-theme-jane.md index 40429c824..ec33bbadf 100644 --- a/content/theme/hugo-theme-jane.md +++ b/content/theme/hugo-theme-jane.md @@ -1,7 +1,7 @@ --- title: Jane -github: 'https://github.com/xianmin/hugo-theme-jane' -demo: 'https://www.xianmin.org/hugo-theme-jane/' +github: https://github.com/xianmin/hugo-theme-jane +demo: https://www.xianmin.org/hugo-theme-jane/ author: Chen Xianmin ssg: - Hugo @@ -9,10 +9,9 @@ cms: - Contentful - DatoCMS - Forestry - - NetlifyCMS + - DecapCMS - Sanity date: 2018-03-06T11:48:50.000Z -github_branch: master description: A readable & concise theme for Hugo stale: false --- diff --git a/content/theme/hugo-theme-lean-launch-page.md b/content/theme/hugo-theme-lean-launch-page.md index c82903548..94aae4c1b 100644 --- a/content/theme/hugo-theme-lean-launch-page.md +++ b/content/theme/hugo-theme-lean-launch-page.md @@ -1,16 +1,17 @@ --- title: Lean Launch Page -github: 'https://github.com/felicianotech/hugo-theme-lean-launch-page' -demo: 'https://themes.gohugo.io/theme/hugo-theme-lean-launch-page/' +github: https://github.com/felicianotech/hugo-theme-lean-launch-page +demo: https://themes.gohugo.io/theme/hugo-theme-lean-launch-page/ author: Ricardo N Feliciano ssg: - Hugo cms: - No Cms date: 2017-09-12T02:24:39.000Z -github_branch: master description: >- A theme for people creating pre-launch pages for a product or business. Allows you to have a landing page while collecting emails. stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-theme-learn.md b/content/theme/hugo-theme-learn.md index 2a6e406f6..e1a3341b8 100644 --- a/content/theme/hugo-theme-learn.md +++ b/content/theme/hugo-theme-learn.md @@ -1,14 +1,13 @@ --- title: Hugo Learn Theme -github: 'https://github.com/matcornic/hugo-theme-learn' -demo: 'https://learn.netlify.com/en/' +github: https://github.com/matcornic/hugo-theme-learn +demo: https://learn.netlify.com/en/ author: matcornic ssg: - Hugo cms: - No Cms date: 2016-03-17T10:58:41.000Z -github_branch: master description: Porting Grav Learn theme to Hugo -stale: false +stale: true --- diff --git a/content/theme/hugo-theme-line.md b/content/theme/hugo-theme-line.md index 6a0c61cd0..0999771b2 100644 --- a/content/theme/hugo-theme-line.md +++ b/content/theme/hugo-theme-line.md @@ -1,10 +1,9 @@ --- title: Lines -github: 'https://github.com/ronv/lines' -demo: 'https://lines-hugo-theme.netlify.app/' +github: https://github.com/ronv/lines +demo: https://lines-hugo-theme.netlify.app/ author: Ronalds Vilcins date: 2020-09-08T00:00:00.000Z -github_branch: master archetype: - Blog description: Minimalistic and clean Hugo blogging theme. diff --git a/content/theme/hugo-theme-massively.md b/content/theme/hugo-theme-massively.md index f8a1b441d..c7edbc8b5 100644 --- a/content/theme/hugo-theme-massively.md +++ b/content/theme/hugo-theme-massively.md @@ -1,14 +1,13 @@ --- title: Hugo Massively -github: 'https://github.com/curtistimson/hugo-theme-massively' -demo: 'https://hugo-theme-massively.netlify.com/' +github: https://github.com/curtiscde/hugo-theme-massively +demo: https://hugo-theme-massively.netlify.com/ author: Curtis Timson ssg: - Hugo cms: - No Cms date: 2018-02-24T14:39:43.000Z -github_branch: master description: Massively theme for Hugo static site generator stale: false --- diff --git a/content/theme/hugo-theme-meme.md b/content/theme/hugo-theme-meme.md index 20e6ba8a5..27f74d6c9 100644 --- a/content/theme/hugo-theme-meme.md +++ b/content/theme/hugo-theme-meme.md @@ -1,14 +1,15 @@ --- title: MemE -github: 'https://github.com/reuixiy/hugo-theme-meme' -demo: 'https://themes.gohugo.io/theme/hugo-theme-meme/' +github: https://github.com/reuixiy/hugo-theme-meme +demo: https://themes.gohugo.io/theme/hugo-theme-meme/ author: reuixiy ssg: - Hugo cms: - No Cms date: 2019-08-12T04:06:21.000Z -github_branch: master -description: "You can’t spell aWEsoME without MEME! \U0001F61D" +description: You can’t spell aWEsoME without MEME! 😝 stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-theme-minos.md b/content/theme/hugo-theme-minos.md index fdd0ca0b1..da34af0c9 100644 --- a/content/theme/hugo-theme-minos.md +++ b/content/theme/hugo-theme-minos.md @@ -1,14 +1,15 @@ --- title: Minos -github: 'https://github.com/carsonip/hugo-theme-minos' -demo: 'https://themes.gohugo.io/theme/hugo-theme-minos/' +github: https://github.com/carsonip/hugo-theme-minos +demo: https://themes.gohugo.io/theme/hugo-theme-minos/ author: Carson Ip ssg: - Hugo cms: - No Cms date: 2017-02-18T21:48:02.000Z -github_branch: master description: A simple and retro styled Hugo theme ported from Hexo stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-theme-nix.md b/content/theme/hugo-theme-nix.md index 0240684ca..942c08502 100644 --- a/content/theme/hugo-theme-nix.md +++ b/content/theme/hugo-theme-nix.md @@ -1,14 +1,15 @@ --- title: Nix -github: 'https://github.com/LordMathis/hugo-theme-nix' -demo: 'https://themes.gohugo.io/theme/hugo-theme-nix/' +github: https://github.com/LordMathis/hugo-theme-nix +demo: https://themes.gohugo.io/theme/hugo-theme-nix/ author: Matúš Námešný ssg: - Hugo cms: - No Cms date: 2016-09-30T08:11:59.000Z -github_branch: master -description: 'Nix is a simple, minimal theme for Hugo' +description: Nix is a simple, minimal theme for Hugo stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-theme-pixyll.md b/content/theme/hugo-theme-pixyll.md index e2f5b55dd..1fdd7a2be 100644 --- a/content/theme/hugo-theme-pixyll.md +++ b/content/theme/hugo-theme-pixyll.md @@ -1,14 +1,15 @@ --- title: Hugo Pixyll -github: 'https://github.com/azmelanar/hugo-theme-pixyll' -demo: 'https://themes.gohugo.io/theme/pixyll/' +github: https://github.com/azmelanar/hugo-theme-pixyll +demo: https://themes.gohugo.io/theme/pixyll/ author: Dmytro Slupytskyi ssg: - Hugo cms: - No Cms date: 2014-11-15T12:25:29.000Z -github_branch: master -description: 'A simple, beautiful Hugo theme that''s mobile first.' +description: A simple, beautiful Hugo theme that's mobile first. stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-theme-puppet.md b/content/theme/hugo-theme-puppet.md new file mode 100644 index 000000000..6fd81b7b6 --- /dev/null +++ b/content/theme/hugo-theme-puppet.md @@ -0,0 +1,29 @@ +--- +title: Puppet +github: https://github.com/roninro/hugo-theme-puppet +author: bdougie +demo: https://hugo-theme-puppet.netlify.app/ +date: 2022-08-25T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +archetype: + - Blog +description: a responsive, simple and clean Hugo theme based on the Huxblog Jekyll theme +stale: false +--- + +## Features + +* Responsive +* SEO +* Table of Contents +* Image Zoom +* Syntax Highlighting +* Search +* Comments +* Google Analytics +* Custom CSS and JS +* Custom 404 Page +* Custom Favicon diff --git a/content/theme/hugo-theme-revealjs.md b/content/theme/hugo-theme-revealjs.md index 07b5958b9..770e34852 100644 --- a/content/theme/hugo-theme-revealjs.md +++ b/content/theme/hugo-theme-revealjs.md @@ -1,14 +1,13 @@ --- title: Revealjs -github: 'https://github.com/RealOrangeOne/hugo-theme-revealjs' -demo: 'https://hugo-theme-revealjs.netlify.com/#/' +github: https://github.com/RealOrangeOne/hugo-theme-revealjs +demo: https://hugo-theme-revealjs.netlify.com/#/ author: Jake Howard ssg: - Hugo cms: - No Cms date: 2018-01-02T16:37:47.000Z -github_branch: master -description: 'Use Hugo to build a presentation, powered by RevealJS' +description: Use Hugo to build a presentation, powered by RevealJS stale: true --- diff --git a/content/theme/hugo-theme-robotico.md b/content/theme/hugo-theme-robotico.md index 12b6e85f0..56b80ed1a 100644 --- a/content/theme/hugo-theme-robotico.md +++ b/content/theme/hugo-theme-robotico.md @@ -1,14 +1,15 @@ --- title: Robotico -github: 'https://github.com/wileybaba/hugo-theme-robotico' -demo: 'https://themes.gohugo.io/theme/hugo-theme-robotico/' +github: https://github.com/wileybaba/hugo-theme-robotico +demo: https://themes.gohugo.io/theme/hugo-theme-robotico/ author: Wiley McKay Conte ssg: - Hugo cms: - No Cms date: 2018-10-31T06:02:08.000Z -github_branch: master description: A minimal hugo theme based on Ala Geek stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-theme-sam.md b/content/theme/hugo-theme-sam.md index 0587d83f5..9a4181a68 100644 --- a/content/theme/hugo-theme-sam.md +++ b/content/theme/hugo-theme-sam.md @@ -1,16 +1,15 @@ --- title: Call me Sam -github: 'https://github.com/victoriadrake/hugo-theme-sam' -demo: 'https://hugo-sam.netlify.com' +github: https://github.com/victoriadrake/hugo-theme-sam +demo: https://hugo-sam.netlify.com author: Victoria Drake ssg: - Hugo cms: - No Cms date: 2018-02-14T16:37:53.000Z -github_branch: master description: A Simple and Minimalist theme for Hugo with a focus on typography and content. stale: false -disabled: true disabled_reason: demo url not found +disabled: true --- diff --git a/content/theme/hugo-theme-scroll.md b/content/theme/hugo-theme-scroll.md new file mode 100644 index 000000000..d228b1b59 --- /dev/null +++ b/content/theme/hugo-theme-scroll.md @@ -0,0 +1,32 @@ +--- +title: Scroll +github: https://github.com/zjedi/hugo-scroll +demo: https://zjedi.github.io/hugo-scroll/ +author: Janrasch,zjedi +date: 2023-04-10T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +css: + - SCSS +archetype: + - Single page + - Portfolio + - Business +description: Clean, responsive, single-page Hugo theme. +stale: false +--- + +## ⭐ Features +- Responsive to screen size/shape +- SEO friendly +- Customizable +- Video cover +- [Fork Awesome Icons][fork-awesome-icons] out of the box +- Header logo +- Visual guards to guarantee readability +- External links +- JS/CSS Assets optimized (Minification, Fingerpriting, pipeline-processed +into single file) +- git info in footer (opt-in) \ No newline at end of file diff --git a/content/theme/hugo-theme-serial-programmer.md b/content/theme/hugo-theme-serial-programmer.md new file mode 100644 index 000000000..c0ebf573a --- /dev/null +++ b/content/theme/hugo-theme-serial-programmer.md @@ -0,0 +1,17 @@ +--- +title: Serial Programmer +github: https://github.com/sharadcodes/hugo-theme-serial-programmer +demo: https://sharadcodes.github.io/hugo-theme-serial-programmer/ +author: Sharad Raj Singh Maurya +ssg: + - Hugo +cms: + - No Cms +category: + - Blog +date: 2021-11-06T00:00:00.000Z +description: A Hugo theme for serial programmers by Sharad Raj Singh Maurya +archetype: + - Blog +stale: false +--- diff --git a/content/theme/hugo-theme-sky.md b/content/theme/hugo-theme-sky.md index 08e1ba973..857afbed4 100644 --- a/content/theme/hugo-theme-sky.md +++ b/content/theme/hugo-theme-sky.md @@ -1,14 +1,15 @@ --- title: Sky -github: 'https://github.com/cfrome77/hugo-theme-sky' -demo: 'https://themes.gohugo.io/theme/hugo-theme-sky/' +github: https://github.com/cfrome77/hugo-theme-sky +demo: https://themes.gohugo.io/theme/hugo-theme-sky/ author: Chris Frome ssg: - Hugo cms: - No Cms date: 2018-05-29T05:57:18.000Z -github_branch: master description: This is a simple Hugo theme that uses bootstrap stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-theme-slim.md b/content/theme/hugo-theme-slim.md index 65f6c048f..79fe55f89 100644 --- a/content/theme/hugo-theme-slim.md +++ b/content/theme/hugo-theme-slim.md @@ -1,14 +1,15 @@ --- title: Slim -github: 'https://github.com/zhe/hugo-theme-slim' -demo: 'https://themes.gohugo.io/theme/slim/' +github: https://github.com/zhe/hugo-theme-slim +demo: https://themes.gohugo.io/theme/slim/ author: Zhe Zhang ssg: - Hugo cms: - No Cms date: 2015-04-24T14:33:33.000Z -github_branch: master description: Hugo theme—Slim stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-theme-tailwind.md b/content/theme/hugo-theme-tailwind.md new file mode 100644 index 000000000..c802fdda8 --- /dev/null +++ b/content/theme/hugo-theme-tailwind.md @@ -0,0 +1,36 @@ +--- +title: Tailwind +github: https://github.com/tomowang/hugo-theme-tailwind +demo: https://hugo-theme-tailwind.tomo.dev/ +author: Xiaoliang Wang +author_link: https://tomo.dev +date: 2023-12-09 +ssg: + - Hugo +cms: + - No CMS +css: + - Tailwind +archetype: + - Blog +description: Clean card Hugo theme for blog, created by using tailwindcss +--- + +# Hugo theme tailwind + +Hugo theme build using [Tailwind CSS](https://tailwindcss.com/), mostly for bloggers. + +Check [https://hugo-theme-tailwind.tomo.dev/](https://hugo-theme-tailwind.tomo.dev/) for demo. + +## Features + + * High Lighthouse score + * Dark mode - switch between light and dark mode, or default by system prefers. + * SVG icons thanks to [tabler icons](https://tabler-icons.io/) + * Google Analystics - add your Google Analytics ID to `hugo.toml` + * Comments settings for [disqus](https://disqus.com/) and [giscus](https://giscus.app/) + * Social media link data settings + * Additional short code: bilibili, asciinema + * Responsive design + * Multilingual + * Default image process for lazy load and srcset diff --git a/content/theme/hugo-theme-techdoc.md b/content/theme/hugo-theme-techdoc.md index ba21cc9d1..0b32b15db 100644 --- a/content/theme/hugo-theme-techdoc.md +++ b/content/theme/hugo-theme-techdoc.md @@ -1,14 +1,15 @@ --- title: Techdoc -github: 'https://github.com/thingsym/hugo-theme-techdoc' -demo: 'https://themes.gohugo.io/theme/hugo-theme-techdoc/' +github: https://github.com/thingsym/hugo-theme-techdoc +demo: https://themes.gohugo.io/theme/hugo-theme-techdoc/ author: Yosuke Mizuno ssg: - Hugo cms: - No Cms date: 2018-03-04T09:42:33.000Z -github_branch: master description: The Techdoc is a Hugo Theme for technical documentation. stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-theme-techlog-simple.md b/content/theme/hugo-theme-techlog-simple.md index afa1b9bf9..817eca6a8 100644 --- a/content/theme/hugo-theme-techlog-simple.md +++ b/content/theme/hugo-theme-techlog-simple.md @@ -1,14 +1,15 @@ --- title: Techlog Simple -github: 'https://github.com/mazgi/hugo-theme-techlog-simple' -demo: 'https://themes.gohugo.io/theme/hugo-theme-techlog-simple/' +github: https://github.com/mazgi/hugo-theme-techlog-simple +demo: https://themes.gohugo.io/theme/hugo-theme-techlog-simple/ author: Hidenori MATSUKI ssg: - Hugo cms: - No Cms date: 2018-10-07T12:37:00.000Z -github_branch: master description: A simple Hugp theme for tech-blogs. stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-theme-terminal.md b/content/theme/hugo-theme-terminal.md index f7fb637a7..5265c4594 100644 --- a/content/theme/hugo-theme-terminal.md +++ b/content/theme/hugo-theme-terminal.md @@ -1,14 +1,13 @@ --- title: Terminal -github: 'https://github.com/panr/hugo-theme-terminal' -demo: 'https://hugo-terminal.now.sh/' +github: https://github.com/panr/hugo-theme-terminal +demo: https://hugo-terminal.now.sh/ author: Radek Kozieł ssg: - Hugo cms: - No Cms date: 2019-01-27T23:58:03.000Z -github_branch: master -description: 'A simple, retro theme for Hugo' +description: A simple, retro theme for Hugo stale: false --- diff --git a/content/theme/hugo-theme-tickytackydark.md b/content/theme/hugo-theme-tickytackydark.md index 8abda5a1b..1baad1c13 100644 --- a/content/theme/hugo-theme-tickytackydark.md +++ b/content/theme/hugo-theme-tickytackydark.md @@ -1,10 +1,9 @@ --- title: Ticky Tacky Dark -github: 'https://github.com/kc0bfv/ticky_tacky_dark' -demo: 'https://kc0bfv.github.io/ticky_tacky_dark/' +github: https://github.com/kc0bfv/ticky_tacky_dark +demo: https://kc0bfv.github.io/ticky_tacky_dark/ author: Karl Sickendick date: 2020-12-21T00:00:00.000Z -github_branch: master ssg: - Hugo cms: diff --git a/content/theme/hugo-theme-vec.md b/content/theme/hugo-theme-vec.md index 1393ebde9..cd2bb370f 100644 --- a/content/theme/hugo-theme-vec.md +++ b/content/theme/hugo-theme-vec.md @@ -1,14 +1,15 @@ --- title: Vec -github: 'https://github.com/IvanChou/hugo-theme-vec' -demo: 'https://themes.gohugo.io/theme/hugo-theme-vec/' +github: https://github.com/IvanChou/hugo-theme-vec +demo: https://themes.gohugo.io/theme/hugo-theme-vec/ author: Ivan Chou ssg: - Hugo cms: - No Cms date: 2016-09-08T14:50:26.000Z -github_branch: master -description: 'Vec is a minimal, clean and beautiful theme for Hugo.' +description: Vec is a minimal, clean and beautiful theme for Hugo. stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-theme-virgo.md b/content/theme/hugo-theme-virgo.md new file mode 100644 index 000000000..1935267b5 --- /dev/null +++ b/content/theme/hugo-theme-virgo.md @@ -0,0 +1,30 @@ +--- +title: Virgo +github: https://github.com/loveminimal/hugo-theme-virgo +demo: https://ovirgo.com +author: Jack Liu +date: 2022-07-13T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +css: + - Scss +archetype: + - Blog +description: A cool and pure theme. +stale: false +disabled: true +disabled_reason: error checking demo url +--- + +# A simple starter kit for Hugo + +This theme is a lightweight starter kit. It also gives you a well organised starting point to extend it for yourself. + +## Features + +* Dark/Light mode 🌗 +* A in-built local search 🔎 +* A realtime toc highlight 📃 +* A pure style & a cool style 🎉 diff --git a/content/theme/hugo-theme-w3css-basic.md b/content/theme/hugo-theme-w3css-basic.md index a68563518..186268713 100644 --- a/content/theme/hugo-theme-w3css-basic.md +++ b/content/theme/hugo-theme-w3css-basic.md @@ -1,13 +1,12 @@ --- title: W3.CSS Basic -github: 'https://github.com/it-gro/hugo-theme-w3css-basic' -demo: 'https://it-gro.github.io/hugo-theme-w3css-basic.github.io/' +github: https://github.com/it-gro/hugo-theme-w3css-basic +demo: https://it-gro.github.io/hugo-theme-w3css-basic.github.io/ author: it-gro ssg: - Hugo cms: - No Cms date: 2017-11-08T13:26:44.000Z -github_branch: master stale: true --- diff --git a/content/theme/hugo-theme-wave.md b/content/theme/hugo-theme-wave.md index 607fb23fc..0a45f8a71 100644 --- a/content/theme/hugo-theme-wave.md +++ b/content/theme/hugo-theme-wave.md @@ -1,13 +1,14 @@ --- title: Wave -github: 'https://github.com/syui/hugo-theme-wave' -demo: 'https://themes.gohugo.io/theme/hugo-theme-wave/' +github: https://github.com/syui/hugo-theme-wave +demo: https://themes.gohugo.io/theme/hugo-theme-wave/ author: syui ssg: - Hugo cms: - No Cms date: 2016-06-03T16:17:46.000Z -github_branch: master stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-theme-winning.md b/content/theme/hugo-theme-winning.md index e084e6ad0..fdaaf7f39 100644 --- a/content/theme/hugo-theme-winning.md +++ b/content/theme/hugo-theme-winning.md @@ -1,13 +1,14 @@ --- title: Winning -github: 'https://github.com/cssandstuff/hugo-theme-winning' -demo: 'https://themes.gohugo.io/theme/hugo-theme-winning/' +github: https://github.com/cssandstuff/hugo-theme-winning +demo: https://themes.gohugo.io/theme/hugo-theme-winning/ author: Tim Clulow ssg: - Hugo cms: - No Cms date: 2018-07-06T02:33:01.000Z -github_branch: master -stale: false +stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-theme-yinyang.md b/content/theme/hugo-theme-yinyang.md index 033823f9a..d57666c22 100644 --- a/content/theme/hugo-theme-yinyang.md +++ b/content/theme/hugo-theme-yinyang.md @@ -1,14 +1,13 @@ --- title: Yinyang -github: 'https://github.com/joway/hugo-theme-yinyang' -demo: 'https://blog.joway.io/' +github: https://github.com/joway/hugo-theme-yinyang +demo: https://blog.joway.io/ author: Joway Wang ssg: - Hugo cms: - No Cms date: 2018-11-08T15:41:32.000Z -github_branch: master description: ' a black-white theme for Hugo.' stale: false --- diff --git a/content/theme/hugo-theme-yue.md b/content/theme/hugo-theme-yue.md new file mode 100644 index 000000000..c10ec5ff3 --- /dev/null +++ b/content/theme/hugo-theme-yue.md @@ -0,0 +1,44 @@ +--- +title: Yue +github: https://github.com/CyrusYip/hugo-theme-yue +demo: https://yue.cyrusyip.org/ +author: Cyrus Yip +date: 2024-07-27 +ssg: + - Hugo +cms: + - No CMS +css: + - SCSS +archetype: + - Blog + - Personal +description: A minimal, multilingual and customizable Hugo theme, suitable for blogging +--- + +# hugo-theme-yue + +Yue is a minimal, multilingual and customizable Hugo theme, suitable for blogging. + +## Features + +- Minimal appearance +- Mobile-first and responsive +- Automatic dark mode +- SCSS +- Multilingual + - Translation list in single page + - Language selector (go to corresponding page or homepage) +- Multiple authors +- Table of Content +- Modification date on home page, single page, section page and term page +- Tags and categories +- Copyright notice (author and year span can be set) +- RSS link +- Full-text RSS +- Heading anchor link +- Search engine optimization + - [Microdata](https://developer.mozilla.org/en-US/docs/Web/HTML/Microdata) + - meta description +- [Open Graph](https://ogp.me/) +- And more… diff --git a/content/theme/hugo-theme-yuki.md b/content/theme/hugo-theme-yuki.md index 738c16521..aebb27b2f 100644 --- a/content/theme/hugo-theme-yuki.md +++ b/content/theme/hugo-theme-yuki.md @@ -1,14 +1,15 @@ --- title: Yuki -github: 'https://github.com/iCyris/hugo-theme-yuki' -demo: 'https://themes.gohugo.io/theme/hugo-theme-yuki/' +github: https://github.com/iCyris/hugo-theme-yuki +demo: https://themes.gohugo.io/theme/hugo-theme-yuki/ author: Cyris ssg: - Hugo cms: - No Cms date: 2019-01-03T17:03:23.000Z -github_branch: master description: ❄️ She is as pure as the snow stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-theme-zdoc.md b/content/theme/hugo-theme-zdoc.md index df41bc485..83678937b 100644 --- a/content/theme/hugo-theme-zdoc.md +++ b/content/theme/hugo-theme-zdoc.md @@ -1,10 +1,9 @@ --- title: Hugo Theme Zdoc -github: 'https://github.com/zzossig/hugo-theme-zdoc' -demo: 'https://themes.gohugo.io//theme/hugo-theme-zdoc/' +github: https://github.com/zzossig/hugo-theme-zdoc +demo: https://themes.gohugo.io//theme/hugo-theme-zdoc/ author: zzossig date: 2020-10-21T00:00:00.000Z -github_branch: master ssg: - Hugo cms: @@ -17,6 +16,8 @@ archetype: - Documentation description: Documentation theme for Hugo. It has rich features and looks clean. stale: false +disabled: true +disabled_reason: demo url not found --- ## Hugo Theme Zdoc diff --git a/content/theme/hugo-theme-zen.md b/content/theme/hugo-theme-zen.md index bb960fa81..4d77f30f2 100644 --- a/content/theme/hugo-theme-zen.md +++ b/content/theme/hugo-theme-zen.md @@ -1,14 +1,15 @@ --- title: Zen -github: 'https://github.com/frjo/hugo-theme-zen' -demo: 'https://themes.gohugo.io/theme/hugo-theme-zen/' +github: https://github.com/frjo/hugo-theme-zen +demo: https://themes.gohugo.io/theme/hugo-theme-zen/ author: Fredrik Jonsson ssg: - Hugo cms: - No Cms date: 2017-03-09T13:05:40.000Z -github_branch: master description: A fast and clean Hugo theme with css-grid and Hugo pipes support. stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-theme-zzo.md b/content/theme/hugo-theme-zzo.md index bbadbb8ec..ccc0ff8c5 100644 --- a/content/theme/hugo-theme-zzo.md +++ b/content/theme/hugo-theme-zzo.md @@ -1,10 +1,9 @@ --- title: Hugo Theme Zzo -github: 'https://github.com/zzossig/hugo-theme-zzo' -demo: 'https://themes.gohugo.io/theme/hugo-theme-zzo/en/' +github: https://github.com/zzossig/hugo-theme-zzo +demo: https://themes.gohugo.io/theme/hugo-theme-zzo/en/ author: zzossig date: 2020-10-21T00:00:00.000Z -github_branch: master ssg: - Hugo cms: @@ -18,6 +17,8 @@ description: >- Blog theme for Hugo. It has rich features including search, gallery, resume, talks, showcase, publication, presentation, etc. stale: false +disabled: true +disabled_reason: demo url not found --- ## Hugo Theme Zzo diff --git a/content/theme/hugo-tikva-theme.md b/content/theme/hugo-tikva-theme.md index 1a8d2cd59..e624acbbb 100644 --- a/content/theme/hugo-tikva-theme.md +++ b/content/theme/hugo-tikva-theme.md @@ -1,14 +1,15 @@ --- title: Tikva -github: 'https://github.com/geschke/hugo-tikva' -demo: 'https://themes.gohugo.io/theme/hugo-tikva/' +github: https://github.com/geschke/hugo-tikva +demo: https://themes.gohugo.io/theme/hugo-tikva/ author: Ralf Geschke ssg: - Hugo cms: - No Cms date: 2018-11-06T12:57:01.000Z -github_branch: master -description: 'Tikva is a minimalistic Hugo theme, based on Bootstrap v4 CSS framework.' +description: Tikva is a minimalistic Hugo theme, based on Bootstrap v4 CSS framework. stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-tranquilpeak-theme.md b/content/theme/hugo-tranquilpeak-theme.md index 8a8851fba..eb4c31517 100644 --- a/content/theme/hugo-tranquilpeak-theme.md +++ b/content/theme/hugo-tranquilpeak-theme.md @@ -1,14 +1,13 @@ --- title: Hugo Tranquilpeak -github: 'https://github.com/kakawait/hugo-tranquilpeak-theme' -demo: 'https://tranquilpeak.kakawait.com/' +github: https://github.com/kakawait/hugo-tranquilpeak-theme +demo: https://tranquilpeak.kakawait.com/ author: kakawait ssg: - Hugo cms: - No Cms date: 2016-03-30T19:55:05.000Z -github_branch: master description: A gorgeous responsive theme for Hugo blog framework stale: false --- diff --git a/content/theme/hugo-travelify-theme.md b/content/theme/hugo-travelify-theme.md index fc157d6f0..028af1413 100644 --- a/content/theme/hugo-travelify-theme.md +++ b/content/theme/hugo-travelify-theme.md @@ -1,14 +1,15 @@ --- title: Travelify -github: 'https://github.com/balaramadurai/hugo-travelify-theme' -demo: 'https://themes.gohugo.io/theme/hugo-travelify-theme/' +github: https://github.com/balaramadurai/hugo-travelify-theme +demo: https://themes.gohugo.io/theme/hugo-travelify-theme/ author: Dr. Bala Ramadurai ssg: - Hugo cms: - No Cms date: 2017-06-28T12:20:18.000Z -github_branch: master description: Port of Aigars Silkalns's Wordpress theme Travelify to Hugo. Demo - stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-twentyfourteen.md b/content/theme/hugo-twentyfourteen.md index 56518e75c..bbc70b318 100644 --- a/content/theme/hugo-twentyfourteen.md +++ b/content/theme/hugo-twentyfourteen.md @@ -1,14 +1,15 @@ --- title: Twenty Fourteen -github: 'https://github.com/jaden/twentyfourteen' -demo: 'https://themes.gohugo.io/theme/twentyfourteen/' +github: https://github.com/jaden/twentyfourteen +demo: https://themes.gohugo.io/theme/twentyfourteen/ author: Dan Hersam ssg: - Hugo cms: - No Cms date: 2015-01-09T15:46:15.000Z -github_branch: master description: A Hugo theme based on the Wordpress Twenty Fourteen theme. stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-type-theme.md b/content/theme/hugo-type-theme.md index 8dd9e7a86..8021d0031 100644 --- a/content/theme/hugo-type-theme.md +++ b/content/theme/hugo-type-theme.md @@ -1,16 +1,15 @@ --- title: Hugo Type -github: 'https://github.com/digitalcraftsman/hugo-type-theme' -demo: 'https://themes.gohugo.io/theme/type/' +github: https://github.com/digitalcraftsman/hugo-type-theme +demo: https://themes.gohugo.io/theme/type/ author: Digitalcraftsman ssg: - Hugo cms: - No Cms date: 2015-06-15T19:05:08.000Z -github_branch: master description: Port of Rohan Chandra's Type theme to Hugo. -stale: false -disabled: true +stale: true disabled_reason: demo url not found +disabled: true --- diff --git a/content/theme/hugo-ublogger.md b/content/theme/hugo-ublogger.md index 464e650d1..5f9630a8b 100644 --- a/content/theme/hugo-ublogger.md +++ b/content/theme/hugo-ublogger.md @@ -1,14 +1,13 @@ --- title: uBlogger -github: 'https://github.com/uPagge/uBlogger' -demo: 'https://ublogger.netlify.app' +github: https://github.com/uPagge/uBlogger +demo: https://ublogger.netlify.app author: uPagge ssg: - Hugo cms: - No Cms date: 2020-12-15T19:49:50.000Z -github_branch: master -description: 'Content readability and seo optimization, that''s what the topic prioritizes.' -stale: false +description: Content readability and seo optimization, that's what the topic prioritizes. +stale: true --- diff --git a/content/theme/hugo-uilite.md b/content/theme/hugo-uilite.md index 8da8667f5..911953696 100644 --- a/content/theme/hugo-uilite.md +++ b/content/theme/hugo-uilite.md @@ -1,13 +1,14 @@ --- title: UILite -github: 'https://github.com/uicardiodev/hugo-uilite' -demo: 'https://themes.gohugo.io/theme/hugo-uilite/' +github: https://github.com/uicardiodev/hugo-uilite +demo: https://themes.gohugo.io/theme/hugo-uilite/ author: UICardio ssg: - Hugo cms: - No Cms date: 2018-09-21T11:31:46.000Z -github_branch: master -stale: true +stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-universal-theme.md b/content/theme/hugo-universal-theme.md index 2a2d017e4..a8217df78 100644 --- a/content/theme/hugo-universal-theme.md +++ b/content/theme/hugo-universal-theme.md @@ -1,14 +1,15 @@ --- title: Hugo Universal -github: 'https://github.com/devcows/hugo-universal-theme' -demo: 'https://themes.gohugo.io/theme/hugo-universal-theme/' +github: https://github.com/devcows/hugo-universal-theme +demo: https://themes.gohugo.io/theme/hugo-universal-theme/ author: adrianmo ssg: - Hugo cms: - No Cms date: 2016-06-14T12:47:40.000Z -github_branch: master description: Port of the Universal theme to Hugo stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-vanilla-bootstrap-theme.md b/content/theme/hugo-vanilla-bootstrap-theme.md index ccd5fc08c..44180b424 100644 --- a/content/theme/hugo-vanilla-bootstrap-theme.md +++ b/content/theme/hugo-vanilla-bootstrap-theme.md @@ -1,14 +1,13 @@ --- title: Vanilla Bootstrap -github: 'https://github.com/zwbetz-gh/vanilla-bootstrap-hugo-theme' -demo: 'https://vanilla-bootstrap-hugo-theme.netlify.com/' +github: https://github.com/zwbetz-gh/vanilla-bootstrap-hugo-theme +demo: https://vanilla-bootstrap-hugo-theme.netlify.com/ author: Zachary Betz ssg: - Hugo cms: - No Cms date: 2018-12-15T06:31:19.000Z -github_branch: master description: A vanilla Bootstrap theme for Hugo stale: false --- diff --git a/content/theme/hugo-vex.md b/content/theme/hugo-vex.md deleted file mode 100644 index afea2fcc4..000000000 --- a/content/theme/hugo-vex.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: Vex -github: 'https://github.com/themefisher/vex-hugo' -demo: 'https://themes.gohugo.io/theme/vex-hugo/' -author: Themefisher -ssg: - - Hugo -cms: - - No Cms -date: 2018-01-09T21:59:07.000Z -github_branch: master -description: Vex product landing page template (Hugo version) -stale: false ---- diff --git a/content/theme/hugo-vienna-theme.md b/content/theme/hugo-vienna-theme.md index 3bdb2ddcf..7a681abe9 100644 --- a/content/theme/hugo-vienna-theme.md +++ b/content/theme/hugo-vienna-theme.md @@ -1,14 +1,15 @@ --- title: Vienna -github: 'https://github.com/keichi/vienna' -demo: 'https://themes.gohugo.io/theme/vienna/' +github: https://github.com/keichi/vienna +demo: https://themes.gohugo.io/theme/vienna/ author: Keichi Takahashi ssg: - Hugo cms: - No Cms date: 2015-02-03T06:30:25.000Z -github_branch: master description: Simple and clean blog theme for hugo -stale: false +stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-vncnt.md b/content/theme/hugo-vncnt.md index bfb1fbc54..450cefca9 100644 --- a/content/theme/hugo-vncnt.md +++ b/content/theme/hugo-vncnt.md @@ -1,14 +1,15 @@ --- title: Vncnt-hugo -github: 'https://github.com/fncnt/vncnt-hugo' -demo: 'https://themes.gohugo.io/theme/vncnt-hugo/' +github: https://github.com/fncnt/vncnt-hugo +demo: https://themes.gohugo.io/theme/vncnt-hugo/ author: Vincent von Schelm ssg: - Hugo cms: - No Cms date: 2019-01-03T14:05:32.000Z -github_branch: master description: a simple theme for hugo. stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-w3-simple.md b/content/theme/hugo-w3-simple.md index 1a48ad44c..0095f3823 100644 --- a/content/theme/hugo-w3-simple.md +++ b/content/theme/hugo-w3-simple.md @@ -1,14 +1,15 @@ --- title: Hugo W3 Simple -github: 'https://github.com/jesselau76/hugo-w3-simple' -demo: 'https://themes.gohugo.io/theme/hugo-w3-simple/' +github: https://github.com/jesselau76/hugo-w3-simple +demo: https://themes.gohugo.io/theme/hugo-w3-simple/ author: Jesse Lau ssg: - Hugo cms: - No Cms date: 2018-11-05T23:20:12.000Z -github_branch: master description: Hugo Theme stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugo-webslides.md b/content/theme/hugo-webslides.md index 7d6e5142f..b2a4fefb7 100644 --- a/content/theme/hugo-webslides.md +++ b/content/theme/hugo-webslides.md @@ -1,14 +1,13 @@ --- title: Hugo Webslides -github: 'https://github.com/RCJacH/hugo-webslides' -demo: 'https://rcjach.github.io/hugo-webslides/#slide=1' +github: https://github.com/RCJacH/hugo-webslides +demo: https://rcjach.github.io/hugo-webslides/#slide=1 author: RCJacH ssg: - Hugo cms: - No Cms date: 2019-08-09T08:35:08.000Z -github_branch: master description: This is a Hugo template to create WebSlides presentation using markdown. stale: false --- diff --git a/content/theme/hugo-whisper-theme.md b/content/theme/hugo-whisper-theme.md index 846346f86..4b9a2ac43 100644 --- a/content/theme/hugo-whisper-theme.md +++ b/content/theme/hugo-whisper-theme.md @@ -1,14 +1,13 @@ --- title: Whisper -github: 'https://github.com/JugglerX/hugo-whisper-theme' -demo: 'https://hugo-whisper.netlify.com/' +github: https://github.com/JugglerX/hugo-whisper-theme +demo: https://hugo-whisper.netlify.com/ author: Robert Austin ssg: - Hugo cms: - No Cms date: 2019-11-07T00:00:00.000Z -github_branch: master description: Whisper is a minimal documentation theme for Hugo. -stale: false +stale: true --- diff --git a/content/theme/hugo-whiteplain-theme.md b/content/theme/hugo-whiteplain-theme.md index e71bf48fa..9ad53fb68 100644 --- a/content/theme/hugo-whiteplain-theme.md +++ b/content/theme/hugo-whiteplain-theme.md @@ -1,16 +1,15 @@ --- title: Whiteplain -github: 'https://github.com/taikii/whiteplain' -demo: 'https://themes.gohugo.io/theme/whiteplain/' +github: https://github.com/taikii/whiteplain +demo: https://themes.gohugo.io/theme/whiteplain/ author: taikii ssg: - Hugo cms: - No Cms date: 2017-12-21T14:43:28.000Z -github_branch: master description: Simple and Functional Hugo theme. stale: true -disabled: true disabled_reason: demo url not found +disabled: true --- diff --git a/content/theme/hugo-winston.md b/content/theme/hugo-winston.md new file mode 100644 index 000000000..337849161 --- /dev/null +++ b/content/theme/hugo-winston.md @@ -0,0 +1,40 @@ +--- +title: Hugo Winston +date: 2022-03-21T00:00:00.000Z +github: https://github.com/zerostaticthemes/hugo-winston-theme +demo: https://hugo-winston.netlify.app/ +author: Robert Austin +ssg: + - Hugo +cms: + - No Cms +css: + - Tailwind +archetype: + - Blog +description: Hugo Winston is a bold minimal blogging theme. +stale: false +--- + +# Hugo Winston Theme + +Hugo Winston is a bold minimal blogging theme. + + +[Live Demo](https://hugo-winston.netlify.app/) | +[Zerostatic Themes](https://www.zerostatic.io/) + +## Theme features + +- Posts (Markdown) +- Basic Page (Markdown) +- SCSS (Hugo Pipelines) +- Responsive design +- 100/100 Google Lighthouse speed score +- 100/100 Google Lighthouse SEO score +- 100/100 Google Lighthouse accessibility score +- Google analytics configured in `config.toml` +- Configure GID using env variable HUGO_GOOGLE_ANALYTICS_ID, compatible with Netlify. +- Title, meta description and meta tags automatically generated for every page +- OG Meta data for Facebook and Twitter +- Semantic HTML document structure \ No newline at end of file diff --git a/content/theme/hugo-xmag-theme.md b/content/theme/hugo-xmag-theme.md index 076e825ce..7b50999de 100644 --- a/content/theme/hugo-xmag-theme.md +++ b/content/theme/hugo-xmag-theme.md @@ -1,14 +1,13 @@ --- title: XMag -github: 'https://github.com/yihui/hugo-xmag' -demo: 'https://xmag.yihui.name/' +github: https://github.com/yihui/hugo-xmag +demo: https://xmag.yihui.name/ author: Yihui Xie ssg: - Hugo cms: - No Cms date: 2017-07-10T05:09:20.000Z -github_branch: master description: A minimal magazine theme for Hugo stale: false --- diff --git a/content/theme/hugo-xmin-theme.md b/content/theme/hugo-xmin-theme.md index 149f90dae..31c8be27c 100644 --- a/content/theme/hugo-xmin-theme.md +++ b/content/theme/hugo-xmin-theme.md @@ -1,14 +1,13 @@ --- title: XMin -github: 'https://github.com/yihui/hugo-xmin' -demo: 'https://xmin.yihui.name/' +github: https://github.com/yihui/hugo-xmin +demo: https://xmin.yihui.name/ author: Yihui Xie ssg: - Hugo cms: - No Cms date: 2017-06-16T04:13:22.000Z -github_branch: master description: >- eXtremely Minimal Hugo theme: about 150 lines of code in total, including HTML and CSS (with no dependencies) diff --git a/content/theme/hugo-xterm.md b/content/theme/hugo-xterm.md new file mode 100644 index 000000000..40214e8a7 --- /dev/null +++ b/content/theme/hugo-xterm.md @@ -0,0 +1,71 @@ +--- +title: Hugo Xterm +github: https://github.com/manid2/hugo-xterm/ +demo: https://manid2.github.io/hugo-xterm/ +author: Mani Kumar +date: 2023-07-25T16:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +archetype: + - Blog + - Documentation + - Personal + - Portfolio +description: >- + Hugo theme designed for reading and printing text with dark and + light modes. +stale: false +--- + +## Distinguishing features + +* Designed for __reading__ and __printing__ text. +* __Print:__ any page in light theme mode for readability. +* __[CV][10]:__ or resume template to reduce vertical space by using 2 columns + and shortcodes to list the experiences and skills. +* __Slides:__ support using [reveal.js][4] (improvement is WIP). +* __Lists__: separate view and pagination for simple list items and post + entries. +* __GitInfo:__ show the latest git commit short hash and subject message for + each page (requires Hugo GitInfo config enabled). +* __Fonts:__ + - __"Roboto Slab (serif)"__ for title (heading) text. + - __"Fira Sans (sans-serif)"__ for normal text. + - __"Ubuntu Mono (monospace)"__ for code. +* __Colors:__ in the theme are derived using a single primary color (blue) + from the [HSL colors][8]. +* Website banner is supported. + +## Adopted features + +* Minimal configuration. +* Switchable dark and light themes with automatic selection based on system + theme. +* SEO friendly OpenGraph and twitter cards support +* Customizable using configurations for: "full width:, "centered". +* Taxonomies and posts RSS. +* Responsive tested on desktop and on smart phones. +* Responsive menus for desktop and mobile screens. +* Accessibility tested using [WAVE Web Accessibility Evaluation Tool][5]. +* Code blocks are highlighted using Hugo built-in blazing fast [Chroma][9]. +* Copy code, see code language and file name (optional). +* Tightly coupled with Hugo extended latest version (v1.110.0) to compile and + generate asset bundles with pipelines, fingerprinting and minification. + +## Other features + +These are supported due to [panr/terminal][1] theme base code but not +tested as I don't use them myself: + +* Post cover image. +* Images in post with caption. +* Comments. + +[1]: https://github.com/panr/hugo-theme-terminal +[4]: https://github.com/hakimel/reveal.js +[5]: https://wave.webaim.org/ +[8]: https://en.wikipedia.org/wiki/HSL_and_HSV +[9]: https://github.com/alecthomas/chroma/ +[10]: https://manid2.gitlab.io/cv/ diff --git a/content/theme/hugo-yourfolio-theme.md b/content/theme/hugo-yourfolio-theme.md index 06cffdbbe..559bec89c 100644 --- a/content/theme/hugo-yourfolio-theme.md +++ b/content/theme/hugo-yourfolio-theme.md @@ -1,14 +1,15 @@ --- title: Yourfolio -github: 'https://github.com/serg/yourfolio' -demo: 'https://themes.gohugo.io/theme/yourfolio/' +github: https://github.com/serg/yourfolio +demo: https://themes.gohugo.io/theme/yourfolio/ author: Sergey Furtak ssg: - Hugo cms: - No Cms date: 2018-06-01T13:13:55.000Z -github_branch: master description: ':star: Super simple and responsive theme for your personal website on Hugo' stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hugograyscale.md b/content/theme/hugograyscale.md index d05bf4145..824529349 100644 --- a/content/theme/hugograyscale.md +++ b/content/theme/hugograyscale.md @@ -1,16 +1,15 @@ --- title: Hugo Grayscale -github: 'https://github.com/runningstream/hugograyscale/' -demo: 'https://runningstream.github.io/hugograyscale/' +github: https://github.com/runningstream/hugograyscale/ +demo: https://runningstream.github.io/hugograyscale/ author: runningstream ssg: - Hugo cms: - No Cms date: 2018-09-16T01:12:43.000Z -github_branch: master description: >- A multi-section single page theme intended as a landing page. This is derived from the startbootstrap-grayscale theme. -stale: false +stale: true --- diff --git a/content/theme/hyde-blog-with-netlify-cms.md b/content/theme/hyde-blog-with-netlify-cms.md index b0a451a4e..b69fbdf5a 100644 --- a/content/theme/hyde-blog-with-netlify-cms.md +++ b/content/theme/hyde-blog-with-netlify-cms.md @@ -1,18 +1,17 @@ --- title: Hyde starter blog with Netlify CMS -github: 'https://github.com/bdougie/hyde-cms-theme' +github: https://github.com/bdougie/hyde-cms-theme author: bdougie -demo: 'https://hyde.netlify.com/' +demo: https://hyde.netlify.com/ date: 2020-06-03T00:00:00.000Z ssg: - - Hyde + - Hugo cms: - - NetlifyCMS + - DecapCMS archetype: - Blog description: A boilerplate for creating a blog site with Hyde -github_branch: master stale: true --- -A boilerplate for creating a blog site with Hyde (a static site generator written in Python) and with [Netlify CMS](https://www.netlifycms.org) for content authoring. \ No newline at end of file +A boilerplate for creating a blog site with Hyde (a static site generator written in Python) and with [Netlify CMS](https://www.DecapCMS.org) for content authoring. \ No newline at end of file diff --git a/content/theme/hyde-hyde.md b/content/theme/hyde-hyde.md index 7e7210095..f7ce1ecbb 100644 --- a/content/theme/hyde-hyde.md +++ b/content/theme/hyde-hyde.md @@ -1,14 +1,15 @@ --- title: Hyde Hyde -github: 'https://github.com/htr3n/hyde-hyde' -demo: 'https://themes.gohugo.io/theme/hyde-hyde/' +github: https://github.com/htr3n/hyde-hyde +demo: https://themes.gohugo.io/theme/hyde-hyde/ author: Huy Tran ssg: - Hugo cms: - No Cms date: 2018-01-20T06:37:20.000Z -github_branch: master description: A cool theme inspired by spf13's Hyde theme stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/hydeout.md b/content/theme/hydeout.md index 0afcafc58..ff2ebb0e5 100644 --- a/content/theme/hydeout.md +++ b/content/theme/hydeout.md @@ -1,14 +1,13 @@ --- title: Hydeout -github: 'https://github.com/fongandrew/hydeout' -demo: 'https://fongandrew.github.io/hydeout/' +github: https://github.com/fongandrew/hydeout +demo: https://fongandrew.github.io/hydeout/ author: Andrew Fong ssg: - Jekyll cms: - No Cms date: 2017-06-01T00:22:41.000Z -github_branch: master description: A refreshed version of Hyde for Jekyll 3.x -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/hydra-jekyll-template.md b/content/theme/hydra-jekyll-template.md index ee3b779c8..51720b900 100644 --- a/content/theme/hydra-jekyll-template.md +++ b/content/theme/hydra-jekyll-template.md @@ -1,16 +1,15 @@ --- title: Hydra -github: 'https://github.com/CloudCannon/hydra-jekyll-template' -demo: 'https://proud-alligator.cloudvent.net/' +github: https://github.com/CloudCannon/hydra-jekyll-template +demo: https://proud-alligator.cloudvent.net/ author: CloudCannon ssg: - Jekyll cms: - No Cms date: 2016-10-14T04:39:07.000Z -github_branch: master description: ':dragon: Product marketing template for Jekyll' -stale: false +stale: true --- Product marketing template for Jekyll. \ No newline at end of file diff --git a/content/theme/hydure.md b/content/theme/hydure.md new file mode 100644 index 000000000..393463aff --- /dev/null +++ b/content/theme/hydure.md @@ -0,0 +1,32 @@ +--- +title: Hydure +github: https://github.com/zivong/jekyll-theme-hydure +demo: https://zivong.blog/jekyll-theme-hydure/ +author: Song-Zi Vong +date: 2021-04-29T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +archetype: + - Blog +description: A concise two-column blog theme for Jekyll. +stale: true +disabled: true +disabled_reason: error checking demo url +--- + +Hydure is a concise two-column blog theme for Jekyll. It is built on the [Pure.css](https://github.com/pure-css/pure) framework. + +## Highlight Features + +- [Open Color](https://github.com/yeun/open-color) +- Dark mode, via [`prefers-color-scheme`](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme) +- [Font Awesome](https://fontawesome.com/) +- [Jekyll Paginate](https://github.com/jekyll/jekyll-paginate) +- [Jekyll Feed](https://github.com/jekyll/jekyll-feed/) +- [Jekyll SEO Tag](https://github.com/jekyll/jekyll-seo-tag/) +- [MathJax](https://www.mathjax.org/) +- [Disqus](https://disqus.com/) +- [Google Analytics 4](https://support.google.com/analytics/answer/10089681?hl=en) +- Archive implemented by pure [Liquid](https://shopify.github.io/liquid/) diff --git a/content/theme/jam-hugo.md b/content/theme/jam-hugo.md new file mode 100644 index 000000000..7f9578e62 --- /dev/null +++ b/content/theme/jam-hugo.md @@ -0,0 +1,27 @@ +--- +title: Jam +github: https://github.com/ronv/jam +demo: https://jam-hugo.netlify.app/ +author: Ronalds Vilcins +date: 2021-12-06T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +archetype: + - Blog + - Portfolio +description: Jam is a minimal personal blog and portfolio theme powered by Hugo. +stale: false +--- + +# Jam Hugo theme + +Jam is a minimal personal blog and portfolio theme powered by Hugo. + +## Features + +* Minimalistic, clean and simple design +* Responsive design +* Inline CSS +* Seo optimized diff --git a/content/theme/jamdocs.md b/content/theme/jamdocs.md index 537f3ba13..f40d587b6 100644 --- a/content/theme/jamdocs.md +++ b/content/theme/jamdocs.md @@ -1,16 +1,15 @@ --- title: Jamdocs -github: 'https://github.com/samuelhorn/jamdocs' -demo: 'https://jamdocs.netlify.com/' +github: https://github.com/samuelhorn/jamdocs +demo: https://jamdocs.netlify.com/ author: Samuel Horn af Rantzien ssg: - Gridsome cms: - No CMS date: 2019-06-26T11:39:42.000Z -github_branch: master description: >- The ultimate staic generated documentation theme for the JAM-stack. Highly cusomizable, based on Gridsome, ready to deploy to Netlify in one click. -stale: false +stale: true --- diff --git a/content/theme/jamify-next-cms-ghost.md b/content/theme/jamify-next-cms-ghost.md index ad3fa6324..927c166dd 100644 --- a/content/theme/jamify-next-cms-ghost.md +++ b/content/theme/jamify-next-cms-ghost.md @@ -1,7 +1,7 @@ --- title: Jamify Blog Starter -github: 'https://github.com/styxlab/next-cms-ghost' -demo: 'https://next.jamify.org/' +github: https://github.com/styxlab/next-cms-ghost +demo: https://next.jamify.org/ author: Joost Jansky ssg: - Next @@ -11,9 +11,10 @@ archetype: - Blog - Portfolio date: 2020-12-04T00:00:00.000Z -github_branch: master description: Publish flaring fast blogs with Next.js and Ghost CMS stale: false +disabled: true +disabled_reason: demo url not found --- # A rich starter kit for Ghost blogs diff --git a/content/theme/jamify-starter-ghost.md b/content/theme/jamify-starter-ghost.md index 3e103350f..67502d8a6 100644 --- a/content/theme/jamify-starter-ghost.md +++ b/content/theme/jamify-starter-ghost.md @@ -1,7 +1,7 @@ --- title: Jamify Starter -github: 'https://github.com/styxlab/gatsby-starter-try-ghost' -demo: 'https://demo.jamify.org/' +github: https://github.com/styxlab/gatsby-starter-try-ghost +demo: https://demo.jamify.org/ author: styxlab ssg: - Gatsby @@ -11,9 +11,8 @@ archetype: - Blog - Portfolio date: 2020-06-11T00:00:00.000Z -github_branch: master description: Publish flaring fast blogs with Gatsby and Ghost -stale: false +stale: true --- # A rich starter kit for Ghost blogs diff --git a/content/theme/jamstack-hackathon-starter.md b/content/theme/jamstack-hackathon-starter.md index 06f33db44..0b69aac1d 100644 --- a/content/theme/jamstack-hackathon-starter.md +++ b/content/theme/jamstack-hackathon-starter.md @@ -1,16 +1,15 @@ --- title: Jamstack Hackathon Starter -github: 'https://github.com/sw-yx/jamstack-hackathon-starter' -demo: 'https://jamstack-hackathon-starter.netlify.com/' +github: https://github.com/sw-yx/jamstack-hackathon-starter +demo: https://jamstack-hackathon-starter.netlify.com/ author: swyx ssg: - Gatsby cms: - No Cms date: 2018-05-09T20:44:36.000Z -github_branch: master description: >- Make Authenticated, Serverless, Dynamic Clientside JAMstack apps with Gatsby + Netlify Dev (Functions + Identity) -stale: false +stale: true --- diff --git a/content/theme/jasper2.md b/content/theme/jasper2.md index a28df3b82..df190be3b 100644 --- a/content/theme/jasper2.md +++ b/content/theme/jasper2.md @@ -1,14 +1,15 @@ --- title: Jasper2 -github: 'https://github.com/jekyller/jasper2' -demo: 'https://jekyller.github.io/jasper2/' +github: https://github.com/jekyller/jasper2 +demo: https://jekyller.github.io/jasper2/ author: Fábio Madeira ssg: - Jekyll cms: - No Cms date: 2017-11-17T15:53:38.000Z -github_branch: master -description: "Full-featured Jekyll port of Ghost's default theme Casper v2 \U0001F47B" +description: Full-featured Jekyll port of Ghost's default theme Casper v2 👻 stale: false +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jdox.md b/content/theme/jdox.md new file mode 100644 index 000000000..739de87e7 --- /dev/null +++ b/content/theme/jdox.md @@ -0,0 +1,42 @@ +--- +title: JDox +github: https://github.com/aliifam/jdox +demo: https://aliifam.github.io/jdox/ +author: Aliif Arief +date: 2022-04-10T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +css: + - scss +archetype: + - Blog +description: >- + JDox is jekyll theme designed for personal or team blog with fully responsive + css design, auto SEO optimization, and auto integrated with github pages. +stale: false +--- + +# JDox - Jekyll theme + +JDox is jekyll theme designed for personal or team blog with fully responsive css design and auto integrated with GitHub Pages. + +## Features + +- author pages +- auto SEO optimization and generator +- Search Page +- Archive page +- Love Button with applause button API +- Disqus Comment open on click +- share button with Icon and auto links +- Atom & Json feeds +- Lazy Load Image +- Medium Image Lightbox +- Tag and tags Pages +- Auto Minute Read +- Auto Dark/Ligh theme +- Next & Previous Post +- 404 page +- Anchor headings diff --git a/content/theme/jekyll-Avalon.md b/content/theme/jekyll-Avalon.md index e7be4e971..0ed32d710 100644 --- a/content/theme/jekyll-Avalon.md +++ b/content/theme/jekyll-Avalon.md @@ -1,14 +1,13 @@ --- title: Jekyll Avalon -github: 'https://github.com/joshuaavalon/Jekyll-Avalon' -demo: 'https://joshuaavalon.github.io/Jekyll-Avalon/' +github: https://github.com/joshuaavalon/Jekyll-Avalon +demo: https://joshuaavalon.github.io/Jekyll-Avalon/ author: Joshua Avalon ssg: - Jekyll cms: - No Cms date: 2016-11-03T03:54:30.000Z -github_branch: master description: Materialize Jekyll theme stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-Biscuit.md b/content/theme/jekyll-Biscuit.md new file mode 100644 index 000000000..86bae663c --- /dev/null +++ b/content/theme/jekyll-Biscuit.md @@ -0,0 +1,31 @@ +--- +title: Biscuit +github: https://github.com/sblisesivdin/biscuit +demo: https://sblisesivdin.github.io/biscuit +author: Sefer Bora Lisesivdin +date: 2022-07-12T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +archetype: + - Single Page + - Personal +description: Biscuit is a single-page responsive Jekyll theme. +stale: false +--- + +# Biscuit theme for Jekyll + +[Biscuit](http://sblisesivdin.github.io/biscuit) is a single-page responsive Jekyll theme. This is the most simple and still-good-looking Jekyll theme that you can find. + +## Usage + +You can use this theme with [Jekyll](http://jekyllrb.com/) or you can simply use it with [Github Pages](https://pages.github.com). +For local usage just download [Jekyll](http://jekyllrb.com/), use installation guide for more. You can download latest Biscuit from [its Github repository](https://github.com/sblisesivdin/biscuit). + +If you prefer to use Github Pages, you do not need to download it, upload files to a new repository...etc, just [fork](https://docs.github.com/en/get-starter/quickstart/fork-a-repo) and use it. + +## License + +Biscuit is derived from currently deprecated theme [Solo](http://github.com/chibicode/solo). Biscuit and the previous code where Biscuit is derived are distributed with [MIT license](https://github.com/sblisesivdin/biscuit/blob/gh-pages/LICENSE). diff --git a/content/theme/jekyll-Chaplin.md b/content/theme/jekyll-Chaplin.md index 929c5ff66..f54f51084 100644 --- a/content/theme/jekyll-Chaplin.md +++ b/content/theme/jekyll-Chaplin.md @@ -1,14 +1,13 @@ --- title: Chaplin -github: 'https://github.com/ankitsultana/Chaplin' -demo: 'https://ankitsultana.com/Chaplin/' +github: https://github.com/ankitsultana/Chaplin +demo: https://ankitsultana.com/Chaplin/ author: Ankit Sultana ssg: - Jekyll cms: - No Cms date: 2016-01-08T20:08:48.000Z -github_branch: gh-pages -description: 'A minimalistic, single column theme for Jekyll' +description: A minimalistic, single column theme for Jekyll stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-Decent.md b/content/theme/jekyll-Decent.md index b402534cd..a90ced5a7 100644 --- a/content/theme/jekyll-Decent.md +++ b/content/theme/jekyll-Decent.md @@ -1,14 +1,13 @@ --- title: jekyllDecent -github: 'https://github.com/jwillmer/jekyllDecent' -demo: 'https://jwillmer.github.io/jekyllDecent/' +github: https://github.com/jwillmer/jekyllDecent +demo: https://jwillmer.github.io/jekyllDecent/ author: Jens Willmer ssg: - Jekyll cms: - No Cms date: 2016-05-22T19:37:47.000Z -github_branch: gh-pages description: Blog Template for Jekyll stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-Forty.md b/content/theme/jekyll-Forty.md index 485ea6137..f49f98083 100644 --- a/content/theme/jekyll-Forty.md +++ b/content/theme/jekyll-Forty.md @@ -1,14 +1,13 @@ --- title: Forty (by HTML5 Up!) -github: 'https://github.com/andrewbanchich/Forty-Jekyll-Theme' -demo: 'https://andrewbanchich.github.io/forty-jekyll-theme/' +github: https://github.com/andrewbanchich/Forty-Jekyll-Theme +demo: https://andrewbanchich.github.io/forty-jekyll-theme/ author: Andrew Banchich ssg: - Jekyll cms: - No Cms date: 2016-08-23T00:53:06.000Z -github_branch: master description: A Jekyll version of the 'Forty' theme by HTML5 UP. stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-Fractal-theme.md b/content/theme/jekyll-Fractal-theme.md index 7f50ae13e..80e3ccc4f 100644 --- a/content/theme/jekyll-Fractal-theme.md +++ b/content/theme/jekyll-Fractal-theme.md @@ -1,16 +1,15 @@ --- title: Jekflix -github: 'https://github.com/yvesespinosa/jekyll-html5up-fractal' -demo: 'https://yvesespinosa.github.io/jekyll-html5up-fractal/' +github: https://github.com/yvesespinosa/jekyll-html5up-fractal +demo: https://yvesespinosa.github.io/jekyll-html5up-fractal/ author: Yves Espinosa ssg: - Jekyll cms: - No Cms date: 2017-11-10T23:43:31.000Z -github_branch: master description: An awesome jekyll-fractal theme for the html5 fractal template -stale: false -disabled: true +stale: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-HPSTRversion2.md b/content/theme/jekyll-HPSTRversion2.md index 5fb866ccb..7da52e742 100644 --- a/content/theme/jekyll-HPSTRversion2.md +++ b/content/theme/jekyll-HPSTRversion2.md @@ -1,15 +1,14 @@ --- title: HPSTR Version 2 - Vietnamese -github: 'https://github.com/minhhuy150894/minhhuy150894.github.io' -demo: 'https://minhhuy150894.github.io' +github: https://github.com/minhhuy150894/minhhuy150894.github.io +demo: https://minhhuy150894.github.io author: David Ng (Nguyen Minh Huy) - Michael Rose ssg: - Jekyll cms: - No Cms date: 2015-05-11T13:24:51.000Z -github_branch: master stale: true -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-JBlog-theme.md b/content/theme/jekyll-JBlog-theme.md index 22b54aa89..2b1b58e48 100644 --- a/content/theme/jekyll-JBlog-theme.md +++ b/content/theme/jekyll-JBlog-theme.md @@ -1,14 +1,13 @@ --- title: JBlog -github: 'https://github.com/alperenbozkurt/JBlog' -demo: 'https://alperenbozkurt.net/JBlog/' +github: https://github.com/alperenbozkurt/JBlog +demo: https://alperenbozkurt.net/JBlog/ author: Alperen Bozkurt ssg: - Jekyll cms: - No Cms date: 2017-06-14T13:47:32.000Z -github_branch: master description: JBlog is a simple jekyll theme. stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-JOYTOU-theme.md b/content/theme/jekyll-JOYTOU-theme.md index 4b7b06d61..d507d3280 100644 --- a/content/theme/jekyll-JOYTOU-theme.md +++ b/content/theme/jekyll-JOYTOU-theme.md @@ -1,14 +1,15 @@ --- title: JOYTOU -github: 'https://github.com/joytou/joytou.github.io' -demo: 'https://joytou.github.io/' +github: https://github.com/joytou/joytou.github.io +demo: https://joytou.github.io/ author: Joytou ssg: - Jekyll cms: - No Cms date: 2017-08-03T13:26:48.000Z -github_branch: master description: JOYTOU is a BootStrap blog template developed by Joytou Wu. -stale: false +stale: true +disabled: true +disabled_reason: error checking demo url --- \ No newline at end of file diff --git a/content/theme/jekyll-Jalpc-A.md b/content/theme/jekyll-Jalpc-A.md index 5a6ddcb91..a3eaab6d6 100644 --- a/content/theme/jekyll-Jalpc-A.md +++ b/content/theme/jekyll-Jalpc-A.md @@ -1,16 +1,15 @@ --- title: Jalpc-A -github: 'https://github.com/Jack614/Jalpc-A' -demo: 'https://ww7.jack003.com/' +github: https://github.com/Jack614/Jalpc-A +demo: https://ww7.jack003.com/ author: Kun Jia ssg: - Jekyll cms: - No Cms date: 2016-06-22T05:25:06.000Z -github_branch: gh-pages -description: "\U0001F345Jalpc-A -- Jekyll Theme(blog written by Angularjs)" -stale: false +description: 🍅Jalpc-A -- Jekyll Theme(blog written by Angularjs) +stale: true +disabled_reason: error checking demo url disabled: true -disabled_reason: "demo url not found" --- diff --git a/content/theme/jekyll-Jalpc-theme.md b/content/theme/jekyll-Jalpc-theme.md index ac8c83d74..c8eba8df4 100644 --- a/content/theme/jekyll-Jalpc-theme.md +++ b/content/theme/jekyll-Jalpc-theme.md @@ -1,14 +1,13 @@ --- title: Jalpc -github: 'https://github.com/jarrekk/Jalpc' -demo: 'https://jarrekk.github.io/Jalpc/' +github: https://github.com/jarrekk/Jalpc +demo: https://jarrekk.github.io/Jalpc/ author: Kun Jia ssg: - Jekyll cms: - No Cms date: 2016-05-29T08:02:13.000Z -github_branch: master -description: "\U0001F34EJalpc -- A flexible Jekyll theme, 3 steps to build your website. " +description: '🍎Jalpc -- A flexible Jekyll theme, 3 steps to build your website. ' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-Kikofri.md b/content/theme/jekyll-Kikofri.md index d1b651dd8..c684f8f5b 100644 --- a/content/theme/jekyll-Kikofri.md +++ b/content/theme/jekyll-Kikofri.md @@ -1,14 +1,13 @@ --- title: 'Kikofri ' -github: 'https://github.com/kxxvii/Kikofri' -demo: 'https://kxxvii.github.io/Kikofri' +github: https://github.com/kxxvii/Kikofri +demo: https://kxxvii.github.io/Kikofri author: kxxvii ssg: - Jekyll cms: - No Cms date: 2016-08-21T18:10:19.000Z -github_branch: master -description: 'Kikofri, a Jekyll Theme, and a fork of Kiko.' +description: Kikofri, a Jekyll Theme, and a fork of Kiko. stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-Less-Or-More.md b/content/theme/jekyll-Less-Or-More.md index 9f4ff6794..02b47fdeb 100644 --- a/content/theme/jekyll-Less-Or-More.md +++ b/content/theme/jekyll-Less-Or-More.md @@ -1,14 +1,13 @@ --- title: Less Or More -github: 'https://github.com/luoyan35714/LessOrMore' -demo: 'https://www.hifreud.com/' +github: https://github.com/luoyan35714/LessOrMore +demo: https://www.hifreud.com/ author: Freud Kang ssg: - Jekyll cms: - No Cms date: 2016-08-20T17:16:00.000Z -github_branch: master description: Jekyll theme. stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-Liberxue-theme.md b/content/theme/jekyll-Liberxue-theme.md index b1cb95098..efcf6fbf8 100644 --- a/content/theme/jekyll-Liberxue-theme.md +++ b/content/theme/jekyll-Liberxue-theme.md @@ -1,14 +1,13 @@ --- title: Liberxue Theme -github: 'https://github.com/Liberxue/liberxue.github.io' -demo: 'https://liberxue.github.io/' +github: https://github.com/Liberxue/liberxue.github.io +demo: https://liberxue.github.io/ author: Liberxue Theme ssg: - Jekyll cms: - No Cms date: 2017-08-02T04:58:02.000Z -github_branch: master description: >- Liberxue blog for lightweight Jekyll themes 轻量级自适应 简洁 卡片式博客主题 3秒搞定GitHub blog diff --git a/content/theme/jekyll-MAD4Jekyll.md b/content/theme/jekyll-MAD4Jekyll.md index 187b37328..70f21b723 100644 --- a/content/theme/jekyll-MAD4Jekyll.md +++ b/content/theme/jekyll-MAD4Jekyll.md @@ -1,14 +1,13 @@ --- title: MAD4Jekyll -github: 'https://github.com/madforjekyll/madforjekyll.github.io' -demo: 'https://madforjekyll.github.io' +github: https://github.com/madforjekyll/madforjekyll.github.io +demo: https://madforjekyll.github.io author: MADness ssg: - Jekyll cms: - No Cms date: 2015-11-28T23:40:15.000Z -github_branch: master description: MAD4Jekyll theme for Jekyll stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-Modern-Blog-V2-theme.md b/content/theme/jekyll-Modern-Blog-V2-theme.md index 484f2f632..298a1dae8 100644 --- a/content/theme/jekyll-Modern-Blog-V2-theme.md +++ b/content/theme/jekyll-Modern-Blog-V2-theme.md @@ -1,14 +1,13 @@ --- title: Modern Blog Version 2 -github: 'https://github.com/Open-SL/Jekyll-Modern-Blog' -demo: 'https://open-sl.github.io/Jekyll-Modern-Blog/' +github: https://github.com/Open-SL/Jekyll-Modern-Blog +demo: https://open-sl.github.io/Jekyll-Modern-Blog/ author: Nadun Indunil ssg: - Jekyll cms: - No Cms date: 2017-03-12T15:47:54.000Z -github_branch: master description: Jekyll Modern Theme Alternative Version stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-Mono.md b/content/theme/jekyll-Mono.md index 6583c9dba..094975e1b 100644 --- a/content/theme/jekyll-Mono.md +++ b/content/theme/jekyll-Mono.md @@ -1,16 +1,17 @@ --- title: Jekyll-Mono -github: 'https://github.com/AkshayAgarwal007/Jekyll-Mono' -demo: 'https://akshayagarwal007.github.io/Jekyll-Mono' +github: https://github.com/AkshayAgarwal007/Jekyll-Mono +demo: https://akshayagarwal007.github.io/Jekyll-Mono author: Akshay Agarwal ssg: - Jekyll cms: - No Cms date: 2016-05-20T19:44:40.000Z -github_branch: master description: >- :red_circle: Jekyll-Mono :large_blue_circle: is a simple and elegant GitHub Profile cum Blog theme stale: true +disabled: true +disabled_reason: error checking demo url --- \ No newline at end of file diff --git a/content/theme/jekyll-Renge.md b/content/theme/jekyll-Renge.md index b3c6dc723..0f231135a 100644 --- a/content/theme/jekyll-Renge.md +++ b/content/theme/jekyll-Renge.md @@ -1,14 +1,15 @@ --- title: Renge -github: 'https://github.com/billyfish152/Renge' -demo: 'https://junchaowang.com' +github: https://github.com/billyfish152/Renge +demo: https://junchaowang.com author: Junchao Wang ssg: - Jekyll cms: - No Cms date: 2016-06-14T22:25:56.000Z -github_branch: master description: A Jekyll theme by Junchao stale: true +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-TeXt-theme.md b/content/theme/jekyll-TeXt-theme.md index bfd7ac267..6f30f31d0 100644 --- a/content/theme/jekyll-TeXt-theme.md +++ b/content/theme/jekyll-TeXt-theme.md @@ -1,14 +1,17 @@ --- title: TeXt -github: 'https://github.com/kitian616/jekyll-TeXt-theme' -demo: 'https://tianqi.name/jekyll-TeXt-theme/' +github: https://github.com/kitian616/jekyll-TeXt-theme +demo: https://tianqi.name/jekyll-TeXt-theme/ author: Tian Qi ssg: - Jekyll cms: - No Cms date: 2017-10-07T10:04:39.000Z -github_branch: master -description: "\U0001F48E \U0001F433 A super customizable Jekyll theme for personal site, team site, blog, project, documentation, etc." +description: >- + 💎 🐳 A super customizable Jekyll theme for personal site, team site, blog, + project, documentation, etc. stale: false +disabled: true +disabled_reason: error checking demo url --- \ No newline at end of file diff --git a/content/theme/jekyll-Type-on-Strap-theme.md b/content/theme/jekyll-Type-on-Strap-theme.md index 90415c843..bdfc1049f 100644 --- a/content/theme/jekyll-Type-on-Strap-theme.md +++ b/content/theme/jekyll-Type-on-Strap-theme.md @@ -1,14 +1,13 @@ --- title: Type on Strap -github: 'https://github.com/Sylhare/Type-on-Strap' -demo: 'https://sylhare.github.io/Type-on-Strap/' +github: https://github.com/Sylhare/Type-on-Strap +demo: https://sylhare.github.io/Type-on-Strap/ author: Sylhare ssg: - Jekyll cms: - No Cms date: 2017-10-02T13:37:28.000Z -github_branch: master -description: "\U0001F3A8 Simplistic, responsive jekyll based open source theme" +description: 🎨 Simplistic, responsive jekyll based open source theme stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-YAX-Coming-soon.md b/content/theme/jekyll-YAX-Coming-soon.md index 502f3e2c8..75c8252c9 100644 --- a/content/theme/jekyll-YAX-Coming-soon.md +++ b/content/theme/jekyll-YAX-Coming-soon.md @@ -1,15 +1,14 @@ --- title: YAX-Coming-soon -github: 'https://github.com/yonojoy/YAX-Coming-soon-Jekyll-Template' +github: https://github.com/yonojoy/YAX-Coming-soon-Jekyll-Template demo: >- https://www.behance.net/gallery/18421675/Free-Bootstrap-Psd-Coming-Soon-Template -author: 'yonojoy, M. Aghili, Ilya B. & others' +author: yonojoy, M. Aghili, Ilya B. & others ssg: - Jekyll cms: - No Cms date: 2015-11-16T11:42:40.000Z -github_branch: master description: Free HTML5 CSS3 Coming Soon Jekyll Template stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-academic.md b/content/theme/jekyll-academic.md new file mode 100644 index 000000000..e81f7f7fd --- /dev/null +++ b/content/theme/jekyll-academic.md @@ -0,0 +1,13 @@ +--- +title: academic +github: https://github.com/LeNPaul/academic +demo: https://lenpaul.github.io/academic/ +author: Paul Le +ssg: + - Jekyll +cms: + - No Cms +date: 2021-06-01T00:00:00.000Z +description: A Jekyll theme for academia +stale: false +--- diff --git a/content/theme/jekyll-accent.md b/content/theme/jekyll-accent.md index b30ce299d..9efbe4fdf 100644 --- a/content/theme/jekyll-accent.md +++ b/content/theme/jekyll-accent.md @@ -1,14 +1,13 @@ --- title: accent -github: 'https://github.com/ankitsultana/accent' -demo: 'https://ankitsultana.com/accent' +github: https://github.com/ankitsultana/accent +demo: https://ankitsultana.com/accent author: Ankit Sultana ssg: - Jekyll cms: - No Cms date: 2016-02-09T18:08:07.000Z -github_branch: gh-pages -description: 'A single accent, single column Jekyll Theme' +description: A single accent, single column Jekyll Theme stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-adam-blog-theme.md b/content/theme/jekyll-adam-blog-theme.md index dd773c987..1b4f45958 100644 --- a/content/theme/jekyll-adam-blog-theme.md +++ b/content/theme/jekyll-adam-blog-theme.md @@ -1,14 +1,13 @@ --- title: Adam Blog -github: 'https://github.com/artemsheludko/adam-blog' -demo: 'https://artemsheludko.github.io/adam-blog/' +github: https://github.com/artemsheludko/adam-blog +demo: https://artemsheludko.github.io/adam-blog/ author: Artem Sheludko ssg: - Jekyll cms: - No Cms date: 2017-09-06T10:24:57.000Z -github_branch: master description: Adam Blog is a minimal clear theme for Jekyll stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-aliquam.md b/content/theme/jekyll-aliquam.md index 6b6c1867f..fe36806a1 100644 --- a/content/theme/jekyll-aliquam.md +++ b/content/theme/jekyll-aliquam.md @@ -1,14 +1,13 @@ --- title: Aliquam -github: 'https://github.com/grrinchas/aliquam' -demo: 'https://grrinchas.github.io/' +github: https://github.com/grrinchas/aliquam +demo: https://grrinchas.github.io/ author: grrinchas ssg: - Jekyll cms: - No Cms date: 2016-05-23T18:34:40.000Z -github_branch: master description: 'Jekyll theme ' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-architect.md b/content/theme/jekyll-architect.md index 8490df3dd..e1f1dbdb8 100644 --- a/content/theme/jekyll-architect.md +++ b/content/theme/jekyll-architect.md @@ -1,16 +1,15 @@ --- title: architect -github: 'https://github.com/pietromenna/jekyll-architect-theme' -demo: 'https://pietro.menna.net.br/jekyll-architect-theme/' -author: 'Jason Long, ported by Pietro Menna' +github: https://github.com/pietromenna/jekyll-architect-theme +demo: https://pietro.menna.net.br/jekyll-architect-theme/ +author: Jason Long, ported by Pietro Menna ssg: - Jekyll cms: - No Cms date: 2014-04-06T18:05:02.000Z -github_branch: master description: >- Open Source version of the GitHub Pages theme, now for Jekyll. Demo at https://pietro.menna.net.br/jekyll-architect-theme/ -stale: true +stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-arctic-fox.md b/content/theme/jekyll-arctic-fox.md index d9e6f5164..3e2c71058 100644 --- a/content/theme/jekyll-arctic-fox.md +++ b/content/theme/jekyll-arctic-fox.md @@ -1,14 +1,13 @@ --- title: Arctic Fox -github: 'https://github.com/diezcami/arctic-fox-theme/' -demo: 'https://diezcami.github.io/arctic-fox-theme' +github: https://github.com/diezcami/arctic-fox-theme/ +demo: https://diezcami.github.io/arctic-fox-theme author: Camille Diez ssg: - Jekyll cms: - No Cms date: 2015-05-27T12:30:56.000Z -github_branch: master description: ':snowboarder: An even more lightweight theme for Jekyll' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-artist-theme.md b/content/theme/jekyll-artist-theme.md index a90cb22b7..eb9e0782e 100644 --- a/content/theme/jekyll-artist-theme.md +++ b/content/theme/jekyll-artist-theme.md @@ -1,14 +1,13 @@ --- title: Artist Theme -github: 'https://github.com/ninapetrop/Artist-Theme' -demo: 'https://ninapetrop.github.io/Artist-Theme/' +github: https://github.com/ninapetrop/Artist-Theme +demo: https://ninapetrop.github.io/Artist-Theme/ author: Nina Petropoulos ssg: - Jekyll cms: - No Cms date: 2016-01-31T20:52:26.000Z -github_branch: master description: A free Jekyll theme stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-atlantic.md b/content/theme/jekyll-atlantic.md new file mode 100644 index 000000000..7c1deeca3 --- /dev/null +++ b/content/theme/jekyll-atlantic.md @@ -0,0 +1,50 @@ +--- +title: Jekyll Atlantic Tailwind Blog +date: 2021-10-02T00:00:00.000Z +github: https://github.com/zerostaticthemes/jekyll-atlantic-theme +demo: https://jekyll-atlantic.netlify.app/ +author: Robert Austin +ssg: + - Jekyll +cms: + - No Cms +css: + - Tailwind +archetype: + - Blog +description: >- + Jekyll Atlantic is a beautiful Tailwind CSS theme. It shows best practices for + using Tailwind with Jekyll. +stale: false +--- + +# Jekyll Atlantic - A Jekyll Tailwind Theme + +Atlantic is a beautiful Tailwind CSS theme. It shows best practices for using Tailwind with Jekyll. + +[Live Demo](https://jekyll-atlantic.netlify.app/) | [Zerostatic Themes](https://www.zerostatic.io/theme/jekyll-atlantic/) + +### Theme features + + [Jekyll](https://jekyllrb.com/) 4.1+ + [Tailwind CSS](https://tailwindcss.com/docs) v2.2+ + [PostCSS](https://postcss.org/) 8.3+ + +- Uses PostCSS with autoprefixer, nested css, cssnano (minify css) +- Works with native Jekyll commands `jekyll serve` and `jekyll build` +- Correctly uses Tailwind to purge CSS in production +- Full blog functionality +- Beautfifuly designed responsive blog and post layouts +- Blog categories +- Blog authors (multiple) +- Blog pagination +- Ready to deploy to Netlify +- Responsive design +- Responsive menu +- 100/100 Google Lighthouse speed score ⚡ +- 100/100 Google Lighthouse seo score 🏆 +- 94/100 Google Lighthouse accessibility score (but this is just because of the green text color contrast) +- Page size is 10KB without images, can you believe it?? 🔥 +- Robust example content included +- Royalty free illustrations included +- Netlify & Github Pages ready diff --git a/content/theme/jekyll-atmos-plus.md b/content/theme/jekyll-atmos-plus.md index 574143d5f..2aafb5bf6 100644 --- a/content/theme/jekyll-atmos-plus.md +++ b/content/theme/jekyll-atmos-plus.md @@ -1,14 +1,13 @@ --- title: Atmos Plus -github: 'https://github.com/meliodus/meliodus.github.io' -demo: 'https://meliodus.github.io/' +github: https://github.com/meliodus/meliodus.github.io +demo: https://meliodus.github.io/ author: Ankan Biswas ssg: - Jekyll cms: - No Cms date: 2015-11-08T15:21:45.000Z -github_branch: master description: Introvert Geek Diaries ~ Ankan Biswas on the internet stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-autm-rb.md b/content/theme/jekyll-autm-rb.md index 0b8055669..6f791f2cf 100644 --- a/content/theme/jekyll-autm-rb.md +++ b/content/theme/jekyll-autm-rb.md @@ -1,14 +1,13 @@ --- title: autm-rb -github: 'https://github.com/railsr/autm-rb' -demo: 'https://kirqe.github.io/autm-rb/' +github: https://github.com/railsr/autm-rb +demo: https://kirqe.github.io/autm-rb/ author: Kirill Beletskiy ssg: - Jekyll cms: - No Cms date: 2014-10-10T15:37:02.000Z -github_branch: master description: Jekyll theme stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-aviator.md b/content/theme/jekyll-aviator.md index 8f01ba899..6b5228e9d 100644 --- a/content/theme/jekyll-aviator.md +++ b/content/theme/jekyll-aviator.md @@ -1,14 +1,13 @@ --- title: Aviator -github: 'https://github.com/CloudCannon/Aviator-Jekyll-Theme' -demo: 'https://tangerine-lemon.cloudvent.net/' -author: 'CloudCannon (https://cloudcannon.com)' +github: https://github.com/CloudCannon/Aviator-Jekyll-Theme +demo: https://tangerine-lemon.cloudvent.net/ +author: CloudCannon (https://cloudcannon.com) ssg: - Jekyll cms: - No Cms date: 2015-01-28T02:49:52.000Z -github_branch: master description: ':droplet: API Documentation template for Jekyll' -stale: true +stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-bajawa.md b/content/theme/jekyll-bajawa.md new file mode 100644 index 000000000..81bd458aa --- /dev/null +++ b/content/theme/jekyll-bajawa.md @@ -0,0 +1,32 @@ +--- +title: Bajawa +github: https://github.com/kulacino/bajawa +demo: https://bajawa.ayuwelirang.com +author: Cynthia Ayu W (@kulacino) +date: 2021-06-25T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +css: + - SCSS +archetype: + - Blog +description: >- + A minimalist, simple, and lightweight jekyll theme for blogger and writer with + a touch of pastel colors. +stale: false +disabled: true +disabled_reason: demo url not found +--- + +# A simple starter kit + +This theme is a lightweight and clean starter kit with a touch of pastel colors. + +## Features + +* Blog page pagination. +* Search blogposts using lunrjs. +* Using sass. +* Free to use and modified. diff --git a/content/theme/jekyll-balzac.md b/content/theme/jekyll-balzac.md index 898430458..31424898a 100644 --- a/content/theme/jekyll-balzac.md +++ b/content/theme/jekyll-balzac.md @@ -1,14 +1,15 @@ --- title: Balzac -github: 'https://github.com/coletownsend/balzac-for-jekyll' -demo: 'https://gtat.me/' +github: https://github.com/coletownsend/balzac-for-jekyll +demo: https://gtat.me/ author: Cole Townsend ssg: - Jekyll cms: - No Cms date: 2013-08-02T12:31:24.000Z -github_branch: master -description: 'Your favorite AnchorCMS theme, now for Jekyll!' +description: Your favorite AnchorCMS theme, now for Jekyll! stale: true +disabled: false +disabled_reason: '' --- \ No newline at end of file diff --git a/content/theme/jekyll-bay.md b/content/theme/jekyll-bay.md index 6d3b4d46d..9c3f98951 100644 --- a/content/theme/jekyll-bay.md +++ b/content/theme/jekyll-bay.md @@ -1,10 +1,9 @@ --- title: Bay -github: 'https://github.com/eliottvincent/bay' -demo: 'https://eliottvincent.github.io/bay/' +github: https://github.com/eliottvincent/bay +demo: https://eliottvincent.github.io/bay/ author: eliottvincent date: 2020-07-19T14:33:30.000Z -github_branch: master ssg: - Jekyll cms: diff --git a/content/theme/jekyll-beNice17.md b/content/theme/jekyll-beNice17.md index 6e140c054..5097286a0 100644 --- a/content/theme/jekyll-beNice17.md +++ b/content/theme/jekyll-beNice17.md @@ -1,14 +1,15 @@ --- title: beNice17 -github: 'https://github.com/vietanhdev/beNice17' -demo: 'https://www.vietanhdev.com/beNice17/' +github: https://github.com/vietanhdev/beNice17 +demo: https://www.vietanhdev.com/beNice17/ author: Viet Anh Nguyen ssg: - Jekyll cms: - No Cms date: 2016-12-30T13:15:34.000Z -github_branch: master description: A Jekyll theme for my personal website stale: true +disabled: false +disabled_reason: '' --- \ No newline at end of file diff --git a/content/theme/jekyll-beautiful-theme.md b/content/theme/jekyll-beautiful-theme.md index 513be1495..487aac6f7 100644 --- a/content/theme/jekyll-beautiful-theme.md +++ b/content/theme/jekyll-beautiful-theme.md @@ -1,14 +1,13 @@ --- title: Beautiful Jekyll -github: 'https://github.com/daattali/beautiful-jekyll' -demo: 'https://deanattali.com/beautiful-jekyll/' +github: https://github.com/daattali/beautiful-jekyll +demo: https://deanattali.com/beautiful-jekyll/ author: Dean Attali ssg: - Jekyll cms: - No Cms date: 2015-03-02T20:04:26.000Z -github_branch: master description: >- :sparkles: Build a beautiful and simple website in literally minutes. Demo at https://deanattali.com/beautiful-jekyll diff --git a/content/theme/jekyll-bef-theme.md b/content/theme/jekyll-bef-theme.md index 8d9284a95..af9ed7432 100644 --- a/content/theme/jekyll-bef-theme.md +++ b/content/theme/jekyll-bef-theme.md @@ -1,14 +1,13 @@ --- title: Bef -github: 'https://github.com/artemsheludko/bef' -demo: 'https://artemsheludko.github.io/bef/' +github: https://github.com/artemsheludko/bef +demo: https://artemsheludko.github.io/bef/ author: Artem Sheludko ssg: - Jekyll cms: - No Cms date: 2017-07-16T15:34:56.000Z -github_branch: master -description: 'Bef is a responsive jekyll theme https://artemsheludko.github.io/bef/' +description: Bef is a responsive jekyll theme https://artemsheludko.github.io/bef/ stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-bheema.md b/content/theme/jekyll-bheema.md index 90cc0541f..1a1640ce4 100644 --- a/content/theme/jekyll-bheema.md +++ b/content/theme/jekyll-bheema.md @@ -1,14 +1,13 @@ --- title: Webjeda Bheema -github: 'https://github.com/sharu725/bheema' -demo: 'https://webjeda.com/bheema' +github: https://github.com/sharu725/bheema +demo: https://webjeda.com/bheema author: webjeda ssg: - Jekyll cms: - No Cms date: 2016-12-08T18:01:48.000Z -github_branch: master description: A journal theme stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-bitwiser-material.md b/content/theme/jekyll-bitwiser-material.md index 05a029bbb..2e2e89e55 100644 --- a/content/theme/jekyll-bitwiser-material.md +++ b/content/theme/jekyll-bitwiser-material.md @@ -1,14 +1,13 @@ --- title: Bitwiser Material -github: 'https://github.com/brijeshb42/bitwiser-material' -demo: 'https://bitwiser.in/bitwiser-material/' +github: https://github.com/brijeshb42/bitwiser-material +demo: https://bitwiser.in/bitwiser-material/ author: Brijesh Bittu ssg: - Jekyll cms: - No Cms date: 2015-07-11T20:55:48.000Z -github_branch: gh-pages description: jekyll material theme stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-blackdoc.md b/content/theme/jekyll-blackdoc.md index 9e92ae992..d5f67e843 100644 --- a/content/theme/jekyll-blackdoc.md +++ b/content/theme/jekyll-blackdoc.md @@ -1,16 +1,17 @@ --- title: BlackDoc -github: 'https://github.com/karloespiritu/BlackDoc' -demo: 'https://karloespiritu.com/blackdoc' +github: https://github.com/karloespiritu/BlackDoc +demo: https://karloespiritu.com/blackdoc author: Karlo Espiritu ssg: - Jekyll cms: - No Cms date: 2015-05-22T00:34:37.000Z -github_branch: master description: >- A two-column Jekyll theme for websites that require a master-detail layout for viewing of content stale: true +disabled: true +disabled_reason: error checking demo url --- \ No newline at end of file diff --git a/content/theme/jekyll-blade-theme.md b/content/theme/jekyll-blade-theme.md index 7daacc235..58fc6d673 100644 --- a/content/theme/jekyll-blade-theme.md +++ b/content/theme/jekyll-blade-theme.md @@ -1,14 +1,13 @@ --- title: Blade Theme -github: 'https://github.com/mateussmedeiros/blade-theme' -demo: 'https://mateussmedeiros.github.io/blade-theme/' +github: https://github.com/mateussmedeiros/blade-theme +demo: https://mateussmedeiros.github.io/blade-theme/ author: Mateus Medeiros ssg: - Jekyll cms: - No Cms date: 2017-01-25T22:59:55.000Z -github_branch: master description: A simple Jekyll blog theme stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-block-log.md b/content/theme/jekyll-block-log.md index 0acc4d6d5..4ac0a70c6 100644 --- a/content/theme/jekyll-block-log.md +++ b/content/theme/jekyll-block-log.md @@ -1,16 +1,15 @@ --- title: block-log -github: 'https://github.com/anandubajith/block-log' -demo: 'https://anandu.net/demo/block-log/' +github: https://github.com/anandubajith/block-log +demo: https://anandu.net/demo/block-log/ author: Anandu B Ajith ssg: - Jekyll cms: - No Cms date: 2014-05-16T05:57:19.000Z -github_branch: master -description: 'block-log , A Jekyll theme' +description: block-log , A Jekyll theme stale: true -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-blueface.md b/content/theme/jekyll-blueface.md index 3aa978e3e..814a456ec 100644 --- a/content/theme/jekyll-blueface.md +++ b/content/theme/jekyll-blueface.md @@ -1,14 +1,13 @@ --- title: blueface -github: 'https://github.com/tnguyen/blueface' -demo: 'https://thien.github.io/blueface/' +github: https://github.com/tnguyen/blueface +demo: https://thien.github.io/blueface/ author: Thien Nguyen ssg: - Jekyll cms: - No Cms date: 2016-03-23T10:49:06.000Z -github_branch: master description: A minimalist Jekyll theme. stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-bohu-theme.md b/content/theme/jekyll-bohu-theme.md index 9a3f20058..70c383209 100644 --- a/content/theme/jekyll-bohu-theme.md +++ b/content/theme/jekyll-bohu-theme.md @@ -1,14 +1,13 @@ --- title: BoHu -github: 'https://github.com/Clark-Zhao/bohu-jekyll-theme' -demo: 'https://llawlight.github.io/bohu-jekyll-theme/' +github: https://github.com/Clark-Zhao/bohu-jekyll-theme +demo: https://llawlight.github.io/bohu-jekyll-theme/ author: Clark Zhao ssg: - Jekyll cms: - No Cms date: 2016-04-24T03:44:01.000Z -github_branch: gh-pages description: My first JEKYLL-THEME -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-book.md b/content/theme/jekyll-book.md index 50dc573af..0d5178b79 100644 --- a/content/theme/jekyll-book.md +++ b/content/theme/jekyll-book.md @@ -1,16 +1,15 @@ --- title: Book -github: 'https://github.com/kkninjae/book/' -demo: 'https://liulang.co/book/' +github: https://github.com/kkninjae/book/ +demo: https://liulang.co/book/ author: Lang Liu ssg: - Jekyll cms: - No Cms date: 2015-08-27T20:29:15.000Z -github_branch: master description: A Jekyll Theme stale: true -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-brume.md b/content/theme/jekyll-brume.md index a01f25d62..214f167f8 100644 --- a/content/theme/jekyll-brume.md +++ b/content/theme/jekyll-brume.md @@ -1,14 +1,13 @@ --- title: brume -github: 'https://github.com/aigarsdz/brume' -demo: 'https://aigarsdz.github.io/brume/' +github: https://github.com/aigarsdz/brume +demo: https://aigarsdz.github.io/brume/ author: Aigars Dzerviniks ssg: - Jekyll cms: - No Cms date: 2013-09-22T10:23:03.000Z -github_branch: master description: A simple Jekyll blog theme stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-bulma-theme.md b/content/theme/jekyll-bulma-theme.md index 066333fb2..eace7deea 100644 --- a/content/theme/jekyll-bulma-theme.md +++ b/content/theme/jekyll-bulma-theme.md @@ -1,7 +1,7 @@ --- title: Jekyll Bulma -github: 'https://github.com/erayaydin/jekyll-bulma' -demo: 'https://erayaydin.github.io/jekyll-bulma/' +github: https://github.com/erayaydin/jekyll-bulma +demo: https://erayaydin.github.io/jekyll-bulma/ author: Eray Aydın ssg: - Jekyll @@ -10,7 +10,6 @@ cms: css: - Bulma date: 2017-02-02T09:36:52.000Z -github_branch: master description: Jekyll Bulma Theme | Bulma.io Jekyll Template for Developers stale: true --- diff --git a/content/theme/jekyll-butane.md b/content/theme/jekyll-butane.md index f1a621742..4f207579c 100644 --- a/content/theme/jekyll-butane.md +++ b/content/theme/jekyll-butane.md @@ -1,14 +1,13 @@ --- title: Butane -github: 'https://github.com/alexcarpenter/butane-jekyll-theme' -demo: 'https://alexcarpenter.github.io/butane-jekyll-theme/' +github: https://github.com/alexcarpenter/butane-jekyll-theme +demo: https://alexcarpenter.github.io/butane-jekyll-theme/ author: alexcarpenter ssg: - Jekyll cms: - No Cms date: 2015-11-29T18:29:17.000Z -github_branch: gh-pages description: Butane Jekyll Theme stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-cards-theme.md b/content/theme/jekyll-cards-theme.md index f1fc4f489..965056086 100644 --- a/content/theme/jekyll-cards-theme.md +++ b/content/theme/jekyll-cards-theme.md @@ -1,14 +1,13 @@ --- title: Cards -github: 'https://github.com/willianjusten/cards-jekyll-template' -demo: 'https://willianjusten.github.io/cards-jekyll-template/' +github: https://github.com/willianjusten/cards-jekyll-template +demo: https://willianjusten.github.io/cards-jekyll-template/ author: Willian Justen ssg: - Jekyll cms: - No Cms date: 2016-05-09T00:02:43.000Z -github_branch: gh-pages description: A simple Jekyll Template Card Based. -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-carte-noire.md b/content/theme/jekyll-carte-noire.md index 3d1f3c2e6..ceb1195dd 100644 --- a/content/theme/jekyll-carte-noire.md +++ b/content/theme/jekyll-carte-noire.md @@ -1,14 +1,13 @@ --- title: Carte Noire -github: 'https://github.com/jacobtomlinson/carte-noire' -demo: 'https://carte-noire.jacobtomlinson.co.uk/' +github: https://github.com/jacobtomlinson/carte-noire +demo: https://carte-noire.jacobtomlinson.co.uk/ author: Jacob Tomlinson ssg: - Jekyll cms: - No Cms date: 2015-03-20T22:12:17.000Z -github_branch: gh-pages description: A simple jekyll theme for blogging stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-carte.md b/content/theme/jekyll-carte.md index 3c1f52683..9efd0ab83 100644 --- a/content/theme/jekyll-carte.md +++ b/content/theme/jekyll-carte.md @@ -1,14 +1,13 @@ --- title: Carte -github: 'https://github.com/Wiredcraft/carte' -demo: 'https://wiredcraft.github.io/carte/' +github: https://github.com/Wiredcraft/carte +demo: https://wiredcraft.github.io/carte/ author: Wiredcraft ssg: - Jekyll cms: - No Cms date: 2012-12-26T11:06:28.000Z -github_branch: gh-pages description: Simple Jekyll-based documentation site for APIs. -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-cause.md b/content/theme/jekyll-cause.md index 2806f9faa..1c1b31f2e 100644 --- a/content/theme/jekyll-cause.md +++ b/content/theme/jekyll-cause.md @@ -1,14 +1,13 @@ --- title: Cause -github: 'https://github.com/CloudCannon/cause-jekyll-template' -demo: 'https://clean-oryx.cloudvent.net/' +github: https://github.com/CloudCannon/cause-jekyll-template +demo: https://clean-oryx.cloudvent.net/ author: CloudCannon ssg: - Jekyll cms: - No Cms date: 2016-11-16T01:59:02.000Z -github_branch: master description: ':tulip: Not for profit template for Jekyll' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-cayman-blog.md b/content/theme/jekyll-cayman-blog.md index 6ff6db841..c92e86005 100644 --- a/content/theme/jekyll-cayman-blog.md +++ b/content/theme/jekyll-cayman-blog.md @@ -1,16 +1,15 @@ --- title: Cayman Blog -github: 'https://github.com/adueck/cayman-blog' -demo: 'https://adueck.github.io/cayman-blog/' +github: https://github.com/adueck/cayman-blog +demo: https://adueck.github.io/cayman-blog/ author: Adam Dueck ssg: - Jekyll cms: - No Cms date: 2016-01-27T21:10:18.000Z -github_branch: master description: >- A Jekyll blog template made for simple, readable snippets of your brain drippings. -stale: true +stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-cayman-theme.md b/content/theme/jekyll-cayman-theme.md index 8a1d32eef..01e2bd3a7 100644 --- a/content/theme/jekyll-cayman-theme.md +++ b/content/theme/jekyll-cayman-theme.md @@ -1,14 +1,13 @@ --- title: Cayman Theme -github: 'https://github.com/pietromenna/jekyll-cayman-theme' -demo: 'https://jasonlong.github.io/cayman-theme/' +github: https://github.com/pietromenna/jekyll-cayman-theme +demo: https://jasonlong.github.io/cayman-theme/ author: Pietro Menna (@pietromenna) ssg: - Jekyll cms: - No Cms date: 2016-02-12T19:24:16.000Z -github_branch: master description: >- A Jekyll theme for the responsive theme for GitHub Pages https://jasonlong.github.io/cayman-theme/ diff --git a/content/theme/jekyll-cc-urban.md b/content/theme/jekyll-cc-urban.md index f23d3e125..5a2a57560 100644 --- a/content/theme/jekyll-cc-urban.md +++ b/content/theme/jekyll-cc-urban.md @@ -1,14 +1,13 @@ --- title: CC Urban -github: 'https://github.com/CloudCannon/urban-jekyll-template' -demo: 'https://teal-worm.cloudvent.net/' +github: https://github.com/CloudCannon/urban-jekyll-template +demo: https://teal-worm.cloudvent.net/ author: CloudCannon ssg: - Jekyll cms: - No Cms date: 2016-11-10T03:08:36.000Z -github_branch: master description: ':cloud: Agency template for Jekyll' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-chalk.md b/content/theme/jekyll-chalk.md index 3e5a0f6b4..2977260f2 100644 --- a/content/theme/jekyll-chalk.md +++ b/content/theme/jekyll-chalk.md @@ -1,14 +1,13 @@ --- title: Chalk -github: 'https://github.com/nielsenramon/chalk' -demo: 'https://chalk.nielsenramon.com' +github: https://github.com/nielsenramon/chalk +demo: https://chalk.nielsenramon.com author: Nielsen Ramon ssg: - Jekyll cms: - No Cms date: 2016-07-26T20:59:57.000Z -github_branch: master description: >- Chalk is a high quality, completely customizable, performant and 100% free Jekyll blog theme. diff --git a/content/theme/jekyll-clean-dark.md b/content/theme/jekyll-clean-dark.md index d3d9915e3..cf7aff259 100644 --- a/content/theme/jekyll-clean-dark.md +++ b/content/theme/jekyll-clean-dark.md @@ -1,14 +1,13 @@ --- title: Jekyll Clean Dark -github: 'https://github.com/streetturtle/jekyll-clean-dark' -demo: 'https://pavelmakhov.com/jekyll-clean-dark/' +github: https://github.com/streetturtle/jekyll-clean-dark +demo: https://pavelmakhov.com/jekyll-clean-dark/ author: Pavel Makhov ssg: - Jekyll cms: - No Cms date: 2015-06-29T22:56:56.000Z -github_branch: gh-pages description: Dark clean theme for jekyll -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-clean-theme.md b/content/theme/jekyll-clean-theme.md index 966af4e7c..4573d397d 100644 --- a/content/theme/jekyll-clean-theme.md +++ b/content/theme/jekyll-clean-theme.md @@ -1,14 +1,13 @@ --- title: Jekyll Clean -github: 'https://github.com/scotte/jekyll-clean' -demo: 'https://scotte.github.io/jekyll-clean' +github: https://github.com/scotte/jekyll-clean +demo: https://scotte.github.io/jekyll-clean author: Scott Emmons ssg: - Jekyll cms: - No Cms date: 2014-08-22T22:48:36.000Z -github_branch: gh-pages description: 'A simple and clean Jekyll theme that''s easy to modify. See it here:' -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-clean.md b/content/theme/jekyll-clean.md index d69e760cd..e0a570c58 100644 --- a/content/theme/jekyll-clean.md +++ b/content/theme/jekyll-clean.md @@ -1,14 +1,15 @@ --- title: Clean -github: 'https://github.com/knaman2609/clean' -demo: 'https://knaman2609.github.io/clean/' +github: https://github.com/knaman2609/clean +demo: https://knaman2609.github.io/clean/ author: knaman2609 ssg: - Jekyll cms: - No Cms date: 2015-09-26T18:55:33.000Z -github_branch: master description: A clean jekyll theme. stale: true +disabled: true +disabled_reason: error checking demo url --- \ No newline at end of file diff --git a/content/theme/jekyll-clyell-theme.md b/content/theme/jekyll-clyell-theme.md index 14874c799..7cc76e11f 100644 --- a/content/theme/jekyll-clyell-theme.md +++ b/content/theme/jekyll-clyell-theme.md @@ -1,14 +1,13 @@ --- title: Clyell -github: 'https://github.com/gildasio/clyell' -demo: 'https://gildasio.github.io/clyell/' +github: https://github.com/gildasio/clyell +demo: https://gildasio.github.io/clyell/ author: gildasio ssg: - Jekyll cms: - No Cms date: 2017-06-16T03:14:11.000Z -github_branch: gh-pages description: My site jekyll theme stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-codinfox-lanyon.md b/content/theme/jekyll-codinfox-lanyon.md index d1c589990..f169e962a 100644 --- a/content/theme/jekyll-codinfox-lanyon.md +++ b/content/theme/jekyll-codinfox-lanyon.md @@ -1,14 +1,15 @@ --- title: Codinfox Lanyon -github: 'https://github.com/codinfox/codinfox-lanyon' -demo: 'https://codinfox.github.io/' +github: https://github.com/codinfox/codinfox-lanyon +demo: https://codinfox.github.io/ author: codinfox ssg: - Jekyll cms: - No Cms date: 2015-03-05T06:44:00.000Z -github_branch: dev description: Another jekyll templated based on lanyon stale: true +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-compass.md b/content/theme/jekyll-compass.md index 94b6511d0..749f78ff5 100644 --- a/content/theme/jekyll-compass.md +++ b/content/theme/jekyll-compass.md @@ -1,14 +1,15 @@ --- title: Compass -github: 'https://github.com/excentris/compass' -demo: 'https://excentris.github.io/compass/' +github: https://github.com/excentris/compass +demo: https://excentris.github.io/compass/ author: Eduardo Rubio ssg: - Jekyll cms: - No Cms date: 2015-01-03T21:56:41.000Z -github_branch: master description: The Jekyll theme for your personal landing page. stale: true +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-console.md b/content/theme/jekyll-console.md index 2b93c308d..a5e1079af 100644 --- a/content/theme/jekyll-console.md +++ b/content/theme/jekyll-console.md @@ -1,14 +1,13 @@ --- title: Console -github: 'https://github.com/jaehee0113/console' -demo: 'https://jaehee0113.github.io/console' +github: https://github.com/jaehee0113/console +demo: https://jaehee0113.github.io/console author: Jae Hee Lee ssg: - Jekyll cms: - No Cms date: 2017-01-25T06:26:30.000Z -github_branch: master description: simple yet powerful theme that will make your website look stylish stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-contrast.md b/content/theme/jekyll-contrast.md index ec17db998..a067b0f96 100644 --- a/content/theme/jekyll-contrast.md +++ b/content/theme/jekyll-contrast.md @@ -1,14 +1,13 @@ --- title: Jekyll Contrast -github: 'https://github.com/niklasbuschmann/contrast' -demo: 'https://niklasbuschmann.github.io/contrast/' +github: https://github.com/niklasbuschmann/contrast +demo: https://niklasbuschmann.github.io/contrast/ author: Niklas Buschmann ssg: - Jekyll cms: - No Cms date: 2018-01-19T01:23:22.000Z -github_branch: master description: Jekyll Theme -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-cookie.md b/content/theme/jekyll-cookie.md new file mode 100644 index 000000000..f3f668edb --- /dev/null +++ b/content/theme/jekyll-cookie.md @@ -0,0 +1,42 @@ +--- +title: Cookie +github: https://github.com/abhinavs/cookie +demo: https://cookie-demo.netlify.app/ +author: Abhinav Saxena +ssg: + - Jekyll +cms: + - No Cms +archetype: + - Ecommerce + - Business + - Blog +css: + - Tailwind +date: 2021-03-04T00:00:00.000Z +github_branch: master +description: >- + Cookie is a fast and one-click deployable landing website that comes with a + blog, additional pages and Soopr integration - makes creating and launching + websites a cakewalk. +stale: false +--- +# Cookie - a fast and easy to deploy landing website for your next project. + +Cookie is a Jekyll and Tailwind CSS based static website that makes the whole process of creating and launching landing websites extremely easy. + +## Features +* Well-designed landing page +* Responsive and mobile friendly +* Additional pages like about us, terms of service & privacy policy +* Integrated blog, write content in markdown format +* Easy to customize using Tailwind CSS +* Fast and performant website +* SEO optimized (uses [Jekyll SEO Tag](https://github.com/jekyll/jekyll-seo-tag)) +* RSS feed (uses [Jekyll Feed](https://github.com/jekyll/jekyll-feed)) +* Easy to deploy, one-click deploy on [Netlify](https://www.netlify.com) possible +* [Soopr](https://wwww.soopr.co) integrated - easy to customize share & like buttons, URL shortning and website analytics + +
+
+[![Deploy with Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/abhinavs/cookie) diff --git a/content/theme/jekyll-cool-concise-high-end.md b/content/theme/jekyll-cool-concise-high-end.md index 87ceb8734..deff02470 100644 --- a/content/theme/jekyll-cool-concise-high-end.md +++ b/content/theme/jekyll-cool-concise-high-end.md @@ -1,14 +1,13 @@ --- title: Cool Concise High-end -github: 'https://github.com/Gaohaoyang/gaohaoyang.github.io' -demo: 'https://gaohaoyang.github.io/' +github: https://github.com/Gaohaoyang/gaohaoyang.github.io +demo: https://gaohaoyang.github.io/ author: Gaohaoyang ssg: - Jekyll cms: - No Cms date: 2015-02-10T06:24:40.000Z -github_branch: master -description: "blog & blog theme\U0001F918" +description: blog & blog theme🤘 stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-creative-theme-new.md b/content/theme/jekyll-creative-theme-new.md index bf47fbc60..c6dcecb69 100644 --- a/content/theme/jekyll-creative-theme-new.md +++ b/content/theme/jekyll-creative-theme-new.md @@ -1,8 +1,8 @@ --- title: Creative Theme - New -github: 'https://github.com/vvalchev/creative-theme-jekyll-new' -demo: 'https://vvalchev.github.io/creative-theme-jekyll-new/' -author: 'Start Bootstrap, Valentin Valchev' +github: https://github.com/vvalchev/creative-theme-jekyll-new +demo: https://vvalchev.github.io/creative-theme-jekyll-new/ +author: Start Bootstrap, Valentin Valchev date: 2020-03-03T00:00:00.000Z ssg: - Jekyll @@ -14,8 +14,7 @@ archetype: - Blog - Portfolio description: A Jekyll theme based on Creative Theme v5.1.8 and Bootstrap v4.3.1 -github_branch: master -stale: false +stale: true --- # Description diff --git a/content/theme/jekyll-creative-theme.md b/content/theme/jekyll-creative-theme.md index 0ea04f50f..e130340f0 100644 --- a/content/theme/jekyll-creative-theme.md +++ b/content/theme/jekyll-creative-theme.md @@ -1,13 +1,12 @@ --- title: creative theme -github: 'https://github.com/volny/creative-theme-jekyll' -demo: 'https://volny.github.io/creative-theme-jekyll' -author: 'start bootstrap, felix volny' +github: https://github.com/volny/creative-theme-jekyll +demo: https://volny.github.io/creative-theme-jekyll +author: start bootstrap, felix volny ssg: - Jekyll cms: - No Cms date: 2015-09-13T04:48:49.000Z -github_branch: master stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-cv.md b/content/theme/jekyll-cv.md new file mode 100644 index 000000000..328f502a9 --- /dev/null +++ b/content/theme/jekyll-cv.md @@ -0,0 +1,13 @@ +--- +title: Jekyll CV +github: https://github.com/Stavrospanakakis/jekyll-cv +demo: https://jekyll-cv.stavrospanakakis.com +author: Stavrospanakakis +date: 2021-07-29T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +description: Lightweight jekyll theme for your CV with dark mode support +stale: true +--- diff --git a/content/theme/jekyll-cvless.md b/content/theme/jekyll-cvless.md new file mode 100644 index 000000000..bf17550d1 --- /dev/null +++ b/content/theme/jekyll-cvless.md @@ -0,0 +1,28 @@ +--- +title: "Cvless" +github: https://github.com/piazzai/cvless +demo: https://piazzai.github.io/cvless/ +author: Michele Piazzai +date: 2023-05-20 +ssg: + - Jekyll +cms: + - No CMS +css: + - Bootstrap + - SCSS +archetype: + - Blog + - Personal +description: Jekyll theme for a beautiful online CV +--- + +# cvless + +Cvless is a theme for static websites built with Jekyll. It aims for simplicity and readability by following best practices of graphic design, like the use of [high contrast](https://www.contrastrebellion.com), [law of proximity](https://lawsofux.com/law-of-proximity), and responsive layout. Its typography is based on the [Piazzolla system](https://piazzolla.huertatipografica.com/), which performs extremely well over a wide range of font sizes. + +The main aesthetic feature of the theme is the use of [particles.js](https://vincentgarreau.com/particles.js/) in the home and the 404 pages. In addition, the theme includes a well-designed CV page. Printing this from browser automatically adapts the layout for a more traditional appearance, so you no longer have to maintain a separate CV for offline distribution. Finally, the theme offers a simple and easily extensible blog. + +Light and dark modes are available. The theme initializes based on system preferences and stores the user's preference for the duration of the session. + +See the [demo](https://cvless.netlify.app) to get a better sense of what the theme looks like. diff --git a/content/theme/jekyll-dactl-theme.md b/content/theme/jekyll-dactl-theme.md index 33b3db6f3..817bfeedf 100644 --- a/content/theme/jekyll-dactl-theme.md +++ b/content/theme/jekyll-dactl-theme.md @@ -1,14 +1,13 @@ --- title: dactl -github: 'https://github.com/melangue/dactl' -demo: 'https://melangue.github.io/dactl/' +github: https://github.com/melangue/dactl +demo: https://melangue.github.io/dactl/ author: Marcin C ssg: - Jekyll cms: - No Cms date: 2017-04-30T17:52:23.000Z -github_branch: master -description: 'Modern, fast and configurable Jekyll theme with some tricks up it''s sleeve.' +description: Modern, fast and configurable Jekyll theme with some tricks up it's sleeve. stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-daktilo.md b/content/theme/jekyll-daktilo.md index d75d5fc4c..78237db2e 100644 --- a/content/theme/jekyll-daktilo.md +++ b/content/theme/jekyll-daktilo.md @@ -1,14 +1,13 @@ --- title: Daktilo -github: 'https://github.com/kronik3r/daktilo' -demo: 'https://daktilo.github.io/' +github: https://github.com/kronik3r/daktilo +demo: https://daktilo.github.io/ author: Motaquillah Maddane ssg: - Jekyll cms: - No Cms date: 2015-09-08T04:32:39.000Z -github_branch: master description: A Jekyll theme with a minimal design inspired by typewriters. stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-darcli.md b/content/theme/jekyll-darcli.md index 9abbad1cb..d2fc4327f 100644 --- a/content/theme/jekyll-darcli.md +++ b/content/theme/jekyll-darcli.md @@ -1,16 +1,15 @@ --- title: Darcli -github: 'https://github.com/gjuniioor/darcli' -demo: 'https://gjuniioor.github.io/darcli/' +github: https://github.com/gjuniioor/darcli +demo: https://gjuniioor.github.io/darcli/ author: Gildásio Júnior aka gjuniioor ssg: - Jekyll cms: - No Cms date: 2016-05-02T19:32:17.000Z -github_branch: gh-pages description: A dark + cli jekyll theme stale: true -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-dasper.md b/content/theme/jekyll-dasper.md index f841b92d8..dee4247ad 100644 --- a/content/theme/jekyll-dasper.md +++ b/content/theme/jekyll-dasper.md @@ -1,14 +1,13 @@ --- title: Dasper -github: 'https://github.com/ozgrozer/dasper' -demo: 'https://ozgrozer.github.io/dasper/' +github: https://github.com/ozgrozer/dasper +demo: https://ozgrozer.github.io/dasper/ author: ozgrozer ssg: - Jekyll cms: - No Cms date: 2016-05-15T14:47:40.000Z -github_branch: master description: A Jekyll theme stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-dbyll.md b/content/theme/jekyll-dbyll.md index f9f9333f6..7267c935a 100644 --- a/content/theme/jekyll-dbyll.md +++ b/content/theme/jekyll-dbyll.md @@ -1,14 +1,13 @@ --- title: Dbyll -github: 'https://github.com/dbtek/dbyll' -demo: 'https://dbtek.github.io/dbyll/' +github: https://github.com/dbtek/dbyll +demo: https://dbtek.github.io/dbyll/ author: Ismail Demirbilek ssg: - Jekyll cms: - No Cms date: 2013-11-14T15:01:59.000Z -github_branch: master -description: 'Stylish, minimalistic theme for jekyll.' +description: Stylish, minimalistic theme for jekyll. stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-dekyll.md b/content/theme/jekyll-dekyll.md index 5e2676666..8168d191d 100644 --- a/content/theme/jekyll-dekyll.md +++ b/content/theme/jekyll-dekyll.md @@ -1,14 +1,13 @@ --- title: Dekyll -github: 'https://github.com/kuntoaji/dekyll' -demo: 'https://www.kaklabs.com' +github: https://github.com/kuntoaji/dekyll +demo: https://www.kaklabs.com author: Kunto Aji Kristianto ssg: - Jekyll cms: - No Cms date: 2016-02-21T14:29:19.000Z -github_branch: master description: Jekyll's Minima theme extended version stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-devaid.md b/content/theme/jekyll-devaid.md index 046b458a2..eb9979011 100644 --- a/content/theme/jekyll-devaid.md +++ b/content/theme/jekyll-devaid.md @@ -1,14 +1,13 @@ --- title: devAid -github: 'https://github.com/kevit/devaid-jekyll-theme' -demo: 'https://themes.3rdwavemedia.com/demo/devaid/' +github: https://github.com/kevit/devaid-jekyll-theme +demo: https://themes.3rdwavemedia.com/demo/devaid/ author: Xiaoying Riley ssg: - Jekyll cms: - No Cms date: 2015-04-16T15:01:33.000Z -github_branch: master description: DevAid theme for Jekyll stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-devjournal.md b/content/theme/jekyll-devjournal.md index 83cadc5b2..d1112b07e 100644 --- a/content/theme/jekyll-devjournal.md +++ b/content/theme/jekyll-devjournal.md @@ -1,14 +1,13 @@ --- title: DevJournal -github: 'https://github.com/hemangsk/DevJournal' -demo: 'https://hemangsk.github.io/DevJournal' +github: https://github.com/hemangsk/DevJournal +demo: https://hemangsk.github.io/DevJournal author: Hemang Kumar ssg: - Jekyll cms: - No Cms date: 2016-05-13T08:22:12.000Z -github_branch: master description: 'Jekyll theme for developers! :computer:' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-doc-theme.md b/content/theme/jekyll-doc-theme.md index ce219108d..9a1ef85f1 100644 --- a/content/theme/jekyll-doc-theme.md +++ b/content/theme/jekyll-doc-theme.md @@ -1,14 +1,13 @@ --- title: Jekyll Doc Theme -github: 'https://github.com/aksakalli/jekyll-doc-theme' -demo: 'https://aksakalli.github.io/jekyll-doc-theme' +github: https://github.com/aksakalli/jekyll-doc-theme +demo: https://aksakalli.github.io/jekyll-doc-theme author: Can Güney Aksakalli ssg: - Jekyll cms: - No Cms date: 2017-05-03T17:48:59.000Z -github_branch: gh-pages description: Jekyll theme for creating project documentation websites stale: false --- diff --git a/content/theme/jekyll-documentation-theme-.md b/content/theme/jekyll-documentation-theme-.md index 91ed4d06b..dd4feb81f 100644 --- a/content/theme/jekyll-documentation-theme-.md +++ b/content/theme/jekyll-documentation-theme-.md @@ -1,16 +1,15 @@ --- title: Documentation Theme for Jekyll -github: 'https://github.com/tomjohnson1492/documentation-theme-jekyll' -demo: 'https://idratherbewriting.com/documentation-theme-jekyll/' +github: https://github.com/tomjohnson1492/documentation-theme-jekyll +demo: https://idratherbewriting.com/documentation-theme-jekyll/ author: tomjohnson1492 ssg: - Jekyll cms: - No Cms date: 2015-02-13T22:56:26.000Z -github_branch: gh-pages description: >- A Jekyll-based theme designed for documentation and help systems. See the link for detailed instructions on setting up and configuring everything. -stale: true +stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-dopetrope.md b/content/theme/jekyll-dopetrope.md index ebee0f25a..e2988a3e5 100644 --- a/content/theme/jekyll-dopetrope.md +++ b/content/theme/jekyll-dopetrope.md @@ -1,14 +1,15 @@ --- title: Dopetrope -github: 'https://github.com/CloudCannon/DopeTrope-Jekyll-Theme' -demo: 'https://html5up.net/dopetrope' -author: 'HTML5 UP (html5up.net), @n33co' +github: https://github.com/CloudCannon/DopeTrope-Jekyll-Theme +demo: https://html5up.net/dopetrope +author: HTML5 UP (html5up.net), @n33co ssg: - Jekyll cms: - No Cms date: 2015-01-07T23:00:38.000Z -github_branch: master description: DopeTrope Jekyll Theme stale: true +disabled: true +disabled_reason: error checking demo url --- \ No newline at end of file diff --git a/content/theme/jekyll-dotx.md b/content/theme/jekyll-dotx.md index 048768f34..7b8f6b515 100644 --- a/content/theme/jekyll-dotx.md +++ b/content/theme/jekyll-dotx.md @@ -1,14 +1,13 @@ --- title: dotX -github: 'https://github.com/nandomoreirame/dotX' -demo: 'https://nandomoreirame.github.io/dotX/' +github: https://github.com/nandomoreirame/dotX +demo: https://nandomoreirame.github.io/dotX/ author: nandomoreira.me ssg: - Jekyll cms: - No Cms date: 2015-12-20T16:11:01.000Z -github_branch: master -description: "\U0001F48E Simple & Beautiful Jekyll theme" +description: 💎 Simple & Beautiful Jekyll theme stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-drjekyll-bootstrap.md b/content/theme/jekyll-drjekyll-bootstrap.md index 7891d0863..dc8e6982e 100644 --- a/content/theme/jekyll-drjekyll-bootstrap.md +++ b/content/theme/jekyll-drjekyll-bootstrap.md @@ -1,14 +1,13 @@ --- title: Dr Jekyll's Bootstrap -github: 'https://github.com/henrythemes/jekyll-bootstrap-theme' -demo: 'https://henrythemes.github.io/jekyll-bootstrap-theme/' +github: https://github.com/henrythemes/jekyll-bootstrap-theme +demo: https://henrythemes.github.io/jekyll-bootstrap-theme/ author: Gerald Bauer ssg: - Jekyll cms: - No Cms date: 2015-01-30T17:48:11.000Z -github_branch: master description: jekyll starter theme w/ bootstrap (sass version) -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-drjekyll-classics-book.md b/content/theme/jekyll-drjekyll-classics-book.md index 07b7d13ee..eec8ac4d9 100644 --- a/content/theme/jekyll-drjekyll-classics-book.md +++ b/content/theme/jekyll-drjekyll-classics-book.md @@ -1,14 +1,13 @@ --- title: Dr Jekyll's Classics Book -github: 'https://github.com/henrythemes/jekyll-book-theme' -demo: 'https://henrythemes.github.io/jekyll-book-theme/' +github: https://github.com/henrythemes/jekyll-book-theme +demo: https://henrythemes.github.io/jekyll-book-theme/ author: Gerald Bauer ssg: - Jekyll cms: - No Cms date: 2015-07-16T17:50:43.000Z -github_branch: master description: >- jekyll starter theme for classic books (ex. Strange Case of Dr. Jekyll and Mr. Hyde by Robert Louis Stevenson) diff --git a/content/theme/jekyll-drjekyll-minimal.md b/content/theme/jekyll-drjekyll-minimal.md index e7cedd3cb..dbe0c65a5 100644 --- a/content/theme/jekyll-drjekyll-minimal.md +++ b/content/theme/jekyll-drjekyll-minimal.md @@ -1,14 +1,13 @@ --- title: Dr Jekyll's Minimal -github: 'https://github.com/henrythemes/jekyll-minimal-theme' -demo: 'https://henrythemes.github.io/jekyll-minimal-theme/' +github: https://github.com/henrythemes/jekyll-minimal-theme +demo: https://henrythemes.github.io/jekyll-minimal-theme/ author: Gerald Bauer ssg: - Jekyll cms: - No Cms date: 2015-02-01T09:36:30.000Z -github_branch: master description: jekyll minimal theme (for blog posts with archive and feed) stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-dumbarton.md b/content/theme/jekyll-dumbarton.md index c1edea5ad..e963402e5 100644 --- a/content/theme/jekyll-dumbarton.md +++ b/content/theme/jekyll-dumbarton.md @@ -1,7 +1,7 @@ --- title: Dumbarton -github: 'https://github.com/tcbutler320/Jekyll-Theme-Dumbarton' -demo: 'https://dumbarton.netlify.app/index.html' +github: https://github.com/tcbutler320/Jekyll-Theme-Dumbarton +demo: https://dumbarton.netlify.app/index.html author: Tyler Butler ssg: - Jekyll @@ -13,9 +13,8 @@ archetype: - Blog - Portfolio date: 2020-10-30T00:00:00.000Z -github_branch: master -description: 'A Jekyll theme designed for academics, powered by Bootstrap' -stale: false +description: A Jekyll theme designed for academics, powered by Bootstrap +stale: true --- # About diff --git a/content/theme/jekyll-easy-pure-blog.md b/content/theme/jekyll-easy-pure-blog.md index 6ad28d569..85c126820 100644 --- a/content/theme/jekyll-easy-pure-blog.md +++ b/content/theme/jekyll-easy-pure-blog.md @@ -1,14 +1,13 @@ --- title: 简单博客 -github: 'https://github.com/liungkejin/liungkejin.github.io' -demo: 'https://liungkejin.github.io/' +github: https://github.com/liungkejin/liungkejin.github.io +demo: https://liungkejin.github.io/ author: Kejin ssg: - Jekyll cms: - No Cms date: 2016-01-29T18:18:02.000Z -github_branch: master description: 我的个人博客 stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-easybook.md b/content/theme/jekyll-easybook.md index b054e1ff4..1d424d2cf 100644 --- a/content/theme/jekyll-easybook.md +++ b/content/theme/jekyll-easybook.md @@ -1,14 +1,15 @@ --- title: EasyBook -github: 'https://github.com/laobubu/jekyll-theme-EasyBook' -demo: 'https://blog.laobubu.net/' +github: https://github.com/laobubu/jekyll-theme-EasyBook +demo: https://blog.laobubu.net/ author: laobubu ssg: - Jekyll cms: - No Cms date: 2015-01-15T06:14:44.000Z -github_branch: gh-pages description: Another Jekyll Blog Theme 'EasyBook' stale: true +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-ed.md b/content/theme/jekyll-ed.md index 72957a5dc..f7e6fafad 100644 --- a/content/theme/jekyll-ed.md +++ b/content/theme/jekyll-ed.md @@ -1,14 +1,15 @@ --- title: Ed -github: 'https://github.com/elotroalex/ed' -demo: 'https://elotroalex.github.io/ed/' +github: https://github.com/elotroalex/ed +demo: https://elotroalex.github.io/ed/ author: Alex Gil ssg: - Jekyll cms: - No Cms date: 2016-01-18T02:09:56.000Z -github_branch: gh-pages description: A jekyll theme for minimal editions stale: true +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-edition.md b/content/theme/jekyll-edition.md index af17bbb7b..b1ed30e6b 100644 --- a/content/theme/jekyll-edition.md +++ b/content/theme/jekyll-edition.md @@ -1,14 +1,13 @@ --- title: Edition -github: 'https://github.com/CloudCannon/edition-jekyll-template' -demo: 'https://long-pig.cloudvent.net/' +github: https://github.com/CloudCannon/edition-jekyll-template +demo: https://long-pig.cloudvent.net/ author: CloudCannon ssg: - Jekyll cms: - No Cms date: 2016-07-14T03:38:28.000Z -github_branch: master description: ':books: Product documentation template for Jekyll' -stale: true +stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-emerald.md b/content/theme/jekyll-emerald.md index 221018699..56b94d727 100644 --- a/content/theme/jekyll-emerald.md +++ b/content/theme/jekyll-emerald.md @@ -1,16 +1,15 @@ --- title: Emerald -github: 'https://github.com/KingFelix/emerald' -demo: 'https://www.jacoporabolini.com/emerald/' +github: https://github.com/KingFelix/emerald +demo: https://www.jacoporabolini.com/emerald/ author: Jacopo Rabolini ssg: - Jekyll cms: - No Cms date: 2015-03-17T10:26:55.000Z -github_branch: master description: A minimal and mobile-first blog theme for Jekyll stale: true -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-emping.md b/content/theme/jekyll-emping.md index 1425b1cd9..64ba56bd7 100644 --- a/content/theme/jekyll-emping.md +++ b/content/theme/jekyll-emping.md @@ -1,14 +1,13 @@ --- title: Emping Theme -github: 'https://github.com/rmsubekti/emping' -demo: 'https://rmsubekti.github.io/emping/' +github: https://github.com/rmsubekti/emping +demo: https://rmsubekti.github.io/emping/ author: rmsubekti ssg: - Jekyll cms: - No Cms date: 2016-10-21T16:56:20.000Z -github_branch: master description: Jekyll theme using Amp -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-enjoyment-work.md b/content/theme/jekyll-enjoyment-work.md new file mode 100644 index 000000000..51d197f1c --- /dev/null +++ b/content/theme/jekyll-enjoyment-work.md @@ -0,0 +1,47 @@ +--- +title: Enjoyment Work +github: https://github.com/brennanbrown/enjoyment-work +demo: https://enjoyment-work.netlify.app +author: brennanbrown +date: 2021-05-04T00:00:00.000Z +ssg: + - Jekyll +css: + - Bootstrap +cms: + - No CMS +archetype: + - Blog +description: >- + A Digital Garden: Capturing my daily thoughts and progress, as well as curated + ideas with unique synthesis—a personal zettelkasten. Built on Simply Jekyll by + Raghuveer S. +stale: false +--- + +## Enjoyment Work theme for Jekyll + +**Enjoyment Work** is an academic / research-focused theme that provides extensive features for note-taking and personal growth. It is based off of the [Digital Garden](https://github.com/MaggieAppleton/digital-gardeners) philosophy, which you can read more about on the [**demo site**](https://enjoyment-work.netlify.app) + +The next step for Enjoyment Work is to properly configure the syntax required to work with [**Obsidian**](https://obsidian.md/), a powerful knowledge base that works on top of a local folder of plain text Markdown files. Which would ultimately allow somebody to turn their Obsidian notes into an online blog by simply using the `_notes` directory. + +## Features +Here are a few interesting features of this Jekyll theme: + +- A fully customizable and empty `_BLANK_config.yml` to make getting up-and-running easy. +- A speedy, on-site search function using [Simply Jekyll Search](https://github.com/christian-fei/Simple-Jekyll-Search). +- Custom collections for different types of material (note-taking, journal writing, etc.) +- An auto-generating `/archive` page that displays all entries from _all_ collections. +- Auto-generating `/tags` and `/categories` pages. +- Breadcrumbs for improved navigation and SEO. +- Having a `_pages` collection for easier organization. +- An author bio at the end of each post. (Located in `_inclues/author.html`) +- Full Rouge support for [syntax highlighting](https://spsarolkar.github.io/rouge-theme-preview/). (Currently using `base16.dark`) +- Auto-generated RSS feed, sitemap, accessibility features, and search-engine optimization. +- Creates backlinks to other notes automatically +- Context menu on feed to instantly see related posts and backlinks +- Supports Roam-style double bracket link syntax to other notes +- On hover page previews +- Features a simple and responsive design +- Supports Markdown or HTML notes + diff --git a/content/theme/jekyll-event-theme.md b/content/theme/jekyll-event-theme.md index 7bda056db..11846c253 100644 --- a/content/theme/jekyll-event-theme.md +++ b/content/theme/jekyll-event-theme.md @@ -1,14 +1,13 @@ --- title: Event -github: 'https://github.com/melvinchng/event-jekyll-theme' -demo: 'https://event-jekyll-theme.github.io/' +github: https://github.com/melvinchng/event-jekyll-theme +demo: https://event-jekyll-theme.github.io/ author: Melvin Ch'ng ssg: - Jekyll cms: - No Cms date: 2017-08-09T05:56:36.000Z -github_branch: master description: Jekyll Theme package for your event stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-evento.md b/content/theme/jekyll-evento.md index 39b152099..6fe1f1c50 100644 --- a/content/theme/jekyll-evento.md +++ b/content/theme/jekyll-evento.md @@ -1,19 +1,18 @@ --- title: Evento -github: 'https://github.com/boyney123/evento' -demo: 'https://evento.davidboyne.co.uk/' +github: https://github.com/boyney123/evento +demo: https://evento.davidboyne.co.uk/ author: David Boyne ssg: - Jekyll cms: - No Cms date: 2016-01-30T15:51:32.000Z -github_branch: master description: >- A free to use open source Jekyll project. Allows people to create internal/external events, showing times and information for anybody that wants to attend. stale: true +disabled_reason: demo url not found disabled: true -disabled_reason: "Demo url not working" --- diff --git a/content/theme/jekyll-exemplar.md b/content/theme/jekyll-exemplar.md index 81e7e7e47..930da911a 100644 --- a/content/theme/jekyll-exemplar.md +++ b/content/theme/jekyll-exemplar.md @@ -1,14 +1,13 @@ --- title: Exemplar -github: 'https://github.com/tybenz/exemplar' -demo: 'https://tybenz.github.io/exemplar/' +github: https://github.com/tybenz/exemplar +demo: https://tybenz.github.io/exemplar/ author: Tyler Benziger ssg: - Jekyll cms: - No Cms date: 2013-02-20T21:38:22.000Z -github_branch: master description: Jekyll site template stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-ezora.md b/content/theme/jekyll-ezora.md index 0ff817f8d..154141078 100644 --- a/content/theme/jekyll-ezora.md +++ b/content/theme/jekyll-ezora.md @@ -1,16 +1,15 @@ --- title: Ezora -github: 'https://github.com/ezrasavard/ezora-jekyll-theme' -demo: 'https://ezrasavard.com/' +github: https://github.com/ezrasavard/ezora-jekyll-theme +demo: https://ezrasavard.com/ author: Ezra Savard ssg: - Jekyll cms: - No Cms date: 2016-09-24T20:50:53.000Z -github_branch: master description: >- Ezora is a responsive Jekyll theme with a clean single column layout, nifty text overlays for images and a mobile friendly navigation bar. -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-feature-blog.md b/content/theme/jekyll-feature-blog.md index a1e7b94be..74b483dff 100644 --- a/content/theme/jekyll-feature-blog.md +++ b/content/theme/jekyll-feature-blog.md @@ -1,14 +1,13 @@ --- title: Feature Blog -github: 'https://github.com/lavkumarv/feature-blog-jekyll' -demo: 'https://lavkumarv.github.io/' +github: https://github.com/lavkumarv/feature-blog-jekyll +demo: https://lavkumarv.github.io/ author: Lav Kumar Vishwakarma ssg: - Jekyll cms: - No Cms date: 2017-01-05T19:19:50.000Z -github_branch: master description: 'Feature Blog is a minimalist, beautiful, responsive theme for Jekyll. Demo: ' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-flex.md b/content/theme/jekyll-flex.md index 401740959..185173e8d 100644 --- a/content/theme/jekyll-flex.md +++ b/content/theme/jekyll-flex.md @@ -1,14 +1,13 @@ --- title: Flex -github: 'https://github.com/the-development/flex' -demo: 'https://the-development.github.io/flex/' +github: https://github.com/the-development/flex +demo: https://the-development.github.io/flex/ author: Jeff Martin ssg: - Jekyll cms: - No Cms date: 2013-12-09T19:01:22.000Z -github_branch: master -description: 'A responsive, flexible, Jekyll theme based on The Development''s first design.' +description: A responsive, flexible, Jekyll theme based on The Development's first design. stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-fresh-theme.md b/content/theme/jekyll-fresh-theme.md index e112f6289..cc9f1654b 100644 --- a/content/theme/jekyll-fresh-theme.md +++ b/content/theme/jekyll-fresh-theme.md @@ -1,14 +1,15 @@ --- title: Fresh -github: 'https://github.com/artemsheludko/fresh' -demo: 'https://artemsheludko.com/fresh/' +github: https://github.com/artemsheludko/fresh +demo: https://artemsheludko.com/fresh/ author: Artem Sheludko ssg: - Jekyll cms: - No Cms date: 2017-04-03T13:25:22.000Z -github_branch: master description: Fresh is a free blog template for Jekyll stale: true +disabled: true +disabled_reason: error checking demo url --- \ No newline at end of file diff --git a/content/theme/jekyll-freshman21.md b/content/theme/jekyll-freshman21.md index 5928d1fe4..d6acb7c20 100644 --- a/content/theme/jekyll-freshman21.md +++ b/content/theme/jekyll-freshman21.md @@ -1,14 +1,13 @@ --- title: Freshman21 -github: 'https://github.com/yulijia/freshman21' -demo: 'https://yulijia.net/freshman21/' +github: https://github.com/yulijia/freshman21 +demo: https://yulijia.net/freshman21/ author: Lijia Yu ssg: - Jekyll cms: - No Cms date: 2014-12-13T08:04:22.000Z -github_branch: master description: 'Welcome to use Jekyll theme Freshman21. ' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-friday-theme.md b/content/theme/jekyll-friday-theme.md index c67a785e5..9aa96e9e9 100644 --- a/content/theme/jekyll-friday-theme.md +++ b/content/theme/jekyll-friday-theme.md @@ -1,11 +1,10 @@ --- title: Friday Theme -github: 'https://github.com/sfreytag/friday-theme' +github: https://github.com/sfreytag/friday-theme demo: >- https://sfreytag.github.io/friday-theme/2017/10/19/friday-theme-multiple-images.html author: Simon Freytag date: 2020-03-02T00:00:00.000Z -github_branch: master ssg: - Jekyll cms: @@ -17,7 +16,7 @@ archetype: - Portfolio - Documentation description: A Bootstrap 4 portfolio and blog theme for Jekyll. -stale: false +stale: true --- # About diff --git a/content/theme/jekyll-frisco.md b/content/theme/jekyll-frisco.md index 68547a66f..32fa55e83 100644 --- a/content/theme/jekyll-frisco.md +++ b/content/theme/jekyll-frisco.md @@ -1,14 +1,13 @@ --- title: Frisco -github: 'https://github.com/CloudCannon/frisco-jekyll-template' -demo: 'https://brave-submarine.cloudvent.net/' +github: https://github.com/CloudCannon/frisco-jekyll-template +demo: https://brave-submarine.cloudvent.net/ author: CloudCannon ssg: - Jekyll cms: - No Cms date: 2016-11-01T04:12:15.000Z -github_branch: master description: ':iphone: App marketing template for Jekyll' -stale: true +stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-front-cover.md b/content/theme/jekyll-front-cover.md index b765dd88e..8785cdf83 100644 --- a/content/theme/jekyll-front-cover.md +++ b/content/theme/jekyll-front-cover.md @@ -1,14 +1,13 @@ --- title: front-cover -github: 'https://github.com/dashingcode/front-cover' -demo: 'https://dashingcode.github.io/front-cover/' +github: https://github.com/dashingcode/front-cover +demo: https://dashingcode.github.io/front-cover/ author: DashingCode ssg: - Jekyll cms: - No Cms date: 2016-02-21T11:07:54.000Z -github_branch: master description: Front Cover jekyll theme stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-fullit-theme.md b/content/theme/jekyll-fullit-theme.md index a25eb5f74..bc5ff6967 100644 --- a/content/theme/jekyll-fullit-theme.md +++ b/content/theme/jekyll-fullit-theme.md @@ -1,13 +1,12 @@ --- title: FullIt theme -github: 'https://github.com/fullit/fullit.github.io' -demo: 'https://fullit.github.io' +github: https://github.com/fullit/fullit.github.io +demo: https://fullit.github.io author: Antonio Trento ssg: - Jekyll cms: - No Cms date: 2017-03-23T11:59:12.000Z -github_branch: master -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-galileo.md b/content/theme/jekyll-galileo.md index 0516a704d..c0933f6e5 100644 --- a/content/theme/jekyll-galileo.md +++ b/content/theme/jekyll-galileo.md @@ -1,16 +1,15 @@ --- title: Galileo -github: 'https://github.com/rowanoulton/galileo-theme' -demo: 'https://travelog.io' +github: https://github.com/rowanoulton/galileo-theme +demo: https://travelog.io author: rowanoulton ssg: - Jekyll cms: - No Cms date: 2015-11-15T11:56:59.000Z -github_branch: master description: Another damn theme for Jekyll -stale: false -disabled: true +stale: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-garden.md b/content/theme/jekyll-garden.md new file mode 100644 index 000000000..1cc357d06 --- /dev/null +++ b/content/theme/jekyll-garden.md @@ -0,0 +1,29 @@ +--- +title: Jekyll Garden +github: https://github.com/Jekyll-Garden/jekyll-garden.github.io +demo: https://jekyll-garden.github.io/ +author: Hiran Venugopalan +date: 2021-08-28T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +description: >- + A Digital Garden Theme for Jekyll. Jekyll Garden lets you create a static HTML + version of your markdown notes and publish via Github pages. Made for Obsidian + users! +stale: false +--- + +# Jekyll Digital Garden + +A Digital Garden Theme for Jekyll. Jekyll Garden lets you create a static HTML version of your markdown notes and publish via Github pages. Made for Obsidian users! + +## Features +* Build for Obsidian Users +* Feed design, with an option to hide notes from feed. +* Option to set static page / feed as home page. +* Dark / Light / System Theme Support +* Mobile Friendly +* Easy Setup +* Good Search Mechanisms diff --git a/content/theme/jekyll-gatok.md b/content/theme/jekyll-gatok.md index 0d2a2a1e5..64802e990 100644 --- a/content/theme/jekyll-gatok.md +++ b/content/theme/jekyll-gatok.md @@ -1,14 +1,15 @@ --- title: Webjeda Gatok -github: 'https://github.com/sharu725/gatok' -demo: 'https://webjeda.com/gatok' +github: https://github.com/sharu725/gatok +demo: https://webjeda.com/gatok author: webjeda ssg: - Jekyll cms: - No Cms date: 2016-07-15T17:24:18.000Z -github_branch: master description: A minimal responsive jekyll theme -Webjeda Gatok -stale: true +stale: false +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-git-wiki-for-documentation-theme.md b/content/theme/jekyll-git-wiki-for-documentation-theme.md index f2febb693..747551ef0 100644 --- a/content/theme/jekyll-git-wiki-for-documentation-theme.md +++ b/content/theme/jekyll-git-wiki-for-documentation-theme.md @@ -1,14 +1,15 @@ --- -title: "Git-Wiki" +title: Git-Wiki github: https://github.com/drassil/git-wiki demo: https://drassil.github.io/git-wiki author: Drassil Laboratory - ssg: - Jekyll cms: - No Cms -date: 2017-04-13T18:08:39Z -github_branch: master -description: "A revolutionary full-featured wiki for github pages and jekyll. You don't need to compile it!" +date: 2017-04-13T18:08:39.000Z +description: >- + A revolutionary full-featured wiki for github pages and jekyll. You don't need + to compile it! +stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-glas.md b/content/theme/jekyll-glas.md index 59fb2edae..86694468a 100644 --- a/content/theme/jekyll-glas.md +++ b/content/theme/jekyll-glas.md @@ -1,14 +1,15 @@ --- title: Glas -github: 'https://github.com/SpaceG/glas' -demo: 'https://lucasgatsas.ch' +github: https://github.com/SpaceG/glas +demo: https://lucasgatsas.ch author: Lucas Gatsas ssg: - Jekyll cms: - No Cms date: 2015-03-01T23:39:41.000Z -github_branch: master description: ':mortar_board: Glas - Ruby on Rails - Jekyll ' stale: true +disabled: true +disabled_reason: error checking demo url --- \ No newline at end of file diff --git a/content/theme/jekyll-good-clean-read.md b/content/theme/jekyll-good-clean-read.md index 889484a8a..bba7d7e09 100644 --- a/content/theme/jekyll-good-clean-read.md +++ b/content/theme/jekyll-good-clean-read.md @@ -1,16 +1,15 @@ --- title: Good Clean Read -github: 'https://github.com/adueck/good-clean-read' -demo: 'https://adueck.github.io/good-clean-read/' +github: https://github.com/adueck/good-clean-read +demo: https://adueck.github.io/good-clean-read/ author: Adam Dueck ssg: - Jekyll cms: - No Cms date: 2016-01-16T17:35:55.000Z -github_branch: master description: >- A Jekyll template for publishing clean, readable articles and single-page sites -stale: true +stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-gravity.md b/content/theme/jekyll-gravity.md index 07806ffcd..310f6bf67 100644 --- a/content/theme/jekyll-gravity.md +++ b/content/theme/jekyll-gravity.md @@ -1,14 +1,13 @@ --- title: Gravity -github: 'https://github.com/hemangsk/Gravity' -demo: 'https://hemangsk.github.io/Gravity' +github: https://github.com/hemangsk/Gravity +demo: https://hemangsk.github.io/Gravity author: Hemang Kumar (@hemangsk) ssg: - Jekyll cms: - No Cms date: 2016-03-30T20:26:09.000Z -github_branch: master description: 'Minimal is the new cool. ' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-gridgallery.md b/content/theme/jekyll-gridgallery.md index af72a3b23..a0ee15e7d 100644 --- a/content/theme/jekyll-gridgallery.md +++ b/content/theme/jekyll-gridgallery.md @@ -1,18 +1,17 @@ --- title: GridGallery -github: 'https://github.com/nadjetey/GridGallery' -demo: 'https://nadjetey.github.io/GridGallery' +github: https://github.com/nadjetey/GridGallery +demo: https://nadjetey.github.io/GridGallery author: Nii Adjetey Sowah ssg: - Jekyll cms: - No Cms date: 2014-04-07T01:26:30.000Z -github_branch: master description: >- A responsive grid gallery based on the [Google Chromebook getting started](https://gweb-gettingstartedguide.appspot.com/) guide gallery. stale: true -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-gridster.md b/content/theme/jekyll-gridster.md index 98fdf3c2f..dd11ee6eb 100644 --- a/content/theme/jekyll-gridster.md +++ b/content/theme/jekyll-gridster.md @@ -1,16 +1,15 @@ --- title: Gridster -github: 'https://github.com/DigitalMindCH/gridster-jekyll-theme' -demo: 'https://digitalmind.ch/themes/gridster-jekyll-theme/demo/' +github: https://github.com/DigitalMindCH/gridster-jekyll-theme +demo: https://digitalmind.ch/themes/gridster-jekyll-theme/demo/ author: Digitalmind ssg: - Jekyll cms: - No Cms date: 2015-09-16T16:20:07.000Z -github_branch: master description: a jekyll theme in material design stale: true +disabled_reason: error checking demo url disabled: true -disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-guovz-pithy.md b/content/theme/jekyll-guovz-pithy.md index af1a093a1..a33582e74 100644 --- a/content/theme/jekyll-guovz-pithy.md +++ b/content/theme/jekyll-guovz-pithy.md @@ -1,14 +1,15 @@ --- title: Guovz Pithy -github: 'https://github.com/guovz/pithy' -demo: 'https://www.guovz.com' +github: https://github.com/guovz/pithy +demo: https://www.guovz.com author: Jaylin Wang ssg: - Jekyll cms: - No Cms date: 2015-08-30T09:57:59.000Z -github_branch: master description: a jekyll theme stale: true +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-h2o-ac.md b/content/theme/jekyll-h2o-ac.md new file mode 100644 index 000000000..8ecf63a03 --- /dev/null +++ b/content/theme/jekyll-h2o-ac.md @@ -0,0 +1,33 @@ +--- +title: H2O-ac +github: https://github.com/zhonger/jekyll-theme-H2O-ac +demo: https://h2o-ac.pages.dev +author: zhonger +date: 2021-12-24T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +css: + - scss +archetype: + - Blog + - Personal +description: A jekyll theme for academic researchers and system maintainers! +stale: false +--- + +H2o-ac is designed for academic researchers and system maintainers to show the academic informations or project informations firstly. It also supports many useful features for authors and readers. + +Easy and happy to use it! + +Check out the [Live Demo](https://h2o-ac.pages.dev/), deployed and hosted on [Cloudflare Pages](https://www.netlify.com/). + +(Ps: This theme is based on [kaeyleo/jekyll-theme-H2O](https://github.com/kaeyleo/jekyll-theme-H2O). Thanks for the contributions from [kaeyleo](https://github.com/kaeyleo) and others.) + +## Features + +* Academic Home Page, Archive Page and System Log Pages +* A beatiful SNS icon set +* More practical supports in the post +* Beautiful and adaptive pages (Thanks for H2O) \ No newline at end of file diff --git a/content/theme/jekyll-hacked.md b/content/theme/jekyll-hacked.md new file mode 100644 index 000000000..c2d8ab166 --- /dev/null +++ b/content/theme/jekyll-hacked.md @@ -0,0 +1,25 @@ +--- +title: "Hacked Jekyll" +github: https://github.com/piazzai/hacked-jekyll +demo: https://piazzai.github.io/hacked-jekyll/ +author: Michele Piazzai +date: 2023-05-20 +ssg: + - Jekyll +cms: + - No CMS +css: + - SCSS +archetype: + - Personal + - Single Page +description: Jekyll microtheme that looks like JSON +--- + +# hacked-jekyll + +Hacked Jekyll is a responsive, minimalistic Jekyll theme for a tiny (163kb!) personal website. It consists of a homepage and a 404 page. The homepage lists information set within the configuration file in a format that resembles JSON, giving the website a "hacked" appearance. The user description features [typed.js](https://mattboldt.com/demos/typed-js/) to cycle through multiple lines of text, as long as multiple lines are provided in the configuration. + +The style is rebooted through [normalize.css](https://necolas.github.io/normalize.css/) and based on the [Open Color](https://yeun.github.io/open-color/) library. The monospaced typeface [Hack](https://sourcefoundry.org/hack/) is served together with the website. The favicons are generated by [favicon.io](https://favicon.io/). + +See the [demo](https://hacked-jekyll.netlify.app) to check the end result. diff --git a/content/theme/jekyll-hagura.md b/content/theme/jekyll-hagura.md index 28b3edb44..22fedabf2 100644 --- a/content/theme/jekyll-hagura.md +++ b/content/theme/jekyll-hagura.md @@ -1,14 +1,13 @@ --- title: Webjeda Hagura -github: 'https://github.com/sharu725/hagura' -demo: 'https://webjeda.com/hagura' +github: https://github.com/sharu725/hagura +demo: https://webjeda.com/hagura author: webjeda ssg: - Jekyll cms: - No Cms date: 2016-11-02T14:30:30.000Z -github_branch: gh-pages -description: 'A light weight, minimal Jekyll theme.' -stale: true +description: A light weight, minimal Jekyll theme. +stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-halve-theme.md b/content/theme/jekyll-halve-theme.md index beda97aa2..6cfef0c2e 100644 --- a/content/theme/jekyll-halve-theme.md +++ b/content/theme/jekyll-halve-theme.md @@ -1,16 +1,15 @@ --- title: Halve -github: 'https://github.com/TaylanTatli/Halve' -demo: 'https://taylantatli.github.io/Halve' +github: https://github.com/TaylanTatli/Halve +demo: https://taylantatli.github.io/Halve author: Taylan Tatlı ssg: - Jekyll cms: - No Cms date: 2016-05-30T18:47:21.000Z -github_branch: master description: Stylish Two-Column Jekyll Theme stale: true -disabled: true -disabled_reason: demo url not found +disabled_reason: '' +disabled: false --- \ No newline at end of file diff --git a/content/theme/jekyll-hanuman-theme.md b/content/theme/jekyll-hanuman-theme.md index 50053f01a..0720c1fd2 100644 --- a/content/theme/jekyll-hanuman-theme.md +++ b/content/theme/jekyll-hanuman-theme.md @@ -1,18 +1,17 @@ --- title: Hanuman -github: 'https://github.com/samanyougarg/hanuman' -demo: 'https://samanyougarg.com/hanuman' +github: https://github.com/samanyougarg/hanuman +demo: https://samanyougarg.com/hanuman author: Samanyou Garg ssg: - Jekyll cms: - No Cms date: 2017-12-04T06:41:05.000Z -github_branch: master description: >- A responsive, lightning-fast Jekyll theme built using AMP (Accelerated Mobile Pages) to speed up your blogs and websites. stale: true -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-hcz-material.md b/content/theme/jekyll-hcz-material.md index 8f5a42b12..adf359810 100644 --- a/content/theme/jekyll-hcz-material.md +++ b/content/theme/jekyll-hcz-material.md @@ -1,14 +1,13 @@ --- title: HCZ Material -github: 'https://github.com/codeasashu/hcz-jekyll-blog' -demo: 'https://codeasashu.github.io/hcz-jekyll-blog/' +github: https://github.com/codeasashu/hcz-jekyll-blog +demo: https://codeasashu.github.io/hcz-jekyll-blog/ author: Ashutosh Chaudhary ssg: - Jekyll cms: - No Cms date: 2016-06-02T07:30:03.000Z -github_branch: master description: A simple material theme for blogger -stale: true +stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-helium-theme.md b/content/theme/jekyll-helium-theme.md index 7f56302b2..cde66b790 100644 --- a/content/theme/jekyll-helium-theme.md +++ b/content/theme/jekyll-helium-theme.md @@ -1,14 +1,13 @@ --- title: Helium Jekyll -github: 'https://github.com/heliumjk/heliumjk.github.io' -demo: 'https://heliumjk.github.io/' +github: https://github.com/heliumjk/heliumjk.github.io +demo: https://heliumjk.github.io/ author: Antonio Trento ssg: - Jekyll cms: - No Cms date: 2017-10-07T14:59:13.000Z -github_branch: master description: Bootstrap 4 responsive Jekyll Theme. -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-hikari.md b/content/theme/jekyll-hikari.md index f4b7d7ca5..4d8c6aa6e 100644 --- a/content/theme/jekyll-hikari.md +++ b/content/theme/jekyll-hikari.md @@ -1,16 +1,15 @@ --- title: Hikari -github: 'https://github.com/mx3m/hikari-for-Jekyll' -demo: 'https://mx3m.github.io/hikari-for-Jekyll/' +github: https://github.com/mx3m/hikari-for-Jekyll +demo: https://mx3m.github.io/hikari-for-Jekyll/ author: Mathieu Mayer-Mazzoli ssg: - Jekyll cms: - No Cms date: 2014-02-01T08:30:55.000Z -github_branch: gh-pages description: An open-source theme for Jekyll stale: false -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-hilmi.md b/content/theme/jekyll-hilmi.md index f4e7ff0b4..078243b71 100644 --- a/content/theme/jekyll-hilmi.md +++ b/content/theme/jekyll-hilmi.md @@ -1,16 +1,15 @@ --- title: Jekyll-hilmi -github: 'https://github.com/nix1947/jekyll-hilmi' -demo: 'https://nix1947.github.io/jekyll-hilmi' +github: https://github.com/nix1947/jekyll-hilmi +demo: https://nix1947.github.io/jekyll-hilmi author: Manoj Gautam ssg: - Jekyll cms: - No Cms date: 2017-01-01T14:27:40.000Z -github_branch: master description: jekyll-hilmi is the minimal jekyll theme that focuses on writing matters. stale: true -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-hitchens.md b/content/theme/jekyll-hitchens.md index ce94b2549..26a42dc80 100644 --- a/content/theme/jekyll-hitchens.md +++ b/content/theme/jekyll-hitchens.md @@ -1,15 +1,14 @@ --- title: Hitchens -github: 'https://github.com/patdryburgh/hitchens' -demo: 'https://patdryburgh.github.io/hitchens/' +github: https://github.com/patdryburgh/hitchens +demo: https://patdryburgh.github.io/hitchens/ author: patdryburgh date: 2020-03-22T00:00:00.000Z -github_branch: master ssg: - Jekyll cms: - No Cms description: An inarguably well-designed Jekyll theme by Pat Dryburgh. -stale: false +stale: true --- "An inarguably well-designed Jekyll theme by Pat Dryburgh. Undoubtably one of the great minds of our time, [Christopher Hitchens](https://en.wikipedia.org/wiki/Christopher_Hitchens) challenged his readers to think deeply on topics of politics, religion, war, and science. This Jekyll theme's design is inspired by the trade paperback version his book, [Arguably](https://en.wikipedia.org/wiki/Arguably), and is dedicated to his memory." diff --git a/content/theme/jekyll-hmfaysal-notepad-theme.md b/content/theme/jekyll-hmfaysal-notepad-theme.md index cfb7ee4cb..050a34502 100644 --- a/content/theme/jekyll-hmfaysal-notepad-theme.md +++ b/content/theme/jekyll-hmfaysal-notepad-theme.md @@ -1,16 +1,15 @@ --- title: HMFAYSAL Notepad Theme -github: 'https://github.com/hmfaysal/Notepad' -demo: 'https://www.hossainmohdfaysal.com/Notepad/' +github: https://github.com/hmfaysal/Notepad +demo: https://www.hossainmohdfaysal.com/Notepad/ author: Hossain Mohd Faysal ssg: - Jekyll cms: - No Cms date: 2014-07-18T16:57:01.000Z -github_branch: gh-pages -description: 'Notepad is a Jekyll theme which is very simple, clean and beautiful' +description: Notepad is a Jekyll theme which is very simple, clean and beautiful stale: true +disabled_reason: demo url connection refused disabled: true -disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-hmfaysal-omega-theme.md b/content/theme/jekyll-hmfaysal-omega-theme.md index eda82b754..016c9dfdf 100644 --- a/content/theme/jekyll-hmfaysal-omega-theme.md +++ b/content/theme/jekyll-hmfaysal-omega-theme.md @@ -1,14 +1,13 @@ --- title: HMFAYSAL OMEGA Theme -github: 'https://github.com/hmfaysal/hmfaysal-omega-theme' -demo: 'https://hmfaysal.github.io/hmfaysal-omega-theme/' +github: https://github.com/hmfaysal/hmfaysal-omega-theme +demo: https://hmfaysal.github.io/hmfaysal-omega-theme/ author: Hossain Mohd Faysal ssg: - Jekyll cms: - No Cms date: 2014-01-12T20:13:02.000Z -github_branch: gh-pages description: >- HMFAYSAL OMEGA is a minimalist, beautiful, responsive theme for Jekyll designed for writers who want their content to take front and center. diff --git a/content/theme/jekyll-hmfaysal-theme.md b/content/theme/jekyll-hmfaysal-theme.md index b1126b7a9..067171fcb 100644 --- a/content/theme/jekyll-hmfaysal-theme.md +++ b/content/theme/jekyll-hmfaysal-theme.md @@ -1,14 +1,13 @@ --- title: HMFAYSAL Theme -github: 'https://github.com/hmfaysal/Jekyll-HMFAYSAL-Theme' -demo: 'https://hmfaysal.github.io/Jekyll-HMFAYSAL-Theme/' +github: https://github.com/hmfaysal/Jekyll-HMFAYSAL-Theme +demo: https://hmfaysal.github.io/Jekyll-HMFAYSAL-Theme/ author: Hossain Mohd Faysal ssg: - Jekyll cms: - No Cms date: 2013-12-13T19:21:10.000Z -github_branch: master description: A Bold Theme for Jekyll. See demo at stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-holo-alfa.md b/content/theme/jekyll-holo-alfa.md index fb65abba7..bb91e8a03 100644 --- a/content/theme/jekyll-holo-alfa.md +++ b/content/theme/jekyll-holo-alfa.md @@ -1,14 +1,13 @@ --- title: Holo Alfa -github: 'https://github.com/stijnvc/holo-alfa' -demo: 'https://stijnvc.github.io/holo-alfa/' +github: https://github.com/stijnvc/holo-alfa +demo: https://stijnvc.github.io/holo-alfa/ author: Stijn van Cuijk ssg: - Jekyll cms: - No Cms date: 2015-07-20T19:10:35.000Z -github_branch: master -description: 'A minimalist, mobile first Jekyll theme.' +description: A minimalist, mobile first Jekyll theme. stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-hpstr.md b/content/theme/jekyll-hpstr.md index e606f5b4e..8d0098322 100644 --- a/content/theme/jekyll-hpstr.md +++ b/content/theme/jekyll-hpstr.md @@ -1,14 +1,13 @@ --- title: HPSTR -github: 'https://github.com/mmistakes/hpstr-jekyll-theme' -demo: 'https://mmistakes.github.io/jekyll-theme-hpstr/' +github: https://github.com/mmistakes/hpstr-jekyll-theme +demo: https://mmistakes.github.io/jekyll-theme-hpstr/ author: Michael Rose ssg: - Jekyll cms: - No Cms date: 2013-08-23T19:03:11.000Z -github_branch: master description: A Jekyll theme with some tumble-log tendencies. stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-html-pages.md b/content/theme/jekyll-html-pages.md new file mode 100644 index 000000000..87b99601e --- /dev/null +++ b/content/theme/jekyll-html-pages.md @@ -0,0 +1,27 @@ +--- +title: "Jekyll HTML Pages" +github: https://github.com/francescobianco/jekyll-html-pages +demo: https://yafb.net/jekyll-html-pages/ +author: francescobianco +date: 2019-08-20 +ssg: + - Gridsome +cms: + - No CMS +css: + - No CSS +archetype: + - Blog + - Portfolio +description: A minimalistic Jekyll theme designed for use on GitHub Pages +--- + +# Pure HTML theme + +A minimalistic Jekyll theme designed for use on GitHub Pages. This theme embraces absolute simplicity by avoiding the use of CSS, +providing a nostalgic experience reminiscent of the early days of the World Wide Web at CERN. + +## Features + +* Extremely fast + diff --git a/content/theme/jekyll-hyde.md b/content/theme/jekyll-hyde.md index 5b54f8919..7c6ffa676 100644 --- a/content/theme/jekyll-hyde.md +++ b/content/theme/jekyll-hyde.md @@ -1,14 +1,13 @@ --- title: Hyde -github: 'https://github.com/poole/hyde' -demo: 'https://hyde.getpoole.com/' +github: https://github.com/poole/hyde +demo: https://hyde.getpoole.com/ author: Mark Otto ssg: - Jekyll cms: - No Cms date: 2013-02-07T07:01:38.000Z -github_branch: master description: A brazen two-column theme for Jekyll. stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-hydejack-theme.md b/content/theme/jekyll-hydejack-theme.md index 7f1554cb9..b07482146 100644 --- a/content/theme/jekyll-hydejack-theme.md +++ b/content/theme/jekyll-hydejack-theme.md @@ -1,14 +1,13 @@ --- title: Hydejack -github: 'https://github.com/qwtel/hydejack' -demo: 'https://qwtel.com/hydejack/' +github: https://github.com/qwtel/hydejack +demo: https://qwtel.com/hydejack/ author: Florian Klampfer (@qwtel) ssg: - Jekyll cms: - No Cms date: 2016-02-26T12:45:54.000Z -github_branch: master description: '''Best Jekyll Theme by a Mile''' stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-hydrogen.md b/content/theme/jekyll-hydrogen.md new file mode 100644 index 000000000..7f20d6f21 --- /dev/null +++ b/content/theme/jekyll-hydrogen.md @@ -0,0 +1,46 @@ +--- +title: Hydrogen Jekyll +github: https://github.com/link9596/jekyll-theme-Hydrogen +demo: https://hydrogen.atlinker.cn +author: Link +date: 2021-09-26T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +css: + - SCSS +archetype: + - Blog + - Personal +description: A Lightweight and Concise Jekyll theme For You. +stale: false +--- + +# A simple, elegant & full featured Jekyll theme. + +## Features + +A concise and powerful Jekyll theme. + +In the Hydrogen, you can enjoy: + +1. Use the comment module integration + +2. More convenient custom theme options + +3. Transition animation more concise + +4. Automatic summary, automatic paging + +5. Add friend links more easily + +6. RSS feed + +7. Self-Adaption Layout + +8. Scss Support + +9. Syntax highlighting. + +And more waiting for you to explore. diff --git a/content/theme/jekyll-idk.md b/content/theme/jekyll-idk.md index 4893997b5..bf1227848 100644 --- a/content/theme/jekyll-idk.md +++ b/content/theme/jekyll-idk.md @@ -1,14 +1,13 @@ --- title: idk -github: 'https://github.com/UniFreak/unifreak.github.io' -demo: 'https://unifreak.github.io' +github: https://github.com/UniFreak/unifreak.github.io +demo: https://unifreak.github.io author: FangHao ssg: - Jekyll cms: - No Cms date: 2015-07-22T02:24:05.000Z -github_branch: master description: A simple jekyll theme. stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-immaculate.md b/content/theme/jekyll-immaculate.md index 45f3249cb..104b92fb7 100644 --- a/content/theme/jekyll-immaculate.md +++ b/content/theme/jekyll-immaculate.md @@ -1,14 +1,13 @@ --- title: Immaculate -github: 'https://github.com/siawyoung/immaculate' -demo: 'https://cdn.ampproject.org/c/siawyoung.com/immaculate/' +github: https://github.com/siawyoung/immaculate +demo: https://cdn.ampproject.org/c/siawyoung.com/immaculate/ author: Lau Siaw Young ssg: - Jekyll cms: - No Cms date: 2016-03-30T07:48:59.000Z -github_branch: master -description: 'A beautiful, fast, AMP-compliant Jekyll theme based on Tufte CSS.' +description: A beautiful, fast, AMP-compliant Jekyll theme based on Tufte CSS. stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-incorporated.md b/content/theme/jekyll-incorporated.md index e798665c4..24fdaed5b 100644 --- a/content/theme/jekyll-incorporated.md +++ b/content/theme/jekyll-incorporated.md @@ -1,16 +1,15 @@ --- title: Incorporated -github: 'https://github.com/kippt/jekyll-incorporated' -demo: 'https://blog.sendtoinc.com/' +github: https://github.com/kippt/jekyll-incorporated +demo: https://blog.sendtoinc.com/ author: Kippt Inc. ssg: - Jekyll cms: - No Cms date: 2013-10-09T21:57:31.000Z -github_branch: master description: Modern Jekyll based blog for companies stale: true +disabled_reason: demo url connection refused disabled: true -disabled_reason: "demo url not working" --- diff --git a/content/theme/jekyll-indigo.md b/content/theme/jekyll-indigo.md index 0b4d6d5f6..1c2f1406b 100644 --- a/content/theme/jekyll-indigo.md +++ b/content/theme/jekyll-indigo.md @@ -1,14 +1,13 @@ --- title: Jekyll Indigo -github: 'https://github.com/sergiokopplin/indigo' -demo: 'https://sergiokopplin.github.io/indigo/' +github: https://github.com/sergiokopplin/indigo +demo: https://sergiokopplin.github.io/indigo/ author: Sérgio Kopplin ssg: - Jekyll cms: - No Cms date: 2016-01-23T22:26:04.000Z -github_branch: gh-pages description: ':ramen: Minimalist Jekyll Template' stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-ink.md b/content/theme/jekyll-ink.md index 431a0a299..6c53c7c92 100644 --- a/content/theme/jekyll-ink.md +++ b/content/theme/jekyll-ink.md @@ -1,14 +1,13 @@ --- title: Ink -github: 'https://github.com/thinker3197/ink' -demo: 'https://thinker3197.github.io/ink' +github: https://github.com/thinker3197/ink +demo: https://thinker3197.github.io/ink author: Ashish Gupta ssg: - Jekyll cms: - No Cms date: 2016-06-07T05:57:55.000Z -github_branch: master description: A jekyll theme for humans stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-instagram-portfolio-theme.md b/content/theme/jekyll-instagram-portfolio-theme.md index 6773b4345..8034873ee 100644 --- a/content/theme/jekyll-instagram-portfolio-theme.md +++ b/content/theme/jekyll-instagram-portfolio-theme.md @@ -1,16 +1,15 @@ --- title: Instagram portfolio theme -github: 'https://github.com/portfolio-central/jekyll-instagram-portfolio-theme' -demo: 'https://portfolio-central.github.io/jekyll-instagram-portfolio-theme/' +github: https://github.com/portfolio-central/jekyll-instagram-portfolio-theme +demo: https://portfolio-central.github.io/jekyll-instagram-portfolio-theme/ author: Sergey Sokurenko ssg: - Jekyll cms: - No Cms date: 2016-09-01T14:41:11.000Z -github_branch: gh-pages description: Jekyll Instagram Portfolio Theme stale: true -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-j1-template.md b/content/theme/jekyll-j1-template.md new file mode 100644 index 000000000..ad74f45e8 --- /dev/null +++ b/content/theme/jekyll-j1-template.md @@ -0,0 +1,93 @@ +--- +title: J1 Template Starter +github: https://github.com/jekyll-one/j1-template-starter +demo: https://j1-template-starter.netlify.app/ +author: Jürgen Adams +date: 2021-11-06T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +css: + - Bootstrap +archetype: + - Personal + - Portfolio + - Blog + - Documentation + - Business +description: J1 Template - Create powerful modern static websites. +stale: false +disabled: true +disabled_reason: error checking demo url +--- + +# A fully configurable Jekyll Theme + +* Fully Responsive. J1 Template supports modern web browsers on all + devices for best results on PCs, Tablets, and SmartPhones. +* Full Bootstpap V4 support. Current Technology and Design. Excellent + performance running desktop and mobile websites. Use Jekyll One to + present your content at its best. +* Start in no time. No programming is needed to start using J1. The + Template provides a large number of building blocks to create modern + web pages in minutes. + +## Features + +The template combines the best free software for the web. Jekyll One Template +is OpenSource and the modules included are free to use as well. No license +issues for private or professional use. + +* Fully Responsive. J1 Template supports modern web browsers on all + devices for best results on PCs, Tablets, and SmartPhones. +* Full Bootstpap V4 support. Current Technology and Design. Excellent + performance running desktop and mobile websites. Use Jekyll One to + present your content at its best. +* Start in no time. No programming is needed to start using J1. The + Template provides a large number of building blocks to create modern + web pages in minutes. + +### General + +* Jekyll 4.2 support +* Ruby 2.7 support +* Asciidoc (Asciidoctor) and Markdown support +* Asciidoctor plugins included +* Bootstrap V4 (v4.6) +* Responsive Design +* Material Design +* Responsive Text +* Responsive HTML tables +* Compressed HTML, CSS and Javascript support +* Themes support (Bootswatch) +* Icon Font support (MDI, FA, Iconify, Twitter Emoji) +* Themeable source code highlighting (Rouge) +* Desktop and Mobile Web and Navigation ready +* Fully configurable +* Highest Google Lighthouse scores + +### Modules and Extensions + +* Bootstrap extensions included +* Asciidoctor extensions included +* Smooth-srcoll support +* Full-text search engine included (Lunr) +* Blog Post navigation included +* GDPR compatible cookie consent module included +* Translator module (Google, Deepl) included +* Clipboard module included +* Floating Action Buttons included +* Navigation modules included +* Lightbox modules included +* Gallery modules included +* Carousel module included +* Video modules included + +### Addons and Integrations + +* Featured example content included +* Royalty free images included +* Comment provider support for Hyvor and Disqus +* Google Analytics support +* Deploy on Github Pages (source only), Netlify and Heroku ready diff --git a/content/theme/jekyll-jacman.md b/content/theme/jekyll-jacman.md index 02f8ccd7b..b5f137474 100644 --- a/content/theme/jekyll-jacman.md +++ b/content/theme/jekyll-jacman.md @@ -1,14 +1,13 @@ --- title: Jacman -github: 'https://github.com/Simpleyyt/jekyll-jacman' -demo: 'https://simpleyyt.github.io/jekyll-jacman' +github: https://github.com/Simpleyyt/jekyll-jacman +demo: https://simpleyyt.github.io/jekyll-jacman author: Yitao Yao ssg: - Jekyll cms: - No Cms date: 2015-09-20T15:48:19.000Z -github_branch: master description: A fresh looking and responsive theme for Jekyll stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-jasper.md b/content/theme/jekyll-jasper.md index b09eb3623..d6afd6c65 100644 --- a/content/theme/jekyll-jasper.md +++ b/content/theme/jekyll-jasper.md @@ -1,16 +1,15 @@ --- title: Jasper -github: 'https://github.com/biomadeira/jasper' -demo: 'https://biomadeira.github.io/jasper/' +github: https://github.com/biomadeira/jasper +demo: https://biomadeira.github.io/jasper/ author: biomadeira ssg: - Jekyll cms: - No Cms date: 2015-03-25T13:16:07.000Z -github_branch: master -description: "Full-featured Jekyll port of Ghost's default theme Casper \U0001F47B" +description: Full-featured Jekyll port of Ghost's default theme Casper 👻 stale: false -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-jek.md b/content/theme/jekyll-jek.md new file mode 100644 index 000000000..78037db09 --- /dev/null +++ b/content/theme/jekyll-jek.md @@ -0,0 +1,74 @@ +--- +title: Jek +github: https://github.com/tcbutler320/jek +demo: https://jekyll-jek.netlify.app/ +author: Tyler Butler +ssg: + - Jekyll +cms: + - No Cms +archetype: + - Blog + - Portfolio +date: 2021-06-26T15:29:54.000Z +github_branch: master +description: >- + Jek is a minimalist jekyll theme putting the power of color schemes in the + user’s hands. Toggle between schemes hassle-free, create new ones on the go, + and store settings in-browser. +stale: false +disabled: true +disabled_reason: error checking demo url +--- + +Jek is a minimalist Jekyll theme putting the power of color schemes in the user's hands. Toggle between schemes hassle-free, create new ones on the go, and store settings in-browser. + +Check out the [Demo site](https://jekyll-jek.netlify.app/), deployed and hosted on [Netlify](https://www.netlify.com/). + +_Warning - this theme requires Jekyll 4 and so will **not** work on GitHub Pages (with Jekyll 3), unless you add a custom CI flow using GitHub Actions._ + + +## ⚡ Features + ++ [x] toggle light/dark ++ [x] choose random theme ++ [x] save current theme for next visit ++ [x] open/close settings ++ [x] clear settings + +## 💡 All About The Theme + +Theme settings are saved in [session](https://developer.mozilla.org/en-US/docs/Web/API/Window/sessionStorage) and [local](https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage) storage. Toggling light/dark mode or choosing a random palette saves settings for only the current session. Clicking the save button adds the theme to local storage for future visits. + +## 🛠️ Installation + +It's recommended to install Jek by cloning the [repository](https://github.com/tcbutler320/jek). Installation with Gem's will be supported in a future release. + +## 🍭 Default Themes + +![Demo video](/assets/img/readme/jek.gif) + +## 👩‍🚀 Add New Themes + +Adding new themes to your new jek site could not be easier. Just pick a background color and text color and add them to your `main.css`. Once you're done, add your theme to `_data/themes.yaml`. Check out [colorhunt](https://colorhunt.co/) for inspiration. + +1. Add a new scheme to your `main.css` with `background-color` and `color` set. + ```css + .mytheme { + background-color: #0a1d37; + color: #ffeedb; + } + ``` +2. Add a color scheme name to your `_data/themes.yaml`. + ```yaml + - name: mytheme + enabled: true + ``` + +## ✍️ Contributing + +If you're interested in contributing to Jek, feel free to fork the repository and make a pull request! If you made a cool new theme and want to add it to the defaults, create an issue and add the [*Theme Suggestion*](https://github.com/tcbutler320/jek/labels/Theme%20Suggestion) label. + +## ⚖️ License + +Licensed under [MIT](/LICENSE.txt) by [@tcbutler320](https://github.com/tcbutler320). diff --git a/content/theme/jekyll-jekflix-theme.md b/content/theme/jekyll-jekflix-theme.md index 71766be78..95a923ebe 100644 --- a/content/theme/jekyll-jekflix-theme.md +++ b/content/theme/jekyll-jekflix-theme.md @@ -1,14 +1,13 @@ --- title: Jekflix -github: 'https://github.com/thiagorossener/jekflix-template' -demo: 'https://jekflix.rossener.com/' +github: https://github.com/thiagorossener/jekflix-template +demo: https://jekflix.rossener.com/ author: Thiago Rossener ssg: - Jekyll cms: - No Cms date: 2017-09-09T15:29:54.000Z -github_branch: master -description: "A Jekyll template inspired by Netflix. \U0001F3AC" +description: A Jekyll template inspired by Netflix. 🎬 stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-jekmdl.md b/content/theme/jekyll-jekmdl.md index b900db5cd..5e89f7ee2 100644 --- a/content/theme/jekyll-jekmdl.md +++ b/content/theme/jekyll-jekmdl.md @@ -1,14 +1,13 @@ --- title: Jekmdl -github: 'https://github.com/tigefa4u/jekmdl' -demo: 'https://tigefa4u.github.io/jekmdl/' +github: https://github.com/tigefa4u/jekmdl +demo: https://tigefa4u.github.io/jekmdl/ author: sugeng tigefa ssg: - Jekyll cms: - No Cms date: 2015-12-31T23:50:44.000Z -github_branch: gh-pages description: ':+1: Jekyll themes use Material Design Lite' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-joon.md b/content/theme/jekyll-joon.md index 8cd6320b8..f8cbb66b9 100644 --- a/content/theme/jekyll-joon.md +++ b/content/theme/jekyll-joon.md @@ -1,14 +1,13 @@ --- title: Joon -github: 'https://github.com/vormwald/joon' -demo: 'https://vormwald.github.io/joon/' +github: https://github.com/vormwald/joon +demo: https://vormwald.github.io/joon/ author: Mike Vormwald ssg: - Jekyll cms: - No Cms date: 2015-08-10T03:11:53.000Z -github_branch: master description: Roon theme for Jekyll stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-justice.md b/content/theme/jekyll-justice.md index 703f55a1e..3386114ae 100644 --- a/content/theme/jekyll-justice.md +++ b/content/theme/jekyll-justice.md @@ -1,14 +1,13 @@ --- title: Justice -github: 'https://github.com/CloudCannon/justice-jekyll-template' -demo: 'https://grey-grouse.cloudvent.net/' +github: https://github.com/CloudCannon/justice-jekyll-template +demo: https://grey-grouse.cloudvent.net/ author: CloudCannon ssg: - Jekyll cms: - No Cms date: 2016-11-10T00:56:02.000Z -github_branch: master description: ':office: Law firm themed business template for Jekyll' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-kactus.md b/content/theme/jekyll-kactus.md index 80da6d8e8..165b8c0e9 100644 --- a/content/theme/jekyll-kactus.md +++ b/content/theme/jekyll-kactus.md @@ -1,14 +1,13 @@ --- title: Kactus -github: 'https://github.com/nickbalestra/kactus' -demo: 'https://nick.balestra.ch/2015/Kactus/' +github: https://github.com/nickbalestra/kactus +demo: https://nick.balestra.ch/2015/Kactus/ author: Nick Balestra ssg: - Jekyll cms: - No Cms date: 2015-06-11T18:10:48.000Z -github_branch: master description: Cactus's default theme on Jekyll stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-kagami.md b/content/theme/jekyll-kagami.md index 2870974f7..043c728c7 100644 --- a/content/theme/jekyll-kagami.md +++ b/content/theme/jekyll-kagami.md @@ -1,14 +1,13 @@ --- title: Kagami -github: 'https://github.com/kamikat/jekyll-theme-kagami' -demo: 'https://banana.moe/jekyll-theme-kagami/about.html' +github: https://github.com/kamikat/jekyll-theme-kagami +demo: https://banana.moe/jekyll-theme-kagami/about.html author: Kamikat ssg: - Jekyll cms: - No Cms date: 2017-03-07T03:59:23.000Z -github_branch: master description: Simple and clean Jekyll theme compatible with GitHub Pages. stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-karna.md b/content/theme/jekyll-karna.md index 597755045..2ecce93cd 100644 --- a/content/theme/jekyll-karna.md +++ b/content/theme/jekyll-karna.md @@ -1,14 +1,13 @@ --- title: Webjeda Karna -github: 'https://github.com/sharu725/karna' -demo: 'https://webjeda.com/karna' +github: https://github.com/sharu725/karna +demo: https://webjeda.com/karna author: webjeda ssg: - Jekyll cms: - No Cms date: 2016-11-01T14:59:40.000Z -github_branch: master description: Karna is a responsive jekyll theme which includes pinterest like pins stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-kasper.md b/content/theme/jekyll-kasper.md index 39742baa5..b42cde1f3 100644 --- a/content/theme/jekyll-kasper.md +++ b/content/theme/jekyll-kasper.md @@ -1,14 +1,15 @@ --- title: Kasper -github: 'https://github.com/rosario/kasper' -demo: 'https://rosario.io/2013/11/10/kasper-theme-for-jekyll.html' +github: https://github.com/rosario/kasper +demo: https://rosario.io/2013/11/10/kasper-theme-for-jekyll.html author: Rosario Rascuna ssg: - Jekyll cms: - No Cms date: 2013-11-10T10:15:43.000Z -github_branch: master description: Ghost's default theme (Casper) on Jekyll -stale: false +stale: true +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-kiko-plus.md b/content/theme/jekyll-kiko-plus.md index 13c7545ac..52c9115a8 100644 --- a/content/theme/jekyll-kiko-plus.md +++ b/content/theme/jekyll-kiko-plus.md @@ -1,14 +1,13 @@ --- title: Kiko Plus -github: 'https://github.com/AWEEKJ/Kiko-plus' -demo: 'https://aweekj.github.io/Kiko-plus' +github: https://github.com/AWEEKJ/Kiko-plus +demo: https://aweekj.github.io/Kiko-plus author: Hanju Jamie Jo ssg: - Jekyll cms: - No Cms date: 2016-08-08T10:33:16.000Z -github_branch: master description: '[DEPRECATED!!!] Please redirect to the new and easier version, kiko-now==>' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-klise.md b/content/theme/jekyll-klise.md index 341fa04bf..c7d5fd37d 100644 --- a/content/theme/jekyll-klise.md +++ b/content/theme/jekyll-klise.md @@ -1,10 +1,9 @@ --- title: Jekyll Klisé -github: 'https://github.com/piharpi/jekyll-klise' -demo: 'https://klise.now.sh' +github: https://github.com/piharpi/jekyll-klise +demo: https://klise.now.sh author: piharpi date: 2020-04-06T00:00:00.000Z -github_branch: master ssg: - Jekyll cms: diff --git a/content/theme/jekyll-kontent-blog.md b/content/theme/jekyll-kontent-blog.md index a0b49b7d2..7e04ae67d 100644 --- a/content/theme/jekyll-kontent-blog.md +++ b/content/theme/jekyll-kontent-blog.md @@ -1,14 +1,13 @@ --- title: Jekyll Kontent Blog -github: 'https://github.com/Kentico/kontent-jekyll-blog' -demo: 'https://kentico.github.io/kontent-jekyll-blog/' +github: https://github.com/Kentico/kontent-jekyll-blog +demo: https://kentico.github.io/kontent-jekyll-blog/ author: Kentico ssg: - Jekyll cms: - Kontent date: 2020-12-01T00:00:00.000Z -github_branch: master archetype: - Blog description: Sample blog website built using Kentico Kontent as a content repository. diff --git a/content/theme/jekyll-lagom.md b/content/theme/jekyll-lagom.md index de66964bc..7db43b696 100644 --- a/content/theme/jekyll-lagom.md +++ b/content/theme/jekyll-lagom.md @@ -1,14 +1,13 @@ --- title: Lagom -github: 'https://github.com/swanson/lagom' -demo: 'https://lagom.mdswanson.com/' +github: https://github.com/swanson/lagom +demo: https://lagom.mdswanson.com/ author: Matt Swanson ssg: - Jekyll cms: - No Cms date: 2013-08-24T03:09:43.000Z -github_branch: master description: A Jekyll blog theme with just the right amount of style stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-lagrange.md b/content/theme/jekyll-lagrange.md index a582350fc..aa63daecf 100644 --- a/content/theme/jekyll-lagrange.md +++ b/content/theme/jekyll-lagrange.md @@ -1,14 +1,13 @@ --- title: Lagrange -github: 'https://github.com/LeNPaul/Lagrange' -demo: 'https://lenpaul.github.io/Lagrange/' +github: https://github.com/LeNPaul/Lagrange +demo: https://lenpaul.github.io/Lagrange/ author: Paul Le ssg: - Jekyll cms: - No Cms date: 2016-07-24T02:05:27.000Z -github_branch: gh-pages description: A minimalist Jekyll theme for running a personal blog -stale: true +stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-lanyon-plus.md b/content/theme/jekyll-lanyon-plus.md index 18db037cc..5605d9282 100644 --- a/content/theme/jekyll-lanyon-plus.md +++ b/content/theme/jekyll-lanyon-plus.md @@ -1,14 +1,13 @@ --- title: lanyon-plus -github: 'https://github.com/dyndna/lanyon-plus' -demo: 'https://dyndna.github.io/lanyon-plus' +github: https://github.com/dyndna/lanyon-plus +demo: https://dyndna.github.io/lanyon-plus author: Samir Amin @SBAmin ssg: - Jekyll cms: - No Cms date: 2016-02-26T22:29:05.000Z -github_branch: master -description: 'Based on lanyon - A content-first, sliding sidebar theme for Jekyll. Demo at' +description: Based on lanyon - A content-first, sliding sidebar theme for Jekyll. Demo at stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-lanyon.md b/content/theme/jekyll-lanyon.md index d141204cb..a30b7bd4e 100644 --- a/content/theme/jekyll-lanyon.md +++ b/content/theme/jekyll-lanyon.md @@ -1,14 +1,13 @@ --- title: Lanyon -github: 'https://github.com/poole/lanyon' -demo: 'https://lanyon.getpoole.com/' +github: https://github.com/poole/lanyon +demo: https://lanyon.getpoole.com/ author: Mark Otto ssg: - Jekyll cms: - No Cms date: 2013-12-28T07:53:04.000Z -github_branch: master -description: 'A content-first, sliding sidebar theme for Jekyll.' -stale: false +description: A content-first, sliding sidebar theme for Jekyll. +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-leap-day.md b/content/theme/jekyll-leap-day.md index 93015be15..ae80d23e5 100644 --- a/content/theme/jekyll-leap-day.md +++ b/content/theme/jekyll-leap-day.md @@ -1,14 +1,13 @@ --- title: Leap Day -github: 'https://github.com/mattgraham/Leap-Day' -demo: 'https://madebygraham.com/leapday/' +github: https://github.com/mattgraham/Leap-Day +demo: https://madebygraham.com/leapday/ author: Matt Graham ssg: - Jekyll cms: - No Cms date: 2012-04-04T21:48:06.000Z -github_branch: master description: 'GitHub Pages Theme: Leap Day' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-left-theme.md b/content/theme/jekyll-left-theme.md index 40c77f04c..3788638dd 100644 --- a/content/theme/jekyll-left-theme.md +++ b/content/theme/jekyll-left-theme.md @@ -1,14 +1,13 @@ --- title: Left -github: 'https://github.com/holman/left' -demo: 'https://zachholman.com/left/' +github: https://github.com/holman/left +demo: https://zachholman.com/left/ author: Zach Holman ssg: - Jekyll cms: - No Cms date: 2012-12-12T00:18:54.000Z -github_branch: gh-pages -description: 'Left is a clean, whitespace-happy layout for Jekyll.' +description: Left is a clean, whitespace-happy layout for Jekyll. stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-lemma-theme.md b/content/theme/jekyll-lemma-theme.md index aa30841a2..86eaa18f1 100644 --- a/content/theme/jekyll-lemma-theme.md +++ b/content/theme/jekyll-lemma-theme.md @@ -1,14 +1,13 @@ --- title: Lemma -github: 'https://github.com/neizod/lemma-theme' -demo: 'https://neizod.github.io/lemma-theme' +github: https://github.com/neizod/lemma-theme +demo: https://neizod.github.io/lemma-theme author: Nattawut Phetmak (@neizod) ssg: - Jekyll cms: - No Cms date: 2014-10-23T03:14:41.000Z -github_branch: gh-pages description: Bootstrap theme for GitHub Pages (Jekyll). stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-leonids.md b/content/theme/jekyll-leonids.md index fcb699532..2142a3a15 100644 --- a/content/theme/jekyll-leonids.md +++ b/content/theme/jekyll-leonids.md @@ -1,14 +1,13 @@ --- title: Leonids -github: 'https://github.com/renyuanz/leonids' -demo: 'https://renyuanz.github.io/leonids' +github: https://github.com/renyuanz/leonids +demo: https://renyuanz.github.io/leonids author: Renyuan Zou ssg: - Jekyll cms: - No Cms date: 2015-08-22T20:45:38.000Z -github_branch: master description: A simple and clean two columns Jekyll theme. -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-leopard.md b/content/theme/jekyll-leopard.md index 462b86add..5989f8937 100644 --- a/content/theme/jekyll-leopard.md +++ b/content/theme/jekyll-leopard.md @@ -1,14 +1,15 @@ --- title: leopard -github: 'https://github.com/leopardpan/leopardpan.github.io' -demo: 'https://baixin.io' +github: https://github.com/leopardpan/leopardpan.github.io +demo: https://baixin.io author: leopardpan ssg: - Jekyll cms: - No Cms date: 2016-03-29T15:22:17.000Z -github_branch: master description: 个人博客,看效果进入 -stale: false +stale: true +disabled: true +disabled_reason: error checking demo url --- \ No newline at end of file diff --git a/content/theme/jekyll-libdoc.md b/content/theme/jekyll-libdoc.md new file mode 100644 index 000000000..d7ce0071a --- /dev/null +++ b/content/theme/jekyll-libdoc.md @@ -0,0 +1,117 @@ +--- +title: Jekyll LibDoc +github: https://github.com/olivier3lanc/Jekyll-LibDoc +demo: https://olivier3lanc.github.io/Jekyll-LibDoc/ +author: Olivier 3lanc +date: 2022-09-01T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +archetype: + - Documentation + - Playground +description: A Jekyll documentation theme with built-in search and playground +stale: false +--- + +# A documentation theme with its playground + +LibDoc is a Jekyll theme that was crafted to easily and quickly get properly designed documentation especially for CSS and Javascript libraries. It comes with a [built-in playground](https://olivier3lanc.github.io/Jekyll-LibDoc/libdoc-playground.html) and local search engine. + +![LibDoc layout](https://olivier3lanc.github.io/Jekyll-LibDoc/assets/libdoc/img/libdoc-layout-page-split.webp) +## Features + +* **Quick and easy without installationnew**
Quickly deploy Jekyll LibDoc on a Github repository with [remote theme feature](https://olivier3lanc.github.io/Jekyll-LibDoc/libdoc-install.html#online---remote-theme) +* **Dual context: LibDoc + Playground**
LibDoc was made to craft documentation with its own embedded demos and examples. A major feature of the LibDoc Jekyll theme is its own built-in and configurable playground which is both a [layout](https://olivier3lanc.github.io/Jekyll-LibDoc/libdoc-layouts.html#playground) and a syntax highlighter extension. It extends the [syntax highlighter](https://olivier3lanc.github.io/Jekyll-LibDoc/libdoc-config.html#prismjs-syntax-highlighter) by running the specified code into a configurable context with user defined style sheets and scripts. [Learn more](https://olivier3lanc.github.io/Jekyll-LibDoc/libdoc-playground.html) +* **Gem free, plugin free**
LibDoc runs without any Gem nor plugin. +* **Github Pages compatible Jekyll theme**
Easily deploy your project on Github Pages, LibDoc is fully compatible. +* **5 layouts**
LibDoc comes with dedicated [layouts](https://olivier3lanc.github.io/Jekyll-LibDoc/libdoc-layouts.html) for common documentation usages. +* **Assets grid**
Built to allow visitors to view, download or copy URL of specified resources on your project. [Example](https://olivier3lanc.github.io/Jekyll-LibDoc/libdoc-layout-assets.html) +* **Local search engine**
LibDoc has its own internal search engine based on [lunr.js](https://lunrjs.com/). +* **Multiple lazy-loaded playgrounds on any page**
Add as mush as playgrounds on your documentation pages, playgrounds are loaded once into the viewport. +* **Can work locally, even without Internet connection**
LibDoc can run locally with Jekyll serve or any http host - *assuming you set up local resources.* +* **Customizeable settings**
LibDoc has its own settings editable on needs in the configuration file [config.yml](https://olivier3lanc.github.io/Jekyll-LibDoc/libdoc-config.html). +* **Front matter**
Optional parameters ready to be set into the front matter of each page and every layout, like `category`, `order` in sidebar and `unlisted` feature. [Learn more](https://olivier3lanc.github.io/Jekyll-LibDoc/libdoc-front-matter.html) +* **Github Flavoured Markdown**
LibDoc comes with native support of [Github Flavoured Markdown](https://github.github.com/gfm/). [Learn more](https://olivier3lanc.github.io/Jekyll-LibDoc/libdoc-markdown.html) +* **Metadata**
LibDoc supports social networks metadata into its document `` to enable proper social sharing. Favicon, image, author, color, language are supported in addition of site title and description. Metadata have dual settings for both [site/project](https://olivier3lanc.github.io/Jekyll-LibDoc/libdoc-config.html#metadata) and [playground](https://olivier3lanc.github.io/Jekyll-LibDoc/libdoc-config.html#playground) +* **Sidebar**
All the necessary UI components to navigate through your project. Customizeable features such as logo/text management, search engine and possibility to add links of page that are not contained into the project. All available pages of the project are listed into the responsive sidebar, excepting unlisted ones. You can also assign category to pages and set a custom order. [Learn more](https://olivier3lanc.github.io/Jekyll-LibDoc/libdoc-config.html#sidebar) +* **Customizable Logo**
The top left of the LibDoc’s theme is a homepage link that can display just site title or a custom logo. [Learn more](https://olivier3lanc.github.io/Jekyll-LibDoc/libdoc-sidebar.html#sidebar) +* **Pages order and category**
Pages created can optionally have a category and an order assigned through their front matter. Then, it is possible to group pages links in the sidebar with a tip above the link. [Learn more](https://olivier3lanc.github.io/Jekyll-LibDoc/libdoc-front-matter.html) +* **Unlisted pages**
It is possible to remove page link from the sidebar and search results thanks to the front matter `unlisted` property. [Learn more](https://olivier3lanc.github.io/Jekyll-LibDoc/libdoc-front-matter.html#unlisted) +* **Prims as syntax highlighter**
LibDoc uses customizeable [Prismjs](https://prismjs.com/) syntax highlighter for both playground and markdown code highlight. [Learn more](https://olivier3lanc.github.io/Jekyll-LibDoc/libdoc-config.html#prismjs-syntax-highlighter) +* **TOC - Table Of Content**
LibDoc supports `{:toc}` automatically generated from kramdown - markdown engine - TOC styling the table of content onto a right sidebar. [Learn more](https://olivier3lanc.github.io/Jekyll-LibDoc/libdoc-markdown.html#table-of-content-support) +* **Shields and badges**
![Badge example](https://shields.io/badge/style-for--the--badge-green?logo=appveyor&style=for-the-badge)
+Easily add [shields.io](https://shields.io/) badges into the footer. Create your own badges and add it through the config.yml. [Learn more](https://olivier3lanc.github.io/Jekyll-LibDoc/libdoc-badges.html) + +## Usage + +It is possible to use LibDoc through different ways: + +### Online - No installation as remote theme + +*Available only on GitHub*, [remote theme feature](https://docs.github.com/en/pages/setting-up-a-github-pages-site-with-jekyll/adding-a-theme-to-your-github-pages-site-using-jekyll#adding-a-theme) is the most simple way to use LibDoc, it does not require any installation, just follow these few steps: + +1. **Create a repository**
Just add a new repository on your GitHub account. [Example](https://github.com/olivier3lanc/LibDoc-remote-demo/) +2. **Create a LibDoc config file**
Create and configure your LibDoc config file called [_config.yml](libdoc-config.html), required for GitHub Pages, do not forget to add/uncomment the following line:
`remote_theme: olivier3lanc/Jekyll-LibDoc`
[View a _config.yml example](https://github.com/olivier3lanc/LibDoc-remote-demo/blob/main/_config.yml) +3. **Enable Github Pages**
To automatically compile your LibDoc project, just enable GitHub Pages at `https://github.com/[GH_USER_NAME]/[REPO_NAME]/settings/pages`. Each time you commit and push on the specified branch, [Github Pages](https://pages.github.com) builds and hosts your project on the URL `https://[GH_USER_NAME].github.io/[REPO_NAME]`. + +Your repository is now ready to be deployed as GitHub Pages website, all you have to do is adding your content! Learn more about [remote themes](https://github.blog/2017-11-29-use-any-theme-with-github-pages/) + + +### Online - No installation copy or clone + +![Github.dev](assets/libdoc/img/libdoc-edit-online.webp) + +It is possible to craft documentation with LibDoc only with your browser, [Github](https://www.github.com) and [Github Pages](https://pages.github.com). + +1. Copy, clone or fork [LibDoc repository](https://github.com/olivier3lanc/Jekyll-LibDoc) +2. On the forked/copy repository, press `Shift + .` or go to `https://github.dev/[GH_USER_NAME]/[REPO_NAME]/tree/[BRANCH_NAME]` +3. You are now into [Visual Studio Code](https://code.visualstudio.com/) and you can edit, commit and push. + +To automatically compile your LibDoc project, just enable your instance on this page `https://github.com/[GH_USER_NAME]/[REPO_NAME]/settings/pages`. Each time you commit and push on the specified branch, [Github Pages](https://pages.github.com) builds and hosts your project on the URL `https://[GH_USER_NAME].github.io/[REPO_NAME]`. + +### Local install + +LibDoc requires only [Jekyll](https://jekyllrb.com/) to compile your work. + +1. Install Jekyll on your machine following the steps described [here](https://jekyllrb.com/docs/) +2. Get the latest version of LibDoc + * [Download blank](https://github.com/olivier3lanc/Jekyll-LibDoc/archive/refs/heads/master.zip) or [Download with demo content](https://github.com/olivier3lanc/Jekyll-LibDoc/archive/refs/heads/develop.zip) + * You can also clone repository from your terminal `git clone git@github.com:olivier3lanc/Jekyll-LibDoc.git` +3. Into the folder where LibDoc was copied, adjust your settings of your YAML file, Most important are + * `url`
The host of your local set up, this can be for example *http://localhost* or *http://192.168.1.2* or domaine name + * `baseurl`
The path to your local copy of LibDoc. For example */Jekyll-LibDoc/_site* + * `title`
Title of the documentation + * `description`
Description of your documentation project +4. Compile your project using: + * `jekyll build`
Builds the project using *_config.yml* + * `jekyll build -c _personal-config.yml`
Builds the project using *_personal-config.yml* + * `jekyll build -c _personal-config.yml --watch`
Builds the project using *_personal-config.yml* and automatically compiles on detected changes. + * Learn more about command line usage on [official Jekyll documentation](https://jekyllrb.com/docs/usage/) + +### Local with remote theme + +[View example repository](https://github.com/olivier3lanc/LibDoc-remote-demo/tree/local) + +It is possible to only write your content without complete LibDoc installation, just use LibDoc as remote theme. You only need to use locally [Jekyll remote theme plugin](https://github.com/benbalter/jekyll-remote-theme) + +1. Install Jekyll on your machine following the steps described [here](https://jekyllrb.com/docs/) +2. Add a Gemfile with the following line + + ```ruby + gem "jekyll-remote-theme" + ``` + and run `bundle install` to install the plugin + +3. Add the following to your LibDoc's local config file `_config-local.yml` + + ```yml + remote_theme: olivier3lanc/Jekyll-LibDoc + plugins: + - jekyll-remote-theme + ``` + +4. Run `jekyll build` or with any custom config file `jekyll build -c _your-own-config.yml` + +Feel free to use the [example repository](https://github.com/olivier3lanc/LibDoc-remote-demo/tree/local) as starter template. diff --git a/content/theme/jekyll-library.md b/content/theme/jekyll-library.md index 6e74451d5..f29e90597 100644 --- a/content/theme/jekyll-library.md +++ b/content/theme/jekyll-library.md @@ -1,16 +1,15 @@ --- title: Library -github: 'https://github.com/alexcarpenter/library-jekyll-theme' -demo: 'https://alexcarpenter.me/library-jekyll-theme/' +github: https://github.com/alexcarpenter/library-jekyll-theme +demo: https://alexcarpenter.me/library-jekyll-theme/ author: Alex Carpenter ssg: - Jekyll cms: - No Cms date: 2016-01-24T15:20:15.000Z -github_branch: master description: Create a digital bookshelf using Jekyll. stale: true -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-light-material.md b/content/theme/jekyll-light-material.md index f18bb5053..088801ded 100644 --- a/content/theme/jekyll-light-material.md +++ b/content/theme/jekyll-light-material.md @@ -1,16 +1,15 @@ --- title: Light Material -github: 'https://github.com/lukas-h/material-theme/' -demo: 'https://himsel.me/material-theme/' +github: https://github.com/lukas-h/material-theme/ +demo: https://himsel.me/material-theme/ author: Lukas Himsel ssg: - Jekyll cms: - No Cms date: 2016-09-06T08:42:27.000Z -github_branch: gh-pages description: lightweight jekyll blog theme -stale: false +stale: true +disabled_reason: demo url not found disabled: true -disabled_reason: Demo URL not found --- \ No newline at end of file diff --git a/content/theme/jekyll-lightspeed.md b/content/theme/jekyll-lightspeed.md new file mode 100644 index 000000000..614a2ce82 --- /dev/null +++ b/content/theme/jekyll-lightspeed.md @@ -0,0 +1,33 @@ +--- +title: Lightspeed +github: https://github.com/tajacks/lightspeed +demo: https://lightspeed.tajacks.com +author: tajacks +date: 2023-02-18T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +css: + - SCSS +archetype: + - Blog + - Personal +description: A fast, simple, and privacy-respecting personal site and blog +stale: false +--- + +# Your simple home page + +Lightspeed was created to simply deliver content on the web with minimum fuss. Use it as a home page, a blog, or something in between + +## Features + +* Posts (blog) support +* Pagination & Categories +* RSS +* Syntax Highlighting (JS Served Locally) +* SEO Support +* Doesn't look half bad on mobile +* No intrusive JavaScript +* Extensible diff --git a/content/theme/jekyll-limpid-minimal-theme.md b/content/theme/jekyll-limpid-minimal-theme.md index 42013bdc5..da24674e1 100644 --- a/content/theme/jekyll-limpid-minimal-theme.md +++ b/content/theme/jekyll-limpid-minimal-theme.md @@ -1,14 +1,13 @@ --- title: Limpid Theme -github: 'https://github.com/pranavrajs/limpid' -demo: 'https://pranavrajs.github.io/limpid/' +github: https://github.com/pranavrajs/limpid +demo: https://pranavrajs.github.io/limpid/ author: Pranav Raj S ssg: - Jekyll cms: - No Cms date: 2016-06-05T17:18:41.000Z -github_branch: master -description: 'A clean, minimal theme for Jekyll blogs' +description: A clean, minimal theme for Jekyll blogs stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-lone-wolf-theme.md b/content/theme/jekyll-lone-wolf-theme.md index a40a41920..8da6378cb 100644 --- a/content/theme/jekyll-lone-wolf-theme.md +++ b/content/theme/jekyll-lone-wolf-theme.md @@ -1,10 +1,9 @@ --- title: Lone Wolf Theme -github: 'https://github.com/manid2/lone-wolf-theme/' -demo: 'https://manid2.github.io/lone-wolf-theme/' +github: https://github.com/manid2/lone-wolf-theme/ +demo: https://manid2.github.io/lone-wolf-theme/ author: Mani Kumar date: 2020-08-23T18:13:04.000Z -github_branch: master ssg: - Jekyll cms: diff --git a/content/theme/jekyll-long-haul.md b/content/theme/jekyll-long-haul.md index d9388851c..10c506a74 100644 --- a/content/theme/jekyll-long-haul.md +++ b/content/theme/jekyll-long-haul.md @@ -1,14 +1,13 @@ --- title: Long Haul -github: 'https://github.com/brianmaierjr/long-haul' -demo: 'https://brianmaierjr.com/long-haul/' +github: https://github.com/brianmaierjr/long-haul +demo: https://brianmaierjr.com/long-haul/ author: Brian Maier Jr. ssg: - Jekyll cms: - No Cms date: 2014-12-14T08:41:52.000Z -github_branch: master -description: 'A minimal, type-focused Jekyll theme.' +description: A minimal, type-focused Jekyll theme. stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-lora.md b/content/theme/jekyll-lora.md index 18608844e..97b08f1c0 100644 --- a/content/theme/jekyll-lora.md +++ b/content/theme/jekyll-lora.md @@ -1,14 +1,15 @@ --- title: Lora -github: 'https://github.com/nandomoreirame/lora' -demo: 'https://nandomoreira.me/lora/' +github: https://github.com/nandomoreirame/lora +demo: https://nandomoreira.me/lora/ author: nandomoreira.me ssg: - Jekyll cms: - No Cms date: 2015-11-15T17:33:04.000Z -github_branch: master description: ':gem: Lora free Jekyll theme' stale: true +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-malt.md b/content/theme/jekyll-malt.md index 99eeabe11..40e7263ee 100644 --- a/content/theme/jekyll-malt.md +++ b/content/theme/jekyll-malt.md @@ -1,14 +1,13 @@ --- title: Malt -github: 'https://github.com/CloudCannon/malt-jekyll-template' -demo: 'https://whispering-boat.cloudvent.net/' +github: https://github.com/CloudCannon/malt-jekyll-template +demo: https://whispering-boat.cloudvent.net/ author: CloudCannon ssg: - Jekyll cms: - No Cms date: 2016-11-09T22:42:40.000Z -github_branch: master description: ':beers: Event marketing template for Jekyll' -stale: true +stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-mangan.md b/content/theme/jekyll-mangan.md index 5617e47d0..efd64f9bf 100644 --- a/content/theme/jekyll-mangan.md +++ b/content/theme/jekyll-mangan.md @@ -1,14 +1,13 @@ --- title: Mangan -github: 'https://github.com/dikiaap/mangan' -demo: 'https://mangan.dikiaap.id' +github: https://github.com/dikiaap/mangan +demo: https://mangan.dikiaap.id author: Diki Ananta ssg: - Jekyll cms: - No Cms date: 2015-07-03T08:13:56.000Z -github_branch: master description: Geek theme for Jekyll. stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-marat-theme.md b/content/theme/jekyll-marat-theme.md index 8c30cd403..3c89b6e56 100644 --- a/content/theme/jekyll-marat-theme.md +++ b/content/theme/jekyll-marat-theme.md @@ -1,14 +1,13 @@ --- title: Marat -github: 'https://github.com/JohnCoene/marat' -demo: 'https://marat.john-coene.com' +github: https://github.com/JohnCoene/marat +demo: https://marat.john-coene.com author: John Coene ssg: - Jekyll cms: - No Cms date: 2017-06-19T05:38:37.000Z -github_branch: master -description: "\U0001F4DC Jekyll theme inspired by L'Ami du peuple" +description: 📜 Jekyll theme inspired by L'Ami du peuple stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-masonry.md b/content/theme/jekyll-masonry.md index 93f3820a3..47e79a203 100644 --- a/content/theme/jekyll-masonry.md +++ b/content/theme/jekyll-masonry.md @@ -1,14 +1,15 @@ --- title: Jekyll Masonry -github: 'https://github.com/pasindud/jekyll-masonry' -demo: 'https://pasindud.github.io/' +github: https://github.com/pasindud/jekyll-masonry +demo: https://pasindud.github.io/ author: Pasindu De Silva ssg: - Jekyll cms: - No Cms date: 2014-09-03T14:35:16.000Z -github_branch: master description: Jekyll theme based on masonry stale: true +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-massively-theme.md b/content/theme/jekyll-massively-theme.md index 0ba84afeb..9a6d92d5b 100644 --- a/content/theme/jekyll-massively-theme.md +++ b/content/theme/jekyll-massively-theme.md @@ -1,14 +1,15 @@ --- title: Jekyll Massively -github: 'https://github.com/iwiedenm/jekyll-theme-massively-src' -demo: 'https://iwiedenm.github.io/jekyll-theme-massively/' +github: https://github.com/iwiedenm/jekyll-theme-massively-src +demo: https://iwiedenm.github.io/jekyll-theme-massively/ author: Somiibo ssg: - Jekyll cms: - No Cms date: 2017-11-13T02:43:40.000Z -github_branch: master description: 'Preview ' stale: true +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-material-theme.md b/content/theme/jekyll-material-theme.md index 136f214ea..a8dfac911 100644 --- a/content/theme/jekyll-material-theme.md +++ b/content/theme/jekyll-material-theme.md @@ -1,14 +1,13 @@ --- title: Jekyll Material Theme -github: 'https://github.com/jameshamann/jekyll-material-theme' -demo: 'https://jameshamann.com' +github: https://github.com/jameshamann/jekyll-material-theme +demo: https://jameshamann.com author: James Hamann ssg: - Jekyll cms: - No Cms date: 2017-11-27T21:19:23.000Z -github_branch: master description: A Jekyll Theme based on Material Design using Materialize. stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-materialbliss.md b/content/theme/jekyll-materialbliss.md index 015fcac77..4f193eb8a 100644 --- a/content/theme/jekyll-materialbliss.md +++ b/content/theme/jekyll-materialbliss.md @@ -1,14 +1,13 @@ --- title: Material Bliss -github: 'https://github.com/InsidiousMind/material-bliss-jekyll-theme' -demo: 'https://code.liquidthink.net' +github: https://github.com/InsidiousMind/material-bliss-jekyll-theme +demo: https://code.liquidthink.net author: Andrew Plaza ssg: - Jekyll cms: - No Cms date: 2016-12-29T03:27:05.000Z -github_branch: master description: >- A Material Theme for Jekyll created with React, Redux, and React-Router transpiled with Webpack diff --git a/content/theme/jekyll-materialize-hg.md b/content/theme/jekyll-materialize-hg.md index 3eb82a370..c094db7e9 100644 --- a/content/theme/jekyll-materialize-hg.md +++ b/content/theme/jekyll-materialize-hg.md @@ -1,14 +1,13 @@ --- title: MaterializeHG Theme -github: 'https://github.com/hugocarreira/jekyll-materializecss' -demo: 'https://hugocarreira.github.io/jekyll-materializecss' +github: https://github.com/hugocarreira/jekyll-materializecss +demo: https://hugocarreira.github.io/jekyll-materializecss author: Hugo Carreira ssg: - Jekyll cms: - No Cms date: 2016-05-31T04:15:04.000Z -github_branch: gh-pages description: a simple theme for Jekyll using Materializecss stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-materialize-jekyll.md b/content/theme/jekyll-materialize-jekyll.md index da0196019..80aca5268 100644 --- a/content/theme/jekyll-materialize-jekyll.md +++ b/content/theme/jekyll-materialize-jekyll.md @@ -1,14 +1,13 @@ --- title: Material blog -github: 'https://github.com/mumuxme/materialize-jekyll' -demo: 'https://mumuxme.github.io/materialize-jekyll/' +github: https://github.com/mumuxme/materialize-jekyll +demo: https://mumuxme.github.io/materialize-jekyll/ author: mumu ssg: - Jekyll cms: - No Cms date: 2015-11-01T14:16:55.000Z -github_branch: master description: Jekyll theme based on materialize. -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-materialize-theme.md b/content/theme/jekyll-materialize-theme.md index 3834f2d22..8678d6594 100644 --- a/content/theme/jekyll-materialize-theme.md +++ b/content/theme/jekyll-materialize-theme.md @@ -1,14 +1,15 @@ --- title: Jekyll Materialize -github: 'https://github.com/macrod68/jekyll-materialize-starter-template' -demo: 'https://jekyllmaterialize.panoramedia.it/' +github: https://github.com/macrod68/jekyll-materialize-starter-template +demo: https://jekyllmaterialize.panoramedia.it/ author: Marco Damiani ssg: - Jekyll cms: - No Cms date: 2017-08-09T19:17:13.000Z -github_branch: master description: Jekyll Materialize Starter Theme stale: true +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-materialize.md b/content/theme/jekyll-materialize.md index 955fc520f..86e8b58a6 100644 --- a/content/theme/jekyll-materialize.md +++ b/content/theme/jekyll-materialize.md @@ -1,16 +1,15 @@ --- title: Materialize -github: 'https://github.com/alexcarpenter/material-jekyll-theme' -demo: 'https://alexcarpenter.me/material-jekyll-theme/' +github: https://github.com/alexcarpenter/material-jekyll-theme +demo: https://alexcarpenter.me/material-jekyll-theme/ author: Alex Carpenter ssg: - Jekyll cms: - No Cms date: 2015-12-01T23:49:41.000Z -github_branch: master description: Material Design inspired Jekyll Theme stale: true -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-matjek-theme.md b/content/theme/jekyll-matjek-theme.md index 7d0455c43..931bd53fd 100644 --- a/content/theme/jekyll-matjek-theme.md +++ b/content/theme/jekyll-matjek-theme.md @@ -1,14 +1,13 @@ --- title: MatJek -github: 'https://github.com/ShawnTeoh/matjek' -demo: 'https://shawnteoh.github.io/matjek' +github: https://github.com/ShawnTeoh/matjek +demo: https://shawnteoh.github.io/matjek author: Shawn Teoh ssg: - Jekyll cms: - No Cms date: 2017-03-23T09:55:40.000Z -github_branch: gh-pages description: Material theme based on Materialize.css for jekyll sites stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-mdl.md b/content/theme/jekyll-mdl.md index d2a4e0f57..a1665af33 100644 --- a/content/theme/jekyll-mdl.md +++ b/content/theme/jekyll-mdl.md @@ -1,16 +1,15 @@ --- title: Jekyll Material Design Lite -github: 'https://github.com/gdg-managua/jekyll-mdl' -demo: 'https://www.gdgmanagua.org/jekyll-mdl' +github: https://github.com/gdg-managua/jekyll-mdl +demo: https://www.gdgmanagua.org/jekyll-mdl author: Google Developers Group Managua ssg: - Jekyll cms: - No Cms date: 2015-07-11T17:08:43.000Z -github_branch: master description: A Jekyll theme based in Google Material Design Lite library. stale: true -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-mdui-theme.md b/content/theme/jekyll-mdui-theme.md index 46d141698..e1539516f 100644 --- a/content/theme/jekyll-mdui-theme.md +++ b/content/theme/jekyll-mdui-theme.md @@ -1,14 +1,15 @@ --- title: jekyll-theme-mdui -github: 'https://github.com/KeJunMao/jekyll-theme-mdui' -demo: 'https://blog.kejun.space/' +github: https://github.com/KeJunMao/jekyll-theme-mdui +demo: https://blog.kejun.space/ author: KeJun ssg: - Jekyll cms: - No Cms date: 2017-05-24T03:00:15.000Z -github_branch: master -description: "\U0001F3A8A Jekyll theme based on MDUI" +description: 🎨A Jekyll theme based on MDUI stale: false +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-mediator.md b/content/theme/jekyll-mediator.md index 63935c265..6df5dc645 100644 --- a/content/theme/jekyll-mediator.md +++ b/content/theme/jekyll-mediator.md @@ -1,14 +1,13 @@ --- title: Mediator -github: 'https://github.com/dirkfabisch/mediator' -demo: 'https://blog.base68.com' +github: https://github.com/dirkfabisch/mediator +demo: https://blog.base68.com author: Dirk Fabisch ssg: - Jekyll cms: - No Cms date: 2014-08-30T22:43:16.000Z -github_branch: master description: a medium inspired jekyll theme stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-mekyll-theme.md b/content/theme/jekyll-mekyll-theme.md index 8be8887e1..25efee1ce 100644 --- a/content/theme/jekyll-mekyll-theme.md +++ b/content/theme/jekyll-mekyll-theme.md @@ -1,14 +1,13 @@ --- title: Mekyll -github: 'https://github.com/ifedyukin/Mekyll' -demo: 'https://ifedyukin.github.io/Mekyll' +github: https://github.com/ifedyukin/Mekyll +demo: https://ifedyukin.github.io/Mekyll author: Igor Fedyukin ssg: - Jekyll cms: - No Cms date: 2017-03-27T10:27:29.000Z -github_branch: master description: Medium style theme for Jekyll stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-memoirs.md b/content/theme/jekyll-memoirs.md index 253db5df2..868a32b8c 100644 --- a/content/theme/jekyll-memoirs.md +++ b/content/theme/jekyll-memoirs.md @@ -1,16 +1,15 @@ --- title: Memoirs -github: 'https://github.com/wowthemesnet/jekyll-theme-memoirs' -demo: 'https://wowthemesnet.github.io/jekyll-theme-memoirs' +github: https://github.com/wowthemesnet/jekyll-theme-memoirs +demo: https://wowthemesnet.github.io/jekyll-theme-memoirs author: wowthemesnet ssg: - Jekyll cms: - No Cms date: 2020-04-08T05:58:15.000Z -github_branch: master description: Memoirs - beautiful free Jekyll theme -stale: false +stale: true --- "Memoirs" is a free Bootstrap Jekyll theme for blogging, collections, resources, reviews websites. \ No newline at end of file diff --git a/content/theme/jekyll-metaphor.md b/content/theme/jekyll-metaphor.md index 702c7c062..a58c75288 100644 --- a/content/theme/jekyll-metaphor.md +++ b/content/theme/jekyll-metaphor.md @@ -1,16 +1,15 @@ --- title: Metaphor -github: 'https://github.com/prio101/metaphor-jekyll' -demo: 'https://mahabubislam.me' +github: https://github.com/prio101/metaphor-jekyll +demo: https://mahabubislam.me author: Mahabub I. ssg: - Jekyll cms: - No Cms date: 2015-02-05T11:38:10.000Z -github_branch: master description: metaphor jekyll src stale: true +disabled_reason: demo url not found disabled: true -disabled_reason: Demo URL not found --- \ No newline at end of file diff --git a/content/theme/jekyll-metro.md b/content/theme/jekyll-metro.md index 867ff0ca3..ff3c4227c 100644 --- a/content/theme/jekyll-metro.md +++ b/content/theme/jekyll-metro.md @@ -1,14 +1,15 @@ --- title: Jekyll Metro -github: 'https://github.com/olakara/JekyllMetro' -demo: 'https://abdelraoof.com' +github: https://github.com/olakara/JekyllMetro +demo: https://abdelraoof.com author: Abdel Raoof Olakara ssg: - Jekyll cms: - No Cms date: 2014-06-17T14:07:26.000Z -github_branch: master description: A Metro based theme for Jekyll stale: true +disabled: true +disabled_reason: error checking demo url --- \ No newline at end of file diff --git a/content/theme/jekyll-mickey.md b/content/theme/jekyll-mickey.md index a6bfdedaf..a212fab0e 100644 --- a/content/theme/jekyll-mickey.md +++ b/content/theme/jekyll-mickey.md @@ -1,14 +1,13 @@ --- title: Mickey -github: 'https://github.com/vincentchan/mickey' -demo: 'https://vincentchan.github.io/mickey/' +github: https://github.com/vincentchan/mickey +demo: https://vincentchan.github.io/mickey/ author: Vincent Chan ssg: - Jekyll cms: - No Cms date: 2015-07-24T04:55:37.000Z -github_branch: master description: 'A minimal one-column theme for Jekyll. ' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-midnight.md b/content/theme/jekyll-midnight.md index a88d31afe..96986e040 100644 --- a/content/theme/jekyll-midnight.md +++ b/content/theme/jekyll-midnight.md @@ -1,14 +1,13 @@ --- title: Midnight -github: 'https://github.com/mattgraham/midnight' -demo: 'https://madebygraham.com/midnight/' +github: https://github.com/mattgraham/midnight +demo: https://madebygraham.com/midnight/ author: Matt Graham ssg: - Jekyll cms: - No Cms date: 2012-04-04T23:05:14.000Z -github_branch: master description: 'GitHub Pages Theme: Midnight' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-millikyl.md b/content/theme/jekyll-millikyl.md index 6151237fd..59bf69192 100644 --- a/content/theme/jekyll-millikyl.md +++ b/content/theme/jekyll-millikyl.md @@ -1,14 +1,13 @@ --- title: Millikyl -github: 'https://github.com/fareez-ahamed/millikyl' -demo: 'https://fareez-ahamed.github.io/millikyl/' +github: https://github.com/fareez-ahamed/millikyl +demo: https://fareez-ahamed.github.io/millikyl/ author: Fareez Ahamed ssg: - Jekyll cms: - No Cms date: 2016-01-02T15:55:57.000Z -github_branch: master description: A Jekyll theme based on the super minimal Milligram CSS Framework stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-minimal-block.md b/content/theme/jekyll-minimal-block.md index ed0aed574..cd216c464 100644 --- a/content/theme/jekyll-minimal-block.md +++ b/content/theme/jekyll-minimal-block.md @@ -1,14 +1,13 @@ --- title: Minimal-block -github: 'https://github.com/drvy/minimal-block' -demo: 'https://blog.drvy.net/minimal-block/' +github: https://github.com/drvy/minimal-block +demo: https://blog.drvy.net/minimal-block/ author: Dragomir Yordanov ssg: - Jekyll cms: - No Cms date: 2015-01-02T19:29:31.000Z -github_branch: master -description: 'A minimalistic, responsive and friendly Jekyllrb theme.' +description: A minimalistic, responsive and friendly Jekyllrb theme. stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-minimal.md b/content/theme/jekyll-minimal.md index b2d053399..9b1c6c159 100644 --- a/content/theme/jekyll-minimal.md +++ b/content/theme/jekyll-minimal.md @@ -1,14 +1,15 @@ --- title: Minimal -github: 'https://github.com/orderedlist/minimal' -demo: 'https://orderedlist.com/minimal/' +github: https://github.com/orderedlist/minimal +demo: https://orderedlist.com/minimal/ author: Steve Smith ssg: - Jekyll cms: - No Cms date: 2012-04-05T13:10:55.000Z -github_branch: master description: A Theme for GitHub Pages -stale: true +stale: false +disabled: false +disabled_reason: '' --- \ No newline at end of file diff --git a/content/theme/jekyll-minimalist.md b/content/theme/jekyll-minimalist.md new file mode 100644 index 000000000..906a17bcd --- /dev/null +++ b/content/theme/jekyll-minimalist.md @@ -0,0 +1,26 @@ +--- +title: Minimalist +github: https://github.com/BDHU/minimalist +demo: https://www.bodunhu.com/minimalist/ +author: Bodun Hu +date: 2021-08-22T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +archetype: + - Portfolio + - Personal +description: Minimalist is a Jekyll theme inspired by the Minimal theme. +stale: false +--- + +# A simplistic theme with Jekyll + +This theme is modified based on the Minimal theme with multiple improvements. + +## Features + +* Dark/light mode +* Syntax highlighting +* Free to use and modified. diff --git a/content/theme/jekyll-modernist.md b/content/theme/jekyll-modernist.md index a866242cd..69918ec0c 100644 --- a/content/theme/jekyll-modernist.md +++ b/content/theme/jekyll-modernist.md @@ -1,14 +1,15 @@ --- title: Modernist -github: 'https://github.com/orderedlist/modernist' -demo: 'https://orderedlist.com/modernist/' +github: https://github.com/orderedlist/modernist +demo: https://orderedlist.com/modernist/ author: Steve Smith ssg: - Jekyll cms: - No Cms date: 2012-04-05T13:57:48.000Z -github_branch: master description: A Theme for GitHub Pages stale: true +disabled: false +disabled_reason: '' --- \ No newline at end of file diff --git a/content/theme/jekyll-monday-theme.md b/content/theme/jekyll-monday-theme.md index b4ec8c493..a80a4904e 100644 --- a/content/theme/jekyll-monday-theme.md +++ b/content/theme/jekyll-monday-theme.md @@ -1,14 +1,15 @@ --- title: Monday -github: 'https://github.com/artemsheludko/monday' -demo: 'https://artemsheludko.pw/monday' +github: https://github.com/artemsheludko/monday +demo: https://artemsheludko.pw/monday author: Artem Sheludko ssg: - Jekyll cms: - No Cms date: 2017-03-10T15:42:27.000Z -github_branch: master description: Monday is a minimal and 100% free blog template for Jekyll stale: true +disabled: false +disabled_reason: '' --- \ No newline at end of file diff --git a/content/theme/jekyll-monochrome.md b/content/theme/jekyll-monochrome.md index d6f7e9a0b..8ddca0bbf 100644 --- a/content/theme/jekyll-monochrome.md +++ b/content/theme/jekyll-monochrome.md @@ -1,14 +1,13 @@ --- title: Monochrome -github: 'https://github.com/dyutibarma/monochrome' -demo: 'https://dyutibarma.github.io/monochrome/' +github: https://github.com/dyutibarma/monochrome +demo: https://dyutibarma.github.io/monochrome/ author: Dyuti Barma ssg: - Jekyll cms: - No Cms date: 2017-02-20T03:58:54.000Z -github_branch: master description: 'Minimal, responsive, SEO ready blogging template built for Jekyll. Demo - ' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-moon.md b/content/theme/jekyll-moon.md index 002bb63ae..a06ac2882 100644 --- a/content/theme/jekyll-moon.md +++ b/content/theme/jekyll-moon.md @@ -1,14 +1,13 @@ --- title: Moon -github: 'https://github.com/TaylanTatli/Moon' -demo: 'https://taylantatli.github.io/Moon' +github: https://github.com/TaylanTatli/Moon +demo: https://taylantatli.github.io/Moon author: Taylan Tatlı ssg: - Jekyll cms: - No Cms date: 2016-04-13T21:13:26.000Z -github_branch: master -description: 'Moon is a minimal, one column jekyll theme.' +description: Moon is a minimal, one column jekyll theme. stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-moonwalk.md b/content/theme/jekyll-moonwalk.md index 20c354c73..82d148311 100644 --- a/content/theme/jekyll-moonwalk.md +++ b/content/theme/jekyll-moonwalk.md @@ -1,7 +1,7 @@ --- title: Moonwalk -github: 'https://github.com/abhinavs/moonwalk' -demo: 'https://abhinavs.github.io/moonwalk/' +github: https://github.com/abhinavs/moonwalk +demo: https://abhinavs.github.io/moonwalk/ author: Abhinav Saxena ssg: - Jekyll @@ -10,11 +10,9 @@ cms: archetype: - Blog - Portfolio - - Multi Purpose css: - SCSS date: 2020-12-04T00:00:00.000Z -github_branch: master description: >- Moonwalk is a lightweight, fast and elegant Jekyll theme with a clean dark mode; perfect for a portfolio and blog diff --git a/content/theme/jekyll-mr-brown.md b/content/theme/jekyll-mr-brown.md index e1ebb627d..b52637815 100644 --- a/content/theme/jekyll-mr-brown.md +++ b/content/theme/jekyll-mr-brown.md @@ -1,14 +1,15 @@ --- title: Mr.Brown -github: 'https://github.com/artemsheludko/mr-brown' -demo: 'https://artemsheludko.pw/mr-brown' +github: https://github.com/artemsheludko/mr-brown +demo: https://artemsheludko.pw/mr-brown author: Artem Sheludko ssg: - Jekyll cms: - No Cms date: 2017-02-23T17:03:57.000Z -github_branch: master description: Mr.Brown is a responsive Jekyll theme stale: true +disabled: false +disabled_reason: '' --- \ No newline at end of file diff --git a/content/theme/jekyll-mr-green.md b/content/theme/jekyll-mr-green.md new file mode 100644 index 000000000..2c45c6a1a --- /dev/null +++ b/content/theme/jekyll-mr-green.md @@ -0,0 +1,52 @@ +--- +title: Mr. Green +github: https://github.com/MrGreensWorkshop/MrGreen-JekyllTheme +demo: https://jekyll-theme-mrgreen-demo.mrgreensworkshop.com +author: Mr. Green's Workshop +date: 2022-03-31T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +css: + - Scss + - Bootstrap +archetype: + - Personal + - Business + - Blog +description: >- + Mr. Green is a multilingual theme generated with Jekyll and fully compatible + with GitHub Pages. +stale: false +--- + +Mr. Green is a multilingual theme generated with Jekyll and fully compatible with GitHub Pages. + +## Features + +- Multilingual web site +- Recommended language offer feature +- Auto Navigation Button adder with icon enable disable options +- Layouts for Home, About, Archives, Post-list, Links, Projects and more +- Color scheme switching options (Dark light) +- Auto image referrer (no need to add full path for images. Just add : in front of it.) +- image lazy loader, image viewer +- Cool Footer with creative commons licensing +- Movable Table of Contents modal box for Posts +- Post Share Options +- Post-listing by Category or Tags +- Comments for posts +- Selectable numbered pagination or scroll to load type +- Sitemap feature +- Search Engine Optimization (SEO) +- Analytics (Google Analytics) +- Cookie consent feature +- Site Search feature +- Code Compression for small footprint (HTML JS SCSS) +- Mobile App support +- Mobile device friendly (Tested on Android and IOS) +- Well organized folder structure for developers (Tested on Chrome, Safari, FireFox) + + + diff --git a/content/theme/jekyll-much-worse.md b/content/theme/jekyll-much-worse.md index 74d967ed6..c4eb78583 100644 --- a/content/theme/jekyll-much-worse.md +++ b/content/theme/jekyll-much-worse.md @@ -1,16 +1,15 @@ --- title: Much-Worse -github: 'https://github.com/gchauras/much-worse-jekyll-theme' -demo: 'https://gchauras.github.io/much-worse-jekyll-theme/' +github: https://github.com/gchauras/much-worse-jekyll-theme +demo: https://gchauras.github.io/much-worse-jekyll-theme/ author: Gaurav Chaurasia ssg: - Jekyll cms: - No Cms date: 2016-02-08T11:55:38.000Z -github_branch: gh-pages description: Template for jekyll base website and blog stale: true -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-mug.md b/content/theme/jekyll-mug.md index 7bb4e45a9..0965e4c04 100644 --- a/content/theme/jekyll-mug.md +++ b/content/theme/jekyll-mug.md @@ -1,14 +1,15 @@ --- title: mug -github: 'https://github.com/nandomoreirame/mug' -demo: 'https://nandomoreira.me/mug/' +github: https://github.com/nandomoreirame/mug +demo: https://nandomoreira.me/mug/ author: nandomoreira.me ssg: - Jekyll cms: - No Cms date: 2015-11-20T14:42:31.000Z -github_branch: master -description: "\U0001F48E mug Jekyll theme" +description: 💎 mug Jekyll theme stale: true +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-murmur.md b/content/theme/jekyll-murmur.md index 1a053d3be..3bb3924a6 100644 --- a/content/theme/jekyll-murmur.md +++ b/content/theme/jekyll-murmur.md @@ -1,14 +1,13 @@ --- title: Murmur -github: 'https://github.com/songroger/murmur' -demo: 'https://songroger.github.io/murmur' +github: https://github.com/songroger/murmur +demo: https://songroger.github.io/murmur author: Songroger ssg: - Jekyll cms: - No Cms date: 2016-11-03T06:46:39.000Z -github_branch: master -description: 'This is another simple theme for jekyll. https://songroger.win/murmur' -stale: false +description: This is another simple theme for jekyll. https://songroger.win/murmur +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-nagymaros.md b/content/theme/jekyll-nagymaros.md new file mode 100644 index 000000000..e6ad12fed --- /dev/null +++ b/content/theme/jekyll-nagymaros.md @@ -0,0 +1,30 @@ +--- +title: "Nagymaros" +github: https://github.com/piazzai/jekyll-nagymaros +demo: https://piazzai.github.io/jekyll-nagymaros/ +author: Michele Piazzai +date: 2023-10-11 +ssg: + - Jekyll +cms: + - No CMS +css: + - Bootstrap + - SCSS +archetype: + - Event +description: Jekyll theme for a conference website +--- + +# jekyll-nagymaros + +Nagymaros is a [Jekyll](https://jekyllrb.com) theme designed for conferences, workshops, meetings, and similar events. It has a simple and intuitive structure featuring four pages that provide key information about the event: + +- An index, meant for basic details and links to external sources, such as submission systems. +- A program, allowing for single or multi-day schedules and color-coded event categories. +- A map of conference locations, customizable with markers, areas, and tooltips. +- An alphabetical list of contributors, with optional roles and email addresses. + +The theme is based on [Bootstrap 5](https://getbootstrap.com/), which makes it mobile-first and fully responsive. Body text is set in Inter, a clean sans-serif typeface that guarantees readability at small screen sizes. A slab-serif typeface, Zilla Slab, is used instead in display headings. The layout is adapted from [jekyll-conference-theme](https://github.com/DigitaleGesellschaft/jekyll-theme-conference) and remains quite similar to it, but compared to this theme, Nagymaros aims to be simpler and easier to customize. + +See the [demo](https://jekyll-nagymaros.netlify.app) to find out what the theme looks like. diff --git a/content/theme/jekyll-nandomoreira.me.md b/content/theme/jekyll-nandomoreira.me.md index b8dd582e0..35bb1bd5b 100644 --- a/content/theme/jekyll-nandomoreira.me.md +++ b/content/theme/jekyll-nandomoreira.me.md @@ -1,14 +1,15 @@ --- title: nandomoreira.me -github: 'https://github.com/nandomoreirame/nandomoreira-jekyll-theme' -demo: 'https://nandomoreira.me/nandomoreira-jekyll-theme/' +github: https://github.com/nandomoreirame/nandomoreira-jekyll-theme +demo: https://nandomoreira.me/nandomoreira-jekyll-theme/ author: nandomoreira.me ssg: - Jekyll cms: - No Cms date: 2015-11-12T18:06:34.000Z -github_branch: master -description: "\U0001F48E My old website in Jekyll and Gulpjs" +description: 💎 My old website in Jekyll and Gulpjs stale: true +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-nangka.md b/content/theme/jekyll-nangka.md index 207fcff79..128a126ac 100644 --- a/content/theme/jekyll-nangka.md +++ b/content/theme/jekyll-nangka.md @@ -1,14 +1,13 @@ --- title: Nangka Theme -github: 'https://github.com/rmsubekti/nangka' -demo: 'https://rmsubekti.github.io/nangka' +github: https://github.com/rmsubekti/nangka +demo: https://rmsubekti.github.io/nangka author: rmsubekti ssg: - Jekyll cms: - No Cms date: 2018-12-29T17:37:54.000Z -github_branch: gh-pages description: 'nangka-jekyll-theme #rmsu' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-naringu.md b/content/theme/jekyll-naringu.md index 0c8a86ed7..c95016ce4 100644 --- a/content/theme/jekyll-naringu.md +++ b/content/theme/jekyll-naringu.md @@ -1,16 +1,15 @@ --- title: Naringu -github: 'https://github.com/ariestiyansyah/naringu' -demo: 'https://naringu.oonlab.com' +github: https://github.com/ariestiyansyah/naringu +demo: https://naringu.oonlab.com author: Rizky Ariestiyansyah ssg: - Jekyll cms: - No Cms date: 2015-02-20T17:02:41.000Z -github_branch: master description: Naringu is jekyll dark theme stale: true +disabled_reason: demo url not found disabled: true -disabled_reason: Demo URL not found --- \ No newline at end of file diff --git a/content/theme/jekyll-neo-hpstr-theme.md b/content/theme/jekyll-neo-hpstr-theme.md index 6fe945739..3026df123 100644 --- a/content/theme/jekyll-neo-hpstr-theme.md +++ b/content/theme/jekyll-neo-hpstr-theme.md @@ -1,14 +1,13 @@ --- title: Neo-HPSTR -github: 'https://github.com/aron-bordin/neo-hpstr-jekyll-theme' -demo: 'https://aron-bordin.github.io/neo-hpstr-jekyll-theme/' +github: https://github.com/aron-bordin/neo-hpstr-jekyll-theme +demo: https://aron-bordin.github.io/neo-hpstr-jekyll-theme/ author: Aron Bordin ssg: - Jekyll cms: - No Cms date: 2015-09-05T00:02:58.000Z -github_branch: master description: ' A Jekyll blog theme' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-neumorphism.md b/content/theme/jekyll-neumorphism.md index 6aa7b9491..05678953c 100644 --- a/content/theme/jekyll-neumorphism.md +++ b/content/theme/jekyll-neumorphism.md @@ -1,10 +1,9 @@ --- title: Neumorphism -github: 'https://github.com/longpdo/neumorphism' -demo: 'https://longpdo.github.io/neumorphism/' +github: https://github.com/longpdo/neumorphism +demo: https://longpdo.github.io/neumorphism/ author: Long Do date: 2020-04-22T00:00:00.000Z -github_branch: master ssg: - Jekyll cms: diff --git a/content/theme/jekyll-new-age.md b/content/theme/jekyll-new-age.md index abaf71041..42a8d6d8a 100644 --- a/content/theme/jekyll-new-age.md +++ b/content/theme/jekyll-new-age.md @@ -1,14 +1,13 @@ --- title: New Age -github: 'https://github.com/jekynewage/jekynewage.github.io' -demo: 'https://jekynewage.github.io' +github: https://github.com/jekynewage/jekynewage.github.io +demo: https://jekynewage.github.io author: Antonio Trento ssg: - Jekyll cms: - No Cms date: 2016-10-25T05:15:39.000Z -github_branch: master description: Start Boostrap New Age Theme for Jekyll -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-next-theme.md b/content/theme/jekyll-next-theme.md index e2372d1a5..86dae226a 100644 --- a/content/theme/jekyll-next-theme.md +++ b/content/theme/jekyll-next-theme.md @@ -1,14 +1,13 @@ --- title: NexT -github: 'https://github.com/Simpleyyt/jekyll-theme-next' -demo: 'https://simpleyyt.github.io/jekyll-theme-next/' +github: https://github.com/Simpleyyt/jekyll-theme-next +demo: https://simpleyyt.github.io/jekyll-theme-next/ author: Yitao Yao ssg: - Jekyll cms: - No Cms date: 2017-07-21T08:44:59.000Z -github_branch: master description: Elegant theme for Jekyll. stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-nice-blog.md b/content/theme/jekyll-nice-blog.md index 71af64f58..bb19b280e 100644 --- a/content/theme/jekyll-nice-blog.md +++ b/content/theme/jekyll-nice-blog.md @@ -1,16 +1,15 @@ --- title: Nice Blog -github: 'https://github.com/itisbenjamin/Nice_Blog' -demo: 'https://itisbenjamin.github.io/Nice_Blog' +github: https://github.com/itisbenjamin/Nice_Blog +demo: https://itisbenjamin.github.io/Nice_Blog author: Benjamin ssg: - Jekyll cms: - No Cms date: 2016-03-29T12:52:40.000Z -github_branch: master description: A Simple Jakyll Blog Theme. stale: true -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-noita.md b/content/theme/jekyll-noita.md index 9b5afcade..1af6b7081 100644 --- a/content/theme/jekyll-noita.md +++ b/content/theme/jekyll-noita.md @@ -1,14 +1,13 @@ --- title: Noita -github: 'https://github.com/penibelst/jekyll-noita' -demo: 'https://noita.penibelst.de/' +github: https://github.com/penibelst/jekyll-noita +demo: https://noita.penibelst.de/ author: Anatol Broder ssg: - Jekyll cms: - No Cms date: 2014-04-16T20:52:20.000Z -github_branch: gh-pages description: Noita is a Jekyll theme built with Foundation stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-now.md b/content/theme/jekyll-now.md index a42ef0108..f8cb0c318 100644 --- a/content/theme/jekyll-now.md +++ b/content/theme/jekyll-now.md @@ -1,14 +1,13 @@ --- title: Jekyll Now -github: 'https://github.com/barryclark/jekyll-now' -demo: 'https://www.jekyllnow.com/' +github: https://github.com/barryclark/jekyll-now +demo: https://www.jekyllnow.com/ author: Barry Clark ssg: - Jekyll cms: - No Cms date: 2014-02-07T00:14:55.000Z -github_branch: master -description: 'Build a Jekyll blog in minutes, without touching the command line.' +description: Build a Jekyll blog in minutes, without touching the command line. stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-one-page-wonder.md b/content/theme/jekyll-one-page-wonder.md index 625ecbfe3..af15b476c 100644 --- a/content/theme/jekyll-one-page-wonder.md +++ b/content/theme/jekyll-one-page-wonder.md @@ -1,14 +1,13 @@ --- title: One Page Wonder -github: 'https://github.com/mushishi78/one-page-wonder-jekyll' -demo: 'https://mushishi78.github.io/one-page-wonder-jekyll' +github: https://github.com/mushishi78/one-page-wonder-jekyll +demo: https://mushishi78.github.io/one-page-wonder-jekyll author: Max White ssg: - Jekyll cms: - No Cms date: 2015-04-22T13:12:24.000Z -github_branch: gh-pages description: Jekyll port of One Page Wonder stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-onepage.md b/content/theme/jekyll-onepage.md index f3da0f0b7..27b95f60e 100644 --- a/content/theme/jekyll-onepage.md +++ b/content/theme/jekyll-onepage.md @@ -1,16 +1,15 @@ --- title: Onepage -github: 'https://github.com/lukas-h/onepage' -demo: 'https://himsel.me' +github: https://github.com/lukas-h/onepage +demo: https://himsel.me author: Lukas Himsel ssg: - Jekyll cms: - No Cms date: 2016-11-06T15:13:02.000Z -github_branch: master description: uncomplicated single-page jekyll blog theme -stale: false +stale: true +disabled_reason: demo url not found disabled: true -disabled_reason: Demo URL not found --- \ No newline at end of file diff --git a/content/theme/jekyll-online-cv.md b/content/theme/jekyll-online-cv.md index 3650972d3..fc671ea9f 100644 --- a/content/theme/jekyll-online-cv.md +++ b/content/theme/jekyll-online-cv.md @@ -1,14 +1,13 @@ --- title: Online CV -github: 'https://github.com/sharu725/online-cv' -demo: 'https://webjeda.com/online-cv/' +github: https://github.com/sharu725/online-cv +demo: https://webjeda.com/online-cv/ author: webjeda ssg: - Jekyll cms: - No Cms date: 2016-07-29T04:35:27.000Z -github_branch: master description: A minimal Jekyll Theme to host your resume (CV) stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-opentheme.md b/content/theme/jekyll-opentheme.md index a1dd5f4da..776e31202 100644 --- a/content/theme/jekyll-opentheme.md +++ b/content/theme/jekyll-opentheme.md @@ -1,16 +1,17 @@ --- title: OpenTheme -github: 'https://github.com/open-start/opentheme' -demo: 'https://opentheme.co/' +github: https://github.com/open-start/opentheme +demo: https://opentheme.co/ author: Manav Sehgal ssg: - Jekyll cms: - No Cms date: 2014-11-19T12:03:04.000Z -github_branch: master description: >- Powerful new theme featuring Semantic UI for speedily creating amazing websites and mobile-hybrid apps on GitHub Pages. stale: true +disabled: true +disabled_reason: demo url connection refused --- \ No newline at end of file diff --git a/content/theme/jekyll-otter-pop.md b/content/theme/jekyll-otter-pop.md index 7bcfa2648..819a8dab0 100644 --- a/content/theme/jekyll-otter-pop.md +++ b/content/theme/jekyll-otter-pop.md @@ -1,14 +1,15 @@ --- title: Otter Pop -github: 'https://github.com/tybenz/otter-pop/' -demo: 'https://tybenz.com/otter-pop' +github: https://github.com/tybenz/otter-pop/ +demo: https://tybenz.com/otter-pop author: Tyler Benziger ssg: - Jekyll cms: - No Cms date: 2014-05-10T16:43:23.000Z -github_branch: gh-pages description: The world's greatest jekyll theme stale: true +disabled: false +disabled_reason: '' --- \ No newline at end of file diff --git a/content/theme/jekyll-panelcv-theme.md b/content/theme/jekyll-panelcv-theme.md index e06e3e484..d7b5856f3 100644 --- a/content/theme/jekyll-panelcv-theme.md +++ b/content/theme/jekyll-panelcv-theme.md @@ -1,14 +1,13 @@ --- title: Panel CV -github: 'https://github.com/jekyller/PanelCV' -demo: 'https://jekyller.github.io/PanelCV/' +github: https://github.com/jekyller/PanelCV +demo: https://jekyller.github.io/PanelCV/ author: Locky ssg: - Jekyll cms: - No Cms date: 2017-07-30T09:09:24.000Z -github_branch: master -description: 'Panel CV for designers (or engineers) :)' +description: Panel CV for designers (or engineers) :) stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-panelcvagain-theme.md b/content/theme/jekyll-panelcvagain-theme.md index c546cdcc4..34d18a45a 100644 --- a/content/theme/jekyll-panelcvagain-theme.md +++ b/content/theme/jekyll-panelcvagain-theme.md @@ -1,14 +1,13 @@ --- title: Panel CV - V2 -github: 'https://github.com/jekyller/online-cv' -demo: 'https://jekyller.github.io/online-cv/' +github: https://github.com/jekyller/online-cv +demo: https://jekyller.github.io/online-cv/ author: Locky ssg: - Jekyll cms: - No Cms date: 2017-08-25T08:50:55.000Z -github_branch: master description: 'Panel CV: style win8 for designer (or engineer)' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-paper.md b/content/theme/jekyll-paper.md index fd65006dc..9da80bb93 100644 --- a/content/theme/jekyll-paper.md +++ b/content/theme/jekyll-paper.md @@ -1,14 +1,13 @@ --- title: Paper -github: 'https://github.com/dbtek/paper' -demo: 'https://dbtek.github.io/paper-demo/' +github: https://github.com/dbtek/paper +demo: https://dbtek.github.io/paper-demo/ author: Ismail Demirbilek ssg: - Jekyll cms: - No Cms date: 2015-09-07T13:37:31.000Z -github_branch: master description: A gentle theme for Jekyll utilising material design. stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-papyrus-theme.md b/content/theme/jekyll-papyrus-theme.md index a7ba2fe85..ca7699354 100644 --- a/content/theme/jekyll-papyrus-theme.md +++ b/content/theme/jekyll-papyrus-theme.md @@ -1,14 +1,15 @@ --- title: Papyrus -github: 'https://github.com/hugoferreira/papyrus-theme' -demo: 'https://hugosereno.eu' +github: https://github.com/hugoferreira/papyrus-theme +demo: https://hugosereno.eu author: Hugo Sereno Ferreira ssg: - Jekyll cms: - No Cms date: 2016-11-05T22:24:58.000Z -github_branch: master description: Papyrus Jekyll Theme stale: true +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-particle.md b/content/theme/jekyll-particle.md index 11f3e11fe..ce87dda79 100644 --- a/content/theme/jekyll-particle.md +++ b/content/theme/jekyll-particle.md @@ -1,14 +1,13 @@ --- title: Particle -github: 'https://github.com/nrandecker/particle' -demo: 'https://nrandecker.github.io/particle' +github: https://github.com/nrandecker/particle +demo: https://nrandecker.github.io/particle author: Nathan Randecker ssg: - Jekyll cms: - No Cms date: 2017-01-17T05:20:07.000Z -github_branch: master description: 'A simple portfolio Jekyll theme:' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-personal.md b/content/theme/jekyll-personal.md index 0695fc83c..39e753416 100644 --- a/content/theme/jekyll-personal.md +++ b/content/theme/jekyll-personal.md @@ -1,14 +1,13 @@ --- title: Personal -github: 'https://github.com/le4ker/personal-jekyll-theme' -demo: 'https://le4ker.github.io/personal-jekyll-theme/' +github: https://github.com/le4ker/personal-jekyll-theme +demo: https://le4ker.github.io/personal-jekyll-theme/ author: Panos Sakkos ssg: - Jekyll cms: - No Cms date: 2015-06-27T16:56:59.000Z -github_branch: master description: ' :bowtie: { Personal } Jekyll theme' -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-phantom.md b/content/theme/jekyll-phantom.md index c181c318c..3d1fed395 100644 --- a/content/theme/jekyll-phantom.md +++ b/content/theme/jekyll-phantom.md @@ -1,14 +1,13 @@ --- title: Phantom -github: 'https://github.com/jamigibbs/phantom' -demo: 'https://jamigibbs.com' +github: https://github.com/jamigibbs/phantom +demo: https://jamigibbs.com author: Jami Gibbs ssg: - Jekyll cms: - No Cms date: 2016-02-21T18:15:37.000Z -github_branch: master -description: 'A minimalist, responsive portfolio theme for Jekyll with Bootstrap' +description: A minimalist, responsive portfolio theme for Jekyll with Bootstrap stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-photorama.md b/content/theme/jekyll-photorama.md index e31a5a2ef..ac94fef00 100644 --- a/content/theme/jekyll-photorama.md +++ b/content/theme/jekyll-photorama.md @@ -1,14 +1,13 @@ --- title: PHOTORAMA -github: 'https://github.com/sunbliss/photorama' -demo: 'https://sunbliss.github.io/photorama' +github: https://github.com/sunbliss/photorama +demo: https://sunbliss.github.io/photorama author: sunbliss ssg: - Jekyll cms: - No Cms date: 2016-03-27T21:21:59.000Z -github_branch: gh-pages description: '''PHOTORAMA'' template for Jekyll' -stale: true +stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-pink-theme.md b/content/theme/jekyll-pink-theme.md index c421f2845..a49770583 100644 --- a/content/theme/jekyll-pink-theme.md +++ b/content/theme/jekyll-pink-theme.md @@ -1,15 +1,14 @@ --- title: pink-theme -github: 'https://github.com/Adagio-cantabile/Adagio-cantabile.github.io' -demo: 'https://adagio-cantabile.github.io/' +github: https://github.com/Adagio-cantabile/Adagio-cantabile.github.io +demo: https://adagio-cantabile.github.io/ author: Yiwen Gong ssg: - Jekyll cms: - No Cms date: 2016-04-14T14:34:34.000Z -github_branch: master stale: true +disabled_reason: demo url not found disabled: true -disabled_reason: Demo URL not found --- \ No newline at end of file diff --git a/content/theme/jekyll-pithy.md b/content/theme/jekyll-pithy.md index c4b3a188f..bcb81331a 100644 --- a/content/theme/jekyll-pithy.md +++ b/content/theme/jekyll-pithy.md @@ -1,14 +1,15 @@ --- title: Pithy -github: 'https://github.com/smallmuou/Jekyll-Pithy' -demo: 'https://wenva.github.io/' +github: https://github.com/smallmuou/Jekyll-Pithy +demo: https://wenva.github.io/ author: Pawpaw ssg: - Jekyll cms: - No Cms date: 2015-04-10T01:45:07.000Z -github_branch: master description: Pithy Jekyll Theme stale: true +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-pixyll.md b/content/theme/jekyll-pixyll.md index 1cfec7137..380cff763 100644 --- a/content/theme/jekyll-pixyll.md +++ b/content/theme/jekyll-pixyll.md @@ -1,16 +1,15 @@ --- title: Jekyll Pixyll -github: 'https://github.com/johnotander/pixyll' -demo: 'https://pixyll.com' +github: https://github.com/johnotander/pixyll +demo: https://pixyll.com author: John Otander ssg: - Jekyll cms: - No Cms date: 2014-01-04T22:52:55.000Z -github_branch: master -description: 'A simple, beautiful Jekyll theme that''s mobile first' +description: A simple, beautiful Jekyll theme that's mobile first stale: false -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-plain-webcomic-theme.md b/content/theme/jekyll-plain-webcomic-theme.md index 49d238170..5f6634394 100644 --- a/content/theme/jekyll-plain-webcomic-theme.md +++ b/content/theme/jekyll-plain-webcomic-theme.md @@ -1,14 +1,13 @@ --- title: Plain Webcomic -github: 'https://github.com/peahatlanding/Plain-Webcomic' -demo: 'https://peahatlanding.github.io/Plain-Webcomic/' +github: https://github.com/peahatlanding/Plain-Webcomic +demo: https://peahatlanding.github.io/Plain-Webcomic/ author: Nico Bocalan ssg: - Jekyll cms: - No Cms date: 2017-07-12T03:19:34.000Z -github_branch: master description: A simple webcomic theme for Jekyll. Built using Bootstrap. stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-planetjekyll-starter.md b/content/theme/jekyll-planetjekyll-starter.md index 661961201..048925d57 100644 --- a/content/theme/jekyll-planetjekyll-starter.md +++ b/content/theme/jekyll-planetjekyll-starter.md @@ -1,16 +1,15 @@ --- title: Planet Jekyll's Starter (Minimal) -github: 'https://github.com/planetjekyll/jekyll-starter-theme' -demo: 'https://planetjekyll.github.io/jekyll-starter-theme/' +github: https://github.com/planetjekyll/jekyll-starter-theme +demo: https://planetjekyll.github.io/jekyll-starter-theme/ author: Gerald Bauer ssg: - Jekyll cms: - No Cms date: 2015-08-08T14:36:05.000Z -github_branch: master description: jekyll starter theme - minimial stale: true -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-podcaster.md b/content/theme/jekyll-podcaster.md index 482007959..d8ae87d04 100644 --- a/content/theme/jekyll-podcaster.md +++ b/content/theme/jekyll-podcaster.md @@ -1,10 +1,9 @@ --- title: jekyll Podcaster -github: 'https://github.com/PandaSekh/Jekyll-Podcaster' -demo: 'https://jekyll-podcaster.netlify.app/' +github: https://github.com/PandaSekh/Jekyll-Podcaster +demo: https://jekyll-podcaster.netlify.app/ author: Alessio Franceschi date: 2020-07-20T00:00:00.000Z -github_branch: master ssg: - Jekyll cms: diff --git a/content/theme/jekyll-polar-bear-theme.md b/content/theme/jekyll-polar-bear-theme.md index 187ffaf93..856bf3e92 100644 --- a/content/theme/jekyll-polar-bear-theme.md +++ b/content/theme/jekyll-polar-bear-theme.md @@ -1,16 +1,15 @@ --- title: Polar Bear -github: 'https://github.com/diezcami/polar-bear-theme/' -demo: 'https://diezcami.github.io/polar-bear-theme' +github: https://github.com/diezcami/polar-bear-theme/ +demo: https://diezcami.github.io/polar-bear-theme author: Camille Diez ssg: - Jekyll cms: - No Cms date: 2015-05-25T11:00:22.000Z -github_branch: master description: ':snowflake: A lightweight theme for Jekyll' stale: true -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-poole.md b/content/theme/jekyll-poole.md index 188e8c49d..447a8aa7d 100644 --- a/content/theme/jekyll-poole.md +++ b/content/theme/jekyll-poole.md @@ -1,14 +1,13 @@ --- title: Poole -github: 'https://github.com/poole/poole' -demo: 'https://demo.getpoole.com/' +github: https://github.com/poole/poole +demo: https://demo.getpoole.com/ author: Mark Otto ssg: - Jekyll cms: - No Cms date: 2013-12-29T23:39:18.000Z -github_branch: master description: The Jekyll Butler. A no frills responsive Jekyll blog theme. -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-popuptweets-theme.md b/content/theme/jekyll-popuptweets-theme.md index 1fd0155ba..703c8bd31 100644 --- a/content/theme/jekyll-popuptweets-theme.md +++ b/content/theme/jekyll-popuptweets-theme.md @@ -1,14 +1,13 @@ --- title: Popup Tweets -github: 'https://github.com/junlulocky/PopupTweets' -demo: 'https://jekyller.github.io/PopupTweets/' +github: https://github.com/junlulocky/PopupTweets +demo: https://jekyller.github.io/PopupTweets/ author: Jun Lu ssg: - Jekyll cms: - No Cms date: 2017-07-16T02:24:14.000Z -github_branch: gh-pages description: >- Popup tweets plugin for your personal website (Linkedin, facebook message box liked features) diff --git a/content/theme/jekyll-portfolio-theme.md b/content/theme/jekyll-portfolio-theme.md index 7bed232f5..bac807a0a 100644 --- a/content/theme/jekyll-portfolio-theme.md +++ b/content/theme/jekyll-portfolio-theme.md @@ -1,14 +1,13 @@ --- title: Portfolio Jekyll Theme -github: 'https://github.com/LeNPaul/portfolio-jekyll-theme' -demo: 'https://lenpaul.github.io/portfolio-jekyll-theme/' +github: https://github.com/LeNPaul/portfolio-jekyll-theme +demo: https://lenpaul.github.io/portfolio-jekyll-theme/ author: Paul Le ssg: - Jekyll cms: - No Cms date: 2016-09-05T21:02:25.000Z -github_branch: gh-pages description: Personal portfolio theme powered by Jekyll and GitHub Pages -stale: true +stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-princess-diaries.md b/content/theme/jekyll-princess-diaries.md index d050fa1d4..fa3dde9ea 100644 --- a/content/theme/jekyll-princess-diaries.md +++ b/content/theme/jekyll-princess-diaries.md @@ -1,14 +1,15 @@ --- title: Princess Diaries -github: 'https://github.com/laixintao/Princess-Diaries' -demo: 'https://laixintao.github.io/Princess-Diaries.html' +github: https://github.com/laixintao/Princess-Diaries +demo: https://laixintao.github.io/Princess-Diaries.html author: laixintao ssg: - Jekyll cms: - No Cms date: 2015-11-21T15:15:37.000Z -github_branch: master -description: "\U0001F478 A jekyll theme." +description: 👸 A jekyll theme. stale: true +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-professional-resume.md b/content/theme/jekyll-professional-resume.md new file mode 100644 index 000000000..9e3e57f2a --- /dev/null +++ b/content/theme/jekyll-professional-resume.md @@ -0,0 +1,18 @@ +--- +title: "Jekyll-Professional-Resume" +github: https://github.com/byanko55/jekyll-professional-resume +demo: https://cvlian.github.io/ +author: Yankos +date: 2024-04-02 +ssg: + - Jekyll +cms: + - No CMS +css: + - scss +archetype: + - Single-page + - Personal + - Portfolio +description: A simple and modern resume template, best fit for either Academic CV (Curriculum Vitae) or Engineer Portfolio. +--- \ No newline at end of file diff --git a/content/theme/jekyll-progress-for-jekyll.md b/content/theme/jekyll-progress-for-jekyll.md index 411e80c09..19804f949 100644 --- a/content/theme/jekyll-progress-for-jekyll.md +++ b/content/theme/jekyll-progress-for-jekyll.md @@ -1,14 +1,13 @@ --- title: Progress -github: 'https://github.com/alexanderussell/progress-for-jekyll' -demo: 'https://alexanderussell.github.io/progress-for-jekyll' +github: https://github.com/alexanderussell/progress-for-jekyll +demo: https://alexanderussell.github.io/progress-for-jekyll author: Alexander Russell ssg: - Jekyll cms: - No Cms date: 2016-06-10T18:34:46.000Z -github_branch: master description: A long-form blogging theme for Jekyll. stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-project-gaia.md b/content/theme/jekyll-project-gaia.md index 0a99d4988..999bc06b2 100644 --- a/content/theme/jekyll-project-gaia.md +++ b/content/theme/jekyll-project-gaia.md @@ -1,14 +1,15 @@ --- title: Project Gaia -github: 'https://github.com/szhielelp/JekyllTheme-ProjectGaia' -demo: 'https://szhielelp.github.io/JekyllTheme-ProjectGaia/' +github: https://github.com/szhielelp/JekyllTheme-ProjectGaia +demo: https://szhielelp.github.io/JekyllTheme-ProjectGaia/ author: szhshp ssg: - Jekyll cms: - No Cms date: 2017-01-09T07:22:31.000Z -github_branch: master description: 'Jekyll Theme Project Gaia. V2 Beta Released !! Check it out -> ' stale: false +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-project-pages.md b/content/theme/jekyll-project-pages.md index c080b9638..59917f61a 100644 --- a/content/theme/jekyll-project-pages.md +++ b/content/theme/jekyll-project-pages.md @@ -1,14 +1,13 @@ --- title: project-pages -github: 'https://github.com/projectpages/project-pages' -demo: 'https://projectpages.github.io/project-pages/' +github: https://github.com/projectpages/project-pages +demo: https://projectpages.github.io/project-pages/ author: Ahmet Cecen ssg: - Jekyll cms: - No Cms date: 2015-02-03T18:36:21.000Z -github_branch: gh-pages description: >- Fork this repo for a quick start. If 'Project Timeline' or 'License' appeared on your nav bar, Look Below! diff --git a/content/theme/jekyll-purelog.md b/content/theme/jekyll-purelog.md new file mode 100644 index 000000000..44401e53b --- /dev/null +++ b/content/theme/jekyll-purelog.md @@ -0,0 +1,39 @@ +--- +title: Purelog +github: https://github.com/brennanbrown/purelog +demo: https://purelog.netlify.app +author: brennanbrown +date: 2021-05-04T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +archetype: + - Blog +description: >- + A responsive sidebar Jekyll theme using the Pure.css framework, designed for + writers and bloggers of all kinds. +stale: false +--- + +# Purelog Theme for Jekyll + +**Purelog** is a responsive, sidebar theme for the popular JAMstack generator Jekyll that only uses the minimal [**Pure.css** framework](https://github.com/pure-css/pure) (hence the name!), while still following the best practices possible for accessibility and search-engine optimization. + +I created this after finishing [Watery](https://github.com/brennanbrown/watery) (which this theme is built off of), as a way to add more functionality and design while still remaining as lightweight as possible. + +This project is aimed towards those looking for an interesting theme for Jekyll that has features that aren't found commonly elsewhere, specifically having separate sections dedicated towards: blogging, note-taking, and daily journal entries. + +## Features + +Here are a few interesting features of this Jekyll theme: + +- A fully customizable and empty `_BLANK_config.yml` to make getting up-and-running easy. +- A speedy, on-site search function using [Simply Jekyll Search](https://github.com/christian-fei/Simple-Jekyll-Search). +- Custom collections for different types of material (note-taking, journal writing, etc.) +- An auto-generating archive page that displays all entries from _all_ collections. +- Auto-generating tags and categories pages. +- Having a `_pages` collection for easier organization. +- An author bio at the end of each post. (Located in `_inclues/author.html`) +- Full Rouge support for syntax highlighting. (Currently using `base16.solarized.light`) +- Auto-generated RSS feed, sitemap, accessibility features, and search-engine optimization. diff --git a/content/theme/jekyll-purpletual-blog-theme.md b/content/theme/jekyll-purpletual-blog-theme.md deleted file mode 100644 index 2079cb456..000000000 --- a/content/theme/jekyll-purpletual-blog-theme.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -title: Purpletual Blog Theme -github: 'https://github.com/chrisrhymes/purpletual' -demo: 'https://purpletual.netlify.app' -author: chrisrhymes -date: 2019-09-10T00:00:00.000Z -github_branch: master -ssg: - - Jekyll -cms: - - No CMS -css: - - Tailwind -archetype: - - Blog -description: 'A Jekyll Blog Theme built with TailwindCSS, with lots of added purple.' -disabled: true -disabled_reason: Not Found ---- diff --git a/content/theme/jekyll-ramme.md b/content/theme/jekyll-ramme.md index cbd080532..ee6548adb 100644 --- a/content/theme/jekyll-ramme.md +++ b/content/theme/jekyll-ramme.md @@ -1,14 +1,13 @@ --- title: Ramme -github: 'https://github.com/TaylanTatli/Ramme' -demo: 'https://taylantatli.github.io/Ramme' +github: https://github.com/TaylanTatli/Ramme +demo: https://taylantatli.github.io/Ramme author: Taylan Tatlı ssg: - Jekyll cms: - No Cms date: 2016-03-21T08:53:35.000Z -github_branch: master description: Just a simple Jekyll theme stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-redcup.md b/content/theme/jekyll-redcup.md index 83808ec61..1b7dffd94 100644 --- a/content/theme/jekyll-redcup.md +++ b/content/theme/jekyll-redcup.md @@ -1,16 +1,15 @@ --- title: redcup -github: 'https://github.com/nadjetey/redcup' -demo: 'https://nadjetey.github.io/redcup/' +github: https://github.com/nadjetey/redcup +demo: https://nadjetey.github.io/redcup/ author: Nii Adjetey Sowah ssg: - Jekyll cms: - No Cms date: 2014-01-26T21:40:33.000Z -github_branch: master description: This is a Jekyll Theme stale: true -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-researcher.md b/content/theme/jekyll-researcher.md index b3e086622..ba31a4818 100644 --- a/content/theme/jekyll-researcher.md +++ b/content/theme/jekyll-researcher.md @@ -1,14 +1,13 @@ --- title: Researcher -github: 'https://github.com/ankitsultana/researcher' -demo: 'https://ankitsultana.com/researcher' +github: https://github.com/ankitsultana/researcher +demo: https://ankitsultana.com/researcher author: Ankit Sultana ssg: - Jekyll cms: - No Cms date: 2016-08-29T16:23:36.000Z -github_branch: gh-pages description: A jekyll based resume template stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-resume.md b/content/theme/jekyll-resume.md index f6d85f285..55ff7c809 100644 --- a/content/theme/jekyll-resume.md +++ b/content/theme/jekyll-resume.md @@ -1,16 +1,15 @@ --- title: jekyll-resume -github: 'https://github.com/mattcouchman/jekyll-resume' -demo: 'https://mattcouchman.co.uk/jekyll-resume' +github: https://github.com/mattcouchman/jekyll-resume +demo: https://mattcouchman.co.uk/jekyll-resume author: Matt Couchman ssg: - Jekyll cms: - No Cms date: 2016-05-31T20:26:59.000Z -github_branch: master description: A simple resume theme for Jekyll stale: true +disabled_reason: demo url not found disabled: true -disabled_reason: Demo URL not found --- \ No newline at end of file diff --git a/content/theme/jekyll-resumecard.md b/content/theme/jekyll-resumecard.md index 5ce90f2c1..e726468f0 100644 --- a/content/theme/jekyll-resumecard.md +++ b/content/theme/jekyll-resumecard.md @@ -1,14 +1,13 @@ --- title: resumecard -github: 'https://github.com/ddbullfrog/resumecard' -demo: 'https://ddbullfrog.github.io/resumecard' +github: https://github.com/ddbullfrog/resumecard +demo: https://ddbullfrog.github.io/resumecard author: Dong Liang ssg: - Jekyll cms: - No Cms date: 2015-06-01T22:00:02.000Z -github_branch: gh-pages description: You can see the live demo stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-resumecards.md b/content/theme/jekyll-resumecards.md index 63ee261e2..2e1c0d7eb 100644 --- a/content/theme/jekyll-resumecards.md +++ b/content/theme/jekyll-resumecards.md @@ -1,14 +1,13 @@ --- title: ResumeCards -github: 'https://github.com/ellekasai/resumecards/' -demo: 'https://ellekasai.github.io/resumecards/' +github: https://github.com/ellekasai/resumecards/ +demo: https://ellekasai.github.io/resumecards/ author: Elle Kasai ssg: - Jekyll cms: - No Cms date: 2014-12-28T20:41:56.000Z -github_branch: gh-pages description: >- [Unmaintained] A Markdown based resume generator. It looks great on mobile/desktop and can be saved as PDF. diff --git a/content/theme/jekyll-rifyll.md b/content/theme/jekyll-rifyll.md index 5a7ede011..c85a2b92f 100644 --- a/content/theme/jekyll-rifyll.md +++ b/content/theme/jekyll-rifyll.md @@ -1,14 +1,13 @@ --- title: Rifyll -github: 'https://github.com/itsrifat/rifyll' -demo: 'https://itsrifat.github.io/rifyll/' +github: https://github.com/itsrifat/rifyll +demo: https://itsrifat.github.io/rifyll/ author: Moinul ssg: - Jekyll cms: - No Cms date: 2015-01-01T21:38:31.000Z -github_branch: master description: 'A simple blog template for jekyll based on twitter bootstrap 3 ' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-rlstevenson.md b/content/theme/jekyll-rlstevenson.md index b991a029b..ec42f9fab 100644 --- a/content/theme/jekyll-rlstevenson.md +++ b/content/theme/jekyll-rlstevenson.md @@ -1,14 +1,13 @@ --- title: RLStevenson -github: 'https://github.com/ExchangeRate-API/rlstevenson-jekyll-theme' -demo: 'https://www.exchangerate-api.com/rlstevenson/' +github: https://github.com/ExchangeRate-API/rlstevenson-jekyll-theme +demo: https://www.exchangerate-api.com/rlstevenson/ author: ExchangeRate-API ssg: - Jekyll cms: - No Cms date: 2016-09-08T12:22:19.000Z -github_branch: master description: 'A Bootstrap clone of the popular Hyde theme for Jekyll. ' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-rtd-theme.md b/content/theme/jekyll-rtd-theme.md index f82f90d7f..95a363b5a 100644 --- a/content/theme/jekyll-rtd-theme.md +++ b/content/theme/jekyll-rtd-theme.md @@ -1,10 +1,9 @@ --- title: jekyll-rtd-theme -github: 'https://github.com/rundocs/jekyll-rtd-theme' -demo: 'https://rundocs.github.io/jekyll-rtd-theme/' +github: https://github.com/rundocs/jekyll-rtd-theme +demo: https://rundocs.github.io/jekyll-rtd-theme/ author: RunDocs date: 2020-07-25T00:00:00.000Z -github_branch: master ssg: - Jekyll cms: @@ -13,4 +12,6 @@ description: >- Just another Jekyll theme for GitHub Pages based on ReadtheDocs's sphinx_rtd_theme styles stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/jekyll-safarnama.md b/content/theme/jekyll-safarnama.md index f0d38ddca..ca7aedf8b 100644 --- a/content/theme/jekyll-safarnama.md +++ b/content/theme/jekyll-safarnama.md @@ -1,14 +1,13 @@ --- title: Safarnama -github: 'https://github.com/hemangsk/safarnama' -demo: 'https://hemangsk.github.io/safarnama' +github: https://github.com/hemangsk/safarnama +demo: https://hemangsk.github.io/safarnama author: Hemang Kumar ssg: - Jekyll cms: - No Cms date: 2016-05-21T11:02:17.000Z -github_branch: master description: 'Blogging for the free flying spirits :snowflake: :sunny: :thought_balloon:' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-saigon.md b/content/theme/jekyll-saigon.md index 35213ed52..a32bbabf5 100644 --- a/content/theme/jekyll-saigon.md +++ b/content/theme/jekyll-saigon.md @@ -1,16 +1,15 @@ --- title: Saigon -github: 'https://github.com/hoffli/saigon-jekyll-theme' -demo: 'https://www.18a-saigon.com/' +github: https://github.com/hoffli/saigon-jekyll-theme +demo: https://www.18a-saigon.com/ author: Peter Hoffler ssg: - Jekyll cms: - No Cms date: 2016-02-11T08:16:51.000Z -github_branch: master description: Jekyll mansonry theme stale: true +disabled_reason: demo url not found disabled: true -disabled_reason: Demo URL not found --- \ No newline at end of file diff --git a/content/theme/jekyll-sciblog.md b/content/theme/jekyll-sciblog.md index c07bb6caf..9f265250c 100644 --- a/content/theme/jekyll-sciblog.md +++ b/content/theme/jekyll-sciblog.md @@ -1,14 +1,15 @@ --- title: Sciblog -github: 'https://github.com/airrayagroupwebdesign/sciblog' -demo: 'https://sciblog.yourfreebies.org/' +github: https://github.com/airrayagroupwebdesign/sciblog +demo: https://sciblog.yourfreebies.org/ author: Air Raya Group Web Design ssg: - Jekyll cms: - No Cms date: 2016-02-10T04:25:25.000Z -github_branch: master description: Sci Blog jekyll theme stale: true +disabled: true +disabled_reason: error checking demo url --- \ No newline at end of file diff --git a/content/theme/jekyll-serif.md b/content/theme/jekyll-serif.md index 143c62052..84bc93a3a 100644 --- a/content/theme/jekyll-serif.md +++ b/content/theme/jekyll-serif.md @@ -1,7 +1,7 @@ --- title: Jekyll Serif -github: 'https://github.com/zerostaticthemes/jekyll-serif-theme' -demo: 'https://jekyll-serif.netlify.app/' +github: https://github.com/zerostaticthemes/jekyll-serif-theme +demo: https://jekyll-serif.netlify.app/ author: Robert Austin ssg: - Jekyll @@ -9,13 +9,10 @@ cms: - No Cms archetype: - Business - - Multi Purpose css: - SCSS - Bootstrap date: 2019-11-08T00:00:00.000Z -github_branch: master description: Serif is a beautiful small business theme for Jekyll. stale: false -weight: 10 --- diff --git a/content/theme/jekyll-shiori.md b/content/theme/jekyll-shiori.md index 75f9277ce..b8a804405 100644 --- a/content/theme/jekyll-shiori.md +++ b/content/theme/jekyll-shiori.md @@ -1,14 +1,13 @@ --- title: Shiori -github: 'https://github.com/ellekasai/shiori/' -demo: 'https://ellekasai.github.io/shiori/' +github: https://github.com/ellekasai/shiori/ +demo: https://ellekasai.github.io/shiori/ author: Elle Kasai ssg: - Jekyll cms: - No Cms date: 2014-09-07T05:49:29.000Z -github_branch: gh-pages description: '[Unmaintained] A Bootstrap-based Jekyll Theme.' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-siera.md b/content/theme/jekyll-siera.md index 2db7cc55f..0a9f04c6b 100644 --- a/content/theme/jekyll-siera.md +++ b/content/theme/jekyll-siera.md @@ -1,14 +1,15 @@ --- title: Siera -github: 'https://github.com/KazumaSATO/Siera' -demo: 'https://ranceworks.com/' +github: https://github.com/KazumaSATO/Siera +demo: https://ranceworks.com/ author: Kazuma SATO ssg: - Jekyll cms: - No Cms date: 2015-11-14T07:47:20.000Z -github_branch: master description: jekyll theme stale: true +disabled: true +disabled_reason: error checking demo url --- \ No newline at end of file diff --git a/content/theme/jekyll-simple-blog-theme.md b/content/theme/jekyll-simple-blog-theme.md index 3d36ae654..568bfaa8c 100644 --- a/content/theme/jekyll-simple-blog-theme.md +++ b/content/theme/jekyll-simple-blog-theme.md @@ -1,16 +1,17 @@ --- title: Jekyll Theme Simple Blog -github: 'https://gitlab.com/lorepirri/jekyll-theme-simple-blog' -demo: 'https://lorepirri.gitlab.io/jekyll-theme-simple-blog/' +github: https://gitlab.com/lorepirri/jekyll-theme-simple-blog +demo: https://lorepirri.gitlab.io/jekyll-theme-simple-blog/ author: Lorenzo Pirritano (@lorepirri) ssg: - Jekyll cms: - No Cms date: 2017-05-20T16:21:49.000Z -github_branch: master description: >- Simple Blog Theme is a clean, responsive blogging theme for Jekyll and GitLab/GitHub Pages. stale: true +disabled: true +disabled_reason: error checking demo url --- \ No newline at end of file diff --git a/content/theme/jekyll-simple-elegant-theme.md b/content/theme/jekyll-simple-elegant-theme.md index 96e6d0ef6..b57ecaefc 100644 --- a/content/theme/jekyll-simple-elegant-theme.md +++ b/content/theme/jekyll-simple-elegant-theme.md @@ -1,15 +1,15 @@ --- title: Simple Elegant -github: 'https://github.com/panxw/panxw.github.com' -demo: 'https://www.panxw.com/' +github: https://github.com/panxw/panxw.github.com +demo: https://www.panxw.com/ author: Panxw ssg: - Jekyll cms: - No Cms date: 2015-08-21T04:20:04.000Z -github_branch: master description: Blog theme powered by Jekyll. -stale: false +stale: true disabled: true +disabled_reason: error checking demo url --- diff --git a/content/theme/jekyll-simple-texture-theme.md b/content/theme/jekyll-simple-texture-theme.md index b6ef14278..c8904f7cb 100644 --- a/content/theme/jekyll-simple-texture-theme.md +++ b/content/theme/jekyll-simple-texture-theme.md @@ -1,14 +1,13 @@ --- title: Simple Texture -github: 'https://github.com/yizeng/jekyll-theme-simple-texture' -demo: 'https://yizeng.github.io/jekyll-theme-simple-texture/' +github: https://github.com/yizeng/jekyll-theme-simple-texture +demo: https://yizeng.github.io/jekyll-theme-simple-texture/ author: Yi Zeng ssg: - Jekyll cms: - No Cms date: 2017-05-27T10:52:29.000Z -github_branch: master description: A gem-based responsive simple texture styled Jekyll theme. stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-simple.md b/content/theme/jekyll-simple.md index e76c47bc9..a32222e28 100644 --- a/content/theme/jekyll-simple.md +++ b/content/theme/jekyll-simple.md @@ -1,14 +1,13 @@ --- title: jekyll-simple -github: 'https://github.com/wild-flame/jekyll-simple' -demo: 'https://wild-flame.github.io/jekyll-simple' +github: https://github.com/wild-flame/jekyll-simple +demo: https://wild-flame.github.io/jekyll-simple author: David Lin ssg: - Jekyll cms: - No Cms date: 2016-06-28T03:38:47.000Z -github_branch: master description: a simple jekyll theme stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-simplest.md b/content/theme/jekyll-simplest.md index da708db1b..55acff913 100644 --- a/content/theme/jekyll-simplest.md +++ b/content/theme/jekyll-simplest.md @@ -1,14 +1,15 @@ --- title: Simplest -github: 'https://github.com/nandomoreirame/simplest' -demo: 'https://nandomoreira.me/simplest/' +github: https://github.com/nandomoreirame/simplest +demo: https://nandomoreira.me/simplest/ author: nandomoreira.me ssg: - Jekyll cms: - No Cms date: 2015-12-10T15:28:29.000Z -github_branch: master -description: "\U0001F48E Simple and beautiful Jekyll theme" +description: 💎 Simple and beautiful Jekyll theme stale: true +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-simpleyyt.md b/content/theme/jekyll-simpleyyt.md index 7581d9a4f..fc38e24ae 100644 --- a/content/theme/jekyll-simpleyyt.md +++ b/content/theme/jekyll-simpleyyt.md @@ -1,14 +1,13 @@ --- title: Simpleyyt -github: 'https://github.com/Simpleyyt/jekyll-simpleyyt' -demo: 'https://simpleyyt.github.io/jekyll-simpleyyt' +github: https://github.com/Simpleyyt/jekyll-simpleyyt +demo: https://simpleyyt.github.io/jekyll-simpleyyt author: Yitao Yao ssg: - Jekyll cms: - No Cms date: 2014-04-07T09:01:09.000Z -github_branch: master description: Jekyll theme stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-singlepaged.md b/content/theme/jekyll-singlepaged.md index e6562ea91..64c16581b 100644 --- a/content/theme/jekyll-singlepaged.md +++ b/content/theme/jekyll-singlepaged.md @@ -1,14 +1,15 @@ --- title: SinglePaged -github: 'https://github.com/t413/SinglePaged' -demo: 'https://t413.com/SinglePaged' +github: https://github.com/t413/SinglePaged +demo: https://t413.com/SinglePaged author: Tim O'Brien ssg: - Jekyll cms: - No Cms date: 2014-09-19T20:31:46.000Z -github_branch: gh-pages description: SinglePaged - Simple Jekyll template stale: true +disabled: true +disabled_reason: error checking demo url --- \ No newline at end of file diff --git a/content/theme/jekyll-slate-and-simple-theme.md b/content/theme/jekyll-slate-and-simple-theme.md index 6aa7b33dd..dfa189b55 100644 --- a/content/theme/jekyll-slate-and-simple-theme.md +++ b/content/theme/jekyll-slate-and-simple-theme.md @@ -1,14 +1,13 @@ --- title: Slate+Simple -github: 'https://github.com/benradford/Slate-and-Simple-Jekyll-Theme' -demo: 'https://benradford.github.io' +github: https://github.com/benradford/Slate-and-Simple-Jekyll-Theme +demo: https://benradford.github.io author: Benjamin J. Radford ssg: - Jekyll cms: - No Cms date: 2017-05-28T01:14:55.000Z -github_branch: master description: A sleek Jekyll theme for blogs with clean typography and post featured images. stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-slate.md b/content/theme/jekyll-slate.md index ca269a776..050cbd87a 100644 --- a/content/theme/jekyll-slate.md +++ b/content/theme/jekyll-slate.md @@ -1,14 +1,13 @@ --- title: Slate -github: 'https://github.com/jasoncostello/slate' -demo: 'https://jasoncostello.github.io/slate/' +github: https://github.com/jasoncostello/slate +demo: https://jasoncostello.github.io/slate/ author: Jason Costello ssg: - Jekyll cms: - No Cms date: 2012-06-08T23:00:07.000Z -github_branch: gh-pages description: >- Slate is theme for your GitHub Pages or Jekyll site. https://jasoncostello.github.io/slate diff --git a/content/theme/jekyll-sleek-blog.md b/content/theme/jekyll-sleek-blog.md index 49c45d0cd..949609df6 100644 --- a/content/theme/jekyll-sleek-blog.md +++ b/content/theme/jekyll-sleek-blog.md @@ -1,14 +1,15 @@ --- title: Sleek Blog -github: 'https://github.com/bawn92/sleek_blog' -demo: 'https://www.gearoidoconnor.ie/' +github: https://github.com/bawn92/sleek_blog +demo: https://www.gearoidoconnor.ie/ author: Gearoid O'Connor ssg: - Jekyll cms: - No Cms date: 2016-01-05T20:39:17.000Z -github_branch: master description: A Empty template blog stale: true +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-slender.md b/content/theme/jekyll-slender.md index d42b70492..ec392b20c 100644 --- a/content/theme/jekyll-slender.md +++ b/content/theme/jekyll-slender.md @@ -1,14 +1,13 @@ --- title: Slender -github: 'https://github.com/nikrich/jekyll-slender-template' -demo: 'https://nikrich.github.io/jekyll-slender-template/#' +github: https://github.com/nikrich/jekyll-slender-template +demo: https://nikrich.github.io/jekyll-slender-template/# author: Jannik Richter ssg: - Jekyll cms: - No Cms date: 2016-03-30T10:52:12.000Z -github_branch: master description: Beautiful portfolio style template for jekyll stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-slides.md b/content/theme/jekyll-slides.md index d6310a23f..ac8fe8168 100644 --- a/content/theme/jekyll-slides.md +++ b/content/theme/jekyll-slides.md @@ -1,14 +1,15 @@ --- title: Webjeda Slides -github: 'https://github.com/sharu725/slides' -demo: 'https://webjeda.com/slides/' +github: https://github.com/sharu725/slides +demo: https://webjeda.com/slides/ author: webjeda ssg: - Jekyll cms: - No Cms date: 2016-07-06T17:15:11.000Z -github_branch: master description: A presentstion theme -stale: true +stale: false +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-smart-material-theme.md b/content/theme/jekyll-smart-material-theme.md index e6ac5858c..10316e724 100644 --- a/content/theme/jekyll-smart-material-theme.md +++ b/content/theme/jekyll-smart-material-theme.md @@ -1,14 +1,13 @@ --- title: Smart Material -github: 'https://github.com/ssokurenko/jekyll-smart-material' -demo: 'https://ssokurenko.github.io/jekyll-smart-material/' +github: https://github.com/ssokurenko/jekyll-smart-material +demo: https://ssokurenko.github.io/jekyll-smart-material/ author: Sergey Sokurenko ssg: - Jekyll cms: - No Cms date: 2015-10-22T20:08:05.000Z -github_branch: gh-pages description: 'Smart Material Design theme for Jekyll, demo:' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-solana-theme.md b/content/theme/jekyll-solana-theme.md index 18ef5dca8..18b09d58d 100644 --- a/content/theme/jekyll-solana-theme.md +++ b/content/theme/jekyll-solana-theme.md @@ -1,14 +1,13 @@ --- title: Solana -github: 'https://github.com/rlue/jekyll-solana' -demo: 'https://solana.ryanlue.com/' +github: https://github.com/rlue/jekyll-solana +demo: https://solana.ryanlue.com/ author: Ryan Lue ssg: - Jekyll cms: - No Cms date: 2017-03-29T06:10:39.000Z -github_branch: master -description: 'A wholesome, flat, sunshiny Jekyll theme' -stale: false +description: A wholesome, flat, sunshiny Jekyll theme +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-solid.md b/content/theme/jekyll-solid.md index 574df4e00..9704c22b6 100644 --- a/content/theme/jekyll-solid.md +++ b/content/theme/jekyll-solid.md @@ -1,14 +1,13 @@ --- title: Solid -github: 'https://github.com/st4ple/solid-jekyll' -demo: 'https://st4ple.github.io/solid-jekyll/' +github: https://github.com/st4ple/solid-jekyll +demo: https://st4ple.github.io/solid-jekyll/ author: Oliver Stapleton ssg: - Jekyll cms: - No Cms date: 2014-08-15T13:40:18.000Z -github_branch: master description: 'A Jekyll port of the Solid theme (by blacktie.co). ' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-solo.md b/content/theme/jekyll-solo.md index 4cc85ea85..6d2ae4a05 100644 --- a/content/theme/jekyll-solo.md +++ b/content/theme/jekyll-solo.md @@ -1,14 +1,13 @@ --- title: Solo (single-page) -github: 'https://github.com/chibicode/solo/' -demo: 'https://chibicode.github.io/solo/' +github: https://github.com/chibicode/solo/ +demo: https://chibicode.github.io/solo/ author: Shu Uesugi ssg: - Jekyll cms: - No Cms date: 2014-01-25T00:53:09.000Z -github_branch: gh-pages description: >- :older_man: [UNMAINTAINED]: Solo is a Jekyll theme that supports single-page websites only, but supports them well. diff --git a/content/theme/jekyll-sootspirits-theme.md b/content/theme/jekyll-sootspirits-theme.md index 8a307cd52..953eae49e 100644 --- a/content/theme/jekyll-sootspirits-theme.md +++ b/content/theme/jekyll-sootspirits-theme.md @@ -1,14 +1,13 @@ --- title: Soot Spirits -github: 'https://github.com/abhn/Soot-Spirits' -demo: 'https://sootspirits.github.io/' +github: https://github.com/abhn/Soot-Spirits +demo: https://sootspirits.github.io/ author: Abhishek Nagekar ssg: - Jekyll cms: - No Cms date: 2017-04-17T17:06:15.000Z -github_branch: master description: >- A simple responsive two column Jekyll theme. Great for personal blog and basic portfolio website diff --git a/content/theme/jekyll-space-theme.md b/content/theme/jekyll-space-theme.md index 255f3492b..faa9c653d 100644 --- a/content/theme/jekyll-space-theme.md +++ b/content/theme/jekyll-space-theme.md @@ -1,16 +1,15 @@ --- title: Space -github: 'https://github.com/victorvoid/space-jekyll-template/' -demo: 'https://victorvoid.me/space-jekyll-template/' +github: https://github.com/victorvoid/space-jekyll-template/ +demo: https://victorvoid.me/space-jekyll-template/ author: Victor Igor ssg: - Jekyll cms: - No Cms date: 2016-09-12T16:49:05.000Z -github_branch: master description: >- A simple spacemacs template on jekyll. https://victorvoid.github.io/space-jekyll-template/ -stale: true +stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-spectral.md b/content/theme/jekyll-spectral.md index d8543eb36..9d60801fd 100644 --- a/content/theme/jekyll-spectral.md +++ b/content/theme/jekyll-spectral.md @@ -1,14 +1,13 @@ --- title: Spectral -github: 'https://github.com/arkadianriver/spectral' -demo: 'https://arkadianriver.github.io/spectral/' +github: https://github.com/arkadianriver/spectral +demo: https://arkadianriver.github.io/spectral/ author: Gary Faircloth ssg: - Jekyll cms: - No Cms date: 2016-02-20T06:39:31.000Z -github_branch: master description: >- A jekyll theme for the spectral template by html5up.net (@ajlkn). Demo: https://arkadianriver.github.io/spectral. How to jekyll: diff --git a/content/theme/jekyll-stack-problems.md b/content/theme/jekyll-stack-problems.md index 94f48062a..3820a6787 100644 --- a/content/theme/jekyll-stack-problems.md +++ b/content/theme/jekyll-stack-problems.md @@ -1,14 +1,13 @@ --- title: Stack Problems -github: 'https://github.com/agusmakmun/agusmakmun.github.io' -demo: 'https://agusmakmun.github.io/' +github: https://github.com/agusmakmun/agusmakmun.github.io +demo: https://agusmakmun.github.io/ author: Agus Makmun ssg: - Jekyll cms: - No Cms date: 2016-04-18T11:12:39.000Z -github_branch: master description: ':raised_hands: Free and open-source Jekyll theme' stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-strangecase.md b/content/theme/jekyll-strangecase.md index 43f527dcf..1f7140e1c 100644 --- a/content/theme/jekyll-strangecase.md +++ b/content/theme/jekyll-strangecase.md @@ -1,14 +1,13 @@ --- title: Strange Case -github: 'https://github.com/thephuse/strange_case' -demo: 'https://thephuse.github.io/strange_case/' +github: https://github.com/thephuse/strange_case +demo: https://thephuse.github.io/strange_case/ author: Phuse ssg: - Jekyll cms: - No Cms date: 2014-01-07T18:39:42.000Z -github_branch: gh-pages description: A theme for Jekyll stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-strata.md b/content/theme/jekyll-strata.md index 816b58e4f..60205fdcf 100644 --- a/content/theme/jekyll-strata.md +++ b/content/theme/jekyll-strata.md @@ -1,13 +1,14 @@ --- title: Strata -github: 'https://github.com/CloudCannon/Strata-Jekyll-Theme' -demo: 'https://html5up.net/strata' +github: https://github.com/CloudCannon/Strata-Jekyll-Theme +demo: https://html5up.net/strata author: old-jekyll-templates ssg: - Jekyll cms: - No Cms date: 2015-04-26T18:24:31.000Z -github_branch: master stale: true +disabled: true +disabled_reason: error checking demo url --- \ No newline at end of file diff --git a/content/theme/jekyll-stylish-portfolio.md b/content/theme/jekyll-stylish-portfolio.md index 12b35f267..c0fca2283 100644 --- a/content/theme/jekyll-stylish-portfolio.md +++ b/content/theme/jekyll-stylish-portfolio.md @@ -1,14 +1,13 @@ --- title: Stylish Portfolio -github: 'https://github.com/volny/stylish-portfolio-jekyll' -demo: 'https://volny.github.io/stylish-portfolio-jekyll/' +github: https://github.com/volny/stylish-portfolio-jekyll +demo: https://volny.github.io/stylish-portfolio-jekyll/ author: Felix Volny ssg: - Jekyll cms: - No Cms date: 2015-09-07T11:16:39.000Z -github_branch: master description: A Jekyll implementation of the Stylish Portfolio template by Start Bootstrap stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-sustain.md b/content/theme/jekyll-sustain.md index 7ef10116c..05cd32e41 100644 --- a/content/theme/jekyll-sustain.md +++ b/content/theme/jekyll-sustain.md @@ -1,14 +1,15 @@ --- title: Sustain -github: 'https://github.com/biomadeira/sustain' -demo: 'https://jekyller.github.io/sustain/' +github: https://github.com/biomadeira/sustain +demo: https://jekyller.github.io/sustain/ author: Fábio Madeira ssg: - Jekyll cms: - No Cms date: 2015-10-27T22:42:43.000Z -github_branch: gh-pages -description: "\U0001F3B9 Personal blog powered by Jekyll" -stale: true +description: 🎹 Personal blog powered by Jekyll +stale: false +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-svm-ngvb.md b/content/theme/jekyll-svm-ngvb.md index 8e6390f31..36b903fab 100644 --- a/content/theme/jekyll-svm-ngvb.md +++ b/content/theme/jekyll-svm-ngvb.md @@ -1,16 +1,17 @@ --- title: Steve's NGVB Theme -github: 'https://github.com/svmiller/steve-ngvb-jekyll-template' -demo: 'https://svmiller.com/' +github: https://github.com/svmiller/steve-ngvb-jekyll-template +demo: https://svmiller.com/ author: Steven V. Miller ssg: - Jekyll cms: - No Cms date: 2015-08-16T21:27:34.000Z -github_branch: master description: >- This is my no-good-very-bad template for Jekyll (modified from jekyll-new and Alex King's Favepersonal). stale: true +disabled: true +disabled_reason: error checking demo url --- \ No newline at end of file diff --git a/content/theme/jekyll-sweet-16-theme.md b/content/theme/jekyll-sweet-16-theme.md index e77c5e082..1f8af040f 100644 --- a/content/theme/jekyll-sweet-16-theme.md +++ b/content/theme/jekyll-sweet-16-theme.md @@ -1,16 +1,15 @@ --- title: Sweet 16 -github: 'https://github.com/jdh8/sweet-16/' -demo: 'https://jdh8.github.io' +github: https://github.com/jdh8/sweet-16/ +demo: https://jdh8.github.io author: Chen-Pang He ssg: - Jekyll cms: - No Cms date: 2017-02-08T20:32:46.000Z -github_branch: master description: Wordpress 2016 theme in Jekyll stale: true -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-swift.md b/content/theme/jekyll-swift.md index c63e09291..4f01c1853 100644 --- a/content/theme/jekyll-swift.md +++ b/content/theme/jekyll-swift.md @@ -1,14 +1,13 @@ --- title: Swift -github: 'https://github.com/pranavrajs/swift/' -demo: 'https://pranavrajs.github.io/swift/' +github: https://github.com/pranavrajs/swift/ +demo: https://pranavrajs.github.io/swift/ author: Pranav Raj S ssg: - Jekyll cms: - No Cms date: 2014-11-28T18:43:16.000Z -github_branch: master description: 'A clean Minimal Blog theme for Jekyll , built with Bootswatch ' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-taken-theme.md b/content/theme/jekyll-taken-theme.md index 16a8fd1b8..83c3e324e 100644 --- a/content/theme/jekyll-taken-theme.md +++ b/content/theme/jekyll-taken-theme.md @@ -1,14 +1,15 @@ --- title: Taken -github: 'https://github.com/vfalanis/taken' -demo: 'https://vfalanis.me/taken/' +github: https://github.com/vfalanis/taken +demo: https://vfalanis.me/taken/ author: Valentina Fernandez Alanis (vfalanis) ssg: - Jekyll cms: - No Cms date: 2016-04-28T04:46:31.000Z -github_branch: master description: Minimalist two-column jekyll theme stale: true +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-tale-theme.md b/content/theme/jekyll-tale-theme.md index a3dbf2c18..61a674c19 100644 --- a/content/theme/jekyll-tale-theme.md +++ b/content/theme/jekyll-tale-theme.md @@ -1,14 +1,13 @@ --- title: Jekyll Tale -github: 'https://github.com/chesterhow/tale' -demo: 'https://chesterhow.github.io/tale/' +github: https://github.com/chesterhow/tale +demo: https://chesterhow.github.io/tale/ author: Chester How ssg: - Jekyll cms: - No Cms date: 2017-03-10T04:32:23.000Z -github_branch: master description: Minimal Jekyll theme for storytellers -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-textlog.md b/content/theme/jekyll-textlog.md index c1f7128c4..2a9ea37a4 100644 --- a/content/theme/jekyll-textlog.md +++ b/content/theme/jekyll-textlog.md @@ -1,14 +1,13 @@ --- title: TextLog -github: 'https://github.com/heiswayi/textlog' -demo: 'https://heiswayi.github.io/textlog/' +github: https://github.com/heiswayi/textlog +demo: https://heiswayi.github.io/textlog/ author: Heiswayi Nrird ssg: - Jekyll cms: - No Cms date: 2017-01-15T08:19:03.000Z -github_branch: gh-pages -description: 'Minimalist, lefty-style Jekyll theme designed for documentation based blog.' -stale: true +description: Minimalist, lefty-style Jekyll theme designed for documentation based blog. +stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-the-plain.md b/content/theme/jekyll-the-plain.md index b7e2239b7..9324b158f 100644 --- a/content/theme/jekyll-the-plain.md +++ b/content/theme/jekyll-the-plain.md @@ -1,14 +1,13 @@ --- title: The Plain -github: 'https://github.com/heiswayi/the-plain' -demo: 'https://heiswayi.github.io/the-plain/' +github: https://github.com/heiswayi/the-plain +demo: https://heiswayi.github.io/the-plain/ author: Heiswayi Nrird ssg: - Jekyll cms: - No Cms date: 2015-09-08T16:09:41.000Z -github_branch: master -description: 'A minimalist Jekyll theme, ideally designed for your personal blog use.' +description: A minimalist Jekyll theme, ideally designed for your personal blog use. stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-theme-HardCandy.md b/content/theme/jekyll-theme-HardCandy.md index da7d781c9..f55f2f25d 100644 --- a/content/theme/jekyll-theme-HardCandy.md +++ b/content/theme/jekyll-theme-HardCandy.md @@ -1,14 +1,15 @@ --- title: HardCandy-Jekyll -github: 'https://github.com/xukimseven/HardCandy-Jekyll' -demo: 'https://ww1.xseven.me/' +github: https://github.com/xukimseven/HardCandy-Jekyll +demo: https://ww1.xseven.me/ author: xujinqi ssg: - Jekyll cms: - No Cms date: 2018-05-28T12:09:01.000Z -github_branch: master -description: "一款清新 糖果色\U0001F36C 的 ‘Jekyll’ 主题。A candy-colored \U0001F36C ‘Jekyll’ theme." +description: 一款清新 糖果色🍬 的 ‘Jekyll’ 主题。A candy-colored 🍬 ‘Jekyll’ theme. stale: true +disabled: true +disabled_reason: error checking demo url --- \ No newline at end of file diff --git a/content/theme/jekyll-theme-LOFFER.md b/content/theme/jekyll-theme-LOFFER.md index e33e225c0..0d89e13f6 100644 --- a/content/theme/jekyll-theme-LOFFER.md +++ b/content/theme/jekyll-theme-LOFFER.md @@ -1,14 +1,13 @@ --- title: LOFFER -github: 'https://github.com/FromEndWorld/LOFFER' -demo: 'https://fromendworld.github.io/LOFFER/' +github: https://github.com/FromEndWorld/LOFFER +demo: https://fromendworld.github.io/LOFFER/ author: FromEndworld ssg: - Jekyll cms: - No Cms date: 2019-06-02T06:42:58.000Z -github_branch: master description: '博客主题 A forkable Jekyll theme with Chinese UI and document ' -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-theme-Minimal-Resume.md b/content/theme/jekyll-theme-Minimal-Resume.md index 0a3251524..136696a0d 100644 --- a/content/theme/jekyll-theme-Minimal-Resume.md +++ b/content/theme/jekyll-theme-Minimal-Resume.md @@ -1,14 +1,13 @@ --- title: Minimal Resume -github: 'https://github.com/murraco/jekyll-theme-minimal-resume' -demo: 'https://jekyll-theme-minimal-resume.netlify.com/' +github: https://github.com/murraco/jekyll-theme-minimal-resume +demo: https://jekyll-theme-minimal-resume.netlify.com/ author: Mauricio Urraco ssg: - Jekyll cms: - No Cms date: 2017-11-16T01:45:13.000Z -github_branch: master description: >- Simple Jekyll theme for a minimal resume website: https://jekyll-theme-minimal-resume.netlify.com/ diff --git a/content/theme/jekyll-theme-PlainWhite.md b/content/theme/jekyll-theme-PlainWhite.md index 019eccae0..6a2357e07 100644 --- a/content/theme/jekyll-theme-PlainWhite.md +++ b/content/theme/jekyll-theme-PlainWhite.md @@ -1,16 +1,15 @@ --- title: Plainwhite -github: 'https://github.com/thelehhman/plainwhite-jekyll' -demo: 'https://thelehhman.com/' +github: https://github.com/thelehhman/plainwhite-jekyll +demo: https://thelehhman.com/ author: thelehhman ssg: - Jekyll cms: - No Cms date: 2019-03-24T16:00:17.000Z -github_branch: master description: A configurable portfolio-style jekyll theme for writers. stale: false +disabled_reason: demo url connection refused disabled: true -disabled_reason: "demo url not found" --- diff --git a/content/theme/jekyll-theme-SIMPLE-GREEN-TECH.md b/content/theme/jekyll-theme-SIMPLE-GREEN-TECH.md index 7172dad45..1d964f1ce 100644 --- a/content/theme/jekyll-theme-SIMPLE-GREEN-TECH.md +++ b/content/theme/jekyll-theme-SIMPLE-GREEN-TECH.md @@ -1,14 +1,13 @@ --- title: SIMPLE GREEN TECHBLOG -github: 'https://github.com/alainpham/alainpham.github.io' -demo: 'https://alainpham.github.io' +github: https://github.com/alainpham/alainpham.github.io +demo: https://alainpham.github.io author: Alain Pham ssg: - Jekyll cms: - No Cms date: 2016-12-16T09:55:03.000Z -github_branch: master description: Personal blog to present projects and thoughts -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-theme-Texture-Theme.md b/content/theme/jekyll-theme-Texture-Theme.md index fa21c2e57..902130fd4 100644 --- a/content/theme/jekyll-theme-Texture-Theme.md +++ b/content/theme/jekyll-theme-Texture-Theme.md @@ -1,16 +1,15 @@ --- title: Texture -github: 'https://github.com/thelehhman/texture' -demo: 'https://thelehhman.com/texture/' +github: https://github.com/thelehhman/texture +demo: https://thelehhman.com/texture/ author: thelehhman ssg: - Jekyll cms: - No Cms date: 2019-06-29T14:05:37.000Z -github_branch: master description: A configurable theme for simply beautiful blogs. stale: false +disabled_reason: demo url connection refused disabled: true -disabled_reason: "demo url not found" --- diff --git a/content/theme/jekyll-theme-barber.md b/content/theme/jekyll-theme-barber.md index 394d85d13..ff14b0342 100644 --- a/content/theme/jekyll-theme-barber.md +++ b/content/theme/jekyll-theme-barber.md @@ -1,13 +1,14 @@ --- title: Barber -github: 'https://github.com/samesies/barber-jekyll' -demo: 'https://barber.samesies.io/' +github: https://github.com/samesies/barber-jekyll +demo: https://barber.samesies.io/ author: Thomas Vaeth ssg: - Jekyll cms: - No Cms date: 2018-02-15T03:05:57.000Z -github_branch: master -stale: false +stale: true +disabled: true +disabled_reason: error checking demo url --- \ No newline at end of file diff --git a/content/theme/jekyll-theme-basically-basic.md b/content/theme/jekyll-theme-basically-basic.md index 096b1d413..489d459ce 100644 --- a/content/theme/jekyll-theme-basically-basic.md +++ b/content/theme/jekyll-theme-basically-basic.md @@ -1,14 +1,13 @@ --- title: Basically Basic -github: 'https://github.com/mmistakes/jekyll-theme-basically-basic' -demo: 'https://mmistakes.github.io/jekyll-theme-basically-basic/' +github: https://github.com/mmistakes/jekyll-theme-basically-basic +demo: https://mmistakes.github.io/jekyll-theme-basically-basic/ author: Michael Rose ssg: - Jekyll cms: - No Cms date: 2017-03-07T21:08:01.000Z -github_branch: master description: Your new Jekyll default theme -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-theme-cayman-blog.md b/content/theme/jekyll-theme-cayman-blog.md index 3166c68a2..8cf6e06dc 100644 --- a/content/theme/jekyll-theme-cayman-blog.md +++ b/content/theme/jekyll-theme-cayman-blog.md @@ -1,14 +1,13 @@ --- title: Cayman Blog Theme -github: 'https://github.com/lorepirri/cayman-blog' -demo: 'https://lorepirri.github.io/cayman-blog/' +github: https://github.com/lorepirri/cayman-blog +demo: https://lorepirri.github.io/cayman-blog/ author: Lorenzo Pirritano (@lorepirri) ssg: - Jekyll cms: - No Cms date: 2017-04-28T21:55:31.000Z -github_branch: master -description: 'Cayman Blog is a Jekyll theme for GitHub Pages, based on Cayman theme' +description: Cayman Blog is a Jekyll theme for GitHub Pages, based on Cayman theme stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-theme-chirpy.md b/content/theme/jekyll-theme-chirpy.md index a2d1c989a..9949b5713 100644 --- a/content/theme/jekyll-theme-chirpy.md +++ b/content/theme/jekyll-theme-chirpy.md @@ -1,10 +1,9 @@ --- title: Chirpy -github: 'https://github.com/cotes2020/jekyll-theme-chirpy/' -demo: 'https://cotes2020.github.io/chirpy-demo/' +github: https://github.com/cotes2020/jekyll-theme-chirpy/ +demo: https://cotes2020.github.io/chirpy-demo/ author: Cotes Chung date: 2019-01-12T07:37:30.000Z -github_branch: master ssg: - Jekyll cms: diff --git a/content/theme/jekyll-theme-console.md b/content/theme/jekyll-theme-console.md index 7fea27698..a4de52878 100644 --- a/content/theme/jekyll-theme-console.md +++ b/content/theme/jekyll-theme-console.md @@ -1,18 +1,17 @@ --- title: jekyll-theme-console -github: 'https://github.com/b2a3e8/jekyll-theme-console' -demo: 'https://b2a3e8.github.io/jekyll-theme-console/' +github: https://github.com/b2a3e8/jekyll-theme-console +demo: https://b2a3e8.github.io/jekyll-theme-console/ author: b2a3e8 ssg: - Jekyll cms: - No Cms date: 2018-11-07T15:08:15.000Z -github_branch: master description: >- A jekyll theme inspired by linux consoles for hackers, developers and script kiddies. stale: false -disabled: true disabled_reason: demo url not found +disabled: true --- diff --git a/content/theme/jekyll-theme-dark-reader.md b/content/theme/jekyll-theme-dark-reader.md index 7f3f1ff30..4b44459ca 100644 --- a/content/theme/jekyll-theme-dark-reader.md +++ b/content/theme/jekyll-theme-dark-reader.md @@ -1,7 +1,7 @@ --- title: Dark Reader -github: 'https://github.com/sharadcodes/jekyll-theme-dark-reader' -demo: 'https://sharadcodes.github.io/jekyll-theme-dark-reader/' +github: https://github.com/sharadcodes/jekyll-theme-dark-reader +demo: https://sharadcodes.github.io/jekyll-theme-dark-reader/ author: Sharad Raj Singh Maurya ssg: - Jekyll @@ -10,7 +10,6 @@ cms: category: - Blog date: 2019-11-25T00:00:00.000Z -github_branch: master description: A Minimal Dark theme for jekyll with minimal CSS by Sharad Raj Singh Maurya stale: false --- diff --git a/content/theme/jekyll-theme-hackcss.md b/content/theme/jekyll-theme-hackcss.md index d2cceccd9..02125fe3e 100644 --- a/content/theme/jekyll-theme-hackcss.md +++ b/content/theme/jekyll-theme-hackcss.md @@ -1,14 +1,15 @@ --- title: Jekyll theme HackCSS -github: 'https://github.com/wemake-services/jekyll-theme-hackcss' -demo: 'https://wemake.services/jekyll-theme-hackcss/' +github: https://github.com/wemake-services/jekyll-theme-hackcss +demo: https://wemake.services/jekyll-theme-hackcss/ author: wemake.services ssg: - Jekyll cms: - No Cms date: 2016-07-29T19:17:30.000Z -github_branch: gh-pages description: Dead simple CSS framework now with Jekyll. stale: true +disabled: true +disabled_reason: error checking demo url --- \ No newline at end of file diff --git a/content/theme/jekyll-theme-hacker-blog.md b/content/theme/jekyll-theme-hacker-blog.md index 8e2a13c09..0a844853c 100644 --- a/content/theme/jekyll-theme-hacker-blog.md +++ b/content/theme/jekyll-theme-hacker-blog.md @@ -1,16 +1,15 @@ --- title: Hacker Blog -github: 'https://github.com/tocttou/hacker-blog' -demo: 'https://ashishchaudhary.in/hacker-blog/' +github: https://github.com/tocttou/hacker-blog +demo: https://ashishchaudhary.in/hacker-blog/ author: Ashish Chaudhary ssg: - Jekyll cms: - No Cms date: 2017-12-12T21:51:39.000Z -github_branch: master description: >- Hacker-Blog is a minimalistic, responsive jekyll theme built for hackers. https://ashishchaudhary.in/hacker-blog -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-theme-help-center.md b/content/theme/jekyll-theme-help-center.md index 8ce68b9f0..a49b4ba91 100644 --- a/content/theme/jekyll-theme-help-center.md +++ b/content/theme/jekyll-theme-help-center.md @@ -1,15 +1,15 @@ --- title: Jekyll Help Center Theme -github: 'https://github.com/gustavoquinalha/jekyll-help-center-theme' -demo: 'https://quinalha.me/jekyll-help-center-theme/' +github: https://github.com/gustavoquinalha/jekyll-help-center-theme +demo: https://quinalha.me/jekyll-help-center-theme/ author: Gustavo Quinalha ssg: - Jekyll cms: - No Cms date: 2017-12-12T15:50:55.000Z -github_branch: master description: Simple and responsive Jekyll theme for help center. stale: true disabled: true +disabled_reason: error checking demo url --- diff --git a/content/theme/jekyll-theme-horizon-flow.md b/content/theme/jekyll-theme-horizon-flow.md new file mode 100644 index 000000000..00157a9c1 --- /dev/null +++ b/content/theme/jekyll-theme-horizon-flow.md @@ -0,0 +1,34 @@ +--- +title: "Horizon Flow" +github: https://github.com/papierkorp/jekyll-theme-horizon-flow +demo: https://papierkorp.github.io/jekyll-theme-horizon-flow/ +author: Markus Schiller +date: 2023-09-15 +ssg: + - Jekyll +cms: + - No CMS +css: + - SCSS +archetype: + - Blog +description: Mobile friendly with a clean sidebar-free layout, highly customizable. +--- + +# A simple starter kit for Gridsome + +Horizon-Flow is a mobile friendly Jekyll theme characterized by a serene color palette of blue, gray, and orange. It features a clean, sidebar-free layout, keeping all content in a single, flowing main container. The header remains fixed even while scrolling, ensuring easy navigation. Allows Custom content to be displayed in the footer and footer-sidebar. + +## Features + +* Custom Navigation +* Dynamically created Footer with Font Awesome Icons and Social Links +* Flexible customizable Footer-Sidebar (above the Footer) where you can include up to 5 elements. You can choose between 4 premade ones and lf created ones +* SEO best practices via Jekyll SEO Tag +* Javascript free besides the optional search page +* supports tags and categories +* offers an archive +* Carefully designed posts for almost all Markup elements +* Activateable TOC and to the TOP Buttons for each post +* Mobile Friendly +* Highly Customizable diff --git a/content/theme/jekyll-theme-hydrogen.md b/content/theme/jekyll-theme-hydrogen.md index b24f90f17..83d27ef9e 100644 --- a/content/theme/jekyll-theme-hydrogen.md +++ b/content/theme/jekyll-theme-hydrogen.md @@ -1,14 +1,13 @@ --- title: Hydrogen -github: 'https://github.com/link9596/hydrogen' -demo: 'https://hydrogen.atlinker.cn/' +github: https://github.com/link9596/hydrogen +demo: https://hydrogen.atlinker.cn/ author: Link ssg: - Jekyll cms: - No Cms date: 2018-11-18T07:09:14.000Z -github_branch: master description: ':+1:轻盈、简洁的Jekyll主题,A Lightweight and Concise Jekyll theme For You.' stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-theme-libretto.md b/content/theme/jekyll-theme-libretto.md index 4128a809c..e5a3271b7 100644 --- a/content/theme/jekyll-theme-libretto.md +++ b/content/theme/jekyll-theme-libretto.md @@ -1,14 +1,13 @@ --- title: Libretto -github: 'https://github.com/ferrolho/jekyll-theme-libretto' -demo: 'https://ferrolho.github.io/jekyll-theme-libretto/' +github: https://github.com/ferrolho/jekyll-theme-libretto +demo: https://ferrolho.github.io/jekyll-theme-libretto/ author: Henrique Ferrolho ssg: - Jekyll cms: - No Cms date: 2016-09-01T12:53:45.000Z -github_branch: gh-pages description: >- :scroll: Libretto is a Jekyll theme with classic styling and typographic details diff --git a/content/theme/jekyll-theme-material-you.md b/content/theme/jekyll-theme-material-you.md new file mode 100644 index 000000000..5a500f3a6 --- /dev/null +++ b/content/theme/jekyll-theme-material-you.md @@ -0,0 +1,17 @@ +--- +title: Material You +github: https://github.com/sharadcodes/jekyll-theme-material-you +demo: https://sharadcodes.github.io/jekyll-theme-material-you/ +author: Sharad Raj Singh Maurya +ssg: + - Jekyll +cms: + - No Cms +category: + - Blog +date: 2022-05-13T00:00:00.000Z +description: A Jekyll theme for Material You Lovers by Sharad Raj Singh Maurya +archetype: + - Blog +stale: false +--- diff --git a/content/theme/jekyll-theme-milo.md b/content/theme/jekyll-theme-milo.md index 2dbdd6913..e8732603a 100644 --- a/content/theme/jekyll-theme-milo.md +++ b/content/theme/jekyll-theme-milo.md @@ -1,14 +1,13 @@ --- title: Milo Bootstrap -github: 'https://github.com/sharadcodes/jekyll-theme-milo' -demo: 'https://sharadcodes.github.io/jekyll-theme-milo/' +github: https://github.com/sharadcodes/jekyll-theme-milo +demo: https://sharadcodes.github.io/jekyll-theme-milo/ author: Sharad Raj Singh Maurya ssg: - Jekyll cms: - No Cms date: 2019-10-04T00:00:00.000Z -github_branch: master description: 'A Bootstrap theme tweaked for Jekyll :heart:' -stale: false +stale: true --- diff --git a/content/theme/jekyll-theme-minimal-text.md b/content/theme/jekyll-theme-minimal-text.md index 017657718..6b796323a 100644 --- a/content/theme/jekyll-theme-minimal-text.md +++ b/content/theme/jekyll-theme-minimal-text.md @@ -1,14 +1,15 @@ --- title: Minimal Text -github: 'https://github.com/clarkhacks/Minimal-Text' -demo: 'https://gh.clarkhacks.com/Minimal-Text/' +github: https://github.com/clarkhacks/Minimal-Text +demo: https://gh.clarkhacks.com/Minimal-Text/ author: Clark Hacks ssg: - Jekyll cms: - No Cms date: 2017-12-15T11:36:36.000Z -github_branch: master description: Minimal Text is a clean and lightweight Jekyll Theme stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/jekyll-theme-mundana.md b/content/theme/jekyll-theme-mundana.md index 681e90330..89150a6c6 100644 --- a/content/theme/jekyll-theme-mundana.md +++ b/content/theme/jekyll-theme-mundana.md @@ -1,14 +1,13 @@ --- title: Mundana Jekyll Theme -github: 'https://github.com/wowthemesnet/mundana-theme-jekyll' -demo: 'https://wowthemesnet.github.io/mundana-theme-jekyll/' +github: https://github.com/wowthemesnet/mundana-theme-jekyll +demo: https://wowthemesnet.github.io/mundana-theme-jekyll/ author: wowthemesnet ssg: - Jekyll cms: - No Cms date: 2019-02-08T19:25:42.000Z -github_branch: master -description: 'Mundana is a free Jekyll theme, Medium styled.' -stale: false +description: Mundana is a free Jekyll theme, Medium styled. +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-theme-panthera-jekyll.md b/content/theme/jekyll-theme-panthera-jekyll.md index 62be1b174..79ac2b608 100644 --- a/content/theme/jekyll-theme-panthera-jekyll.md +++ b/content/theme/jekyll-theme-panthera-jekyll.md @@ -1,16 +1,15 @@ --- title: panthera-jekyll -github: 'https://github.com/christianezeani/panthera-jekyll' -demo: 'https://demothemes.github.io/panthera-jekyll/' +github: https://github.com/christianezeani/panthera-jekyll +demo: https://demothemes.github.io/panthera-jekyll/ author: Christian Ezeani ssg: - Jekyll cms: - No Cms date: 2019-06-04T23:36:15.000Z -github_branch: master description: >- A quick and simple responsive developer portfolio theme for jekyll sites and GitHub Pages. -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-theme-project-negya.md b/content/theme/jekyll-theme-project-negya.md index 6ab7869a3..ea1db8c7b 100644 --- a/content/theme/jekyll-theme-project-negya.md +++ b/content/theme/jekyll-theme-project-negya.md @@ -1,15 +1,14 @@ --- title: pRoJEct-NeGYa -github: 'https://github.com/akiritsu/pRoJEct-NeGYa' -demo: 'https://akiritsu.github.io/pRoJEct-NeGYa/' +github: https://github.com/akiritsu/pRoJEct-NeGYa +demo: https://akiritsu.github.io/pRoJEct-NeGYa/ author: DeerRIDER ssg: - Jekyll cms: - No Cms date: 2019-06-15T10:37:38.000Z -github_branch: master -stale: false -disabled: true -disabled_reason: demo url not found +stale: true +disabled_reason: '' +disabled: false --- \ No newline at end of file diff --git a/content/theme/jekyll-theme-prologue.md b/content/theme/jekyll-theme-prologue.md index 00338073e..1b291f9f9 100644 --- a/content/theme/jekyll-theme-prologue.md +++ b/content/theme/jekyll-theme-prologue.md @@ -1,14 +1,13 @@ --- title: Prologue -github: 'https://github.com/chrisbobbe/jekyll-theme-prologue' -demo: 'https://chrisbobbe.github.io/jekyll-theme-prologue/' +github: https://github.com/chrisbobbe/jekyll-theme-prologue +demo: https://chrisbobbe.github.io/jekyll-theme-prologue/ author: Chris Bobbe ssg: - Jekyll cms: - No Cms date: 2018-01-07T03:51:49.000Z -github_branch: master description: A Jekyll version of the 'Prologue' theme by HTML5 UP -stale: false +stale: true --- diff --git a/content/theme/jekyll-theme-retro-yellow.md b/content/theme/jekyll-theme-retro-yellow.md index b98ea1593..37bcf1d2e 100644 --- a/content/theme/jekyll-theme-retro-yellow.md +++ b/content/theme/jekyll-theme-retro-yellow.md @@ -1,7 +1,7 @@ --- title: Retro Yellow -github: 'https://github.com/sharadcodes/jekyll-theme-retro-yellow' -demo: 'https://sharadcodes.github.io/jekyll-theme-retro-yellow/' +github: https://github.com/sharadcodes/jekyll-theme-retro-yellow +demo: https://sharadcodes.github.io/jekyll-theme-retro-yellow/ author: Sharad Raj Singh Maurya ssg: - Jekyll @@ -10,7 +10,6 @@ cms: category: - Blog date: 2020-01-04T00:00:00.000Z -github_branch: master description: A Minimal Light theme for Jekyll with minimal CSS by Sharad Raj Singh Maurya stale: false --- diff --git a/content/theme/jekyll-theme-satellite.md b/content/theme/jekyll-theme-satellite.md new file mode 100644 index 000000000..3c687d9a3 --- /dev/null +++ b/content/theme/jekyll-theme-satellite.md @@ -0,0 +1,29 @@ +--- +title: "Jekyll-theme-Satellite" +github: https://github.com/byanko55/jekyll-theme-satellite +demo: https://byanko55.github.io/ +author: Yankos +date: 2024-02-06 +ssg: + - Jekyll +cms: + - No CMS +archetype: + - Blog +description: An emotional and adorable blog theme powered by Jekyll. +--- + +## Features + +* Comment System using *giscus* +* Copy contents of Code Block +* Dark/Light Theme +* Google Analytics +* Hierarchical Categorization +* Mobile friendly design +* Related Posts +* RSS/Sitemap support +* Search Post by Title or Tags +* Syntax Highlighter (*highlight.js*) +* Table of Contents +* Visitor Counter (*goatcounter*) \ No newline at end of file diff --git a/content/theme/jekyll-theme-scribble.md b/content/theme/jekyll-theme-scribble.md index 026dc8628..c3184114a 100644 --- a/content/theme/jekyll-theme-scribble.md +++ b/content/theme/jekyll-theme-scribble.md @@ -1,14 +1,13 @@ --- title: Scribble -github: 'https://github.com/muan/scribble' -demo: 'https://scribble.muan.co/' +github: https://github.com/muan/scribble +demo: https://scribble.muan.co/ author: Mu-An Chiou ssg: - Jekyll cms: - No Cms date: 2013-05-06T09:51:15.000Z -github_branch: gh-pages description: ':tomato: A Jekyll theme.' stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-theme-serial-programmer.md b/content/theme/jekyll-theme-serial-programmer.md new file mode 100644 index 000000000..85778daaa --- /dev/null +++ b/content/theme/jekyll-theme-serial-programmer.md @@ -0,0 +1,17 @@ +--- +title: Serial Programmer +github: https://github.com/sharadcodes/jekyll-theme-serial-programmer +demo: https://sharadcodes.github.io/jekyll-theme-serial-programmer/ +author: Sharad Raj Singh Maurya +ssg: + - Jekyll +cms: + - No Cms +category: + - Blog +date: 2021-11-06T00:00:00.000Z +description: A Jekyll theme for serial programmers by Sharad Raj Singh Maurya +archetype: + - Blog +stale: false +--- diff --git a/content/theme/jekyll-theme-skinny-bones.md b/content/theme/jekyll-theme-skinny-bones.md index 8d6536f31..b22ad5f28 100644 --- a/content/theme/jekyll-theme-skinny-bones.md +++ b/content/theme/jekyll-theme-skinny-bones.md @@ -1,14 +1,13 @@ --- title: Skinny Bones -github: 'https://github.com/mmistakes/jekyll-theme-skinny-bones' -demo: 'https://mmistakes.github.io/jekyll-theme-skinny-bones/' +github: https://github.com/mmistakes/jekyll-theme-skinny-bones +demo: https://mmistakes.github.io/jekyll-theme-skinny-bones/ author: Michael Rose ssg: - Jekyll cms: - No Cms date: 2014-06-02T13:25:37.000Z -github_branch: master description: A Jekyll starter with a variety of flexible layouts and components. stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-theme-tiffany.md b/content/theme/jekyll-theme-tiffany.md index 84fabf4a5..47840a1e9 100644 --- a/content/theme/jekyll-theme-tiffany.md +++ b/content/theme/jekyll-theme-tiffany.md @@ -1,14 +1,13 @@ --- title: Tiffany -github: 'https://github.com/bit-ranger/blog' -demo: 'https://bit-ranger.github.io/blog/' +github: https://github.com/bit-ranger/blog +demo: https://bit-ranger.github.io/blog/ author: bit-ranger ssg: - Jekyll cms: - No Cms date: 2015-01-25T05:46:39.000Z -github_branch: gh-pages description: 博客 stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-theme-true-minimal.md b/content/theme/jekyll-theme-true-minimal.md index e246ba4e2..b2d24dd4e 100644 --- a/content/theme/jekyll-theme-true-minimal.md +++ b/content/theme/jekyll-theme-true-minimal.md @@ -1,14 +1,13 @@ --- title: True Minimal -github: 'https://github.com/cyevgeniy/jekyll-true-minimal' -demo: 'https://cyevgeniy.github.io/jekyll-true-minimal/' +github: https://github.com/cyevgeniy/jekyll-true-minimal +demo: https://cyevgeniy.github.io/jekyll-true-minimal/ author: Yevgeniy Chaban ssg: - Jekyll cms: - No Cms date: 2018-10-17T07:11:51.000Z -github_branch: master description: Minimal and ascetic theme for jekyll stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-theme-wu-kan.md b/content/theme/jekyll-theme-wu-kan.md index b14104e1c..3f2fa464b 100644 --- a/content/theme/jekyll-theme-wu-kan.md +++ b/content/theme/jekyll-theme-wu-kan.md @@ -1,14 +1,13 @@ --- title: wu-kan -github: 'https://github.com/wu-kan/wu-kan.github.io' -demo: 'https://wu-kan.github.io' +github: https://github.com/wu-kan/wu-kan.github.io +demo: https://wu-kan.github.io author: WuK ssg: - Jekyll cms: - No Cms date: 2019-02-22T21:33:42.000Z -github_branch: master -description: 'A content-first, sliding sidebar theme for Jekyll.' +description: A content-first, sliding sidebar theme for Jekyll. stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-theme-yat.md b/content/theme/jekyll-theme-yat.md index 9074a0d13..553ea8efc 100644 --- a/content/theme/jekyll-theme-yat.md +++ b/content/theme/jekyll-theme-yat.md @@ -1,10 +1,9 @@ --- title: Yet Another Theme (YAT) -github: 'https://github.com/jeffreytse/jekyll-theme-yat' -demo: 'https://jeffreytse.github.io/jekyll-theme-yat/' +github: https://github.com/jeffreytse/jekyll-theme-yat +demo: https://jeffreytse.github.io/jekyll-theme-yat/ author: Jeffrey Tse date: 2020-09-01T00:00:00.000Z -github_branch: master ssg: - Jekyll cms: @@ -12,8 +11,7 @@ cms: archetype: - Blog - Business - - Multi Purpose -description: "\U0001F3A8 Yet another theme for elegant writers with modern flat style." +description: 🎨 Yet another theme for elegant writers with modern flat style. stale: false --- diff --git a/content/theme/jekyll-thinkspace.md b/content/theme/jekyll-thinkspace.md index 53e0fe76c..065da0846 100644 --- a/content/theme/jekyll-thinkspace.md +++ b/content/theme/jekyll-thinkspace.md @@ -1,16 +1,15 @@ --- title: Thinkspace -github: 'https://github.com/heiswayi/thinkspace' -demo: 'https://heiswayi.github.io/thinkspace/' +github: https://github.com/heiswayi/thinkspace +demo: https://heiswayi.github.io/thinkspace/ author: Heiswayi Nrird ssg: - Jekyll cms: - No Cms date: 2016-06-11T09:31:31.000Z -github_branch: master description: >- Just another minimalist Jekyll theme which designed for technical writing blog. -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-thunder.md b/content/theme/jekyll-thunder.md index bab064fbc..1c2e782de 100644 --- a/content/theme/jekyll-thunder.md +++ b/content/theme/jekyll-thunder.md @@ -1,14 +1,13 @@ --- title: Thunder -github: 'https://github.com/sharu725/thunder' -demo: 'https://webjeda.com/thunder/' +github: https://github.com/sharu725/thunder +demo: https://webjeda.com/thunder/ author: sharathdt ssg: - Jekyll cms: - No Cms date: 2016-05-12T16:03:19.000Z -github_branch: master description: A minimal and superfast Jekyll theme stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-trading.md b/content/theme/jekyll-trading.md index b3a54ef14..f3d83db75 100644 --- a/content/theme/jekyll-trading.md +++ b/content/theme/jekyll-trading.md @@ -1,14 +1,13 @@ --- title: Trading -github: 'https://github.com/altcointrading/trading' -demo: 'https://www.altcointrading.net/' +github: https://github.com/altcointrading/trading +demo: https://www.altcointrading.net/ author: Altcoin Trading ssg: - Jekyll cms: - No Cms date: 2016-04-08T08:45:41.000Z -github_branch: master description: jekyll theme in newspaper style stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-travelog.md b/content/theme/jekyll-travelog.md index a56c1bb81..1ef18d75a 100644 --- a/content/theme/jekyll-travelog.md +++ b/content/theme/jekyll-travelog.md @@ -1,16 +1,15 @@ --- title: Travelog -github: 'https://github.com/rowanoulton/travelog-theme' -demo: 'https://travelog.io/' +github: https://github.com/rowanoulton/travelog-theme +demo: https://travelog.io/ author: Rowan Oulton ssg: - Jekyll cms: - No Cms date: 2014-08-05T05:36:00.000Z -github_branch: master description: Travelog is a theme for Jekyll that is both elegant and downright simple. stale: true -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-travelogue.md b/content/theme/jekyll-travelogue.md index 088c14787..c5cdb88ed 100644 --- a/content/theme/jekyll-travelogue.md +++ b/content/theme/jekyll-travelogue.md @@ -1,16 +1,15 @@ --- title: Travelogue -github: 'https://github.com/SalGnt/Travelogue' -demo: 'https://salgnt.github.io/Travelogue/' +github: https://github.com/SalGnt/Travelogue +demo: https://salgnt.github.io/Travelogue/ author: Salvatore Gentile ssg: - Jekyll cms: - No Cms date: 2015-01-13T15:49:27.000Z -github_branch: master description: >- A minimal, single-column Jekyll theme that provides an immersive read experience for your readers. -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-trophy.md b/content/theme/jekyll-trophy.md index 941f1b095..37d8e5e4c 100644 --- a/content/theme/jekyll-trophy.md +++ b/content/theme/jekyll-trophy.md @@ -1,16 +1,15 @@ --- title: Trophy -github: 'https://github.com/thomasvaeth/trophy-jekyll' -demo: 'https://thomasvaeth.com/trophy/' +github: https://github.com/thomasvaeth/trophy-jekyll +demo: https://thomasvaeth.com/trophy/ author: Thomas Vaeth ssg: - Jekyll cms: - No Cms date: 2016-08-29T04:37:02.000Z -github_branch: master -description: "\U0001F3C6 – A blog theme for Jekyll." +description: 🏆 – A blog theme for Jekyll. stale: true -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-ttskch-theme.md b/content/theme/jekyll-ttskch-theme.md index b78490e8b..4313a8361 100644 --- a/content/theme/jekyll-ttskch-theme.md +++ b/content/theme/jekyll-ttskch-theme.md @@ -1,14 +1,13 @@ --- title: TtskchTheme -github: 'https://github.com/ttskch/jekyll-ttskch-theme' -demo: 'https://ttskch.github.io/jekyll-ttskch-theme/' +github: https://github.com/ttskch/jekyll-ttskch-theme +demo: https://ttskch.github.io/jekyll-ttskch-theme/ author: Takashi Kanemoto ssg: - Jekyll cms: - No Cms date: 2015-01-23T10:41:56.000Z -github_branch: master description: A simple and customizable theme for Jekyll. stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-tufte-theme.md b/content/theme/jekyll-tufte-theme.md index f0a890adf..2781e1933 100644 --- a/content/theme/jekyll-tufte-theme.md +++ b/content/theme/jekyll-tufte-theme.md @@ -1,14 +1,13 @@ --- title: Tufte-Jekyll -github: 'https://github.com/clayh53/tufte-jekyll' -demo: 'https://clayh53.github.io/tufte-jekyll/' +github: https://github.com/clayh53/tufte-jekyll +demo: https://clayh53.github.io/tufte-jekyll/ author: Clay Harmon ssg: - Jekyll cms: - No Cms date: 2015-02-20T21:51:52.000Z -github_branch: master description: >- Minimal Jekyll blog styled to resemble the look and layout of Edward Tufte's books diff --git a/content/theme/jekyll-twenty.md b/content/theme/jekyll-twenty.md index 676e13fc0..d7b22ed32 100644 --- a/content/theme/jekyll-twenty.md +++ b/content/theme/jekyll-twenty.md @@ -1,16 +1,17 @@ --- title: Twenty -github: 'https://github.com/CloudCannon/Twenty-Jekyll-Theme' -demo: 'https://html5up.net/twenty' -author: 'HTML5 UP (html5up.net), @n33co' +github: https://github.com/CloudCannon/Twenty-Jekyll-Theme +demo: https://html5up.net/twenty +author: HTML5 UP (html5up.net), @n33co ssg: - Jekyll cms: - No Cms date: 2015-01-07T02:59:06.000Z -github_branch: master description: >- Twenty Jekyll Theme - more themes available @ https://cloudcannon.com/jekyll_themes stale: true +disabled: true +disabled_reason: error checking demo url --- \ No newline at end of file diff --git a/content/theme/jekyll-twister.md b/content/theme/jekyll-twister.md index 0f10b9ed8..4895dcd6a 100644 --- a/content/theme/jekyll-twister.md +++ b/content/theme/jekyll-twister.md @@ -1,16 +1,15 @@ --- title: Twister -github: 'https://github.com/DigitalMindCH/twister' -demo: 'https://digitalmind.ch/themes/twister-jekyll-theme/demo/' +github: https://github.com/DigitalMindCH/twister +demo: https://digitalmind.ch/themes/twister-jekyll-theme/demo/ author: Digitalmind ssg: - Jekyll cms: - No Cms date: 2015-05-11T09:18:26.000Z -github_branch: master description: a free multimedia jekyll theme stale: true +disabled_reason: error checking demo url disabled: true -disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-two-column.md b/content/theme/jekyll-two-column.md index 28c61fe4c..6a5f29958 100644 --- a/content/theme/jekyll-two-column.md +++ b/content/theme/jekyll-two-column.md @@ -1,16 +1,15 @@ --- title: 2 column Blog with Video -github: 'https://github.com/Digital-Roots/Jekyll-2-Column-Theme' -demo: 'https://www.digitalroots.io/two-column/' +github: https://github.com/Digital-Roots/Jekyll-2-Column-Theme +demo: https://www.digitalroots.io/two-column/ author: Robert Edwardes ssg: - Jekyll cms: - No Cms date: 2016-11-01T17:51:22.000Z -github_branch: master description: Basic Jekyll Theme with 2 Column stale: true -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-type-theme.md b/content/theme/jekyll-type-theme.md index b53fa1d3b..efdd2769e 100644 --- a/content/theme/jekyll-type-theme.md +++ b/content/theme/jekyll-type-theme.md @@ -1,14 +1,13 @@ --- title: Jekyll Type Theme -github: 'https://github.com/rohanchandra/type-theme' -demo: 'https://rohanchandra.github.io/type-theme/' +github: https://github.com/rohanchandra/type-theme +demo: https://rohanchandra.github.io/type-theme/ author: Rohan Chandra ssg: - Jekyll cms: - No Cms date: 2015-01-07T02:37:24.000Z -github_branch: master description: >- A free and open-source Jekyll theme with responsive design. Great for blogs and easy to customize. diff --git a/content/theme/jekyll-type.md b/content/theme/jekyll-type.md index c63561813..292ee5b51 100644 --- a/content/theme/jekyll-type.md +++ b/content/theme/jekyll-type.md @@ -1,14 +1,13 @@ --- title: Jekyll Type -github: 'https://github.com/aspirethemes/type' -demo: 'https://type-jekyll.aspirethemes.com/' +github: https://github.com/aspirethemes/type +demo: https://type-jekyll.aspirethemes.com/ author: Aspire Themes ssg: - Jekyll cms: - No Cms date: 2017-09-25T11:27:16.000Z -github_branch: master -description: "\U0001F389 Minimal and Clean Free Jekyll Theme" -stale: false +description: 🎉 Minimal and Clean Free Jekyll Theme +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-typewriter.md b/content/theme/jekyll-typewriter.md index b67e3c4cf..adbf840af 100644 --- a/content/theme/jekyll-typewriter.md +++ b/content/theme/jekyll-typewriter.md @@ -1,14 +1,13 @@ --- title: Typewriter -github: 'https://github.com/alixedi/typewriter' -demo: 'https://alixedi.github.io/typewriter/' +github: https://github.com/alixedi/typewriter +demo: https://alixedi.github.io/typewriter/ author: alixedi ssg: - Jekyll cms: - No Cms date: 2014-06-05T18:19:20.000Z -github_branch: master description: A simple and beautiful theme for Jekyll stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-typing-theme.md b/content/theme/jekyll-typing-theme.md index 1028d16a2..725c5b0d1 100644 --- a/content/theme/jekyll-typing-theme.md +++ b/content/theme/jekyll-typing-theme.md @@ -1,14 +1,13 @@ --- title: Typing -github: 'https://github.com/williamcanin/typing-jekyll-template' -demo: 'https://williamcanin.github.io/typing-jekyll-template/' +github: https://github.com/williamcanin/typing-jekyll-template +demo: https://williamcanin.github.io/typing-jekyll-template/ author: William Canin ssg: - Jekyll cms: - No Cms date: 2017-04-20T17:36:16.000Z -github_branch: master description: >- :syringe: Typing, is a template for Jekyll built especially for those who want to have a blog and pages quickly and lightly. diff --git a/content/theme/jekyll-ultra-minimalista.md b/content/theme/jekyll-ultra-minimalista.md index 2db97cff9..839da7d92 100644 --- a/content/theme/jekyll-ultra-minimalista.md +++ b/content/theme/jekyll-ultra-minimalista.md @@ -1,15 +1,14 @@ --- title: Ultra-Minimalista -github: 'https://github.com/brxyxncorp/ultra-minimalista' -demo: 'https://brxyxncorp.github.io/ultra-minimalista/' +github: https://github.com/brxyxncorp/ultra-minimalista +demo: https://brxyxncorp.github.io/ultra-minimalista/ author: Brayan López ssg: - Jekyll cms: - No Cms date: 2016-12-25T05:30:54.000Z -github_branch: master stale: true -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-uno-dbyll.md b/content/theme/jekyll-uno-dbyll.md index 6c620c058..2a7c55d02 100644 --- a/content/theme/jekyll-uno-dbyll.md +++ b/content/theme/jekyll-uno-dbyll.md @@ -1,14 +1,13 @@ --- title: Uno-dbyll -github: 'https://github.com/meliodus/uno-dbyll' -demo: 'https://meliodus.github.io/uno-dbyll/' +github: https://github.com/meliodus/uno-dbyll +demo: https://meliodus.github.io/uno-dbyll/ author: Ankan Biswas ssg: - Jekyll cms: - No Cms date: 2015-02-01T19:02:47.000Z -github_branch: gh-pages -description: 'Simple, clean, responsive and stylist theme for jekyll' +description: Simple, clean, responsive and stylist theme for jekyll stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-uno-timeline.md b/content/theme/jekyll-uno-timeline.md index 5f88894b5..4b74fe76b 100644 --- a/content/theme/jekyll-uno-timeline.md +++ b/content/theme/jekyll-uno-timeline.md @@ -1,7 +1,7 @@ --- title: Jekyll-Uno-Timeline -github: 'https://github.com/tzuehlke/jekyll-uno-timeline' -demo: 'https://thomas.zuehlke.family/' +github: https://github.com/tzuehlke/jekyll-uno-timeline +demo: https://thomas.zuehlke.family/ author: Thomas Zühlke ssg: - Jekyll @@ -12,9 +12,10 @@ cms: archetype: - Single Page date: 2020-01-31T06:00:00.000Z -github_branch: master description: >- Jekyll-Uno-Timeline - a minimal, responsive theme for Jekyll based on Uno for Ghost with a list of projects as Timeline and without blog. -stale: true +stale: false +disabled: true +disabled_reason: error checking demo url --- diff --git a/content/theme/jekyll-uno.md b/content/theme/jekyll-uno.md index 439a36fc2..42c0ff25e 100644 --- a/content/theme/jekyll-uno.md +++ b/content/theme/jekyll-uno.md @@ -1,14 +1,13 @@ --- title: Jekyll-Uno -github: 'https://github.com/joshgerdes/jekyll-uno' -demo: 'https://joshgerdes.com/jekyll-uno/' +github: https://github.com/joshgerdes/jekyll-uno +demo: https://joshgerdes.com/jekyll-uno/ author: Josh Gerdes ssg: - Jekyll cms: - No Cms date: 2016-01-10T03:59:53.000Z -github_branch: master -description: 'Jekyll-Uno - a minimal, responsive theme for Jekyll based on Uno for Ghost' -stale: false +description: Jekyll-Uno - a minimal, responsive theme for Jekyll based on Uno for Ghost +stale: true --- diff --git a/content/theme/jekyll-urban.md b/content/theme/jekyll-urban.md index 14ce6d292..9dbf43712 100644 --- a/content/theme/jekyll-urban.md +++ b/content/theme/jekyll-urban.md @@ -1,14 +1,13 @@ --- title: Urban -github: 'https://github.com/midzer/urban-theme' -demo: 'https://midzer.github.io/urban-theme/' +github: https://github.com/midzer/urban-theme +demo: https://midzer.github.io/urban-theme/ author: Dennis Rohner ssg: - Jekyll cms: - No Cms date: 2015-10-06T13:35:07.000Z -github_branch: master description: minimal jekyll theme for visual artists -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-video.md b/content/theme/jekyll-video.md index 4dab76281..2cebffb00 100644 --- a/content/theme/jekyll-video.md +++ b/content/theme/jekyll-video.md @@ -1,14 +1,13 @@ --- title: Jekyll Video -github: 'https://github.com/mushishi78/jekyll-video' -demo: 'https://mushishi78.github.io/jekyll-video/' +github: https://github.com/mushishi78/jekyll-video +demo: https://mushishi78.github.io/jekyll-video/ author: Max White ssg: - Jekyll cms: - No Cms date: 2015-08-24T01:18:55.000Z -github_branch: gh-pages description: Template for a video blog stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-violet.md b/content/theme/jekyll-violet.md index f52769ed4..8877d7661 100644 --- a/content/theme/jekyll-violet.md +++ b/content/theme/jekyll-violet.md @@ -1,16 +1,15 @@ --- title: Violet -github: 'https://github.com/sergiokopplin/violet' -demo: 'https://sergiokopplin.github.io/violet/' +github: https://github.com/sergiokopplin/violet +demo: https://sergiokopplin.github.io/violet/ author: Sérgio Kopplin ssg: - Jekyll cms: - No Cms date: 2016-07-06T02:09:17.000Z -github_branch: gh-pages description: ':crystal_ball: Violet Jekyll Template' stale: true -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-vision-casper-theme.md b/content/theme/jekyll-vision-casper-theme.md index 04dc65284..9a1605762 100644 --- a/content/theme/jekyll-vision-casper-theme.md +++ b/content/theme/jekyll-vision-casper-theme.md @@ -1,14 +1,13 @@ --- title: Jekyll Vision Casper Theme -github: 'https://github.com/hugocarreira/jekyll-vision-casper-theme' -demo: 'https://hugocarreira.github.io/jekyll-vision-casper-theme/' +github: https://github.com/hugocarreira/jekyll-vision-casper-theme +demo: https://hugocarreira.github.io/jekyll-vision-casper-theme/ author: Hugo Carrereira ssg: - Jekyll cms: - No Cms date: 2016-11-26T05:26:16.000Z -github_branch: gh-pages description: >- :construction: work in progress - only my simple vision of casper theme adapted to jekyll diff --git a/content/theme/jekyll-vitae.md b/content/theme/jekyll-vitae.md index 4e1174853..57f8267fc 100644 --- a/content/theme/jekyll-vitae.md +++ b/content/theme/jekyll-vitae.md @@ -1,14 +1,15 @@ --- title: Vitae -github: 'https://github.com/biomadeira/vitae' -demo: 'https://jekyller.github.io/vitae/' +github: https://github.com/biomadeira/vitae +demo: https://jekyller.github.io/vitae/ author: biomadeira ssg: - Jekyll cms: - No Cms date: 2015-10-24T19:05:41.000Z -github_branch: gh-pages -description: "\U0001F468‍\U0001F4BC Personal resume powered by Jekyll" -stale: true +description: 👨‍💼 Personal resume powered by Jekyll +stale: false +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-voyager.md b/content/theme/jekyll-voyager.md index 82b8ed4e7..ce6e7dbbe 100644 --- a/content/theme/jekyll-voyager.md +++ b/content/theme/jekyll-voyager.md @@ -1,14 +1,13 @@ --- title: Voyager -github: 'https://github.com/redVi/voyager' -demo: 'https://redvi.github.io/voyager/' +github: https://github.com/redVi/voyager +demo: https://redvi.github.io/voyager/ author: redVi ssg: - Jekyll cms: - No Cms date: 2016-06-29T06:06:11.000Z -github_branch: master description: Just another jekyll theme. -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-vyaasa.md b/content/theme/jekyll-vyaasa.md index 667c61934..89fc7b78c 100644 --- a/content/theme/jekyll-vyaasa.md +++ b/content/theme/jekyll-vyaasa.md @@ -1,14 +1,15 @@ --- title: Vyaasa -github: 'https://github.com/sharu725/vyaasa' -demo: 'https://webjeda.com/vyaasa' +github: https://github.com/sharu725/vyaasa +demo: https://webjeda.com/vyaasa author: webjeda ssg: - Jekyll cms: - No Cms date: 2016-09-22T14:23:34.000Z -github_branch: master description: Here is the demo -stale: true +stale: false +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-wall-e-theme.md b/content/theme/jekyll-wall-e-theme.md index d3c7c0178..e26ba0b84 100644 --- a/content/theme/jekyll-wall-e-theme.md +++ b/content/theme/jekyll-wall-e-theme.md @@ -1,14 +1,13 @@ --- title: Wall-E -github: 'https://github.com/abhn/Wall-E' -demo: 'https://wall-e-jekyll.github.io/' +github: https://github.com/abhn/Wall-E +demo: https://wall-e-jekyll.github.io/ author: Abhishek Nagekar ssg: - Jekyll cms: - No Cms date: 2017-10-21T10:30:33.000Z -github_branch: master description: >- A modern jekyll theme with grid frontpage, beautiful typography, mobile responsive, made with Semantic UI diff --git a/content/theme/jekyll-wangana.md b/content/theme/jekyll-wangana.md index f0499818e..31f9402f6 100644 --- a/content/theme/jekyll-wangana.md +++ b/content/theme/jekyll-wangana.md @@ -1,14 +1,13 @@ --- title: Wangana -github: 'https://github.com/nadjetey/wangana' -demo: 'https://thesowah.github.io/wangana/' +github: https://github.com/nadjetey/wangana +demo: https://thesowah.github.io/wangana/ author: Nii Adjetey Sowah ssg: - Jekyll cms: - No Cms date: 2014-02-09T16:41:40.000Z -github_branch: master description: >- Wangana is a responsive Jekyll theme, perfect for powering your GitHub hosted blog. diff --git a/content/theme/jekyll-watery.md b/content/theme/jekyll-watery.md new file mode 100644 index 000000000..65bc52865 --- /dev/null +++ b/content/theme/jekyll-watery.md @@ -0,0 +1,40 @@ +--- +title: Watery +github: https://github.com/brennanbrown/watery +demo: https://watery.netlify.app +author: brennanbrown +date: 2021-05-04T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +archetype: + - Blog +description: >- + A minimalist, bare-bones theme for Jekyll only using the Water.css framework + while still following the best practices for accessibility and search-engine + optimization. +stale: false +--- + +# Watery Theme for Jekyll + +**Watery** is a minimalist, bare-bones theme for the popular JAMstack file-based CMS Jekyll that only uses the `<80kb` [**Water.css** framework](https://github.com/kognise/water.css) (hence the name!), while still following the best practices possible for accessibility and search-engine optimization. + +I created this because I wasn't able to find an up-to-date starter/skeleton theme for Jekyll. Even the default theme, Minima, uses the large Bootstrap framework. + +This project is aimed towards those curious about using Jekyll for the first time, and want to build from as close to scratch as possible. Alternatively, it still has all the features required for creating a hassle-free, informational website or blog in just a few clicks. + +As of November 1st, 2020, with >70 posts on Watery, the website scores a perfect 100 in Performance, Accessibility, Best Practices, and SEO on an audit with [**Google Lighthouse**](https://developers.google.com/web/tools/lighthouse). + +## Features + +Despite Watery's minimalist nature, there are a few interesting features that have been added: + +- A fully customizable and empty `_BLANK_config.yml` to make getting up-and-running easy. +- Having a `_pages` collection for easier organization. +- Auto-generated links in navigation to all pages in `_pages`. +- Auto-generated [tags page](https://watery.netlify.app/tags) that lists all tags used by all posts in chronological order. +- An author bio at the end of each post. (Located in `_inclues/author.html`) +- Full [Rouge](https://github.com/rouge-ruby/rouge) support for syntax code highlighting. (Currently using `base16.solarized.light`) +- Auto-generated RSS feed, sitemap, accessibility features, and search-engine optimization. diff --git a/content/theme/jekyll-web-presentation-theme.md b/content/theme/jekyll-web-presentation-theme.md index 79b79a1f4..12174fb4a 100644 --- a/content/theme/jekyll-web-presentation-theme.md +++ b/content/theme/jekyll-web-presentation-theme.md @@ -1,14 +1,13 @@ --- title: Web-presentation -github: 'https://github.com/deepidea/web-presentation' -demo: 'https://deepidea.github.io/web-presentation/' +github: https://github.com/deepidea/web-presentation +demo: https://deepidea.github.io/web-presentation/ author: DeepIdea ssg: - Jekyll cms: - No Cms date: 2017-10-15T05:35:15.000Z -github_branch: master description: Jekyll theme template to create web presentation -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-webjeda-ashwath.md b/content/theme/jekyll-webjeda-ashwath.md index d4885c653..8f6f258f0 100644 --- a/content/theme/jekyll-webjeda-ashwath.md +++ b/content/theme/jekyll-webjeda-ashwath.md @@ -1,14 +1,15 @@ --- title: Webjeda Ashwath -github: 'https://github.com/sharu725/ashwath' -demo: 'https://webjeda.com/ashwath/' +github: https://github.com/sharu725/ashwath +demo: https://webjeda.com/ashwath/ author: webjeda ssg: - Jekyll cms: - No Cms date: 2017-03-22T19:17:15.000Z -github_branch: master description: Minimal Jekyll Theme with an app like layout -stale: true +stale: false +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/jekyll-webjeda-cards.md b/content/theme/jekyll-webjeda-cards.md index 308b9f6c0..f1353334e 100644 --- a/content/theme/jekyll-webjeda-cards.md +++ b/content/theme/jekyll-webjeda-cards.md @@ -1,14 +1,13 @@ --- title: Webjeda Cards -github: 'https://github.com/sharu725/cards' -demo: 'https://webjeda.com/cards' +github: https://github.com/sharu725/cards +demo: https://webjeda.com/cards author: sharathdt ssg: - Jekyll cms: - No Cms date: 2016-06-16T10:12:17.000Z -github_branch: master description: A bootstrap based minimal jekyll theme stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-what-a-theme.md b/content/theme/jekyll-what-a-theme.md index c0f16079d..a8722c067 100644 --- a/content/theme/jekyll-what-a-theme.md +++ b/content/theme/jekyll-what-a-theme.md @@ -1,14 +1,13 @@ --- title: What A Theme -github: 'https://github.com/thedevslot/WhatATheme/' -demo: 'https://thedevslot.github.io/WhatATheme/' -author: 'Sneha Omer, Harsh Trivedi' +github: https://github.com/thedevslot/WhatATheme/ +demo: https://thedevslot.github.io/WhatATheme/ +author: Sneha Omer, Harsh Trivedi date: 2020-08-22T00:00:00.000Z ssg: - Jekyll cms: - No Cms -github_branch: master archetype: - Blog - Portfolio diff --git a/content/theme/jekyll-white-paper.md b/content/theme/jekyll-white-paper.md index c9faa62ac..ba490ee6c 100644 --- a/content/theme/jekyll-white-paper.md +++ b/content/theme/jekyll-white-paper.md @@ -1,14 +1,13 @@ --- title: White Paper -github: 'https://github.com/vinitkumar/white-paper' -demo: 'https://vinitkumar.github.io/white-paper/' +github: https://github.com/vinitkumar/white-paper +demo: https://vinitkumar.github.io/white-paper/ author: Vinit Kumar ssg: - Jekyll cms: - No Cms date: 2014-06-30T14:56:52.000Z -github_branch: gh-pages -description: 'Simple, elegant and clean jekyll theme.' -stale: false +description: Simple, elegant and clean jekyll theme. +stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-whiteglass.md b/content/theme/jekyll-whiteglass.md index faea82fc5..32822c656 100644 --- a/content/theme/jekyll-whiteglass.md +++ b/content/theme/jekyll-whiteglass.md @@ -1,14 +1,13 @@ --- title: whiteglass -github: 'https://github.com/yous/whiteglass' -demo: 'https://yous.github.io/whiteglass/' +github: https://github.com/yous/whiteglass +demo: https://yous.github.io/whiteglass/ author: Chayoung You ssg: - Jekyll cms: - No Cms date: 2017-01-06T17:13:03.000Z -github_branch: master -description: 'Minimal, responsive Jekyll theme for hackers' +description: Minimal, responsive Jekyll theme for hackers stale: false --- \ No newline at end of file diff --git a/content/theme/jekyll-wiki-blog.md b/content/theme/jekyll-wiki-blog.md index aed9063ec..f76f66683 100644 --- a/content/theme/jekyll-wiki-blog.md +++ b/content/theme/jekyll-wiki-blog.md @@ -1,14 +1,13 @@ --- title: Wiki Blog -github: 'https://github.com/lixizhi/lixizhi.github.io' -demo: 'https://lixizhi.github.io/' +github: https://github.com/lixizhi/lixizhi.github.io +demo: https://lixizhi.github.io/ author: LiXizhi ssg: - Jekyll cms: - No Cms date: 2015-11-17T09:51:10.000Z -github_branch: master description: Xizhi's personal website stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-windows-95-theme.md b/content/theme/jekyll-windows-95-theme.md index e4a3eeb51..5d0489c01 100644 --- a/content/theme/jekyll-windows-95-theme.md +++ b/content/theme/jekyll-windows-95-theme.md @@ -1,14 +1,13 @@ --- title: Windows 95 -github: 'https://github.com/h01000110/windows-95' -demo: 'https://h01000110.github.io/windows-95/' +github: https://github.com/h01000110/windows-95 +demo: https://h01000110.github.io/windows-95/ author: h01000110 (hi) ssg: - Jekyll cms: - No Cms date: 2017-09-17T15:21:03.000Z -github_branch: master description: Jekyll Theme stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-wing.md b/content/theme/jekyll-wing.md index c84f0e5d1..72b6cd9f2 100644 --- a/content/theme/jekyll-wing.md +++ b/content/theme/jekyll-wing.md @@ -1,14 +1,13 @@ --- title: Wing -github: 'https://github.com/nikrich/jekyll-wing-template' -demo: 'https://nikrich.github.io/jekyll-wing-template/#' +github: https://github.com/nikrich/jekyll-wing-template +demo: https://nikrich.github.io/jekyll-wing-template/# author: Jannik Richter ssg: - Jekyll cms: - No Cms date: 2016-07-19T09:48:57.000Z -github_branch: master description: Light and beautiful blog style template for jekyll stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-xixia-theme.md b/content/theme/jekyll-xixia-theme.md index 251dc85db..a886062df 100644 --- a/content/theme/jekyll-xixia-theme.md +++ b/content/theme/jekyll-xixia-theme.md @@ -1,14 +1,15 @@ --- title: Xixia -github: 'https://github.com/zxixia/jekyll-xixia' -demo: 'https://xixia.info/jekyll-xixia/' +github: https://github.com/zxixia/jekyll-xixia +demo: https://xixia.info/jekyll-xixia/ author: Xixia ssg: - Jekyll cms: - No Cms date: 2017-09-19T06:00:06.000Z -github_branch: gh-pages description: A Jekyll theme. stale: true +disabled: true +disabled_reason: error checking demo url --- \ No newline at end of file diff --git a/content/theme/jekyll-yamt.md b/content/theme/jekyll-yamt.md index 781844c8f..c3b110ae7 100644 --- a/content/theme/jekyll-yamt.md +++ b/content/theme/jekyll-yamt.md @@ -1,16 +1,15 @@ --- title: YAMT -github: 'https://github.com/PandaSekh/Jekyll-YAMT' -demo: 'https://yamt.netlify.app/' +github: https://github.com/PandaSekh/Jekyll-YAMT +demo: https://yamt.netlify.app/ author: Alessio Franceschi date: 2020-05-21T00:00:00.000Z -github_branch: master ssg: - Jekyll cms: - no cms description: YAMT is a minimal Jekyll theme focused on simplicity and ease-of-use. -stale: false +stale: true --- # YAMT - Yet Another Minimal Theme diff --git a/content/theme/jekyll-yellowblue.md b/content/theme/jekyll-yellowblue.md index 97daaf6d5..d91758e9e 100644 --- a/content/theme/jekyll-yellowblue.md +++ b/content/theme/jekyll-yellowblue.md @@ -1,16 +1,15 @@ --- title: Yellowblue -github: 'https://github.com/chalatz/yellowblue' -demo: 'https://chalatz.github.io/yellowblue/' +github: https://github.com/chalatz/yellowblue +demo: https://chalatz.github.io/yellowblue/ author: Christos Alatzas ssg: - Jekyll cms: - No Cms date: 2015-10-16T09:59:38.000Z -github_branch: master description: Yellowblue. A free responsive Jekyll blog theme. stale: true -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/jekyll-yummy-theme.md b/content/theme/jekyll-yummy-theme.md index fbfcf535a..e1e6ffc2e 100644 --- a/content/theme/jekyll-yummy-theme.md +++ b/content/theme/jekyll-yummy-theme.md @@ -1,14 +1,13 @@ --- title: Yummy Theme -github: 'https://github.com/DONGChuan/Yummy-Jekyll' -demo: 'https://dongchuan.github.io/' +github: https://github.com/DONGChuan/Yummy-Jekyll +demo: https://dongchuan.github.io/ author: DONG Chuan ssg: - Jekyll cms: - No Cms date: 2016-05-13T12:47:31.000Z -github_branch: master description: Yummy Jekyll Theme stale: true --- \ No newline at end of file diff --git a/content/theme/jekyll-zeespre-one.md b/content/theme/jekyll-zeespre-one.md new file mode 100644 index 000000000..f1470a536 --- /dev/null +++ b/content/theme/jekyll-zeespre-one.md @@ -0,0 +1,21 @@ +--- +title: ZeeSpire One +github: https://github.com/ZeeSpire/one-free +demo: https://one-free.zeespire.com/ +author: ZeeSpire +ssg: + - Jekyll +cms: + - No Cms +date: 2021-12-15T14:07:26.000Z +description: ZeeSpire One, clean design +stale: false +disabled: true +disabled_reason: demo url not found +--- + +- Premium theme using Jekyll version 4.1.2 & Bootstrap 5 +- Multipurpose (multiple homepage layouts) +- Fully ready for production within minutes +- Responsive, SEO Friendly, and Mobile optimized +- Step by step documentation diff --git a/content/theme/jekyll-zetsu.md b/content/theme/jekyll-zetsu.md index 58dcf87ad..c3f682462 100644 --- a/content/theme/jekyll-zetsu.md +++ b/content/theme/jekyll-zetsu.md @@ -1,14 +1,13 @@ --- title: Zetsu -github: 'https://github.com/nandomoreirame/zetsu' -demo: 'https://nandomoreirame.github.io/zetsu/' +github: https://github.com/nandomoreirame/zetsu +demo: https://nandomoreirame.github.io/zetsu/ author: Fernando Moreira ssg: - Jekyll cms: - No Cms date: 2015-08-08T05:58:15.000Z -github_branch: master -description: "\U0001F48E Zetsu - a free Jekyll theme" +description: 💎 Zetsu - a free Jekyll theme stale: true --- \ No newline at end of file diff --git a/content/theme/jekyllBear.md b/content/theme/jekyllBear.md new file mode 100644 index 000000000..3e8173a3e --- /dev/null +++ b/content/theme/jekyllBear.md @@ -0,0 +1,44 @@ +--- +title: jekyllBear +github: https://github.com/knhash/jekyllBear +demo: https://knhash.in/jekyllBear +author: knhash +date: 2022-08-25T00:00:00.000Z +ssg: + - Jekyll +cms: + - Forestry +archetype: + - Blog + - Portfolio + - Personal + - Multi Purpose +description: >- + A port of the awesome, minimal Bear Blog default theme to Jekyll, as a gem. + Plus tag support for your blogs. +stale: false +--- + +## An easy to use, minimal, text focused Jekyll theme + +[Bear Blog](https://bearblog.dev/) is *"a blogging platform where words matter most"*. + +This is a port of it's theme to Jekyll, with some tweaks. So you can use GitHub Pages to host your blog while getting the same awesome Bear Blog feels. + +**Stop worrying about the style, focus on your writing.** + +- Looks great on *any* device +- Tiny, optimized, and awesome pages +- No trackers, ads, or scripts, *did I mention minimal already?* +- Auto light and dark themes +- Tag support, to filter blog pages +- Quick, *15 minute* setup +- Gallery view for your images +- Code highlighting + +## Screenshots + +![Home](https://raw.githubusercontent.com/Knhash/jekyllBear/master/assets/images/JBHome.png?raw=true "Home") +![Blog](https://raw.githubusercontent.com/Knhash/jekyllBear/master/assets/images/JBBlog.png?raw=true "Blog") +![LongForm](https://raw.githubusercontent.com/Knhash/jekyllBear/master/assets/images/JBLongForm.png?raw=true "LongForm") +![Poetry](https://raw.githubusercontent.com/Knhash/jekyllBear/master/assets/images/JBPoetry.png?raw=true "Poetry") diff --git a/content/theme/just-me.md b/content/theme/just-me.md new file mode 100644 index 000000000..747a68f7f --- /dev/null +++ b/content/theme/just-me.md @@ -0,0 +1,30 @@ +--- +title: Just me! +github: https://github.com/jota-ele-ene/just-me +demo: https://jota-ele-ene.github.io/just-me-starter/ +author: José Luis Núñez +date: 2022-01-24T00:00:00.000Z +ssg: + - Hugo +cms: + - Forestry +description: >- + A minimal and fancy theme for Hugo to create Personal Pages with no blog or + extra content, just awesome rotating backgrounds and your social profiles to + allow people contact you. +stale: false +--- + +# Just me! + +A minimal and fancy theme for [Hugo](http://gohugo.io/) to create Personal Pages with no blog or extra content, just awesome rotating backgrounds and your social profiles to allow people contact you. A demo site is deployed here: https://jota-ele-ene.github.io/just-me-starter. + +![Just me! screenshot](/images/screenshot.png) + +## Features + +- Just a homepage with rotating fullscreen backgrounds +- Configure it including your social profiles +- Manage both backgrounds and social profiles like any other content in Hugo to avoid hard-coding in config-files +- Support for Google Analytics +- Contact form (in progress) diff --git a/content/theme/just-the-docs.md b/content/theme/just-the-docs.md index 6d6575f35..6ecd533eb 100644 --- a/content/theme/just-the-docs.md +++ b/content/theme/just-the-docs.md @@ -1,16 +1,17 @@ --- title: Just The Docs -github: 'https://github.com/pmarsceill/just-the-docs' -demo: 'https://pmarsceill.github.io/just-the-docs/' +github: https://github.com/pmarsceill/just-the-docs +demo: https://pmarsceill.github.io/just-the-docs/ author: Patrick Marsceill ssg: - Jekyll cms: - No Cms date: 2017-11-08T16:22:28.000Z -github_branch: master description: >- A modern, high customizable, responsive Jekyll theme for documention with built-in search. stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/kross-hugo-portfolio-template.md b/content/theme/kross-hugo-portfolio-template.md deleted file mode 100644 index 49d692625..000000000 --- a/content/theme/kross-hugo-portfolio-template.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: Kross -github: 'https://github.com/themefisher/kross-hugo-portfolio-template' -demo: 'https://themes.gohugo.io/theme/kross-hugo-portfolio-template/' -author: Theme Fisher -ssg: - - Hugo -cms: - - No Cms -date: 2019-05-13T08:18:18.000Z -github_branch: master -description: Kross Creative Portfolio Template -stale: false ---- diff --git a/content/theme/landing-page-theme.md b/content/theme/landing-page-theme.md index 4b47db4a5..994c3511b 100644 --- a/content/theme/landing-page-theme.md +++ b/content/theme/landing-page-theme.md @@ -1,14 +1,15 @@ --- title: Landing Page Jekyll theme -github: 'https://github.com/swcool/landing-page-theme' -demo: 'https://shaneweng.com/landing-page-theme/' +github: https://github.com/swcool/landing-page-theme +demo: https://shaneweng.com/landing-page-theme/ author: Shane Weng ssg: - Jekyll cms: - No Cms date: 2014-10-04T15:07:16.000Z -github_branch: master description: Jekyll Bootstrap theme stale: true +disabled: true +disabled_reason: error checking demo url --- diff --git a/content/theme/limp-dark.md b/content/theme/limp-dark.md index 56a186715..e540fbfed 100644 --- a/content/theme/limp-dark.md +++ b/content/theme/limp-dark.md @@ -1,21 +1,21 @@ --- title: Limp Dark -github: 'https://github.com/ankit-kumar-jat/limp-dark' -demo: 'https://ankitkumarjat.me/limp/' +github: https://github.com/ankit-kumar-jat/limp-dark +demo: https://ankitkumarjat.me/limp/ author: Ankit Kumar Jat date: 2020-11-28T00:00:00.000Z -github_branch: master ssg: - Jekyll cms: - No CMS css: - - sass + - SCSS archetype: - Blog description: A Lightning fast dark jekyll blog theme -disabled: true disabled_reason: demo url not found +stale: false +disabled: true --- # A simple starter kit for blog diff --git a/content/theme/linkhub-jekyll-theme.md b/content/theme/linkhub-jekyll-theme.md new file mode 100644 index 000000000..6eb9a8f0d --- /dev/null +++ b/content/theme/linkhub-jekyll-theme.md @@ -0,0 +1,29 @@ +--- +title: Linkhub +github: https://github.com/digitalmalayali/linkhub-jekyll-theme +demo: https://digitalmalayali.github.io/linkhub-jekyll-theme +author: Digital Malayali +date: 2023-10-04 +ssg: + - Jekyll +cms: + - No CMS +archetype: + - Single Page + - Personal + - Portfolio +description: A minimal, super-lightweight, free Jekyll theme to create a single-page, link-in-bio website like Linktree or Later! +--- + +# A simple link-in-bio theme for Jekyll + +This theme is a lightweight option for creating a minimal Linktree-like website, and it is fully compatible with GitHub Pages. + +## Features + +- 😊 Based on the original [Linkhub](https://github.com/digitalmalayali/Linkhub) template! +- 📸 Add links to Instagram, TikTok, YouTube or any posts similar to Later's link-in-bio! +- ⚡ Uses a modified version of the lightweight CSS framework [chota](https://github.com/jenil/chota); the entire site size is around 160kb! +- 🌙 Switch between dark and light modes; automatically choose the mode based on your system preference! +- 😍 Icons powered by [iconify](https://github.com/iconify/iconify); find tons of free icons for almost any purpose! +- 🔠 Categorize links; store your links under various categories! diff --git a/content/theme/listed.md b/content/theme/listed.md new file mode 100644 index 000000000..896a5168d --- /dev/null +++ b/content/theme/listed.md @@ -0,0 +1,36 @@ +--- +title: Listed +github: https://github.com/ronv/listed +demo: https://listed-hugo.netlify.app/ +author: Ronalds Vilcins +date: 2021-09-18T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +archetype: + - Blog + - Portfolio +description: Minimalistic, clean and simple design Hugo theme +stale: false +--- + +# Listed - Hugo theme + +Listed is a minimalistic Hugo blogging and portfolio theme. + +## Features + +- Minimalistic, clean and simple design +- Responsive design +- Inline CSS +- Anchor headings +- Tags +- 404 page +- Compressed CSS and HTML +- 100/100 score on Lighthouse, Page Speed Insights & Webpagetest +- Robots.txt +- Atom & Json feeds +- SCSS +- Seo optimized (Twitter cards, Facebook Open Graph, Schema.org) +- Ultra fast diff --git a/content/theme/lotusdocs.md b/content/theme/lotusdocs.md new file mode 100644 index 000000000..f5598ff7c --- /dev/null +++ b/content/theme/lotusdocs.md @@ -0,0 +1,48 @@ +--- +title: Lotus Docs +github: https://github.com/colinwilson/lotusdocs +demo: https://lotusdocs.dev/docs/quickstart/ +author: Colin Wilson +date: 2023-08-04 +ssg: + - Hugo +cms: + - No CMS +css: + - Bootstrap + - SCSS +archetype: + - Documentation +description: A free, lightweight, modern documentation theme for Hugo +stale: false +--- + +# Lotus Docs + +A lightweight, modern documentation theme for Hugo. Easily customized for building fast, secure, and SEO-friendly documentation sites. + +## Features + +- Modern documentation layout +- Responsive design / Mobile support +- Fast, Accessible and SEO-Friendly (💯 scores on [Google Lighthouse](https://pagespeed.web.dev/)!) +- Secure by default +- Built on Bootstrap 5 +- Deploy on [Vercel](https://vercel.com/) with multiple options +- Multilingual support (i18n) +- Powerful Syntax Highlighting via [Prism.js](https://prismjs.com/) +- Dark Mode +- Custom fonts (via [Google Fonts](https://fonts.google.com/)) +- Custom icons (via [Google Material Symbols](https://fonts.google.com/icons?icon.style=Outlined&icon.set=Material+Symbols)) +- Landing page template included +- Documentation sidebar menu (with optional icons) +- Table of Contents menu on each page (optional) +- Customisable theme accent colour +- Social media links (Github, Twitter, Instagram etc) +- Static Search plugin option (powered by [FlexSearch](https://github.com/nextapps-de/flexsearch), enabled by default) +- Support for [DocSearch](https://docsearch.algolia.com/) +- Custom shortcodes (PrismJS, Alerts, Tabs, Tables) +- Analytics ([Google Analytics v4](https://analytics.google.com/analytics/web/), [Plausible Analytics](https://plausible.io/)) +- [Open Graph](https://ogp.me/) +- [Mermaid](https://mermaid.js.org/) Support +- Math equations powered by [KaTeX](https://katex.org/) diff --git a/content/theme/materialpro-free-nuxtjs-template.md b/content/theme/materialpro-free-nuxtjs-template.md new file mode 100644 index 000000000..d068415a1 --- /dev/null +++ b/content/theme/materialpro-free-nuxtjs-template.md @@ -0,0 +1,51 @@ +--- +title: MaterialPro Free NuxtJs Admin Template +github: https://github.com/wrappixel/materialpro-nuxtjs-free +demo: https://materialpro-free-nuxtjs.netlify.app/ +author: WrapPixel +date: 2022-07-18T00:00:00.000Z +ssg: + - Nuxt +cms: + - No CMS +css: + - Vuetify + - Scss +archetype: + - Admin + - Dashboard +description: >- + MaterialPro is Free NuxtJs admin Template. It allows you to create stunning + backend application and more. It comes with ready to use UI Blocks & Elements + to help level up the design and aesthetics of your project. MaterialPro is + built on Nuxt 3 + Vite + Vuetify 3 + Typescript + Vue3. +stale: false +--- + +# Xtreme NextJs Free Dashboard + +The free version comes with elegant grid design that helps you play around with the look and feel of the web app the way you want. Even if you're a novice developer, clean code and easy to customize will get you up to speed in no time. +Checkout other Nuxtjs Templates and VueJs Templates by WrapPixel. + +## MaterialPro Free Nuxt Js Template Features + +* Nice and Creative Dashboard +* 5+ Custom Page Templates +* 2+ Integrated Plugins +* Charts, Tables and Carousel Designs +* Cars and Buttons + +## Developer friendly + +* Nuxt.js for Static Site Generator +* Type checking TypeScript +* Linter with ESLint +* Code Formatter with Prettier +* SEO metadata + +## This Template comes with + +* Code Splitting +* SEO Friendly +* Easy to Customize +* Production Ready diff --git a/content/theme/materio-free-react-nextjs-admin-template.md b/content/theme/materio-free-react-nextjs-admin-template.md new file mode 100644 index 000000000..e020a68a3 --- /dev/null +++ b/content/theme/materio-free-react-nextjs-admin-template.md @@ -0,0 +1,32 @@ +--- +title: Materio React NextJS Admin Template +github: https://github.com/themeselection/materio-mui-react-nextjs-admin-template-free +demo: https://demos.themeselection.com/materio-mui-react-nextjs-admin-template-free/ +author: Theme Selection +ssg: + - Next +cms: + - No CMS +date: 2022-03-16T00:00:00.000Z +description: >- + This is an open-source React Next. js admin template built with MUI. It is a + developer friendly and highly customizable free react admin template +stale: false +--- + +# An easy to use React Next. JS Admin Template Based on MUI + +This is a highly customizable and developer friendly Reac Next. JS admin template. Besides, it is available in both Typescript and Javascript versions. + +## Features + +* Based on MUI And Next. js +* Simple vertical menu +* 1 Simple Dashboard +* Simple from layouts +* Basic Cards, Tables +* 1 Chart Library +* Fully Responsive Layout +* Organized Folder Structure +* Clean & Commented Code +* Well Documented diff --git a/content/theme/materio-free-vuetify-nuxtjs-admin-template.md b/content/theme/materio-free-vuetify-nuxtjs-admin-template.md new file mode 100644 index 000000000..b3db424cb --- /dev/null +++ b/content/theme/materio-free-vuetify-nuxtjs-admin-template.md @@ -0,0 +1,31 @@ +--- +title: "Materio Vuetify NuxtJS Admin Template" +github: https://github.com/themeselection/materio-vuetify-nuxtjs-admin-template-free +demo: https://demos.themeselection.com/materio-vuetify-nuxtjs-admin-template-free/demo/dashboard +author: Theme Selection +ssg: + - Nuxt +cms: + - No CMS +date: 2024-01-17 +description: This is an open-source Vuetify NuxtJS admin template built with VueJS 3. It is a developer friendly and highly customizable free Nuxtjs admin template +--- + +# An easy to use Vuetify NuxtJS Admin Template Based on VueJS 3 + +This is a highly customizable and developer friendly Vuetify NuxtJS admin template. Besides, it is available in both Typescript and Javascript versions. + +## Features + +* Latest NuxtJS +* Vite 5 +* VuejS, Vuetify +* Utilizes Vue Router, VueUse +* Remix Icons +* 1 Simple Dashboard +* Basic Cards, Tables +* 1 Chart Library +* Fully Responsive Layout +* Organized Folder Structure +* Clean & Commented Code +* Well Documented diff --git a/content/theme/maverick.md b/content/theme/maverick.md new file mode 100644 index 000000000..c6fa309de --- /dev/null +++ b/content/theme/maverick.md @@ -0,0 +1,25 @@ +--- +title: Maverick +github: https://github.com/canhtran/maverick +demo: https://maverick.canhtran.me +author: Calvin Tran +date: 2022-09-26T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +archetype: + - Blog +description: A clean and minimal template for blog. +stale: false +--- + +# A clean Maverick + +Maverick is a minimalistic Hugo blogging theme. The theme is inspired from Poole and Listed + +## Features + +* Github comment +* Responsible +* Super lightweight diff --git a/content/theme/medium-export.md b/content/theme/medium-export.md index 75bfa3670..72225b264 100644 --- a/content/theme/medium-export.md +++ b/content/theme/medium-export.md @@ -1,14 +1,13 @@ --- title: Medium Export -github: 'https://github.com/philhawksworth/medium-export' -demo: 'https://rss-jamstack.netlify.com/' +github: https://github.com/philhawksworth/medium-export +demo: https://rss-jamstack.netlify.com/ author: Phil Hawksworth ssg: - Eleventy cms: - No Cms date: 2018-09-06T12:55:13.000Z -github_branch: master description: A demo of generating an JAMstack site from an RSS feed stale: true --- diff --git a/content/theme/mediumish-theme-jekyll.md b/content/theme/mediumish-theme-jekyll.md index 65bbc6832..dbb6f9397 100644 --- a/content/theme/mediumish-theme-jekyll.md +++ b/content/theme/mediumish-theme-jekyll.md @@ -1,14 +1,13 @@ --- title: Mediumish Theme Jekyll -github: 'https://github.com/wowthemesnet/mediumish-theme-jekyll' -demo: 'https://wowthemesnet.github.io/mediumish-theme-jekyll/' +github: https://github.com/wowthemesnet/mediumish-theme-jekyll +demo: https://wowthemesnet.github.io/mediumish-theme-jekyll/ author: WowThemesNet ssg: - Jekyll cms: - No Cms date: 2018-01-12T23:01:51.000Z -github_branch: master description: Jekyll Template - Mediumish -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/meghna-hugo.md b/content/theme/meghna-hugo.md deleted file mode 100644 index 2b763d95e..000000000 --- a/content/theme/meghna-hugo.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: Meghna Hugo -github: 'https://github.com/themefisher/meghna-hugo' -demo: 'https://themes.gohugo.io/theme/meghna-hugo/' -author: Themefisher -ssg: - - Hugo -cms: - - No Cms -date: 2018-09-12T09:09:05.000Z -github_branch: master -description: Meghna Hugo Template -stale: false ---- diff --git a/content/theme/mere-blog-theme.md b/content/theme/mere-blog-theme.md index 353125341..3a1b00736 100644 --- a/content/theme/mere-blog-theme.md +++ b/content/theme/mere-blog-theme.md @@ -1,10 +1,9 @@ --- title: Mere Blog Theme -github: 'https://github.com/chrisrhymes/mere-blog-theme' -demo: 'https://www.csrhymes.com/mere-blog-theme/' +github: https://github.com/chrisrhymes/mere-blog-theme +demo: https://www.csrhymes.com/mere-blog-theme/ author: chrisrhymes date: 2020-08-22T00:00:00.000Z -github_branch: master ssg: - Jekyll cms: @@ -16,5 +15,5 @@ archetype: description: >- Mere is a minimal and simple blog theme, and nothing more, for use with Jekyll and GitHub Pages. -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/middleman-bootstrap-template.md b/content/theme/middleman-bootstrap-template.md index fcc2215ce..0596e8932 100644 --- a/content/theme/middleman-bootstrap-template.md +++ b/content/theme/middleman-bootstrap-template.md @@ -1,7 +1,7 @@ --- title: Middleman Bootstrap Template -github: 'https://github.com/mattolson/middleman-bootstrap-template' -demo: 'https://middleman-bootstrap.s3-website-us-east-1.amazonaws.com/' +github: https://github.com/mattolson/middleman-bootstrap-template +demo: https://middleman-bootstrap.s3-website-us-east-1.amazonaws.com/ author: Matt Olson ssg: - Middleman @@ -10,7 +10,8 @@ cms: css: - Bootstrap date: 2017-12-28T02:11:32.000Z -github_branch: master description: Bootstrap v4 template for Middleman static site generator stale: true +disabled: true +disabled_reason: error checking demo url --- diff --git a/content/theme/middleman-casper.md b/content/theme/middleman-casper.md index 39bf54809..a79a16567 100644 --- a/content/theme/middleman-casper.md +++ b/content/theme/middleman-casper.md @@ -1,14 +1,13 @@ --- title: Middleman Casper -github: 'https://github.com/danielbayerlein/middleman-casper' -demo: 'https://demo.ghost.io/' +github: https://github.com/danielbayerlein/middleman-casper +demo: https://demo.ghost.io/ author: Daniel Bayerlein ssg: - Middleman cms: - No Cms date: 2013-10-26T09:58:22.000Z -github_branch: master -description: "\U0001F47B Casper theme (Ghost) for Middleman-Blog" +description: 👻 Casper theme (Ghost) for Middleman-Blog stale: true --- diff --git a/content/theme/middleman-starter-netlify-cms.md b/content/theme/middleman-starter-netlify-cms.md index 420e9959b..d4db4e626 100644 --- a/content/theme/middleman-starter-netlify-cms.md +++ b/content/theme/middleman-starter-netlify-cms.md @@ -1,14 +1,13 @@ --- title: Middleman Starter Netlify CMS -github: 'https://github.com/tomrutgers/middleman-starter-netlify-cms' -demo: 'https://middleman-netlify-cms.netlify.com/' +github: https://github.com/tomrutgers/middleman-starter-netlify-cms +demo: https://middleman-netlify-cms.netlify.com/ author: Tom Rutgers ssg: - Middleman cms: - - NetlifyCMS + - DecapCMS date: 2018-08-14T21:03:30.000Z -github_branch: master description: A simple example to get started with Middleman and Netlify CMS -stale: false +stale: true --- diff --git a/content/theme/middleman-zurb-template.md b/content/theme/middleman-zurb-template.md index efa60dbce..9ae0e178a 100644 --- a/content/theme/middleman-zurb-template.md +++ b/content/theme/middleman-zurb-template.md @@ -1,16 +1,17 @@ --- title: Middleman Zurb -github: 'https://github.com/mattolson/middleman-zurb-template' -demo: 'https://mattolson.com/' +github: https://github.com/mattolson/middleman-zurb-template +demo: https://mattolson.com/ author: Matt Olson ssg: - Middleman cms: - No Cms date: 2013-02-02T00:32:42.000Z -github_branch: master description: >- Middleman blog template containing ZURB Foundation and sensible default components and templates stale: true +disabled: true +disabled_reason: error checking demo url --- diff --git a/content/theme/millennial.md b/content/theme/millennial.md index f14938ece..7a275a948 100644 --- a/content/theme/millennial.md +++ b/content/theme/millennial.md @@ -1,14 +1,13 @@ --- title: Millennial -github: 'https://github.com/LeNPaul/Millennial' -demo: 'https://lenpaul.github.io/Millennial/' +github: https://github.com/LeNPaul/Millennial +demo: https://lenpaul.github.io/Millennial/ author: Paul Le ssg: - Jekyll cms: - No Cms date: 2016-08-21T21:53:24.000Z -github_branch: gh-pages description: A minimalist Jekyll theme for running an online publication stale: false --- \ No newline at end of file diff --git a/content/theme/minimal-categorized.md b/content/theme/minimal-categorized.md index d55c28364..2d48e04f7 100644 --- a/content/theme/minimal-categorized.md +++ b/content/theme/minimal-categorized.md @@ -1,10 +1,9 @@ --- title: minimal-categorized -github: 'https://github.com/ItsMeaga1n/minimal-categorized' -demo: 'https://itsmeaga1n.github.io/minimal-categorized/' +github: https://github.com/ItsMeaga1n/minimal-categorized +demo: https://itsmeaga1n.github.io/minimal-categorized/ author: ItsMeaga1n date: 2021-01-24T00:00:00.000Z -github_branch: master ssg: - Jekyll cms: @@ -16,6 +15,8 @@ description: >- This is a flexible Jekyll theme, designed for sites with content easily aggregated into categories. stale: false +disabled: true +disabled_reason: demo url not found --- # Minimal Jekyll theme for aggregated content diff --git a/content/theme/minimal-jekyll b/content/theme/minimal-jekyll new file mode 100644 index 000000000..2da963878 --- /dev/null +++ b/content/theme/minimal-jekyll @@ -0,0 +1,25 @@ +--- +title: "Minimal" +github: https://github.com/Heyya-x/Minimal +demo: https://memo.kaijunzhu.com +author: Heyya-x +date: 2023-07-31 +ssg: + - Jekyll +cms: + - No CMS +css: + - Scss +archetype: + - Blog + - Personal +description: The theme aims for a minimalistic design that is aesthetically pleasing and sophisticated. +--- +# Minimal + +Minimal is a personal Jekyll theme under development. The theme aims for a minimalistic design that is aesthetically pleasing and sophisticated. Since the theme is still under development, some interfaces may not be visually appealing and will be improved in future updates. You can modify the theme color by editing the configuration file (config). + +## Theme Features +- Concise +- All posts with details list on the on page +- Each post has a separate page in archive page diff --git a/content/theme/minimal-mistakes.md b/content/theme/minimal-mistakes.md index 140c51df2..d009cf078 100644 --- a/content/theme/minimal-mistakes.md +++ b/content/theme/minimal-mistakes.md @@ -1,14 +1,13 @@ --- title: Minimal Mistakes -github: 'https://github.com/mmistakes/minimal-mistakes' -demo: 'https://mmistakes.github.io/minimal-mistakes/' +github: https://github.com/mmistakes/minimal-mistakes +demo: https://mmistakes.github.io/minimal-mistakes/ author: Michael Rose ssg: - Jekyll cms: - No Cms date: 2013-05-24T14:13:30.000Z -github_branch: master description: >- :triangular_ruler: Jekyll theme for building a personal site, blog, project documentation, or portfolio. diff --git a/content/theme/minimal-starter-theme.md b/content/theme/minimal-starter-theme.md index 135eb766b..26ad139f0 100644 --- a/content/theme/minimal-starter-theme.md +++ b/content/theme/minimal-starter-theme.md @@ -1,14 +1,13 @@ --- title: Gridsome Minimal Blog -github: 'https://github.com/lauragift21/gridsome-minimal-blog' -demo: 'https://gridsome-blog-telerik.netlify.com/' +github: https://github.com/lauragift21/gridsome-minimal-blog +demo: https://gridsome-blog-telerik.netlify.com/ author: Gift Egwuenu ssg: - Gridsome cms: - No CMS date: 2019-05-23T10:48:45.000Z -github_branch: master description: A blog built with Gridsome and Hosted on Netlify stale: false --- \ No newline at end of file diff --git a/content/theme/minimal.md b/content/theme/minimal.md index a09f29b88..9969a08b6 100644 --- a/content/theme/minimal.md +++ b/content/theme/minimal.md @@ -1,14 +1,15 @@ --- title: Minimal -github: 'https://github.com/calintat/minimal' -demo: 'https://themes.gohugo.io/theme/minimal/' +github: https://github.com/calintat/minimal +demo: https://themes.gohugo.io/theme/minimal/ author: Calin Tataru ssg: - Hugo cms: - No Cms date: 2017-07-08T20:50:31.000Z -github_branch: master description: Personal blog theme powered by Hugo stale: false +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/minimalist-hugo.md b/content/theme/minimalist-hugo.md new file mode 100644 index 000000000..492e724e9 --- /dev/null +++ b/content/theme/minimalist-hugo.md @@ -0,0 +1,35 @@ +--- +title: Minimalist Hugo theme +github: https://github.com/ronv/minimalist +demo: https://minimalist-hugo.netlify.app/ +author: Ronalds Vilcins +date: 2022-03-05T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +archetype: + - Blog +description: Minimalist is content focused, minimal theme for Hugo +stale: false +--- + +# Minimalist - Hugo theme + +Minimalist is content focused, minimal theme for Hugo. The theme is perfectly suitable for writers. No JS! CSS only 692B! AAA, 100/100 scores on Lighthouse, Gmetrix and Webpagetest! + +### Features + +- Minimalistic, clean and simple design +- Perfect for writers +- Content focused +- System fonts +- NO JS! +- AAA, 100/100 scores on Lighthouse, Gmetrix and Webpagetest +- Responsive design +- Inline CSS +- Atom feed +- SCSS +- SEO optimized (Twitter cards, Facebook Open Graph, Schema.org) +- Ultra fast +- CSS is only 692B! diff --git a/content/theme/mkdocs-alabaster.md b/content/theme/mkdocs-alabaster.md index 07d327a13..bd57e9f69 100644 --- a/content/theme/mkdocs-alabaster.md +++ b/content/theme/mkdocs-alabaster.md @@ -1,14 +1,13 @@ --- title: MkDocs Alabaster -github: 'https://github.com/notpushkin/mkdocs-alabaster' -demo: 'https://mkdocs-alabaster.ale.sh/' +github: https://github.com/notpushkin/mkdocs-alabaster +demo: https://mkdocs-alabaster.ale.sh/ author: Alexander Pushkov ssg: - MkDocs cms: - No Cms date: 2016-01-29T22:40:46.000Z -github_branch: master description: Alabaster port for MkDocs -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/mkdocs-cinder.md b/content/theme/mkdocs-cinder.md index 6364d93d9..60d6304cb 100644 --- a/content/theme/mkdocs-cinder.md +++ b/content/theme/mkdocs-cinder.md @@ -1,14 +1,13 @@ --- title: Cinder -github: 'https://github.com/chrissimpkins/cinder' -demo: 'https://sourcefoundry.org/cinder/' +github: https://github.com/chrissimpkins/cinder +demo: https://sourcefoundry.org/cinder/ author: Chris Simpkins ssg: - MkDocs cms: - No Cms date: 2015-08-28T03:45:23.000Z -github_branch: master -description: 'A clean, responsive MkDocs theme' -stale: false +description: A clean, responsive MkDocs theme +stale: true --- \ No newline at end of file diff --git a/content/theme/mkdocs-material.md b/content/theme/mkdocs-material.md index 179eea140..1ed4acb83 100644 --- a/content/theme/mkdocs-material.md +++ b/content/theme/mkdocs-material.md @@ -1,14 +1,13 @@ --- title: MkDocs Material -github: 'https://github.com/squidfunk/mkdocs-material' -demo: 'https://squidfunk.github.io/mkdocs-material/' +github: https://github.com/squidfunk/mkdocs-material +demo: https://squidfunk.github.io/mkdocs-material/ author: Martin Donath ssg: - MkDocs cms: - No Cms date: 2016-01-28T22:09:23.000Z -github_branch: master description: A Material Design theme for MkDocs stale: false --- diff --git a/content/theme/mkdocs-rtd-dropdown.md b/content/theme/mkdocs-rtd-dropdown.md index e3aed9747..8b06cda6a 100644 --- a/content/theme/mkdocs-rtd-dropdown.md +++ b/content/theme/mkdocs-rtd-dropdown.md @@ -1,14 +1,15 @@ --- title: Read The Docs Dropdown -github: 'https://github.com/cjsheets/mkdocs-rtd-dropdown' -demo: 'https://readthedocs.sheets.ch/' +github: https://github.com/cjsheets/mkdocs-rtd-dropdown +demo: https://readthedocs.sheets.ch/ author: Chad Sheets ssg: - MkDocs cms: - No Cms date: 2017-10-29T19:41:23.000Z -github_branch: master description: MkDocs Theme - modified version of ReadTheDocs stale: true +disabled: true +disabled_reason: demo url not found --- \ No newline at end of file diff --git a/content/theme/mkdocs-windmill.md b/content/theme/mkdocs-windmill.md index 9548420a9..d953d2877 100644 --- a/content/theme/mkdocs-windmill.md +++ b/content/theme/mkdocs-windmill.md @@ -1,14 +1,13 @@ --- title: MkDocs Windmill -github: 'https://github.com/gristlabs/mkdocs-windmill' -demo: 'https://gristlabs.github.io/mkdocs-windmill/' +github: https://github.com/gristlabs/mkdocs-windmill +demo: https://gristlabs.github.io/mkdocs-windmill/ author: Grist Labs ssg: - MkDocs cms: - No Cms date: 2017-05-15T03:51:22.000Z -github_branch: master description: Outstanding mkdocs theme with a focus on navigation and usability -stale: true +stale: false --- \ No newline at end of file diff --git a/content/theme/modern-blog.md b/content/theme/modern-blog.md index c95103e54..e0bab5c85 100644 --- a/content/theme/modern-blog.md +++ b/content/theme/modern-blog.md @@ -1,14 +1,13 @@ --- title: Modern Blog -github: 'https://github.com/inded/Jekyll_modern-blog' -demo: 'https://inded.xyz/Jekyll_modern-blog/' +github: https://github.com/inded/Jekyll_modern-blog +demo: https://inded.xyz/Jekyll_modern-blog/ author: Inded ssg: - Jekyll cms: - No Cms date: 2015-07-11T17:47:40.000Z -github_branch: gh-pages -description: 'A Modern, Clean, Jekyll Blog Layout based from codedrops' +description: A Modern, Clean, Jekyll Blog Layout based from codedrops stale: true --- \ No newline at end of file diff --git a/content/theme/moltin-ecommerce-starter.md b/content/theme/moltin-ecommerce-starter.md index a45b286da..5f4784301 100644 --- a/content/theme/moltin-ecommerce-starter.md +++ b/content/theme/moltin-ecommerce-starter.md @@ -1,14 +1,13 @@ --- title: Moltin ecommerce starter -github: 'https://github.com/moltin/gatsby-demo-store' -demo: 'https://demo.moltin.com' +github: https://github.com/moltin/gatsby-demo-store +demo: https://demo.moltin.com author: Jamie Barton ssg: - Gatsby cms: - No Cms date: 2019-01-25T10:48:44.000Z -github_branch: master description: Moltin + Gatsby powered online store -stale: false +stale: true --- diff --git a/content/theme/neat-starter.md b/content/theme/neat-starter.md index 01f19424e..9d8dacb3e 100644 --- a/content/theme/neat-starter.md +++ b/content/theme/neat-starter.md @@ -1,25 +1,24 @@ --- title: Neat Starter -github: 'https://github.com/surjithctly/neat-starter' -demo: 'https://neat-starter.netlify.app/' +github: https://github.com/surjithctly/neat-starter +demo: https://neat-starter.netlify.app/ author: Surjith S M date: 2020-10-05T00:00:00.000Z -github_branch: master ssg: - Eleventy cms: - - NetlifyCMS + - DecapCMS css: - Tailwind archetype: - Blog -description: 'Starter Template for Netlify CMS, Eleventy, Alphine JS & Tailwind CSS' +description: Starter Template for Netlify CMS, Eleventy, Alpine JS & Tailwind CSS stale: false --- # Neat Starter -Starter Template for **N**etlify CMS, **E**leventy, **A**lphine JS & **T**ailwind CSS +Starter Template for **N**etlify CMS, **E**leventy, **A**lpine JS & **T**ailwind CSS ## Live Demo @@ -27,7 +26,7 @@ Starter Template for **N**etlify CMS, **E**leventy, **A**lphine JS & **T**ailwin ### Technologies used: -- [Netlify CMS](https://www.netlifycms.org/) +- [Netlify CMS](https://www.DecapCMS.org/) - [Eleventy](https://www.11ty.dev/) - [Alpine.js](https://github.com/alpinejs/alpine) - [Tailwind CSS](https://tailwindcss.com/) diff --git a/content/theme/netlifycms-gridsome.md b/content/theme/netlifycms-gridsome.md index ab05a2ac3..d16b5f9ae 100644 --- a/content/theme/netlifycms-gridsome.md +++ b/content/theme/netlifycms-gridsome.md @@ -1,18 +1,17 @@ --- title: Gridsome Netlify CMS -github: 'https://github.com/suits-at/netlifycms-gridsome' +github: https://github.com/suits-at/DecapCMS-gridsome author: suits-at -demo: 'https://netlifycms-gridsome.suits.at' +demo: https://DecapCMS-gridsome.suits.at date: 2020-06-03T00:00:00.000Z ssg: - Gridsome cms: - - NetlifyCMS + - DecapCMS archetype: - Blog -description: 'A simple, hackable & minimalistic template for Gridsome' -github_branch: master -stale: false +description: A simple, hackable & minimalistic template for Gridsome +stale: true --- -A simple, hackable & minimalistic template for [Gridsome](https://gridsome.org/) that uses [Netlify CMS](https://netlifycms.org) for content and is hosted by [Netlify](https://netlify.com). \ No newline at end of file +A simple, hackable & minimalistic template for [Gridsome](https://gridsome.org/) that uses [Netlify CMS](https://DecapCMS.org) for content and is hosted by [Netlify](https://netlify.com). \ No newline at end of file diff --git a/content/theme/newsliner-gatsby-ghost-starter.md b/content/theme/newsliner-gatsby-ghost-starter.md new file mode 100644 index 000000000..8dc8b4e1d --- /dev/null +++ b/content/theme/newsliner-gatsby-ghost-starter.md @@ -0,0 +1,15 @@ +--- +title: Newsliner Gatsby + Ghost Starter +github: https://github.com/epilocal/newsliner-gatsby +demo: https://newsliner-gatsby.epilocal.com/ +author: Epilocal +ssg: + - Gatsby +cms: + - Ghost +date: 2021-04-26T00:00:00.000Z +description: >- + A starter template for Ghost & Gatsby brought to you by Epilocal as part of + the NewsCloud project to support local news +stale: true +--- diff --git a/content/theme/newsroom.md b/content/theme/newsroom.md index 3c48f9666..efa91d8c7 100644 --- a/content/theme/newsroom.md +++ b/content/theme/newsroom.md @@ -1,14 +1,13 @@ --- title: Newsroom -github: 'https://github.com/onweru/newsroom' -demo: 'https://rooms.netlify.com' +github: https://github.com/onweru/newsroom +demo: https://rooms.netlify.com author: Weru ssg: - Hugo cms: - No Cms date: 2019-08-15T20:25:37.000Z -github_branch: master -description: 'A simple, minimalistic Hugo theme. View Demo here' +description: A simple, minimalistic Hugo theme. View Demo here stale: false --- diff --git a/content/theme/next-basic-blog.md b/content/theme/next-basic-blog.md index 6b3a9190a..940ddab60 100644 --- a/content/theme/next-basic-blog.md +++ b/content/theme/next-basic-blog.md @@ -1,10 +1,9 @@ --- title: Next Basic Blog -github: 'https://github.com/mudassirgithub/next-basic-blog' -demo: 'https://next-basic-blog.vercel.app/' +github: https://github.com/mudassirgithub/next-basic-blog +demo: https://next-basic-blog.vercel.app/ author: Ahmed Mudassir date: 2020-08-18T00:00:00.000Z -github_branch: master ssg: - Next cms: @@ -16,7 +15,7 @@ archetype: description: >- A JAMstack Theme of Basic Blog Site with dark/light theme toggle support built using Nextjs, Tailwindcss and Markdown. -stale: false +stale: true --- # A simple starter kit for Blog with Nextjs, Tailwindcss, Markdown Files diff --git a/content/theme/next-dev-studio.md b/content/theme/next-dev-studio.md new file mode 100644 index 000000000..b1812d913 --- /dev/null +++ b/content/theme/next-dev-studio.md @@ -0,0 +1,30 @@ +--- +title: Next Dev Studio +github: https://github.com/lwz7512/next-dev-studio +demo: https://next-dev-studio.vercel.app/ +author: lwz7512 +date: 2021-06-07T00:00:00.000Z +ssg: + - Next +cms: + - No CMS +css: + - PostCSS +archetype: + - Business +description: >- + A small business website template based on Nextjs and the original idea of + one-click-hugo-cms from netlify. +stale: false +--- + +# A small business website using Next.js and Markdown + +Two years ago I built my studio [website](https://github.com/lwz7512/one-click-hugo-cms) using [one click hugo cms](https://github.com/netlify-templates/one-click-hugo-cms), now my tech stack switched to Nextjs, so I migrated that into a Nextjs version(in three days). + +## Features + +* No code website +* Define website in Markdown content +* Easy style customization +* Minimum CSS inclusion with purgecss diff --git a/content/theme/next-ecommerce.md b/content/theme/next-ecommerce.md new file mode 100644 index 000000000..abe960c12 --- /dev/null +++ b/content/theme/next-ecommerce.md @@ -0,0 +1,32 @@ +--- +title: Next.js Ecommerce +github: https://github.com/lucaspulliese/next-ecommerce +author: Lucas Pulliese +demo: https://next-ecommerce-front.vercel.app/ +date: 2022-03-01T00:00:00.000Z +ssg: + - Next +cms: + - No Cms +css: + - SCSS +archetype: + - Ecommerce +description: A beautiful ecommerce made with Next.js +stale: false +--- + +# Next.js Ecommerce + +This repo contains a work in progress Ecommerce responsive made with Next.js, Redux, Redux-persist, Hooks, SCSS and BEM. If you like it please give it a star :) + +## Available pages + +- Home page: / +- Products page: /products +- Product single page: /product/1 +- Cart page: /cart +- Login page: /login +- Register page: /register +- 404 page: /page-not-found + diff --git a/content/theme/next-enterprise.md b/content/theme/next-enterprise.md new file mode 100644 index 000000000..da1122eb0 --- /dev/null +++ b/content/theme/next-enterprise.md @@ -0,0 +1,284 @@ +--- +title: Next.js Enterprise with Tailwind CSS and Radix UI +github: https://github.com/Blazity/next-enterprise +demo: https://next-enterprise.vercel.app/ +author: Blazity +date: 2023-05-17T20:54:10.624Z +ssg: + - Next +cms: + - No CMS +css: + - Tailwind +archetype: + - Business +github_branch: main +description: >- + 💼 An enterprise-grade Next.js boilerplate for high-performance, maintainable apps. Packed with features like Tailwind CSS, TypeScript, ESLint, Prettier, testing tools, and more to accelerate your development. +stale: false +--- + +Welcome to the _Next.js Enterprise Boilerplate_, an open-source template for enterprise projects! It's loaded with features that'll help you build a high-performance, maintainable, and enjoyable app. We've done all the heavy lifting for you, so sit back, relax, and get ready to conquer the world with your incredible app! 🌍 + +## 📚 Features + +With this template, you get all the awesomeness you need: + +- 🏎️ **[Next.js](https://nextjs.org/)** - Fast by default, with config optimized for performance +- 💅 **[Tailwind CSS](https://tailwindcss.com/)** - A utility-first CSS framework for rapid UI development +- ✨ **[ESlint](https://eslint.org/)** and **[Prettier](https://prettier.io/)** - For clean, consistent, and error-free code +- 🛠️ **[Extremely strict TypeScript](https://www.typescriptlang.org/)** - With [`ts-reset`](https://github.com/total-typescript/ts-reset) library for ultimate type safety +- 📊 **[Bundle analyzer plugin](https://www.npmjs.com/package/@next/bundle-analyzer)** - Keep an eye on your bundle size +- 🧪 **[Jest](https://jestjs.io/)** and **[React Testing Library](https://testing-library.com/react)** - For rock-solid unit and integration tests +- 🎭 **[Playwright](https://playwright.dev/)** - Write end-to-end tests like a pro +- 📕 **[Storybook](https://storybook.js.org/)** - Create, test, and showcase your components +- 🌬️ **Smoke Testing** and **Acceptance Tests** - For confidence in your deployments +- 📝 **[Conventional commits git hook](https://www.conventionalcommits.org/)** - Keep your commit history neat and tidy +- 🔍 **[Observability](https://opentelemetry.io/)** - Open Telemetry integration for seamless monitoring +- 🎯 **[Absolute imports](https://nextjs.org/docs/advanced-features/module-path-aliases)** - No more spaghetti imports +- ⚕️ **[Health checks](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/)** - Kubernetes-compatible for robust deployments +- 🧩 **[Radix UI](https://www.radix-ui.com/)** - Headless UI components for endless customization +- 💎 **[CVA](http://cva.style/)** - Create a consistent, reusable, and atomic design system +- 🤖 **[Renovate BOT](https://www.whitesourcesoftware.com/free-developer-tools/renovate)** - Auto-updating dependencies, so you can focus on coding +- 🩹 **[Patch-package](https://www.npmjs.com/package/patch-package)** - Fix external dependencies without losing your mind +- 📈 **Components coupling and cohesion graph** - A tool for managing component relationships +- 🚀 **[GitHub Actions](https://github.com/features/actions)** - Pre-configured actions for smooth workflows, including Bundle Size and performance stats +- 🤖🧠 **[Automated ChatGPT Code Reviews](https://openai.com/research/chatgpt)** - **Stay on the cutting edge with AI-powered code reviews!** +- 💯 **Perfect Lighthouse score** - Because performance matters +- 🚢 **[Semantic Release](https://github.com/semantic-release/semantic-release)** - for automatic changelog +- 💻 **[T3 Env](https://env.t3.gg/)** - Manage your environment variables with ease + +## Table of Contents + +- [Next.js Enterprise Boilerplate](#nextjs-enterprise-boilerplate) + - [📚 Features](#-features) + - [Table of Contents](#table-of-contents) + - [🎯 Getting Started](#-getting-started) + - [🚀 Deployment](#-deployment) + - [📃 Scripts Overview](#-scripts-overview) + - [🔗 Coupling Graph](#-coupling-graph) + - [🧪 Testing](#-testing) + - [Running Tests](#running-tests) + - [Acceptance Tests](#acceptance-tests) + - [Smoke Testing](#smoke-testing) + - [🎨 Styling and Design System](#-styling-and-design-system) + - [CVA - A New Approach to Variants](#cva---a-new-approach-to-variants) + - [💾 State Management](#-state-management) + - [Zustand](#zustand) + - [Jotai](#jotai) + - [Recoil](#recoil) + - [🤖 ChatGPT Code Review](#-chatgpt-code-review) + - [💻 Environment Variables handling](#-environment-variables-handling) + - [🤝 Contribution](#-contribution) + - [📜 License](#-license) + - [Contributors](#contributors) + +## 🎯 Getting Started + +To get started with this boilerplate, follow these steps: + +1. Fork & clone repository: + +```bash +## Don't forget to ⭐ star and fork it first :) +git clone https://github.com/ + +### Acceptance Tests + +To write acceptance tests, we leverage Storybook's [`play` function](https://storybook.js.org/docs/react/writing-stories/play-function#writing-stories-with-the-play-function). This allows you to interact with your components and test various user flows within Storybook. + +```ts +/* + * See https://storybook.js.org/docs/react/writing-stories/play-function#working-with-the-canvas + * to learn more about using the canvasElement to query the DOM + */ +export const FilledForm: Story = { + play: async ({ canvasElement }) => { + const canvas = within(canvasElement) + + const emailInput = canvas.getByLabelText("email", { + selector: "input", + }) + + await userEvent.type(emailInput, "example-email@email.com", { + delay: 100, + }) + + const passwordInput = canvas.getByLabelText("password", { + selector: "input", + }) + + await userEvent.type(passwordInput, "ExamplePassword", { + delay: 100, + }) + // See https://storybook.js.org/docs/react/essentials/actions#automatically-matching-args to learn how to setup logging in the Actions panel + const submitButton = canvas.getByRole("button") + + await userEvent.click(submitButton) + }, +} +``` + +### Smoke Testing + +In this boilerplate, we use Storybook's out-of-the-box support for smoke testing to verify that components render correctly without any errors. Just run `yarn test-storybook` to perform smoke testing. Remember to write stories in JSX or TSX format only. Smoke testing and a lot of other functionalities dont work well with MDX stories. + +## 🎨 Styling and Design System + +This boilerplate uses Tailwind CSS for styling and CVA for creating a powerful, easy-to-use design system. If you want to learn more about the setup, check out this fantastic video by Vercel: + +[![Styling and Design System](https://img.youtube.com/vi/T-Zv73yZ_QI/0.jpg)](https://www.youtube.com/watch?v=T-Zv73yZ_QI&ab_channel=Vercel) + +### CVA - A New Approach to Variants + +While CSS-in-TS libraries such as [Stitches](https://stitches.dev/) and [Vanilla Extract](https://vanilla-extract.style/) are great for building type-safe UI components, they might not be the perfect fit for everyone. You may prefer more control over your stylesheets, need to use a framework like Tailwind CSS, or simply enjoy writing your own CSS. + +Creating variants using traditional CSS can be a tedious task, requiring you to manually match classes to props and add types. CVA is here to take that pain away, allowing you to focus on the enjoyable aspects of UI development. By providing an easy and type-safe way to create variants, CVA simplifies the process and helps you create powerful design systems without compromising on the flexibility and control of CSS. + +## 💾 State Management + +While this boilerplate doesn't include a specific state management library, we believe it's essential for you to choose the one that best suits your project's needs. Here are some libraries we recommend for state management: + +### Zustand + +[Zustand](https://github.com/pmndrs/zustand) is a small, fast, and scalable state management library. It's designed to be simple and intuitive, making it a great choice for small to medium-sized projects. It's also optimized for bundle size, ensuring minimal impact on your app's performance. + +### Jotai + +[Jotai](https://github.com/pmndrs/jotai) is an atom-based state management library for React that focuses on providing a minimal and straightforward API. Its atom-based approach allows you to manage your state in a granular way while still being highly optimized for bundle size. + +### Recoil + +[Recoil](https://recoiljs.org/) is a state management library developed by Facebook, specifically designed for React applications. By utilizing atoms and selectors, Recoil allows you to efficiently manage state and derived state. Its key benefit is the ability to update components only when the state they're subscribed to changes, reducing unnecessary re-renders and keeping your application fast and efficient. Recoil also offers great developer experience with built-in debugging tools. + +Choose the library that best fits your requirements and project structure to ensure an efficient state management solution for your application. + +## 🤖 ChatGPT Code Review + +We've integrated the innovative [ChatGPT Code Review](https://github.com/anc95/ChatGPT-CodeReview) for AI-powered, automated code reviews. This feature provides real-time feedback on your code, helping improve code quality and catch potential issues. + +To use ChatGPT Code Review, add an `OPENAI_API_KEY` environment variable with an appropriate key from the OpenAI platform. For setup details, refer to the [Using GitHub Actions](https://github.com/anc95/ChatGPT-CodeReview#using-github-actions) section in the documentation. + +![image](https://user-images.githubusercontent.com/28964599/233685071-e1371edf-6359-41c3-a989-335d6ee09cb7.png) + +## 💻 Environment Variables handling + +[T3 Env](https://env.t3.gg/) is a library that provides environmental variables checking at build time, type validation and transforming. It ensures that your application is using the correct environment variables and their values are of the expected type. You’ll never again struggle with runtime errors caused by incorrect environment variable usage. + +Config file is located at `env.mjs`. Simply set your client and server variables and import `env` from any file in your project. + +```ts +export const env = createEnv({ + server: { + // Server variables + SECRET_KEY: z.string(), + }, + client: { + // Client variables + API_URL: z.string().url(), + }, + runtimeEnv: { + // Assign runtime variables + SECRET_KEY: process.env.SECRET_KEY, + API_URL: process.env.NEXT_PUBLIC_API_URL, + }, +}) +``` + +If the required environment variables are not set, you'll get an error message: + +```sh + ❌ Invalid environment variables: { SECRET_KEY: [ 'Required' ] } +``` + +## 🤝 Contribution + +Contributions are always welcome! To contribute, please follow these steps: + +1. Fork the repository. +2. Create a new branch with a descriptive name. +3. Make your changes, and commit them using the [Conventional Commits](https://www.conventionalcommits.org/) format. +4. Push your changes to the forked repository. +5. Create a pull request, and we'll review your changes. + +## 📜 License + +This project is licensed under the MIT License. For more information, see the [LICENSE](./LICENSE) file. diff --git a/content/theme/next-hull.md b/content/theme/next-hull.md new file mode 100644 index 000000000..18632c16d --- /dev/null +++ b/content/theme/next-hull.md @@ -0,0 +1,35 @@ +--- +title: HULL +github: https://github.com/ndimatteo/HULL +demo: https://hull.dev +author: Nick DiMatteo +date: 2022-12-29T00:00:00.000Z +ssg: + - Next +cms: + - Sanity +css: + - Tailwind +archetype: + - Ecommerce +description: Headless Shopify starter powered by Next.js + Sanity.io +stale: false +--- + +## Features + +- Utility-first CSS with [Tailwind CSS](https://tailwindcss.com) +- Animations powered by [Framer Motion](https://www.framer.com/motion/) +- Cart powered by [Shopify Buy SDK](https://www.npmjs.com/package/shopify-buy) +- Real-time inventory check for products using [SWR](https://swr.vercel.app) +- Customizable Filtering & Sorting for product collections +- Klaviyo waitlist form for out-of-stock products +- Klaviyo newsletter form with opt-in field +- Dynamic Page Routes for custom page creation +- Automatic `Sitemap.xml` generation +- Automatic `robots.txt` generation +- Automatic 301 Redirects from Sanity +- Live Preview content directly from Sanity +- Modern Image component using Sanity's Hotspot, Crop, and automatic WEBP format +- Modular page content for all pages, including dynamic grid layouts +- And More! diff --git a/content/theme/next-landing-vpn.md b/content/theme/next-landing-vpn.md new file mode 100644 index 000000000..21347b0d5 --- /dev/null +++ b/content/theme/next-landing-vpn.md @@ -0,0 +1,43 @@ +--- +title: Tailwind VPN Landingpage +github: https://github.com/naufaldi/next-landing-vpn +demo: https://next-landing-vpn.vercel.app/ +author: Naufaldi +date: 2022-03-26T00:00:00.000Z +ssg: + - Next +cms: + - No CMS +css: + - Tailwind +archetype: + - Business + - Portfolio +description: >- + An Open Source Landingpage For VPN or Apps. Build using NextJS 10 and Tailwind + v2.0 +stale: false +--- + +# Tailwind VPN Landingpage - Free Landingpage Template Apps + +Tailwind VPN Landingpage is an open source, apps landing page template for Tailwind CSS and NextJS. + +## Getting Started + +Choose one of the following options to get started: + +- [Download the latest release](https://github.com/naufaldi/next-landing-vpn/archive/main.zip) +- Clone the repo: `git clone https://github.com/naufaldi/next-landing-vpn.git` +- Fork the repo + +## About the Template + +- Template building using NextJS Version 10 +- Tailwind v2.0 + +## Features + +* Using [NextJS Image](https://nextjs.org/docs/api-reference/next/image) for Image Optimization +* Slider using [React Slick](https://react-slick.neostack.com/docs/api) +* Smooth Scrolling and Active menu using [React Scroll](https://www.npmjs.com/package/react-scroll) diff --git a/content/theme/next-lotse-theme.md b/content/theme/next-lotse-theme.md new file mode 100644 index 000000000..d58b71686 --- /dev/null +++ b/content/theme/next-lotse-theme.md @@ -0,0 +1,97 @@ +--- +title: "Lotse" +github: https://github.com/marpeand/lotse +demo: https://lotse.vercel.app/ +author: marpeand +date: 2023-12-03 +ssg: + - Next +cms: + - No CMS +css: + - Tailwind +archetype: + - Blog + - Portfolio +description: Minimalistic dark mode blogging and portfolio template made using NextJS +--- + +# Lotse + +Minimalistic dark mode blogging and portfolio template made using NextJS + +Demo: [https://lotse.vercel.app](https://lotse.vercel.app/) + +### Features + +- Employs Contentlayer for mdx compilation +- Boasts an ultra-minimalistic design for a clean user experience +- Developed with NextJS & TailwindCSS +- Achieves nearly perfect scores in Page Speed Insights +- Implements Katex for mathematical equation displays +- Optimized for SEO, enhancing visibility and accessibility + +## Quick start guide + + +1. [Fork](https://github.com/marpeand/lotse/fork) this repo +2. Modify the `blog.config.js` with your own site data + +```bash +const CONFIG = { + title: "Your site title", + baseURL: "URL of your site", + darkBackground: "#1a1a1a", // background color +}; +module.exports = CONFIG; +``` + +3. Replace the `app/favicon.ico` using your own icon +4. Write your _about_ in `content/about.mdx` +5. To deploy you can use [Vercel](https://vercel.com/) or [Netlify](https://www.netlify.com/). + import the repo and deploy. + + +## Post & Project structure + +Check the `contentlayer.config.js` to see or modify all fields. + +### Creating a Post + +To create a post, simply generate a .mdx file in the content/posts directory. +Ensure the file name is user-friendly, such as `securing-your-web-applications-best-practices-in-web-security.mdx`. + +```mdx +--- +title: "The title of your post (required)" +date: date of your post (YYYY-MM-DD format, also required) +draft: 'false' or 'true' (required) +--- +``` + +The title should be between " " to prevent conflicts, an example of this: + +```mdx +--- +title: "Automation with Bash Streamlining Repetitive Tasks" +date: 2023-11-11 +draft: false +--- +``` + +For **projects**, the structure involves only the title. +Create a .mdx file in the `content/projects` directory. + +```mdx +--- +title: "The title of your project (required)" +--- +``` + +## Contributing + +Contributions of any kind are appreciated. Feel free to fork the project and submit a pull request. + +## License + +This project is licensed under the [MIT License](LICENSE) diff --git a/content/theme/next-panic-panini.md b/content/theme/next-panic-panini.md new file mode 100644 index 000000000..58ba9fcc2 --- /dev/null +++ b/content/theme/next-panic-panini.md @@ -0,0 +1,32 @@ +--- +title: Panic Panini +github: https://github.com/stefanogali/panic-panini-next +demo: https://panic-panini-next.vercel.app/ +author: Stefano Galiffa +date: 2024-02-27 +ssg: + - Next +cms: + - No CMS +archetype: + - Artists + - Single Page +description: The perfect starter kit for building websites for music bands. +--- + +# Next.js TailwindCSS Starter Kit + +> This theme is a lighweight starter kit to build single page websites for music bands and music artists. + +## Features + +- Next.js / TailwindCSS / React +- Excellent page speeds +- Full screen video +- Reveal content on scroll +- Buttons to scroll withing the page +- Responsive for different devices +- MP3 Player easy to customize and to add tracks +- Incoming Shows section +- Lightbox photo gallery easy to customize +- Contact and subscribe forms diff --git a/content/theme/next-panini-cake.md b/content/theme/next-panini-cake.md new file mode 100644 index 000000000..2bb834539 --- /dev/null +++ b/content/theme/next-panini-cake.md @@ -0,0 +1,32 @@ +--- +title: Panini Cake +github: https://github.com/stefanogali/panini-cake +demo: https://panini-cake.vercel.app/ +author: Stefano Galiffa +date: 2024-03-06 +ssg: + - Next +cms: + - No CMS +css: + - Tailwind +archetype: + - Ecommerce +description: Headless Shopify starter theme built with Next.Js + Typescript + Tailwindcss + Shopify. +--- + +# Next.js TailwindCSS Shopify Ecommerce Starter Kit + +This theme is a lighweight starter kit to build your e-commerce shop using Shopify Storefront API. + +## Features + +- Shopify Storefront API +- Next.js App Router +- Optimized for SEO using Next.js's Metadata +- React Server Components (RSCs) and Suspense +- Server Actions for mutations +- Dynamic OG images +- Styling with Tailwind CSS +- Responsive for multiple devices +- Easy to customize and adapt to your selling products diff --git a/content/theme/next-platform-starter.md b/content/theme/next-platform-starter.md new file mode 100644 index 000000000..4418e2a65 --- /dev/null +++ b/content/theme/next-platform-starter.md @@ -0,0 +1,27 @@ +--- +title: Next.js on Netlify Platform Starter +github: https://github.com/netlify-templates/next-platform-starter +demo: https://nextjs-platform-starter.netlify.app/ +author: Netlify +date: 2024-04-04 +ssg: + - Next +cms: + - No CMS +css: + - Tailwind +archetype: + - Other +description: Modern starter based on Next.js 14 (App Router), Tailwind, daisyUI, and Netlify Core Primitives. +featured: true +netlify_deploy: https://app.netlify.com/start/deploy?repository=https://github.com/netlify-templates/next-platform-starter +--- + + +A modern starter based on Next.js 14 (App Router), Tailwind, daisyUI, and Netlify Core Primitives (Edge Functions, Image CDN, Blob Store). + +In this site, Netlify Core Primitives are used both implictly for running Next.js features (e.g. Route Handlers, image optimization via next/image, and more) and also explicitly by the user code. + +Implicit usage means you're using any Next.js functionality and everything "just works" when deployed - all the plumbing is done for you. Explicit usage is framework-agnostic and typically provides more features than what Next.js exposes. + + diff --git a/content/theme/next-react-storefront.md b/content/theme/next-react-storefront.md new file mode 100644 index 000000000..b23a27adb --- /dev/null +++ b/content/theme/next-react-storefront.md @@ -0,0 +1,175 @@ +--- +title: React Storefront +github: https://github.com/saleor/react-storefront +author: Saleor Commerce +demo: https://reactstorefront.vercel.app/ +date: 2022-03-01T00:00:00.000Z +ssg: + - Next +cms: + - No Cms +css: + - Tailwind +archetype: + - Ecommerce +description: >- + An open-source storefront in React.js with Next.js. Built for Headless + Commerce, using a modern stack with TypeScript, GraphQL, Apollo, and Tailwind + CSS. +stale: false +--- + +# React Storefront + +## Motivation + +**modern & fast**: +Project is focusing on best practices for e-commerce, like: SSR & ISR, image optimization. + +**easily customizable**: +TailwindCSS can be easily extended and tweaked, or completely changed to your favorite css solution. + +**works out-of-the-box**: +Pre configured tools for DX. + +## Setup + +Please note: this project use the [pnpm](https://pnpm.io/) package manager. To install it, run: + +```bash +npm install -g pnpm +``` + +Install dependencies: + +```bash +pnpm i +``` + +Start the dev server: + +```bash +npm run dev +``` + +Storefront can be now accessed at http://localhost:3001/. + +## Development + +### Configuration + +The `.env` file contains environment variables used by the application. You can override them by creating `.env.local` file. + +[Read more](https://nextjs.org/docs/basic-features/environment-variables) + +### GraphQL queries + +Graphql queries are located under the `./graphql`. We strongly encourage use of [fragments](https://graphql.org/learn/queries/#fragments), which minimizes code duplication and plays nicely with the TypeScript, during transformation of incoming data. + +Our client of choice is [Apollo](https://www.apollographql.com/docs/react/), which provides excellent cache and features out of the box. To get fully typed requests and responses, [GraphQL Code Generator](https://www.graphql-code-generator.com/) transforms all `.graphql` files into ready to use hooks. Generated code is located at `./saleor/api.tsx` file. + +API endpoint can be configured via `.env` file. + +#### Workflow + +- Modify or create GraphQL file. For example, new query at `./graphql/queries/FeaturedProducts.graphql` +- Run `npm run generate` command +- New query will be added to the `./saleor/api.tsx` file +- Import generated hook (`import { useFeaturedProductsQuery } from "@/saleor/api";`) in your component code + +Script will start the [GraphQL Code Generator](https://www.graphql-code-generator.com/) in the watch mode, so changes in the queries will be automatically updated. + +### React and Next.js code structure + +When creating new components, please follow the [React TypeScript Cheatsheet](https://react-typescript-cheatsheet.netlify.app/docs/basic/getting-started/function_components/). + +Code for the payment gateways can be found at `./components/checkout/payments`. At the moment we support [Saleor test gateway](https://docs.saleor.io/docs/3.0/developer/available-plugins/dummy-credit-card) and basic flow for Stripe. + +#### Routing and urls + +Project use [file based routing](https://nextjs.org/docs/routing/introduction). Available routes can be found at `./pages`. Dynamic routes (for example `./pages/product/[slug].tsx`) are generated at build time based on [`getStaticPaths`](https://nextjs.org/docs/basic-features/data-fetching#getstaticpaths-static-generation). + +To ensure, that Link components use only the existing URLs with required arguments, we use [pathpida](https://github.com/aspida/pathpida). It is used to automatically generate the `./lib/$path.ts` file with all available routes. File should not be updated manually, instead run: + +```bash +npm run paths +``` + +Since routes require additional arguments with current locale and channel, you should use `usePaths` hook which will automatically add those. Let's create example component with link to the product page: + +```tsx +import Link from "next/link"; +import { usePaths } from "@/lib/paths"; + +export const ProductLinkComponent = () => { + const paths = usePaths(); + return ( + + Product link + + ); +}; +``` + +### Code style + +Before commiting the code, make sure to run code linters and formatters: + +```bash +npm run lint +``` + +## Other tools + +### Debugging using VS Code + +The repository contains ready to use VS Code debugger configuration (`.vscode/launch.json`). + +Start server in debug mode + +```bash +npm run debug +``` + +Add [breakpoints](https://code.visualstudio.com/docs/editor/debugging#_breakpoints), and start debugging session in your editor. + +### VS Code GraphQL Extension + +GraphQL extension for VSCode adds syntax highlighting, validation, and language features like go to definition, hover information and autocompletion for graphql projects. This extension also works with queries annotated with gql tag. + +VS Marketplace [link](https://marketplace.visualstudio.com/items?itemName=GraphQL.vscode-graphql) + +### Bundle metrics + +If you want to check how your changes impact page size, use command: + +```bash +npm run analyze-build +``` + +After the build, report will open in your browser. + +## Deployment + +### Vercel & Netlify + +This application is optimized for deployments on Vercel and Netlify. You can use the following deploy buttons + +[![Deploy to Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fsaleor%2Freact-storefront&project-name=my-react-storefront&repo-name=my-react-storefront) + +[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/saleor/react-storefront) + +or, configure it directly in the respective cloud provider. + +### Heroku + +For Heroku, you need to specify a LTS version of Node.js in your `package.json` explicitly. Add the following snippet in `package.json`: + +```json +"engines": { + "node": ">=14 <17", + "npm": ">=6.11.0 <8" +} +``` + +We don't add this in this codebase as we prefer to target the latest Node.js version. diff --git a/content/theme/next-saas-starter.md b/content/theme/next-saas-starter.md new file mode 100644 index 000000000..c515f2195 --- /dev/null +++ b/content/theme/next-saas-starter.md @@ -0,0 +1,36 @@ +--- +title: Next SaaS Starter +github: https://github.com/Blazity/next-saas-starter +demo: https://next-saas-starter-ashy.vercel.app/ +author: Blazity +date: 2022-02-21T00:00:00.000Z +ssg: + - Next +cms: + - No CMS +archetype: + - Business +description: >- + Free Next.js responsive landing page template for SaaS products made using + JAMStack architecture. +stale: false +--- + +# Next.js marketing website template for SaaS startups + +Everything you need to build a great landing page / marketing website for your startup. Great SEO metrics, Green WebVitals, 🚀 Performance, Clean & Pragmatic Codebase out of the box. + +## 🤩 Features + +- ⚡ **Next.js** - React framework for static rendering +- 🤩 **Best SEO setup** - Meta Tags, JSON-LD and Open Graph Tags +- 🦒 **[Tina CMS](https://tina.io/) integration** - local & (optional) production CMS +- ✅ **Optimized for Web Vitals** +- 📜 **Blog with MDX** +- 📫 **Mailchimp Integration** - for newsletters +- 🗳 **Sendgrid Integration** - for sending emails +- 🌃 **Dark mode** - and customizable themes! +- 🧽 **No UI library** - just styled components, so you don't have to learn any new syntax +- 🖱 **One click deployment** - with Vercel or any other serverless deployment environment +- 🔍 **Eslint** - with Next.js's recommended settings and imports sorting rule +- 🕯 **Prettier** diff --git a/content/theme/next-smooth-doc.md b/content/theme/next-smooth-doc.md new file mode 100644 index 000000000..68deda867 --- /dev/null +++ b/content/theme/next-smooth-doc.md @@ -0,0 +1,36 @@ +--- +title: Next Smooth Doc +github: https://github.com/lwz7512/next-smooth-doc +demo: https://next-smooth-doc.vercel.app/ +author: lwz7512 +date: 2021-06-07T00:00:00.000Z +ssg: + - Next +cms: + - No CMS +archetype: + - Documentation +description: smooth-doc in Nextjs implementation +stale: true +--- + +# NEXTJS SMOOTH DOC + +> A minimal doc generator based on Next.js & mdx. + +Migrated from [smooth DOC](https://smooth-doc.com/) in 4 days, in order to compare the framework difference. + +Apparently, using Nextjs are more enjoyable and easy to implement. + + +## Dependency Comparision + +- Next.js : 455 packages +- Gatsby.js: 1413 packages + +## Features + +* Documentation site generated by .mdx content +* Style customazation with theme.js config +* Using styled components +* Brilliant user experience diff --git a/content/theme/next-startd.md b/content/theme/next-startd.md new file mode 100644 index 000000000..c99b1c368 --- /dev/null +++ b/content/theme/next-startd.md @@ -0,0 +1,33 @@ +--- +title: Next.js landing page template for SaaS products +github: https://github.com/jkytoela/next-startd +demo: https://next-startd.vercel.app/ +author: Jaakko Kytölä +date: 2022-02-21T00:00:00.000Z +ssg: + - Next +cms: + - No CMS +archetype: + - Business +description: >- + A free Next.js TypeScript landing page template for SaaS products, online + services and more. +stale: true +--- + +# A free Next.js TypeScript landing page template for SaaS products, online services and more. + +## Features + +- ⚡ **Next.js** — The React Framework +- 🔥 **next-seo** — Manage SEO easily +- 💡 **Twind** — The smallest, fastest, most feature complete Tailwind-in-JS solution in existence +- 📏 **ESLint** — Pluggable JavaScript linter +- 💖 **Prettier** — Opinionated Code Formatter +- 🐶 **Husky** — Use git hooks with ease +- 📄 **Commitizen** — Conventional commit messages CLI +- 🚓 **Commitlint** — Lint commit messages +- 🖌 **Renovate** — Dependency update tool +- 🚫 **lint-staged** — Run linters against staged git files +- 🗂 **Absolute import** — Import folders and files using the `@` prefix diff --git a/content/theme/next-static-blog.md b/content/theme/next-static-blog.md index e89dfa08b..af92a4f13 100644 --- a/content/theme/next-static-blog.md +++ b/content/theme/next-static-blog.md @@ -1,7 +1,7 @@ --- title: Next.js Static Blog -github: 'https://github.com/vercel/next.js/tree/canary/examples/cms-cosmic' -demo: 'https://cosmic-next-blog.vercel.app' +github: https://github.com/vercel/next.js/tree/canary/examples/cms-cosmic +demo: https://cosmic-next-blog.vercel.app author: Cosmic ssg: - Next @@ -13,15 +13,13 @@ archetype: - Blog - Portfolio - Business - - Multi Purpose date: 2020-10-28T17:02:32.000Z -github_branch: master description: >- A statically generated blog built on the React framework Next.js. Uses Tailwind CSS on the frontend, powered by the Cosmic headless CMS. stale: false -disabled: true -disabled_reason: github repo is not a top level repo +disabled: false +disabled_reason: '' --- # A simple static starter blog with Next.js, Tailwindcss, and Cosmic Headless CMS diff --git a/content/theme/next-static-neve.md b/content/theme/next-static-neve.md new file mode 100644 index 000000000..95ffe84bb --- /dev/null +++ b/content/theme/next-static-neve.md @@ -0,0 +1,72 @@ +--- +title: Headless Neve +github: https://github.com/lwz7512/next-static-neve +demo: https://next-static-neve.vercel.app/ +author: Wenzhi Li +date: 2021-04-02T16:55:17.362Z +ssg: + - Next +cms: + - Wordpress +archetype: + - Blog + - Portfolio + - Business +description: >- + The fastest way to export your Wordpress(v5.7& Neve theme v2.10.2) site as a + static site. +stale: true +--- + +## Features + +- Pages and Posts staticalization +- Images and Styles Grabing to local project +- Configurable Wordpress site URL + +## Limitations + +- few javascripts included currently + +## TODOs + +- add more js +- more test +- ... + +## How to use + +- Create a WordPress(v5.7+) site +- Install Neve theme(v2.10.2+) +- Setting Wordpress `Permalink Settings` with `Numeric` format !! +- Install WPGraphql plugin +- Clone this repo and install dependecies +- Create .env.local by copy .env.local.example +- Replace WORDPRESS_URL value with your own wordpress url +- Run `yarn dev` to start buiding you static wordpress site +- Visit `http://localhost:3000` + +``` +% cd ~/web/next-projects +% git clone https://github.com/lwz7512/next-static-neve.git my-static-wpsite +% cd my-static-wpsite +% yarn +% cp .env.local.example .env.local +% yarn dev +``` + +## Deploy your own + +- push your local project to github +- create a [vercel](https://vercel.com/) account +- connect this repo from github to your vercel project +- add environment varialble WORDPRESS_URL in your vercel project +- start deploy + +## Dependencies + +- wordpress +- neve +- wpgraphql +- got +- cheerio diff --git a/content/theme/nextacular.md b/content/theme/nextacular.md new file mode 100644 index 000000000..d019a6579 --- /dev/null +++ b/content/theme/nextacular.md @@ -0,0 +1,37 @@ +--- +title: Nextacular +github: https://github.com/arjayosma/nextacular +demo: https://demo.nextacular.co +author: Arjay Osma +date: 2020-03-22T00:00:00.000Z +ssg: + - Next +cms: + - No CMS +css: + - Tailwind +archetype: + - Business +description: >- + An open-source starter kit built with modern full-stack technologies. Worry + less and save time developing basic SaaS features. +stale: false +--- + +# Quickly launch multi-tenant SaaS apps + +An open-source starter kit that will help you build full-stack multi-tenant SaaS platforms efficiently and help you focus on developing your core SaaS features. Built on top of popular and modern technologies such as Next JS, Tailwind, and Prisma. + +## 🦄 Features + +- 🔐 Authentication +- 💿 Database Integration + Prisma (SQL/PostgreSQL) +- 🤝 Teams & Workspaces +- ☁ Multi-tenancy Approach +- 📜 Landing Page +- 💸 Billing & Subscription +- 📱 Simple Design Components & Mobile-ready +- 🔍 SEO Support +- 👾 Developer Experience +- 💌 Email Handling +- 🧵 CMS diff --git a/content/theme/nextjs-auto-annotated-portfolio.md b/content/theme/nextjs-auto-annotated-portfolio.md new file mode 100644 index 000000000..e9d0eabfb --- /dev/null +++ b/content/theme/nextjs-auto-annotated-portfolio.md @@ -0,0 +1,30 @@ +--- +title: Developer Portfolio Site with Next.js +github: https://github.com/netlify-templates/auto-annotated-portfolio +demo: https://auto-annotated-portfolio.netlify.app/ +author: Netlify +date: 2024-05-27 +ssg: + - Next +cms: + - No CMS +css: + - Tailwind +archetype: + - Blog + - Portfolio +description: This is a full-fledged portfolio website built with Next.js, Tailwind CSS and Netlify Create with Git Content Source. +featured: false +netlify_deploy: https://app.netlify.com/start/deploy?repository=https://github.com/netlify-templates/auto-annotated-portfolio +--- + +This is a full-fledged portfolio website built with [Netlify Create](https://www.netlify.com/platform/create/), Next.js, Tailwind & the Git Content Source. + +The codebase showcases how to apply annotations at scale, meaning: how to make much of your components highlightable in the visual editor through data attributes without manually adding code throughout the codebase. + +## This is achieved by: + +- Adding an annotation property to the content objects at they're loaded (see src/utils/content.ts) +- When rendering the page, each content sub-object is dynamically matched to the appropriate component. At this point, wrap each component with an annotation, based on the abovementioned content property. See src/components/components-registry.tsx. + + diff --git a/content/theme/nextjs-blog-theme.md b/content/theme/nextjs-blog-theme.md new file mode 100644 index 000000000..3e639031f --- /dev/null +++ b/content/theme/nextjs-blog-theme.md @@ -0,0 +1,28 @@ +--- +title: Next.js blog theme +github: https://github.com/netlify-templates/nextjs-blog-theme +demo: https://bejamas-nextjs-blog.netlify.app/ +author: Bejamas +date: 2024-03-05 +ssg: + - Next +cms: + - No CMS +css: + - Tailwind +archetype: + - Blog +description: A customizable Next.js and Tailwind blog starter. +featured: false +netlify_deploy: https://app.netlify.com/start/deploy?repository=https://github.com/netlify-templates/nextjs-blog-theme +--- + +A customizable Next.js blog starter using: + +- [Next.js](https://github.com/vercel/next.js) v15 (Pages Router) +- [Tailwind](https://tailwindcss.com/) v3.x +- [Netlify Visual Editor](https://docs.netlify.com/visual-editor/overview/) +- Built-in [MDX](https://mdxjs.com/) support +- Includes modern design with dark & light themes + + diff --git a/content/theme/nextjs-blog-wisp.md b/content/theme/nextjs-blog-wisp.md new file mode 100644 index 000000000..3bf85e4df --- /dev/null +++ b/content/theme/nextjs-blog-wisp.md @@ -0,0 +1,75 @@ +--- +title: Nextacular +github: https://github.com/Wisp-CMS/nextjs-blog-cms-wisp +demo: https://nextjs-blog-cms-wisp.vercel.app/ +author: Raymond Yeh +date: 2024-06-17T00:00:00.000Z +ssg: + - Next +cms: + - Wisp +css: + - Tailwind +archetype: + - Blog + - Portfolio + - Business +description: >- + An open-source starter kit built with modern full-stack technologies. Worry + less and save time developing basic SaaS features. +stale: false +--- + +# A Next.js 14 Blog using Server Components - Backed by Wisp CMS + +[![Demo Travel Blog on Next.js 14](https://imagedelivery.net/lLmNeOP7HXG0OqaG97wimw/clvlugru90000o4g8ahxp069s/32432ccf-57a8-4992-8c51-e5a47e110018.png/public "Demo Travel Blog on Next.js 14")](https://nextjs-blog-cms-wisp.vercel.app/) + +**Featured Links** + +- [Demo Blog](https://nextjs-blog-cms-wisp.vercel.app/) +- [Feature Walkthrough](https://youtu.be/7wVYAGhDmdY) +- [Editing Experience](https://youtu.be/uSKO8J38T98) + +This is a [Next.js](https://nextjs.org/docs/getting-started/installation), [Tailwind CSS](https://tailwindcss.com/), [Shadcn](https://ui.shadcn.com/) blogging starter template. This version is using Next.js 14 App Router with [React Server Components](https://nextjs.org/docs/getting-started/react-essentials#server-components) and uses [Wisp](https://wisp.blog/?utm_source=github&utm_medium=web&utm_campaign=nextjs-blog-cms-wisp) for publishing blog posts. + +Probably the most feature-rich Next.js blog template out there that is easily configurable and customizable. It's perfect as an upgrade from blogs using Jekyll, Hugo, Gatsby, Contentlayer, or ContentCollections. + +## Features + +- Beautiful blog starter kit with server rendering using Next.js 14 Server Components +- Responsive layout for mobile devices +- Filter blog posts by tags +- About page +- Light & dark mode +- Automatic hierarchical sitemap generation +- Automatic Open Graph image generation + +## Technologies + +- [Next.js 14](https://nextjs.org/) using App Router & TypeScript +- [Wisp](https://wisp.blog/?utm_source=github&utm_medium=web&utm_campaign=nextjs-blog-cms-wisp) to manage blog posts +- [Tailwind CSS](https://tailwindcss.com/) for CSS framework +- [Shadcn UI](https://ui.shadcn.com/) for UI components +- [ESLint](https://eslint.org/) for static analysis +- [TypeScript](https://www.typescriptlang.org/) for type safety +- Font optimization with [next/font](https://nextjs.org/docs/app/api-reference/components/font) + +## Getting Started + +First, run the development server: + +```bash +npm run dev +# or +yarn dev +# or +pnpm dev +# or +bun dev +``` + +Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. + +## Getting Help + +Full documentation on how to get started on wisp as well as this starter kit is available on [wisp's documentation site](https://wisp.blog/docs) \ No newline at end of file diff --git a/content/theme/nextjs-landing-page-template.md b/content/theme/nextjs-landing-page-template.md new file mode 100644 index 000000000..68648f045 --- /dev/null +++ b/content/theme/nextjs-landing-page-template.md @@ -0,0 +1,38 @@ +--- +title: Next JS Landing Page Template with Tailwind CSS +github: https://github.com/ixartz/Next-JS-Landing-Page-Starter-Template +demo: https://creativedesignsguru.com/demo/nextjs-landing-page/ +author: Ixartz +date: 2021-05-02T00:00:00.000Z +ssg: + - Next +cms: + - No Cms +css: + - Tailwind +github_branch: master +description: >- + Next JS Landing Page Template Free styled with Tailwind CSS and React + TypeScript. An NextJS layout to create a landing page. +stale: false +--- + +# Next JS Landing Page Template Free + +An open-source and free Next JS Landing Page Template made with React TypeScript and styled with Tailwind CSS. It includes React components and UI kits to build a beautiful landing page in seconds. It also integrates ESLint and Prettier for high-quality code and a better developer experience. + +If you are interested in more [React Theme](https://creativedesignsguru.com/category/react/), you can check out our [NextJS templates](https://creativedesignsguru.com/category/nextjs/). Perfect theme to get started your SaaS, digital products, or services. + +## React components included + +We provide 5 React components out of the box: + +- Navigator bar +- Hero +- Features +- Call to action banner +- Footer + +## NextJS Template Features + +The NextJS Landing Page Boilerplate code provides an SEO-friendly and Production-ready template for quickly promoting your project. Easy to customize, you can update the code to meet your needs. diff --git a/content/theme/nextjs-notion-starter-kit.md b/content/theme/nextjs-notion-starter-kit.md new file mode 100644 index 000000000..6c574b7fd --- /dev/null +++ b/content/theme/nextjs-notion-starter-kit.md @@ -0,0 +1,177 @@ +--- +title: Next.js Notion Starter Kit +github: https://github.com/transitive-bullshit/nextjs-notion-starter-kit +demo: https://nextjs-notion-starter-kit.transitivebullsh.it/ +author: Travis Fischer +date: 2022-04-06T00:00:00.000Z +ssg: + - Next +cms: + - Notion +archetype: + - Blog + - Portfolio +description: The perfect starter kit for building websites with Next.js and Notion. +stale: false +--- + +# Next.js Notion Starter Kit +> The perfect starter kit for building websites with Next.js and Notion. + + +## Features + +- Setup only takes a few minutes ([single config file](./site.config.js)) 💪 +- Robust support for Notion content via [react-notion-x](https://github.com/NotionX/react-notion-x) +- Next.js / TS / React / Notion +- Excellent page speeds +- Smooth image previews +- Automatic pretty URLs +- Automatic table of contents +- Full support for dark mode +- Quick search via CMD+K / CMD+P +- Responsive for different devices +- Optimized for Next.js and Vercel + +## Demos + +- [Default demo](https://nextjs-notion-starter-kit.transitivebullsh.it) - Deployed from the `main` branch + +## Setup + +**All config is defined in [site.config.js](./site.config.js).** + +This project requires a recent version of Node.js (>= 14.17). + +1. Fork / clone this repo +2. Change a few values in [site.config.js](./site.config.js) +3. `npm install` +4. `npm run dev` to test locally +5. `npm run deploy` to deploy to vercel 💪 + +I tried to make configuration as easy as possible. + +All you really need to do to get started is edit `rootNotionPageId`. It defaults to rendering my site's public notion page [78fc5a4b88d74b0e824e29407e9f1ec1](https://notion.so/78fc5a4b88d74b0e824e29407e9f1ec1). + +You'll want to make your root Notion page **public** and then copy the link to your clipboard. Then extract the last part of the URL that looks like `d1b5dcf8b9ff425b8aef5ce6f0730202`, which is your page's Notion iD. + +In order to find your Notion workspace ID (optional), just load any of your site's pages into your browser and open up the developer console. There will be a global variable that you can access called `block` which is the Notion data for the current page. If you enter `block.space_id`, it will print out your page's workspace ID. + +I recommend setting up a collection on your home page (optional; I use an inline gallery [here](https://notion.so/78fc5a4b88d74b0e824e29407e9f1ec1)) that contains all of your articles / projects / content. There are no structural constraints on your Notion workspace, however, so feel free to add content as you would normally in Notion. + +## Production setup + +When deploying to Vercel, you'll need to set up a few things. + +### Vercel environment variables + +Vercel is not aware of the environment variables defined in the `.env` file. + +Therefore, those variable must be defined in Vercel, too. Once defined, they'll be available on the next builds. +See [their documentation](https://vercel.com/docs/concepts/projects/environment-variables) for more details. + +## URL Paths + +The app defaults to slightly different URL paths in dev vs prod (though pasting any dev pathname into prod will work and vice-versa). + +In development, it will use `/nextjs-notion-blog-d1b5dcf8b9ff425b8aef5ce6f0730202` which is a slugified version of the page's title suffixed with its Notion ID. I've found that it's really useful to always have the Notion Page ID front and center during local development. + +In production, it will use `/nextjs-notion-blog` which is a bit nicer as it gets rid of the extra ID clutter. + +The mapping of Notion ID to slugified page titles is done automatically as part of the build process. Just keep in mind that if you plan on changing page titles over time, you probably want to make sure old links will still work, and we don't currently provide a solution for detecting old links aside from Next.js's built-in [support for redirects](https://nextjs.org/docs/api-reference/next.config.js/redirects). + +See [mapPageUrl](./lib/map-page-url.ts) and [getCanonicalPageId](https://github.com/NotionX/react-notion-x/blob/master/packages/notion-utils/src/get-canonical-page-id.ts) for more details. + +NOTE: if you have multiple pages in your workspace with the same slugified name, the app will throw an error letting you know that there are duplicate URL pathnames. + +## Preview Images + +

+ Example preview image +

+ +We use [next/image](https://nextjs.org/docs/api-reference/next/image) to serve images efficiently, with preview images optionally generated via [lqip-modern](https://github.com/transitive-bullshit/lqip-modern). This gives us extremely optimized image support for sexy smooth images. + +Preview images are **enabled by default**, but they can be slow to generate, so if you want to disable them, set `isPreviewImageSupportEnabled` to `false` in `site.config.js`. + +If you want to cache generated preview images to speed up subsequent builds, you'll need to first set up an external [Redis](https://redis.io) data store. To enable redis caching, set `isRedisEnabled` to `true` in `site.config.js` and then set `REDIS_HOST` and `REDIS_PASSWORD` environment variables to point to your redis instance. + +You can do this locally by adding a `.env` file: + +```bash +REDIS_HOST='TODO' +REDIS_PASSWORD='TODO' +``` + +Note that preview images and redis caching are both optional features. If you’d rather not deal with them, just disable them in your site config. + +### Configuring GitHub Actions + +By default, the workflow "[Build](https://github.com/transitive-bullshit/nextjs-notion-starter-kit/blob/main/.github/workflows/build.yml)" runs when commits are pushed to the repository. + +If you have defined a Redis instance, you will need to slightly change the configuration, for GitHub Actions to be aware of those environment variables. +[Here is an example](https://github.com/transitive-bullshit/nextjs-notion-starter-kit/blob/transitive-bullshit/.github/workflows/build.yml#L17-L21) + +Additionally, you'll need to configure the [GitHub secrets](https://docs.github.com/en/codespaces/managing-codespaces-for-your-organization/managing-encrypted-secrets-for-your-repository-and-organization-for-codespaces) for `REDIS_HOST` and `REDIS_PASSWORD`. + +### Redis provider + +If you want to use redis caching, you can use [Redis Labs](https://app.redislabs.com/), which provides a free plan. + +## Styles + +All CSS styles that customize Notion content are located in [styles/notion.css](./styles/notion.css). They mainly target global CSS classes exported by react-notion-x [styles.css](https://github.com/NotionX/react-notion-x/blob/master/packages/react-notion-x/src/styles.css). + +Every notion block gets its own unique classname, so you can target individual blocks like this: + +```css +.notion-block-260baa77f1e1428b97fb14ac99c7c385 { + display: none; +} +``` + +## Dark Mode + +

+ Light Mode +        + Dark Mode +

+ +Dark mode is fully supported and can be toggled via the sun / moon icon in the footer. + +## Automatic Table of Contents + +

+ Smooth ToC Scrollspy +

+ +By default, every article page will have a table of contents displayed as an `aside` on desktop. It uses **scrollspy** logic to automatically update the current section as the user scrolls through your document, and makes it really easy to jump between different sections. + +If a page has less than `minTableOfContentsItems` (default 3), the table of contents will be hidden. It is also hidden on the index page and if the browser window is too small. + +This table of contents uses the same logic that Notion uses for its built-in Table of Contents block (see [getPageTableOfContents](https://github.com/NotionX/react-notion-x/blob/master/packages/notion-utils/src/get-page-table-of-contents.ts) for the underlying logic). + +## Responsive + +

+ Mobile article page +

+ +All pages are designed to be responsive across common device sizes. + +## Fathom Analytics + +[Fathom](https://usefathom.com/ref/42TFOZ) provides a lightweight alternative to Google Analytics. + +To enable analytics, just add a `NEXT_PUBLIC_FATHOM_ID` environment variable, which will only be used in production. + +Note that this feature is completely optional. + +## PostHog Analytics + +[PostHog](https://posthog.com/) provides a lightweight **and open source** alternative to Google Analytics. + +To enable analytics, just add a `NEXT_PUBLIC_POSTHOG_ID` environment variable, which will only be used in production. + +Note that this feature is completely optional. diff --git a/content/theme/nextjs-productlog-theme.md b/content/theme/nextjs-productlog-theme.md new file mode 100644 index 000000000..6085bbe7f --- /dev/null +++ b/content/theme/nextjs-productlog-theme.md @@ -0,0 +1,35 @@ +--- +title: ProductLog Theme +github: https://github.com/apvarun/productlog-nextjs-theme +demo: https://productlog-theme.vercel.app/ +author: Varun A P +date: 2021-09-25T00:00:00.000Z +ssg: + - Next +cms: + - Notion + - No CMS +css: + - Tailwind +description: NextJS-based changelog theme for your product +stale: false +--- + +# ProductLog Theme - NextJS, Tailwind, TypeScript + +ProductLog is a NextJS theme for hosting your product's changelog. + +[Preview the theme](https://productlog-theme.vercel.app/) to see what it looks like, or checkout how to use it today. + + +## Features + +- SEO friendly +- Excellent Lighthouse score +- Mobile-friendly view +- Support Notion as source +- Built-in Analytics: Google Analytics, Plausible and Simple analytics +- Next image optimization +- Easy styling customization with Tailwind v2 +- Syntax highlighting +- KaTeX support diff --git a/content/theme/nextjs-simple-blog.md b/content/theme/nextjs-simple-blog.md index a0ae494c7..f66c62477 100644 --- a/content/theme/nextjs-simple-blog.md +++ b/content/theme/nextjs-simple-blog.md @@ -1,10 +1,9 @@ --- title: NextJS simple blog -github: 'https://github.com/lyket-dev/nextjs-simple-blog-theme' -demo: 'https://nextjs-simple-blog.netlify.app/' +github: https://github.com/lyket-dev/nextjs-simple-blog-theme +demo: https://nextjs-simple-blog.netlify.app/ author: Lyket date: 2020-10-21T00:00:00.000Z -github_branch: main ssg: - Next cms: @@ -15,7 +14,7 @@ archetype: description: >- A simple NextJS blog powered by Lyket to support like, clap and like/dislike buttons! -stale: false +stale: true --- # A simple starter blog for NextJS with feedback buttons diff --git a/content/theme/nextjs-starter.md b/content/theme/nextjs-starter.md index 04ea1c2aa..0de6ced42 100644 --- a/content/theme/nextjs-starter.md +++ b/content/theme/nextjs-starter.md @@ -1,7 +1,7 @@ --- title: Nextjs Starter Blog -github: 'https://github.com/ixartz/Next-js-Blog-Boilerplate' -demo: 'https://creativedesignsguru.com/demo/Nextjs-Blog-Boilerplate/' +github: https://github.com/ixartz/Next-js-Blog-Boilerplate +demo: https://creativedesignsguru.com/demo/Nextjs-Blog-Boilerplate/ author: Ixartz ssg: - Next @@ -10,8 +10,9 @@ cms: css: - Tailwind date: 2020-08-16T12:37:50.000Z -github_branch: master -description: "\U0001F680 The perfect Nextjs starter code: production-ready with SEO-friendly for quickly start a blog." +description: >- + 🚀 The perfect Nextjs starter code: production-ready with SEO-friendly for + quickly start a blog. stale: false --- diff --git a/content/theme/nextjs-tailwind-css-typescript-starter.md b/content/theme/nextjs-tailwind-css-typescript-starter.md index a48ca5ec2..785d92e16 100644 --- a/content/theme/nextjs-tailwind-css-typescript-starter.md +++ b/content/theme/nextjs-tailwind-css-typescript-starter.md @@ -1,7 +1,7 @@ --- title: Nextjs Tailwind CSS TypeScript Starter -github: 'https://github.com/ixartz/Next-js-Boilerplate' -demo: 'https://creativedesignsguru.com/demo/Nextjs-Boilerplate/' +github: https://github.com/ixartz/Next-js-Boilerplate +demo: https://creativedesignsguru.com/demo/Nextjs-Boilerplate/ author: Ixartz ssg: - Next @@ -10,8 +10,9 @@ cms: css: - Tailwind date: 2020-11-11T10:23:28.000Z -github_branch: master -description: "\U0001F680 Boilerplate and Starter for Next.js 10+, Tailwind CSS and TypeScript. The perfect Next JS Tailwind CSS template to quick start your project." +description: >- + 🚀 Boilerplate and Starter for Next.js 10+, Tailwind CSS and TypeScript. The + perfect Next JS Tailwind CSS template to quick start your project. stale: false --- diff --git a/content/theme/nextjs-tailwind-starter-blog.md b/content/theme/nextjs-tailwind-starter-blog.md index e3fd7b8ac..8ac7d910f 100644 --- a/content/theme/nextjs-tailwind-starter-blog.md +++ b/content/theme/nextjs-tailwind-starter-blog.md @@ -1,10 +1,9 @@ --- title: Next.js Tailwind Starter Blog -github: 'https://github.com/timlrx/tailwind-nextjs-starter-blog' -demo: 'https://tailwind-nextjs-starter-blog.vercel.app' +github: https://github.com/timlrx/tailwind-nextjs-starter-blog +demo: https://tailwind-nextjs-starter-blog.vercel.app author: timlrx date: 2021-01-21T00:00:00.000Z -github_branch: master ssg: - Next cms: diff --git a/content/theme/no-style-please.md b/content/theme/no-style-please.md index 31ee69d7d..5e48ef6e2 100644 --- a/content/theme/no-style-please.md +++ b/content/theme/no-style-please.md @@ -1,10 +1,9 @@ --- -title: 'no style, please!' -github: 'https://github.com/riggraz/no-style-please' -demo: 'https://riggraz.dev/no-style-please/' +title: no style, please! +github: https://github.com/riggraz/no-style-please +demo: https://riggraz.dev/no-style-please/ author: riggraz date: 2020-07-24T00:00:00.000Z -github_branch: master ssg: - Jekyll cms: @@ -12,8 +11,8 @@ cms: archetype: - Blog - Portfolio -description: 'A (nearly) no-CSS, fast, minimalist Jekyll theme.' -stale: false +description: A (nearly) no-CSS, fast, minimalist Jekyll theme. +stale: true --- # A (nearly) no-CSS, fast, minimalist Jekyll theme diff --git a/content/theme/nobelium.md b/content/theme/nobelium.md new file mode 100644 index 000000000..c36fc83d7 --- /dev/null +++ b/content/theme/nobelium.md @@ -0,0 +1,126 @@ +--- +title: Nobelium +github: https://github.com/craigary/nobelium +demo: https://nobelium.vercel.app/ +author: Craig Hart +date: 2022-04-06T00:00:00.000Z +ssg: + - Next +cms: + - Notion +archetype: + - Blog + - Portfolio +description: A static blog build on top of Notion and NextJS, deployed on Vercel. +stale: false +--- + +# Nobelium + +A static blog build on top of Notion and Nextjs, deployed on [Vercel](https://vercel.com?utm_source=Craigary&utm_campaign=oss). + +

+ + + + + + + + + + + + +

+ +Demo: [https://nobelium.vercel.app/](https://nobelium.vercel.app/) + +
Screenshot + +
+ +## Highlights ✨ + +**🚀  Fast and responsive** + +- Fast page render and responsive design +- Fast static generation with efficient compiler + +**🤖  Deploy instantly** + +- Deploy on Vercel in minutes +- Incremental regeneration and no need to redeploy after update the content in notion + +**🚙  Fully functional** + +- Comments, full width page, quick search and tag filter +- RSS, analytics, web vital... and much more + +**🎨  Easy for customization** + +- Rich config options, support English & Chinese interface +- Built with Tailwind CSS, easy for customization + +**🕸  Pretty URLs and SEO friendly** + +## Quick Start + +- Star this repo 😉 +- Duplicate [this Notion template](https://craigary.notion.site/adc3552cfc73442ab5048d4b1eb0079a), and share it to the public +- [Fork](https://github.com/craigary/nobelium/fork) this project +- Customize `blog.config.js` +- _(Optional)_ Replace `favicon.svg`, and `favicon.ico` in `/public` folder with your own +- Deploy on [Vercel](https://vercel.com), set following environment variables: + - `NOTION_PAGE_ID` (Required): The ID of the Notion page you previously shared to the web, usually has 32 digits after your workspace address + - `NOTION_ACCESS_TOKEN` (Optional, not recommended): If you decide not to share your database, you can use token to let Nobelium grab data from Notion database. You can find it in your browser cookies called `token_v2` + - Keep in mind Notion token is only valid for 180 days, make sure to update manually in vercel dashboard, we probably switch to Official API to resolve this issue in the future. Also, images in Notion database will not properly rendered +- **That's it!** Easy-peasy? + +
Wait for a sec, what is Page ID? + +
+ +## Play With Docker + +Unofficial, thanks to [@Vaayne](https://github.com/craigary/nobelium/pull/157)'s work! + +### Build Docker image yourself +``` +# set env +export NOTION_PAGE_ID=xxx # your NOTION_PAGE_ID +export IMAGE=nobelium:latest + +# build with docker +docker build -t ${IMAGE} --build-arg NOTION_PAGE_ID . + +# run with docker +docker run -d --name nobelium -p 3000:3000 -e NOTION_PAGE_ID=${NOTION_PAGE_ID} nobelium:latest +``` + +### Use default docker image +``` +# pull image +docker pull ghcr.io/craigary/nobelium:main + +# run with docker +docker run -d --name nobelium -p 3000:3000 -e NOTION_PAGE_ID=${NOTION_PAGE_ID} ghcr.io/craigary/nobelium:main +``` + +## Roadmap + +Check out our roadmap [here](https://www.notion.so/craigary/Public-Roadmap-3cfc4d0f0ca642ef8f652673c37add22) + +- [x] Better SEO +- [x] Dark mode +- [x] Open Graph support +- [x] Switch to react-notion-x +- [x] Sitemap +- [ ] ... + +## Technical details + +- **Generation**: Next.js and Incremental Static Regeneration +- **Page render**: [react-notion-x](https://github.com/NotionX/react-notion-x) +- **Style**: Tailwind CSS and `@tailwindcss/jit` compiler +- **Comments**: Gitalk, Cusdis and more diff --git a/content/theme/noir.md b/content/theme/noir.md index a9da3b5ad..f0c911bce 100644 --- a/content/theme/noir.md +++ b/content/theme/noir.md @@ -1,16 +1,15 @@ --- title: Noir -github: 'https://github.com/essentialenemy/noir' -demo: 'https://noir.essentialenemy.com' +github: https://github.com/essentialenemy/noir +demo: https://noir.essentialenemy.com author: Victor Johnson date: 2020-01-01T00:00:00.000Z -github_branch: master ssg: - Jekyll cms: - No Cms description: An automatic dark mode adaptation of the Poole theme for Jekyll. -stale: false +stale: true +disabled_reason: demo url connection refused disabled: true -disabled_reason: "demo url not found" --- diff --git a/content/theme/not-pure-poole.md b/content/theme/not-pure-poole.md index d2cb51058..02a667721 100644 --- a/content/theme/not-pure-poole.md +++ b/content/theme/not-pure-poole.md @@ -1,18 +1,17 @@ --- title: Not Pure Poole -github: 'https://github.com/vszhub/not-pure-poole' -demo: 'https://vszhub.github.io/not-pure-poole/' +github: https://github.com/vszhub/not-pure-poole +demo: https://vszhub.github.io/not-pure-poole/ author: Songzi Vong date: 2020-10-01T00:00:00.000Z -github_branch: master ssg: - Jekyll cms: - No CMS archetype: - Blog -description: 'A simple, beautiful, and powerful Jekyll theme for blogs' -stale: false +description: A simple, beautiful, and powerful Jekyll theme for blogs +stale: true --- # A simple starter kit for Gridsome diff --git a/content/theme/notion-blog-nextjs-coral.md b/content/theme/notion-blog-nextjs-coral.md new file mode 100644 index 000000000..d7a2884f2 --- /dev/null +++ b/content/theme/notion-blog-nextjs-coral.md @@ -0,0 +1,54 @@ +--- +title: Next.js blog powered by Notion API +github: https://github.com/samuelkraft/notion-blog-nextjs +demo: https://notion-blog-nextjs-coral.vercel.app/ +author: Samuel Kraft +date: 2022-04-06T00:00:00.000Z +ssg: + - Next +cms: + - Notion +archetype: + - Blog +description: Next.js example blog powered by Notion Public API +stale: false +--- + +This is a [Next.js](https://nextjs.org/) blog using [Notions Public API](https://developers.notion.com). + +__Demo:__ [https://notion-blog-nextjs-coral.vercel.app](https://notion-blog-nextjs-coral.vercel.app) + +__How-it-works/Documentation:__ [https://samuelkraft.com/blog/building-a-notion-blog-with-public-api](https://samuelkraft.com/blog/building-a-notion-blog-with-public-api) + +## Getting Started + +First, follow Notions [getting started guide](https://developers.notion.com/docs/getting-started) to get a `NOTION_TOKEN` and a `NOTION_DATABASE_ID`, then add them to a file called `.env.local`. + +As a reference here's the Notion table I am using: https://www.notion.so/5b53abc87b284beab0c169c9fb695b4d?v=e4ed5b1a8f2e4e12b6d1ef68fa66e518 + +``` +NOTION_TOKEN= +NOTION_DATABASE_ID= +``` + +Install dependencies + +```bash +npm install +# or +yarn +``` + +Start the server with + +```bash +npm run dev +# or +yarn dev +``` + +Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. + +#### Deploy to vercel + +[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/git/external?repository-url=https%3A%2F%2Fgithub.com%2Fsamuelkraft%2Fnotion-blog-nextjs&env=NOTION_TOKEN,NOTION_DATABASE_ID&envDescription=Please%20add%20NOTION_TOKEN%20and%20NOTION_DATABASE_ID%20that%20is%20required%20to%20connect%20the%20blog%20to%20your%20notion%20account.&envLink=https%3A%2F%2Fdevelopers.notion.com%2Fdocs%2Fgetting-started&project-name=notion-blog-nextjs&repo-name=notion-blog-nextjs&demo-title=Notion%20Blog%20Next%20JS&demo-description=%20This%20is%20a%20Next.js%20blog%20using%20Notions%20Public%20API.&demo-url=notion-blog-nextjs-coral.vercel.app) diff --git a/content/theme/notion-blog.md b/content/theme/notion-blog.md new file mode 100644 index 000000000..90afda98f --- /dev/null +++ b/content/theme/notion-blog.md @@ -0,0 +1,96 @@ +--- +title: Notion Blog +github: https://github.com/ijjk/notion-blog +demo: https://github.com/ijjk/notion-blog +author: JJ Kasper +date: 2022-04-06T00:00:00.000Z +ssg: + - Next +cms: + - Notion +archetype: + - Blog + - Portfolio +description: A Next.js site using new SSG support with a Notion backed blog +stale: true +--- + +# Notion Blog + +This is an example Next.js project that shows Next.js' upcoming SSG (static-site generation) support using Notion's **private** API for a backend. + +**Note**: This example uses the experimental SSG hooks only available in the Next.js canary branch! The APIs used within this example will change over time. Since it is using a private API and experimental features, use at your own risk as these things could change at any moment. + +**Live Example hosted on Vercel**: https://notion-blog.vercel.app/ + +## Getting Started + +To view the steps to setup Notion to work with this example view the post at https://notion-blog.vercel.app/blog/my-first-post or follow the steps below. + +## Deploy Your Own + +Deploy your own Notion blog with Vercel. + +[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/git/external?repository-url=https://github.com/ijjk/notion-blog/tree/main&project-name=notion-blog&repository-name=notion-blog) + +or + +1. Clone this repo `git clone https://github.com/ijjk/notion-blog.git` +2. Configure project with [`vc`](https://vercel.com/download) +3. Add your `NOTION_TOKEN` and `BLOG_INDEX_ID` as environment variables in [your project](https://vercel.com/docs/integrations?query=envir#project-level-apis/project-based-environment-variables). See [here](#getting-blog-index-and-token) for how to find these values +4. Do final deployment with `vc` + +Note: if redeploying with `vc` locally and you haven't made any changes to the application's source and only edited in Notion you will need use `vc -f` to bypass build de-duping + +## Creating Your Pages Table + +**Note**: this is auto run if a table isn't detected the first time visiting `/blog` + +### Using the Pre-Configured Script + +1. Create a blank page in Notion +2. Clone this repo `git clone https://github.com/ijjk/notion-blog.git` +3. Install dependencies `cd notion-blog && yarn` +4. Run script to create table `NOTION_TOKEN='token' BLOG_INDEX_ID='new-page-id' node scripts/create-table.js` See [here](#getting-blog-index-and-token) for finding the id for the new page + +### Manually Creating the Table + +1. Create a blank page in Notion +2. Create a **inline** table on that page, don't use a full page table as it requires querying differently +3. Add the below fields to the table + +The table should have the following properties: + +- `Page`: this the blog post's page +- `Slug`: this is the blog post's slug relative to `/blog`, it should be a text property +- `Published`: this filters blog posts in **production**, it should be a checkbox property +- `Date`: this is when the blog post appears as posted, it should be a date property +- `Authors`: this is a list of Notion users that wrote the post, it should be a person property + +![Example Blog Posts Table](./assets/table-view.png) + +## Getting Blog Index and Token + +To get your blog index value, open Notion and Navigate to the Notion page with the table you created above. While on this page you should be able to get the page id from either: + +- the URL, if the URL of your page is https://www.notion.so/Blog-S5qv1QbUzM1wxm3H3SZRQkupi7XjXTul then your `BLOG_INDEX_ID` is `S5qv1QbU-zM1w-xm3H-3SZR-Qkupi7XjXTul` +- the `loadPageChunk` request, if you open your developer console and go to the network tab then reload the page you should see a request for `loadPageChunk` and in the request payload you should see a `pageId` and that is your `BLOG_INDEX_ID` + +To get your Notion token, open Notion and look for the `token_v2` cookie. + +## Creating Blog Posts + +1. In Notion click new on the table to add a new row +2. Fill in the Page name, slug, Date, and Authors +3. At the top of the content area add the content you want to show as a preview (keep this under 2 paragraphs) +4. Add a divider block under your preview content +5. Add the rest of your content under the divider block + +## Running Locally + +To run the project locally you need to follow steps 1 and 2 of [deploying](#deploy-your-own) and then follow the below steps + +1. Install dependencies `yarn` +2. Expose `NOTION_TOKEN` and `BLOG_INDEX_ID` in your environment `export NOTION_TOKEN=''`and `export BLOG_INDEX_ID=''` or `set NOTION_TOKEN="" && set BLOG_INDEX_ID=""` for Windows +3. Run next in development mode `yarn dev` +4. Build and run in production mode `yarn build && yarn start` diff --git a/content/theme/novajam.md b/content/theme/novajam.md new file mode 100644 index 000000000..509f8a4d5 --- /dev/null +++ b/content/theme/novajam.md @@ -0,0 +1,30 @@ +--- +title: "NovaJAM - Next.js Multi-purpose Template" +github: https://github.com/minhwpm/novajam +demo: https://novajam.vercel.app/ +author: minhwpm +date: 2024-08-10 +ssg: + - Next +cms: + - Contentful +css: + - Tailwind +archetype: + - Business + - Blog + - Portfolio +description: NovaJAM - a Multi-purpose template offering exceptional flexibility, perfect for standalone websites or content-driven sites with Contentful. +--- + +# An All-in-One Multi-purpose JAMstack template for Next.js + +Explore endless possibilities with NovaJAM, a cutting-edge web solution that serves as both a theme and a template, offering unparalleled flexibility whether used independently or integrated with Contentful Headless CMS. + +## 🎯 Features + +- **Cutting-edge Technologies** - Powered by Next.js 14 with advanced App Router and Server Actions for ultimate performance, TypeScript, Tailwind CSS, Radix UI and ESLint +- **Flexibility with Theme Config** - Easily customize components and styles to reflect your brand identity. Adapt NovaJAM to various business needs. +- **Do-It-Yourself** - Seamlessly integrate with Contentful for efficient, no-code content management, dynamically populating NovaJAM's templates without sacrificing design flexibility. +- **Custom Form** - Create and manage dynamic, user-friendly forms effortlessly. +- **One-click Deploy** - Deploy instantly with Vercel \ No newline at end of file diff --git a/content/theme/nuxt-starter-netlify-cms.md b/content/theme/nuxt-starter-netlify-cms.md index 80250600a..628d62eb2 100644 --- a/content/theme/nuxt-starter-netlify-cms.md +++ b/content/theme/nuxt-starter-netlify-cms.md @@ -1,18 +1,17 @@ --- title: Nuxt Netlify CMS Boilerplate -github: 'https://github.com/xdesro/nuxt-netlify-cms-starter' +github: https://github.com/xdesro/nuxt-netlify-cms-starter author: xdesro -demo: 'https://nuxt-netlify-cms-starter.netlify.com' +demo: https://nuxt-netlify-cms-starter.netlify.com date: 2020-06-03T00:00:00.000Z ssg: - Nuxt cms: - - NetlifyCMS + - DecapCMS archetype: - Blog description: A super unopinionated starter project. -github_branch: master -stale: false +stale: true --- A super unopinionated starter project, built off the `create-nuxt-app` CLI tool, and leveraging Netlify CMS to generate content in the Nuxt API from flat files. \ No newline at end of file diff --git a/content/theme/nuxt-starter.md b/content/theme/nuxt-starter.md new file mode 100644 index 000000000..16b77b05c --- /dev/null +++ b/content/theme/nuxt-starter.md @@ -0,0 +1,22 @@ +--- +title: Nuxt Starter +github: https://github.com/netlify-templates/nuxt-starter +author: netlify-templates +demo: https://demo-nuxt-starter.netlify.app/ +date: 2024-12-23 +ssg: + - Nuxt +cms: + - No CMS +css: + - Tailwind +archetype: + - SaaS + - Landing Page +description: >- + Nuxt Starter is a minimal template created for quick landing pages, built with Nuxt and TailwindCSS. +netlify_deploy: https://app.netlify.com/start/deploy?repository=https://github.com/netlify-templates/nuxt-starter +featured: false +--- + +Nuxt Starter is a minimal template designed for creating quick landing pages, built with Nuxt and Tailwind CSS, and powered by Nuxt Content. diff --git a/content/theme/nuxt-tailwind-blog-starter.md b/content/theme/nuxt-tailwind-blog-starter.md new file mode 100644 index 000000000..a60c11a69 --- /dev/null +++ b/content/theme/nuxt-tailwind-blog-starter.md @@ -0,0 +1,29 @@ +--- +title: NuxtJs Tailwind Blog Starter +github: https://github.com/mdrathik/nuxtjs-tailwind-blog +demo: https://nuxt-tailwind-blog.netlify.app/ +author: Md Rathik +date: 2022-04-11T00:00:00.000Z +ssg: + - Nuxt +cms: + - No CMS +css: + - Tailwind +archetype: + - Blog + - Portfolio +description: This theme is based on NuxtJS with tailwind css & hosted in Netlify. +stale: false +--- + +# NuxtJS and tailwind Blog Starter + +This starter is very light-weight to showcase portfolio & write blog. Anyone can deploy it on netlify , Vercel or Heroku wherever he/she want. Its open-source to edit and modify or contribute. + +## Features + +- Support Markdown for blog +- SEO friendly +- Customizable Design with Tailwind +- Mobile-friendly view diff --git a/content/theme/oneflow.md b/content/theme/oneflow.md new file mode 100644 index 000000000..2be78362b --- /dev/null +++ b/content/theme/oneflow.md @@ -0,0 +1,42 @@ +--- +title: "OneFlow Jekyll Theme" +github: https://github.com/perstarke-webdev/oneflow-jekyll-theme +demo: https://oneflow-jekyll-theme.github.io/ +author: Per Starke +date: 2024-02-18 +ssg: + - Jekyll +cms: + - No CMS +css: + - Bootstrap +archetype: + - OnePager + - Landing Page + - Homepage +description: A theme to effortlessly create stunning OnePager Websites, offering various and easy customization and high functionality! +--- + +# OneFlow Jekyll Theme + +## What is it +OneFlow is a Jekyll Theme designed to create stunning, clear and practical modern One-Pager Websites. +It offers lots of features and customization options, so you can easily create a Site that matches your own or your client's wishes for design and structure. +Check out the [Theme Website](https://oneflow-jekyll-theme.github.io/) showcasing and explaining the various opportunities the theme offers, and also check out the [first example website](https://oneflow-jekyll-theme-example-one.github.io/) and the [second example website](https://oneflow-jekyll-theme-example-two.github.io/) to see a few of the different design options the theme offers. + +## Full documentation +Extensive documentation for OneFlow is available [here](https://perstarke-webdev.de/oneflow-jekyll-theme). + +## Getting started & development + +### Fork and clone this repository +The **vision of this theme** is **simplicity and accessibility**, to easily create stunning websites from scratch. +Therefore, it's not available as a classic gem-based Jekyll theme, but as a ready-to-use GitHub repository that you just need to fork and clone. +So, get ahead and make a fork of this repository, rename it if you like to suit the name of the site you want to create, locally clone it, and directly start editing! + +### How to start a development docker container +To test your website and see all of your changes in real-time without deploying it online, you can easily build your site locally. +- Make sure you have [Bundler](https://bundler.io/) and [Docker](https://www.docker.com/) installed. +- Open up a terminal, navigate to your local repository, and run ```docker compose up```. + +Your site will then be visible at ```http://0.0.0.0:4000/``` in any browser. diff --git a/content/theme/ovidius-astro-theme.md b/content/theme/ovidius-astro-theme.md new file mode 100644 index 000000000..0e3f8f415 --- /dev/null +++ b/content/theme/ovidius-astro-theme.md @@ -0,0 +1,63 @@ +--- +title: Ovidius +github: https://github.com/JustGoodUI/ovidius-astro-theme +demo: https://ovidius-astro-theme.netlify.app/ +author: justgoodui.com +date: 2023-10-15 +ssg: + - Astro +cms: + - No CMS +css: + - Tailwind +archetype: + - Blog + - Personal +description: >- + Ovidius - a single-author blog theme for Astro.js and Tailwind CSS. +stale: false +disabled: false +featured: false +netlify_deploy: https://app.netlify.com/start/deploy?repository=https://github.com/JustGoodUI/ovidius-astro-theme +--- + +# Ovidius - Astro.js & Tailwind CSS Theme + +Ovidius is a single-author blog theme for Astro.js. Featuring a minimal, slick, responsive and content-focused design. For more Astro.js themes please check [justgoodui.com](https://justgoodui.com/). + +## Theme Features: + +- ✅ Featured post support +- ✅ Tailwind CSS +- ✅ SEO-friendly with canonical URLs and OpenGraph data +- ✅ Sitemap support +- ✅ RSS Feed support +- ✅ Markdown & MDX support + +## Template Integrations + +- @astrojs/tailwind - https://docs.astro.build/en/guides/integrations-guide/tailwind/ +- @astrojs/sitemap - https://docs.astro.build/en/guides/integrations-guide/sitemap/ +- @astrojs/mdx - https://docs.astro.build/en/guides/markdown-content/ +- @astrojs/rss - https://docs.astro.build/en/guides/rss/ + +## Project Structure + +Inside of Ovidius Astro theme, you'll see the following folders and files: + +```text +├── public/ +├── src/ +│   ├── components/ +│   ├── content/ +│   ├── data/ +│   ├── icons/ +│   ├── layouts/ +│   ├── pages/ +│   └── styles/ +├── astro.config.mjs +├── tailwind.config.cjs +├── README.md +├── package.json +└── tsconfig.json +``` diff --git a/content/theme/parsa-hugo-personal-blog-theme.md b/content/theme/parsa-hugo-personal-blog-theme.md deleted file mode 100644 index 5117f9e74..000000000 --- a/content/theme/parsa-hugo-personal-blog-theme.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: Parsa Hugo -github: 'https://github.com/themefisher/parsa-hugo-personal-blog-theme' -demo: 'https://themes.gohugo.io/theme/parsa-hugo-personal-blog-theme/' -author: Themefisher -ssg: - - Hugo -cms: - - No Cms -date: 2019-05-15T08:33:57.000Z -github_branch: master -description: Parsa hugo -stale: false -disabled: true -disabled_reason: demo url not found ---- diff --git a/content/theme/pelican-alchemy.md b/content/theme/pelican-alchemy.md index 111a5c8f9..7600a16bc 100644 --- a/content/theme/pelican-alchemy.md +++ b/content/theme/pelican-alchemy.md @@ -1,14 +1,13 @@ --- title: Alchemy -github: 'https://github.com/nairobilug/pelican-alchemy' -demo: 'https://nairobilug.github.io/pelican-alchemy/' +github: https://github.com/nairobilug/pelican-alchemy +demo: https://nairobilug.github.io/pelican-alchemy/ author: Nairobi GNU/Linux Users Group ssg: - Pelican cms: - No Cms date: 2013-11-25T04:48:18.000Z -github_branch: master -description: 'A ✨ functional, clean, responsive Pelican theme' -stale: false +description: A ✨ functional, clean, responsive Pelican theme +stale: true --- diff --git a/content/theme/pelican-attila.md b/content/theme/pelican-attila.md index f812a8bf6..542ec06a2 100644 --- a/content/theme/pelican-attila.md +++ b/content/theme/pelican-attila.md @@ -1,14 +1,15 @@ --- title: Attila -github: 'https://github.com/arulrajnet/attila' -demo: 'https://attila.demo.arulraj.net/' +github: https://github.com/arulrajnet/attila +demo: https://attila.demo.arulraj.net/ author: Arul ssg: - Pelican cms: - No Cms date: 2016-09-11T17:32:26.000Z -github_branch: master -description: 'Pelican version of ghost theme https://github.com/zutrinken/attila' -stale: true +description: Pelican version of ghost theme https://github.com/zutrinken/attila +stale: false +disabled: true +disabled_reason: error checking demo url --- diff --git a/content/theme/pelican-clean-blog.md b/content/theme/pelican-clean-blog.md index 3cda3d2a3..6e228e315 100644 --- a/content/theme/pelican-clean-blog.md +++ b/content/theme/pelican-clean-blog.md @@ -1,14 +1,15 @@ --- title: Pelican Clean Blog -github: 'https://github.com/gilsondev/pelican-clean-blog' -demo: 'https://gilsondev.github.io/pelican-clean-blog/' +github: https://github.com/gilsondev/pelican-clean-blog +demo: https://gilsondev.github.io/pelican-clean-blog/ author: Gilson Filho ssg: - Pelican cms: - No Cms date: 2014-12-10T16:01:04.000Z -github_branch: master description: Theme based in Clean Blog layout to pelican blogs -stale: false +stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/pelican-elegant.md b/content/theme/pelican-elegant.md index a2ded20e2..a4866147e 100644 --- a/content/theme/pelican-elegant.md +++ b/content/theme/pelican-elegant.md @@ -1,14 +1,13 @@ --- title: elegant -github: 'https://github.com/Pelican-Elegant/elegant' -demo: 'https://elegant.oncrashreboot.com/' +github: https://github.com/Pelican-Elegant/elegant +demo: https://elegant.oncrashreboot.com/ author: Pelican-Elegant ssg: - Pelican cms: - No Cms date: 2012-05-25T17:33:51.000Z -github_branch: master description: Best theme for Pelican Static Blog Generator stale: false --- diff --git a/content/theme/pelican-resume.md b/content/theme/pelican-resume.md index 88f978193..52c038ad5 100644 --- a/content/theme/pelican-resume.md +++ b/content/theme/pelican-resume.md @@ -1,14 +1,13 @@ --- title: Resume -github: 'https://github.com/suheb/resume' -demo: 'https://suheb.in/resume/' +github: https://github.com/suheb/resume +demo: https://suheb.in/resume/ author: Suhaib Khan ssg: - Pelican cms: - No Cms date: 2017-08-13T21:25:23.000Z -github_branch: master description: A minimal pelican theme to host your resume stale: true --- diff --git a/content/theme/pelican-smoothie.md b/content/theme/pelican-smoothie.md index c64ff1368..73106f9ae 100644 --- a/content/theme/pelican-smoothie.md +++ b/content/theme/pelican-smoothie.md @@ -1,14 +1,13 @@ --- title: Smoothie -github: 'https://github.com/kdheepak/pelican-smoothie' -demo: 'https://kdheepak.com/' +github: https://github.com/kdheepak/pelican-smoothie +demo: https://kdheepak.com/ author: Dheepak Krishnamurthy ssg: - Pelican cms: - No Cms date: 2015-08-02T16:41:36.000Z -github_branch: master description: Pelican-Smoothie - A Bootstrap theme for the static site generator Pelican stale: true --- diff --git a/content/theme/planty.md b/content/theme/planty.md index 637bd40e8..f77b7d856 100644 --- a/content/theme/planty.md +++ b/content/theme/planty.md @@ -1,7 +1,7 @@ --- title: Planty -github: 'https://github.com/snipcart/stackbit-theme-planty' -demo: 'https://stackbit-theme-planty.netlify.com' +github: https://github.com/snipcart/stackbit-theme-planty +demo: https://stackbit-theme-planty.netlify.com author: Snipcart ssg: - Unibit @@ -10,19 +10,16 @@ ssg: - Gatsby - Next cms: - - Contentful - - DatoCMS - Forestry - - NetlifyCMS - - Sanity + - DecapCMS - No CMS css: - SCSS services: - Snipcart +archetype: + - Ecommerce date: 2020-03-18T00:00:00.000Z -github_branch: master description: Planty is an e-commerce ready theme powered by Snipcart. -stale: false -weight: 10 +stale: true --- diff --git a/content/theme/platframe-default-starter.md b/content/theme/platframe-default-starter.md index ec37189ac..9278bf1e5 100644 --- a/content/theme/platframe-default-starter.md +++ b/content/theme/platframe-default-starter.md @@ -1,18 +1,17 @@ --- title: Platframe default starter -github: 'https://github.com/platframe/platframe' +github: https://github.com/platframe/platframe author: platframe -demo: 'https://default.platframe.com/' +demo: https://default.platframe.com/ date: 2020-06-03T00:00:00.000Z ssg: - Platframe cms: - - NetlifyCMS + - DecapCMS archetype: - Blog description: Platframe's default (responsive) starter template. -github_branch: master -stale: false +stale: true --- Platframe's default (responsive) starter template takes the form of a landing page that can be personalized in a jiffy, or be extensively adapted to suit variable project scopes. diff --git a/content/theme/pole.md b/content/theme/pole.md new file mode 100644 index 000000000..6b42fb301 --- /dev/null +++ b/content/theme/pole.md @@ -0,0 +1,38 @@ +--- +title: Pole +github: https://github.com/szivong/pole +demo: https://szivong.io/pole/ +author: Songzi Vong +date: 2021-02-22T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +css: + - Scss +archetype: + - Blog +description: Pole is a one-column minimal responsive Jekyll blog theme. +stale: false +disabled: true +disabled_reason: demo url not found +--- + +Pole is *a one-column minimal responsive Jekyll blog theme*. + +One of the purposes of Pole is to be an alternative option to the default theme of Jekyll -- [Minima](https://github.com/jekyll/minima). Pole is still keeping minimal, but meanwhile, more beautiful and mellow, and doesn't lose some useful basic features, such as archive. + +## Features + +- [Normalize.css](https://github.com/necolas/normalize.css) +- [Open Color](https://github.com/yeun/open-color) +- [Font Awesome](https://fontawesome.com/) +- [Disqus](https://disqus.com/) +- [MathJax](https://www.mathjax.org/) +- [Google Analytics 4](https://support.google.com/analytics/answer/10089681?hl=en) +- [Jekyll Feed](https://github.com/jekyll/jekyll-feed/) +- [Jekyll Paginate](https://github.com/jekyll/jekyll-paginate) +- [Jekyll SEO Tag](https://github.com/jekyll/jekyll-seo-tag/) +- Related posts (time-based, because Jekyll) below each post +- Dark mode, via [`prefers-color-scheme`](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme) +- Archive implemented by pure [Liquid](https://shopify.github.io/liquid/) diff --git a/content/theme/portfolYOU.md b/content/theme/portfolYOU.md index 0d331eee3..e91518928 100644 --- a/content/theme/portfolYOU.md +++ b/content/theme/portfolYOU.md @@ -1,14 +1,13 @@ --- title: portfolYOU -github: 'https://github.com/YoussefRaafatNasry/portfolYOU' -demo: 'https://youssefraafatnasry.github.io/portfolYOU/' +github: https://github.com/YoussefRaafatNasry/portfolYOU +demo: https://youssefraafatnasry.github.io/portfolYOU/ author: YoussefRaafatNasry ssg: - Jekyll cms: - No Cms date: 2019-02-09T10:06:09.000Z -github_branch: master description: A beautiful portfolio Jekyll theme that works with GitHub Pages. stale: false --- diff --git a/content/theme/portio-hugo.md b/content/theme/portio-hugo.md new file mode 100644 index 000000000..77d2af2b3 --- /dev/null +++ b/content/theme/portio-hugo.md @@ -0,0 +1,32 @@ +--- +title: Portio Hugo +github: https://github.com/StaticMania/portio-hugo +demo: https://portio-hugo.staticmania.com/ +author: StaticMania +date: 2022-09-03T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +css: + - Bootstrap +archetype: + - Business +description: >- + Portio is a simple, minimal and responsive Portfolio Hugo Theme. Portio 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 easy to fit your needs. +stale: false +--- + +## Features + +* Responsive Ready. +* Powered by Bootstrap 4. +* Blog Template. +* Well formatted code. +* Easy Customization. +* fabform Contact form. +* Google Analytics. +* Forestry Integrated. diff --git a/content/theme/productlog-nextjs-theme.md b/content/theme/productlog-nextjs-theme.md new file mode 100644 index 000000000..e9f85a613 --- /dev/null +++ b/content/theme/productlog-nextjs-theme.md @@ -0,0 +1,29 @@ +--- +title: NextJS-based changelog theme for your product +github: https://github.com/apvarun/productlog-nextjs-theme +demo: https://productlog-theme.vercel.app/ +author: Varun A P +date: 2022-02-21T00:00:00.000Z +ssg: + - Next +cms: + - No CMS +archetype: + - Documentation +description: ProductLog is a NextJS theme for hosting your product's changelog. +stale: false +--- + +# ProductLog is a NextJS theme for hosting your product's changelog + +## Features + +- SEO friendly +- Excellent Lighthouse score +- Mobile-friendly view +- Support Notion as source ([Sample Notion Page](https://polar-shoulder-194.notion.site/cbde2cdc46a14dfcaf5169eab225c30b)) +- Built-in Analytics: Google Analytics, Plausible and Simple analytics +- Next image optimization +- Easy styling customization with Tailwind v2 +- Syntax highlighting +- KaTeX support diff --git a/content/theme/pudhina-fresh.md b/content/theme/pudhina-fresh.md index a4e20ae4c..8d899c0e4 100644 --- a/content/theme/pudhina-fresh.md +++ b/content/theme/pudhina-fresh.md @@ -1,10 +1,9 @@ --- title: Pudhina Fresh -github: 'https://github.com/ritijjain/pudhina-fresh' -demo: 'https://ritijjain.github.io/pudhina-fresh/' +github: https://github.com/ritijjain/pudhina-fresh +demo: https://ritijjain.github.io/pudhina-fresh/ author: Ritij Jain date: 2021-01-02T00:00:00.000Z -github_branch: master ssg: - Jekyll cms: @@ -17,21 +16,7 @@ archetype: description: A minimal yet feature-rich Jekyll theme made for personal websites and blogs. stale: false --- - -# Pudhina Fresh - -A minimal yet feature-rich Jekyll theme made for personal websites and blogs. - -## Features - -* Everything that already comes with [Pudhina theme](https://github.com/knhash/Pudhina) and -* Masonry style projects page with collapsible cards – [demo](https://ritijjain.github.io/pudhina-fresh/projects/). -* Customizable post meta data – tags, published date, updated date, author. -* Responsive mobile friendly design. -* Code blocks powered by [highlight.js](https://highlightjs.org/) accompanied by matching styles for in-line code. -* Create redirect pages using the `_layouts/redirect` template. -* Support for Bootstrap elements and bootstrap compatible styles. -* Support for Disqus comments and Google Analytics. -* Redesigned table, heading, subheading, link, quote, and text styles. -* Just as fast as the original – 90+ [Google PageSpeed Insights score](https://developers.google.com/speed/pagespeed/insights/?url=https%3A%2F%2Fritijjain.com%2F). -* Read full [post on Pudhina Fresh](https://ritijjain.com/2020/09/12/pudhina-fresh.html). +* Minimal design based on Bootstrap 4. +* Showcase your projects on the masonry style project page with collapsible cards – [demo](https://ritijjain.github.io/pudhina-fresh/projects/). +* Categorize posts and projects using tags and view them on tag pages. +* 95+ Google PageSpeed Insight score 🔥 – [Test it yourself!](https://developers.google.com/speed/pagespeed/insights/?url=https%3A%2F%2Fritijjain.github.io%2Fpudhina-fresh&tab=desktop) diff --git a/content/theme/pudhina.md b/content/theme/pudhina.md index 203550896..24bd86f96 100644 --- a/content/theme/pudhina.md +++ b/content/theme/pudhina.md @@ -1,10 +1,9 @@ --- title: Pudhina -github: 'https://github.com/knhash/Pudhina' -demo: 'https://knhash.github.io/Pudhina/' +github: https://github.com/knhash/Pudhina +demo: https://knhash.github.io/Pudhina/ author: Knhash date: 2020-09-12T00:00:00.000Z -github_branch: master ssg: - Jekyll cms: diff --git a/content/theme/quartz.md b/content/theme/quartz.md new file mode 100644 index 000000000..8c5073f95 --- /dev/null +++ b/content/theme/quartz.md @@ -0,0 +1,27 @@ +--- +title: Quartz +github: https://github.com/vfvong/jekyll-theme-quartz +demo: https://vfvong.blog/jekyll-theme-quartz/ +author: Song-Zi Vong +date: 2022-09-13T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +archetype: + - Blog +description: A crystalline Jekyll theme for blog +stale: false +--- + +Quartz is a crystalline Jekyll theme for blog. + +## Highlight Features + +- Support the CSS resets [Normalize](https://github.com/necolas/normalize.css) +- Support [Font Awesome](https://fontawesome.com/) +- Support [MathJax](https://www.mathjax.org/) +- Support [Disqus](https://disqus.com/) +- Support [Google Analytics 4](https://analytics.google.com/analytics/web/) +- Light and dark mode, via [`prefers-color-scheme`](https://web.dev/prefers-color-scheme/) +- Archive pages implemented in pure [Liquid](https://shopify.github.io/liquid/) diff --git a/content/theme/react-portfolio-template.md b/content/theme/react-portfolio-template.md new file mode 100644 index 000000000..2e0b6d541 --- /dev/null +++ b/content/theme/react-portfolio-template.md @@ -0,0 +1,39 @@ +--- +title: React Portfolio Template +github: https://github.com/chetanverma16/react-portfolio-template +demo: https://react-portfolio-template.netlify.app/ +author: Chetan Verma +date: 2021-08-05T00:00:00.000Z +ssg: + - Next +cms: + - No CMS +css: + - Tailwind +archetype: + - Blog + - Portfolio +description: A simple, modern & minimal Next.js theme for portfolio and blog. +stale: false +--- + +# A simple starter kit for Gridsome + +A simple, modern & minimal Next.js theme for portfolio and blog + +Intro Video - https://www.youtube.com/watch?v=62_HLbx2zLQ&t=9s + +## Tutorials + +Youtube - https://www.youtube.com/watch?v=8cmJ2kR4SpM + +Blog - https://blog.chetanverma.com/how-to-build-a-portfolio-website-using-nextjs-and-tailwindcss + +## Features + +- Modern Stack (Next.js + TailwindCSS) +- Minimal Design +- Easy To Browse +- Easy To Customize your details With GUI +- Blog Crud (Create, Read, Update, Delete blog with easy to use UI). +- Dark Mode diff --git a/content/theme/remix-admin-starter.md b/content/theme/remix-admin-starter.md new file mode 100644 index 000000000..2ab88056c --- /dev/null +++ b/content/theme/remix-admin-starter.md @@ -0,0 +1,24 @@ +--- +title: Remix Supabase Starter +github: https://github.com/netlify-templates/remix-admin-template +demo: https://remix-admin-template.netlify.app/ +author: Netlify +date: 2025-02-28 +ssg: + - Remix +cms: + - Supabase +css: + - Tailwind +archetype: + - Admin + - Dashboard +description: The Remix Supabase starter demonstrates how to integrate Supabase into an Remix project deployed on Netlify. +featured: false +netlify_deploy: https://app.netlify.com/start/deploy?repository=https://github.com/netlify-templates/remix-admin-template +--- + + +The Remix Supabase starter demonstrates how to integrate Supabase into an Remix project deployed on Netlify. + + diff --git a/content/theme/rg-portfolio.md b/content/theme/rg-portfolio.md index be76041c6..ce5932419 100644 --- a/content/theme/rg-portfolio.md +++ b/content/theme/rg-portfolio.md @@ -1,10 +1,9 @@ --- title: RG Portfolio -github: 'https://github.com/rohitguptab/rg-portfolio' -demo: 'https://rg-portfolio.netlify.com' +github: https://github.com/rohitguptab/rg-portfolio +demo: https://rg-portfolio.netlify.com author: Rohit Gupta date: 2020-04-10T00:00:00.000Z -github_branch: master ssg: - Gatsby cms: @@ -12,14 +11,12 @@ cms: archetype: - Blog - Portfolio - - Multi Purpose services: - Formstack description: >- Kick-off your Portfolio website with RG-Portfolio gatsby starter. We have used Gatsby + Contenful. -stale: false -weight: 12 +stale: true --- # A simple starter kit for Gatsby diff --git a/content/theme/roxo-eleventy.md b/content/theme/roxo-eleventy.md new file mode 100644 index 000000000..4a9c36516 --- /dev/null +++ b/content/theme/roxo-eleventy.md @@ -0,0 +1,67 @@ +--- +title: Roxo | a digital agency template +github: https://github.com/StaticMania/roxo-eleventy +demo: https://roxo-eleventy.staticmania.com/ +author: StaticMania +date: 2022-08-02T00:00:00.000Z +ssg: + - Eleventy +cms: + - No CMS +css: + - Bootstrap +archetype: + - Agency + - Landing Page + - Multi Purpose + - Resume + - Blog + - Portfolio +description: >- + Roxo is a digital agency theme for creative agencies, freelancers, graphic + designers, photographers. Can be used for any kind of corporate websites who + provides digital services with many expertise such as Design, Digital + Products, Development, Campaign & Content, Employer Branding, Animation & + Motion Graphics ,Packaging & Product Design, Retail & Spacial, Print & + Editorial Design, Concept/Text, Information Design etc. Roxo ’s contact form + is supported Formspree. +stale: false +--- + +## Table of Contents + +- [Installation](#Installation) +- [Main Features](#Features) +- [Support](#Support) +- [Licensing](#Licensing) +- [Hire](#Need-Help) + +## Installation + +1. Add the repository into your Eleventy Project repository by `git clone https://github.com/StaticMania/roxo-eleventy.git` + +2. Install npm dependencies by `npm install` + +3. Build and run project by `npx run dev` and see the result at `http://localhost:8080/` + +## Features + +- Responsive Ready. +- Powered by Bootstrap 4. +- Dedicated portfolio and blog page. +- Well formatted code. +- Easy Customization. +- Formspree Contact form. +- Crafted for Design Agency/ Portfolio + +## Support + +Have some question or facing any technical trouble feel free to [Contact Us](https://staticmania.com/contact/) + +## Licensing + +This Repository is licensed under the [MIT](#) License + +## Need-Help + +We are an open book if you have any querie please feel free to contact us for any changes. [contact](https://staticmania.com/contact/) diff --git a/content/theme/roxo-hugo.md b/content/theme/roxo-hugo.md index 1749c8c9e..4a2030343 100644 --- a/content/theme/roxo-hugo.md +++ b/content/theme/roxo-hugo.md @@ -1,10 +1,9 @@ --- title: Roxo Hugo -github: 'https://github.com/StaticMania/roxo-hugo' -demo: 'https://roxo-hugo.staticmania.com/' +github: https://github.com/StaticMania/roxo-hugo +demo: https://roxo-hugo.staticmania.com/ author: StaticMania date: 2020-03-16T00:00:00.000Z -github_branch: master ssg: - Hugo cms: @@ -23,6 +22,8 @@ description: >- Print & Editorial Design, Concept/Text, Information Design etc. Roxo Hugo’s contact form is supported Formspree. stale: false +disabled: true +disabled_reason: demo url not found --- # Roxo Hugo for Hugo diff --git a/content/theme/sapper-kontent-cafe.md b/content/theme/sapper-kontent-cafe.md index f9a4393b4..a528db5c7 100644 --- a/content/theme/sapper-kontent-cafe.md +++ b/content/theme/sapper-kontent-cafe.md @@ -1,18 +1,17 @@ --- title: Sapper Kontent Café -github: 'https://github.com/Simply007/kontent-sample-app-svelte-sapper' -demo: 'https://kontent-sample-app-svelte-sapper.now.sh/' +github: https://github.com/Simply007/kontent-sample-app-svelte-sapper +demo: https://kontent-sample-app-svelte-sapper.now.sh/ author: Simply007 ssg: - Sapper cms: - Kontent date: 2020-12-01T00:00:00.000Z -github_branch: master archetype: - Business -description: 'Website showcase for fictional café with Svelte, Sapper, and Kentico Kontent.' -stale: false +description: Website showcase for fictional café with Svelte, Sapper, and Kentico Kontent. +stale: true --- # Sapper Kontent Café diff --git a/content/theme/scaffold.md b/content/theme/scaffold.md index 73a212a4b..37051eabd 100644 --- a/content/theme/scaffold.md +++ b/content/theme/scaffold.md @@ -1,10 +1,9 @@ --- title: Scaffold -github: 'https://github.com/sziv2p/jekyll-theme-scaffold' -demo: 'https://sziv2p.github.io/jekyll-theme-scaffold/' +github: https://github.com/sziv2p/jekyll-theme-scaffold +demo: https://sziv2p.github.io/jekyll-theme-scaffold/ author: Songzi Vong date: 2020-11-02T00:00:00.000Z -github_branch: master ssg: - Jekyll cms: @@ -13,6 +12,8 @@ archetype: - Blog description: A one-column minimalist Jekyll theme for bloggers. stale: false +disabled: true +disabled_reason: demo url not found --- ## Features diff --git a/content/theme/scriptor-jekyll-theme.md b/content/theme/scriptor-jekyll-theme.md new file mode 100644 index 000000000..a0bf7fd5a --- /dev/null +++ b/content/theme/scriptor-jekyll-theme.md @@ -0,0 +1,27 @@ +--- +title: Scriptor Jekyll Theme +github: https://github.com/JustGoodThemes/Scriptor-Jekyll-Theme +demo: https://scriptor-jekyll.netlify.app/ +author: JustGoodThemes +ssg: + - Jekyll +cms: + - No Cms +archetype: + - Blog +css: + - SCSS +date: 2022-07-19T00:00:00.000Z +description: Scriptor is a minimal, clean, modern and responsive Jekyll theme for writers. +stale: false +disabled: false +disabled_reason: '' +--- + +## Features + +- Responsive design +- Archive organized by [tags](https://scriptor-jekyll.netlify.com/tags/) +- Disqus Comments +- Accent color options +- [Prism](https://prismjs.com/) syntax highlighter diff --git a/content/theme/scully-kontent-lumen.md b/content/theme/scully-kontent-lumen.md index 8f756148b..d9dd4f892 100644 --- a/content/theme/scully-kontent-lumen.md +++ b/content/theme/scully-kontent-lumen.md @@ -1,19 +1,20 @@ --- title: Scully Starter Kontent Lumen -github: 'https://github.com/ondrabus/scully-starter-kontent-lumen' -demo: 'https://scully-starter-kontent-lumen.netlify.app/' +github: https://github.com/ondrabus/scully-starter-kontent-lumen +demo: https://scully-starter-kontent-lumen.netlify.app/ author: Kentico ssg: - Scully cms: - Kontent date: 2020-12-01T00:00:00.000Z -github_branch: master archetype: - Blog - Portfolio -description: Minimal, lightweight, and mobile-first starter for creating blogs using Scully and Kentico Kontent. -stale: false +description: >- + Minimal, lightweight, and mobile-first starter for creating blogs using Scully + and Kentico Kontent. +stale: true --- # Lumen - blog/portfolio starter for Scully and Kontent diff --git a/content/theme/seven.md b/content/theme/seven.md index f2c4b512a..45d7ecfbe 100644 --- a/content/theme/seven.md +++ b/content/theme/seven.md @@ -1,16 +1,15 @@ --- title: Seven -github: 'https://github.com/planetoftheweb/seven' -demo: 'https://7ty.tech/' +github: https://github.com/planetoftheweb/seven +demo: https://7ty.tech/ author: Ray Villalobos ssg: - Eleventy cms: - No CMS date: 2019-08-11T00:00:00.000Z -github_branch: master description: >- Eleventy template using Bootstrap, Sass, Webpack, Vue.js powered search, includes lots of other features -stale: false +stale: true --- diff --git a/content/theme/sidey-jekyll.md b/content/theme/sidey-jekyll.md index 61b359345..65a460c19 100644 --- a/content/theme/sidey-jekyll.md +++ b/content/theme/sidey-jekyll.md @@ -1,10 +1,9 @@ --- title: Sidey -github: 'https://github.com/ronv/sidey' -demo: 'https://sidey-jekyll.netlify.com/' +github: https://github.com/ronv/sidey +demo: https://sidey-jekyll.netlify.com/ author: Ronalds Vilcins date: 2020-02-03T00:00:00.000Z -github_branch: master ssg: - Jekyll archetype: diff --git a/content/theme/simply-cyan.md b/content/theme/simply-cyan.md new file mode 100644 index 000000000..74a235b44 --- /dev/null +++ b/content/theme/simply-cyan.md @@ -0,0 +1,113 @@ +--- +title: "Simply Cyan" +github: https://github.com/PQuod/simply-cyan-theme +demo: https://pquod.github.io/simply-cyan-demo/ +author: Lucie Desaubliaux +date: 2023-01-11 +ssg: + - Jekyll +cms: + - No CMS +archetype: + - Blog +description: Simply Cyan is a Jekyll theme dedicated to text and reading. This theme focuses on readability and clarity. Different available functions are at work to facilitate the reader's experience. +--- + +# simply-cyan + +Simply Cyan is a Jekyll theme dedicated to text and reading. This theme focuses on readability and clarity. + +You can visit the demo website of this theme [here](https://pquod.github.io/simply-cyan-demo/). + +Three main functions are at work to facilitate the reader's experience : a classic dark/light mode, but also toggles to change the font size and get bigger characters or to change the font-style (by default meant to switch between serif and sans-serif fonts). + +The design of Simply Cyan is sober and elegant, yet pop with its bright colorful oblique stripes punctuating the screen. + +Symply Cyan can feature a multitude of authors and offers a page to display all of their profiles, as well as an archives page to display all the site's posts. + + +## Installation + +Add this line to your Jekyll site's `Gemfile` to add the theme as a dependancy: + +```ruby +gem "simply-cyan" +``` + +Run `bundle install` in the root file of your project: + +Add this line to your Jekyll site's `_config.yml` to set the theme: + +```yaml +theme: simply-cyan +``` + +Run `bundle exec jekyll serve` to build and serve your site. + +You can use the `config.yml` to update the configuration of your website and set things such as its title, description, navigation links and a lot more + +## Usage + +### Customizing styles + +You can customize many style parameters of the Simply Cyan theme by changing the different variables in the `settings.scss` file of the project (`_sass/_settings.scss`). You'll find there such parameters as the colors of the dark and white modes, fonts, line height, font sizes etc. + +You can also overwrite the complete theme with your own custom file by matching its filename and path. + +### Accessing site parameters + +Several parameters are also accessible in the `config.yml` file. For example, you can choose there whether to display or not the different reading functions (dark mode, big fonts etc.) of the site. + +### Creating a post + +You are now ready to add content to your new jekyll site. You can do so by adding new posts in the `_posts` folder. Be sure your new post begins with the same front matter lines than the ones in the example posts (check [Jekyll documentation](https://jekyllrb.com/docs/posts/) in case you're not sure how to make your first post): + +``` +--- +layout: post +title: "Example Post" +date: 2022-11-15 +author: + - "Someone" + - "Someone else" +--- +``` + +### Managing different authors + +Note that if you want to have all of the authors of your site displayed on the authors page, you'll have to create a new file for each of them in the `_categories` folder. The title of this new file must match the way you wrote the author's name in the category line of the post's front matter. + +You can add a description or bio to each author's page in its respective file in `_categories`. + +Of course, this folder and the category files can be used to display other things than authors. You just have to change the title of the `categories.md` page in order to display your posts grouped by any category you choose. + +### Homepage + +By default, the homepage displays the ten newest posts. This number can be changed in the `config.yml` file. + +### Archives + +The archives page displays the integrality of the posts published on your site. + +## Contributing + +Bug reports and pull requests are welcome on GitHub at https://github.com/pquod/simply-cyan. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct. + +If you have any idea about improving this theme or if you find any lack in its documentation, feel free to write at l.desaubliaux@gmail.com, I'd be happy to keep on making this theme better and better for your use! + +## Development + +To set up your environment to develop this theme, run `bundle install`. + +Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal. + +When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled. +To add a custom directory to your theme-gem, please edit the regexp in `simply-cyan.gemspec` accordingly. + +## License + +The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT). + +## Credits + +Thanks a lots to Quentin, Candice and Robinson, the people behind the conception of the original Internet Exploreur website who helped me a lot designing it. diff --git a/content/theme/simpol-theme.md b/content/theme/simpol-theme.md index 4d754af37..b5fd88c28 100644 --- a/content/theme/simpol-theme.md +++ b/content/theme/simpol-theme.md @@ -1,12 +1,11 @@ --- title: Simpol Theme -github: 'https://github.com/scottmathson/simpol-theme' -demo: 'https://simpol.scottmathson.com/' +github: https://github.com/scottmathson/simpol-theme +demo: https://simpol.scottmathson.com/ author: Scott Mathson ssg: - Jekyll date: 2019-10-29T00:00:00.000Z -github_branch: master description: >- Simpol Theme is a clean, minimal website theme all about the writing, the content. Currently available for Jekyll. Perfect for blogging. diff --git a/content/theme/skeleventy.md b/content/theme/skeleventy.md index efb8ec564..469c94bad 100644 --- a/content/theme/skeleventy.md +++ b/content/theme/skeleventy.md @@ -1,14 +1,13 @@ --- title: Skeleventy -github: 'https://github.com/josephdyer/skeleventy' -demo: 'https://skeleventy.netlify.com/' +github: https://github.com/josephdyer/skeleventy +demo: https://skeleventy.netlify.com/ author: Joseph Dyer ssg: - Eleventy cms: - No Cms date: 2019-02-11T15:07:16.000Z -github_branch: master description: A skeleton boilerplate built with Eleventy. -stale: false +stale: true --- diff --git a/content/theme/sleek.md b/content/theme/sleek.md index edcbc3684..13b600929 100644 --- a/content/theme/sleek.md +++ b/content/theme/sleek.md @@ -1,14 +1,13 @@ --- title: Sleek -github: 'https://github.com/janczizikow/sleek' -demo: 'https://janczizikow.github.io/sleek/' +github: https://github.com/janczizikow/sleek +demo: https://janczizikow.github.io/sleek/ author: Jan Czizikow ssg: - Jekyll cms: - No Cms date: 2017-11-19T09:46:18.000Z -github_branch: master description: ' :chart_with_upwards_trend: Sleek is a modern Jekyll theme focused on speed performance & SEO best practices' -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/snipcart-middleman-integration.md b/content/theme/snipcart-middleman-integration.md index 46b3ebc01..cf1169075 100644 --- a/content/theme/snipcart-middleman-integration.md +++ b/content/theme/snipcart-middleman-integration.md @@ -1,7 +1,7 @@ --- title: Snipcart Middleman -github: 'https://github.com/snipcart/snipcart-middleman-integration' -demo: 'https://snipcart-middleman.netlify.com/' +github: https://github.com/snipcart/snipcart-middleman-integration +demo: https://snipcart-middleman.netlify.com/ author: Snipcart ssg: - Middleman @@ -10,7 +10,6 @@ cms: services: - Snipcart date: 2020-03-18T00:00:00.000Z -github_branch: master description: Demo code for an e-commerce static site with Snipcart & Middleman. stale: true --- diff --git a/content/theme/so-simple-theme.md b/content/theme/so-simple-theme.md index f5071f1d3..0bd7b30ee 100644 --- a/content/theme/so-simple-theme.md +++ b/content/theme/so-simple-theme.md @@ -1,14 +1,13 @@ --- title: So Simple -github: 'https://github.com/mmistakes/so-simple-theme' -demo: 'https://mmistakes.github.io/so-simple-theme/' +github: https://github.com/mmistakes/so-simple-theme +demo: https://mmistakes.github.io/so-simple-theme/ author: Michael Rose ssg: - Jekyll cms: - No Cms date: 2013-06-25T20:17:12.000Z -github_branch: master description: A simple Jekyll theme for words and pictures. -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/solar-theme-jekyll.md b/content/theme/solar-theme-jekyll.md index 7aeb9a123..93652c5a0 100644 --- a/content/theme/solar-theme-jekyll.md +++ b/content/theme/solar-theme-jekyll.md @@ -1,14 +1,13 @@ --- title: Solar Jekyll -github: 'https://github.com/mattvh/solar-theme-jekyll' -demo: 'https://mattvh.github.io/solar-theme-jekyll/' +github: https://github.com/mattvh/solar-theme-jekyll +demo: https://mattvh.github.io/solar-theme-jekyll/ author: Matt Harzewski ssg: - Jekyll cms: - No Cms date: 2013-06-07T20:27:21.000Z -github_branch: master -description: 'A stylish theme for Jekyll blogs, based on the Solarized color palette' +description: A stylish theme for Jekyll blogs, based on the Solarized color palette stale: true --- diff --git a/content/theme/stackbit-ampersand-unibit.md b/content/theme/stackbit-ampersand-unibit.md deleted file mode 100644 index 308f9c305..000000000 --- a/content/theme/stackbit-ampersand-unibit.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: Ampersand -layout: single-pricing -github: 'https://github.com/stackbit/stackbit-theme-ampersand' -github_branch: master -demo: 'https://themes.stackbit.com/demos/ampersand?themeBarHidden=true' -author: Stackbit -ssg: - - Unibit - - Hugo - - Gatsby - - Jekyll - - Next -cms: - - Contentful - - DatoCMS - - Forestry - - NetlifyCMS - - Sanity - - No CMS -css: - - SCSS -archetype: - - Blog -date: 2019-05-10T13:57:28.000Z -description: Ampersand is a Medium inspired blogging theme. -stale: false -weight: 5 ---- diff --git a/content/theme/stackbit-archetype-unibit.md b/content/theme/stackbit-archetype-unibit.md deleted file mode 100644 index 3ed458abc..000000000 --- a/content/theme/stackbit-archetype-unibit.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: Archetype -layout: single-pricing -github: 'https://github.com/stackbit/stackbit-theme-archetype' -demo: 'https://themes.stackbit.com/demos/archetype/blue?themeBarHidden=true' -author: Stackbit -ssg: - - Hugo - - Gatsby - - Jekyll - - Next -cms: - - Contentful - - DatoCMS - - Forestry - - NetlifyCMS - - Sanity - - No CMS -css: - - SCSS -date: 2019-05-10T13:59:15.000Z -github_branch: master -description: Archetype a multi-layout theme with posts for Stackbit -stale: false -disabled: true -disabled_reason: demo url not found ---- diff --git a/content/theme/stackbit-azimuth-gatsby.md b/content/theme/stackbit-azimuth-gatsby.md deleted file mode 100644 index 733efea6f..000000000 --- a/content/theme/stackbit-azimuth-gatsby.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: Azimuth Gatsby -github: 'https://github.com/stackbit-themes/azimuth-gatsby' -github_branch: master -demo: 'https://themes.stackbit.com/demos/azimuth?themeBarHidden=true' -author: Stackbit -ssg: - - Gatsby -cms: - - No Cms -css: - - Scss -date: 2019-05-23T00:00:00.000Z -description: Azimuth is a sleek SaaS theme for Gatsby -stale: false -disabled: true ---- diff --git a/content/theme/stackbit-azimuth-hugo.md b/content/theme/stackbit-azimuth-hugo.md deleted file mode 100644 index 7ea434d11..000000000 --- a/content/theme/stackbit-azimuth-hugo.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: Azimuth Hugo -github: 'https://github.com/stackbit-themes/azimuth-hugo' -github_branch: master -demo: 'https://themes.stackbit.com/demos/azimuth?themeBarHidden=true' -author: Stackbit -ssg: - - Hugo -cms: - - No CMS -css: - - Scss -date: 2020-07-23T00:00:00.000Z -description: Azimuth is a sleek SaaS theme for Hugo -stale: false -weight: 4 -disabled: true ---- diff --git a/content/theme/stackbit-azimuth-jekyll.md b/content/theme/stackbit-azimuth-jekyll.md deleted file mode 100644 index 18b1091e1..000000000 --- a/content/theme/stackbit-azimuth-jekyll.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: Azimuth Jekyll -github: 'https://github.com/stackbit-themes/azimuth-jekyll' -github_branch: master -demo: 'https://themes.stackbit.com/demos/azimuth/?themeBarHidden=true' -author: Stackbit -ssg: - - Jekyll -cms: - - No CMS -css: - - Scss -date: 2020-06-09T00:00:00.000Z -description: Azimuth is a sleek SaaS theme for Jekyll -stale: false -weight: 4 -disabled: true ---- diff --git a/content/theme/stackbit-azimuth-nextjs.md b/content/theme/stackbit-azimuth-nextjs.md deleted file mode 100644 index 49bccf46d..000000000 --- a/content/theme/stackbit-azimuth-nextjs.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: Azimuth Nextjs -github: 'https://github.com/stackbit-themes/azimuth-nextjs' -github_branch: master -demo: 'https://themes.stackbit.com/demos/azimuth?themeBarHidden=true' -author: Stackbit -ssg: - - Next -cms: - - No CMS -css: - - Scss -date: 2020-10-15T00:00:00.000Z -description: Azimuth is a sleek SaaS theme for Nextjs -stale: false -disabled: true ---- diff --git a/content/theme/stackbit-azimuth-unibit.md b/content/theme/stackbit-azimuth-unibit.md deleted file mode 100644 index 75106cab7..000000000 --- a/content/theme/stackbit-azimuth-unibit.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: Azimuth -layout: single-pricing -github: 'https://github.com/stackbit/stackbit-theme-azimuth' -github_branch: master -demo: 'https://themes.stackbit.com/demos/azimuth?themeBarHidden=true' -author: Stackbit -ssg: - - Unibit - - Hugo - - Gatsby - - Jekyll - - Next -cms: - - Contentful - - DatoCMS - - Forestry - - NetlifyCMS - - Sanity - - No CMS -css: - - SCSS -date: 2020-10-15T00:00:00.000Z -description: Azimuth is a sleek marketing theme for startup and product sites. -stale: false -weight: 4 ---- diff --git a/content/theme/stackbit-construct-unibit.md b/content/theme/stackbit-construct-unibit.md deleted file mode 100644 index 2daf63318..000000000 --- a/content/theme/stackbit-construct-unibit.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: Construct -layout: single-pricing -github: 'https://github.com/stackbit/stackbit-theme-construct' -github_branch: master -demo: 'https://themes.stackbit.com/demos/construct/blue?themeBarHidden=true' -author: Stackbit -ssg: - - Hugo - - Gatsby - - Jekyll - - Next -cms: - - Contentful - - DatoCMS - - Forestry - - NetlifyCMS - - Sanity - - No CMS -css: - - Scss -date: 2019-05-10T14:33:16.000Z -description: Construct a multipage theme for Stackbit -stale: false -weight: 10 -disabled: true -disabled_reason: demo url not found ---- diff --git a/content/theme/stackbit-diy-gatsby.md b/content/theme/stackbit-diy-gatsby.md deleted file mode 100644 index d1f8f9d9d..000000000 --- a/content/theme/stackbit-diy-gatsby.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: DIY Gatsby -github: 'https://github.com/stackbit-themes/diy-gatsby' -github_branch: master -demo: 'https://themes.stackbit.com/demos/diy?themeBarHidden=true' -author: Stackbit -ssg: - - Gatsby -cms: - - No CMS -css: - - Scss -date: 2020-09-04T00:00:00.000Z -description: DIY is a marketing theme for Gatsby with an advanced layout builder. -stale: false -weight: 1 -disabled: true ---- diff --git a/content/theme/stackbit-diy-hugo.md b/content/theme/stackbit-diy-hugo.md deleted file mode 100644 index ea32c3f78..000000000 --- a/content/theme/stackbit-diy-hugo.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: DIY Hugo -github: 'https://github.com/stackbit-themes/diy-hugo' -github_branch: master -demo: 'https://themes.stackbit.com/demos/diy?themeBarHidden=true' -author: Stackbit -ssg: - - Hugo -cms: - - No CMS -css: - - Scss -date: 2020-10-01T00:00:00.000Z -description: DIY is a marketing theme for Hugo with an advanced layout builder. -stale: false -weight: 1 -disabled: true ---- diff --git a/content/theme/stackbit-diy-jekyll.md b/content/theme/stackbit-diy-jekyll.md deleted file mode 100644 index 16bfe4306..000000000 --- a/content/theme/stackbit-diy-jekyll.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: DIY Jekyll -github: 'https://github.com/stackbit-themes/diy-jekyll' -github_branch: master -demo: 'https://themes.stackbit.com/demos/diy?themeBarHidden=true' -author: Stackbit -ssg: - - Jekyll -cms: - - No CMS -css: - - Scss -date: 2020-11-10T00:00:00.000Z -description: DIY is a marketing theme for Jekyll with an advanced layout builder. -stale: false -weight: 1 -disabled: true ---- - -## Theme Features - -- Feature highlights -- Pricing page -- Pricing page -- Calls to action -- Product cards -- Blog & showcase -- Mobile responsive -- Customer testimonials - -### Super flexible template -You can create various sections for your landing page like testimonials, clients logotypes grid, pricing, team section, etc. - -### Comes with predefined colors and styles -You can pick from preseleected colors and styles. Template styles include minimal, clasicc and bold. Pick what works best for your brand. diff --git a/content/theme/stackbit-diy-unibit.md b/content/theme/stackbit-diy-unibit.md deleted file mode 100644 index 8a1aa5e56..000000000 --- a/content/theme/stackbit-diy-unibit.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: DIY -layout: single-pricing -github: 'https://github.com/stackbit/stackbit-theme-diy' -github_branch: master -demo: 'https://themes.stackbit.com/demos/diy?themeBarHidden=true' -author: Stackbit -ssg: - - Unibit - - Hugo - - Gatsby - - Jekyll - - Next -cms: - - Contentful - - DatoCMS - - Forestry - - NetlifyCMS - - Sanity - - No CMS -css: - - SCSS -date: 2020-11-10T00:00:00.000Z -description: DIY is a multi-page marketing theme with an advanced layout builder. -stale: false -weight: 1 ---- - -## Theme Features - -- Feature highlights -- Pricing page -- Pricing page -- Calls to action -- Product cards -- Blog & showcase -- Mobile responsive -- Customer testimonials - -### Super flexible template -You can create various sections for your landing page like testimonials, clients logotypes grid, pricing, team section, etc. - -### Comes with predefined colors and styles -You can pick from preseleected colors and styles. Template styles include minimal, clasicc and bold. Pick what works best for your brand. diff --git a/content/theme/stackbit-exto-gatsby.md b/content/theme/stackbit-exto-gatsby.md deleted file mode 100644 index 42acb648b..000000000 --- a/content/theme/stackbit-exto-gatsby.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: Exto Gatsby -github: 'https://github.com/stackbit-themes/exto-gatsby' -github_branch: master -demo: 'https://themes.stackbit.com/demos/exto?themeBarHidden=true' -author: Stackbit -ssg: - - Gatsby -cms: - - No CMS -css: - - Scss -date: 2020-11-20T00:00:00.000Z -description: Exto is an exceptionally well design portfolio and blog theme. -stale: false -weight: 2 -disabled: true ---- diff --git a/content/theme/stackbit-exto-hugo.md b/content/theme/stackbit-exto-hugo.md deleted file mode 100644 index a8f563234..000000000 --- a/content/theme/stackbit-exto-hugo.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: Exto Hugo -github: 'https://github.com/stackbit-themes/exto-hugo' -github_branch: master -demo: 'https://themes.stackbit.com/demos/exto?themeBarHidden=true' -author: Stackbit -ssg: - - Hugo -cms: - - No Cms -css: - - Scss -date: 2020-10-02T00:00:00.000Z -description: Exto is an exceptionally well design portfolio and blog theme. -stale: false -weight: 2 -disabled: true ---- diff --git a/content/theme/stackbit-exto-jekyll.md b/content/theme/stackbit-exto-jekyll.md deleted file mode 100644 index 840c9517d..000000000 --- a/content/theme/stackbit-exto-jekyll.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: Exto Jekyll -github: 'https://github.com/stackbit-themes/exto-jekyll' -github_branch: master -demo: 'https://themes.stackbit.com/demos/exto?themeBarHidden=true' -author: Stackbit -ssg: - - Jekyll -cms: - - No CMS -css: - - Scss -date: 2020-08-01T00:00:00.000Z -description: Exto is an exceptionally well portfolio theme -stale: false -weight: 2 -disabled: true ---- diff --git a/content/theme/stackbit-exto-unibit.md b/content/theme/stackbit-exto-unibit.md deleted file mode 100644 index 32fecb42f..000000000 --- a/content/theme/stackbit-exto-unibit.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -title: Exto -layout: single-pricing -github: 'https://github.com/stackbit/stackbit-theme-exto' -github_branch: master -demo: 'https://themes.stackbit.com/demos/exto?themeBarHidden=true' -author: Stackbit -ssg: - - Unibit - - Hugo - - Gatsby - - Jekyll - - Next -cms: - - Contentful - - DatoCMS - - Forestry - - NetlifyCMS - - Sanity - - No CMS -css: - - SCSS -archetype: - - Portfolio - - Blog -date: 2019-05-23T18:26:16.000Z -description: Exto is portfolio and blog theme with a clean design. -weight: 2 -stale: false ---- diff --git a/content/theme/stackbit-fjord-gatsby.md b/content/theme/stackbit-fjord-gatsby.md deleted file mode 100644 index 05dad94f1..000000000 --- a/content/theme/stackbit-fjord-gatsby.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: Fjord Gatsby -github: 'https://github.com/stackbit-themes/fjord-gatsby' -github_branch: master -demo: 'https://themes.stackbit.com/demos/fjord?themeBarHidden=true' -author: Stackbit -ssg: - - Gatsby -cms: - - No CMS -css: - - Scss -date: 2020-10-08T00:00:00.000Z -description: 'Fjord is a beautiful, minimal blog theme.' -stale: false -weight: 3 -disabled: true ---- diff --git a/content/theme/stackbit-fjord-hugo.md b/content/theme/stackbit-fjord-hugo.md deleted file mode 100644 index aa1912899..000000000 --- a/content/theme/stackbit-fjord-hugo.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: Fjord Hugo -github: 'https://github.com/stackbit-themes/fjord-hugo' -github_branch: master -demo: 'https://themes.stackbit.com/demos/fjord?themeBarHidden=true' -author: Stackbit -ssg: - - Hugo -cms: - - No CMS -css: - - Scss -date: 2020-11-08T00:00:00.000Z -description: 'Fjord is a beautiful, minimal blog theme.' -stale: false -weight: 3 -disabled: true ---- diff --git a/content/theme/stackbit-fjord-jekyll.md b/content/theme/stackbit-fjord-jekyll.md deleted file mode 100644 index 350373445..000000000 --- a/content/theme/stackbit-fjord-jekyll.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: Fjord Jekyll -github: 'https://github.com/stackbit-themes/fjord-jekyll' -github_branch: master -demo: 'https://themes.stackbit.com/demos/fjord?themeBarHidden=true' -author: Stackbit -ssg: - - Jekyll -cms: - - No CMS -css: - - Scss -date: 2020-09-10T00:00:00.000Z -description: 'Fjord is a beautiful, minimal blog theme.' -stale: false -weight: 3 -disabled: true ---- diff --git a/content/theme/stackbit-fjord-unibit.md b/content/theme/stackbit-fjord-unibit.md deleted file mode 100644 index 66c451a60..000000000 --- a/content/theme/stackbit-fjord-unibit.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: Fjord -layout: single-pricing -github: 'https://github.com/stackbit/stackbit-theme-fjord' -github_branch: master -demo: 'https://themes.stackbit.com/demos/fjord?themeBarHidden=true' -author: Stackbit -ssg: - - Unibit - - Hugo - - Gatsby - - Jekyll - - Next -cms: - - Contentful - - DatoCMS - - Forestry - - NetlifyCMS - - Sanity - - No CMS -css: - - SCSS -archetype: - - Blog -date: 2019-05-23T18:26:16.000Z -description: 'Fjord is a beautiful, minimal blog theme.' -stale: false -weight: 3 ---- diff --git a/content/theme/stackbit-fractal-unibit.md b/content/theme/stackbit-fractal-unibit.md deleted file mode 100644 index 3ca6d08d5..000000000 --- a/content/theme/stackbit-fractal-unibit.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: Fractal -layout: single-pricing -github: 'https://github.com/stackbit/stackbit-theme-fractal' -github_branch: master -demo: 'https://themes.stackbit.com/demos/fractal/blue?themeBarHidden=true' -author: Stackbit -ssg: - - Unibit - - Hugo - - Gatsby - - Jekyll - - Next -cms: - - Contentful - - DatoCMS - - Forestry - - NetlifyCMS - - Sanity -date: 2019-05-10T14:36:37.000Z -description: Fractal single page mobile application marketing theme for Stackbit -stale: false -disabled: true -disabled_reason: demo url not found ---- diff --git a/content/theme/stackbit-fresh-unibit.md b/content/theme/stackbit-fresh-unibit.md deleted file mode 100644 index f4e3b5ebf..000000000 --- a/content/theme/stackbit-fresh-unibit.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: Fresh -layout: single-pricing -github: 'https://github.com/stackbit/stackbit-theme-fresh' -github_branch: master -demo: 'https://themes.stackbit.com/demos/fresh?themeBarHidden=true' -author: Stackbit -ssg: - - Unibit - - Hugo - - Gatsby - - Jekyll - - Next -cms: - - Contentful - - DatoCMS - - Forestry - - NetlifyCMS - - Sanity - - No CMS -css: - - SCSS -archetype: - - Blog -date: 2019-05-23T18:26:16.000Z -description: Fresh is a personal theme with a blog for Stackbit -stale: false -weight: 8 ---- diff --git a/content/theme/stackbit-hyperspace-unibit.md b/content/theme/stackbit-hyperspace-unibit.md deleted file mode 100644 index 2f79cbf82..000000000 --- a/content/theme/stackbit-hyperspace-unibit.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: Hyperspace -layout: single-pricing -github: 'https://github.com/stackbit/stackbit-theme-hyperspace' -demo: 'https://themes.stackbit.com/demos/hyperspace/blue?themeBarHidden=true' -author: Stackbit -ssg: - - Unibit - - Hugo - - Gatsby - - Jekyll - - Next -cms: - - Contentful - - DatoCMS - - Forestry - - NetlifyCMS - - Sanity -date: 2019-05-10T14:37:17.000Z -github_branch: master -description: Hyperspace a multi-page theme with scroll-animated home sections for Stackbit -stale: false -disabled: true -disabled_reason: demo url not found ---- diff --git a/content/theme/stackbit-libris-unibit.md b/content/theme/stackbit-libris-unibit.md deleted file mode 100644 index 3bd9dcbcf..000000000 --- a/content/theme/stackbit-libris-unibit.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -title: Libris -layout: single-pricing -github: 'https://github.com/stackbit/stackbit-theme-libris' -demo: 'https://themes.stackbit.com/demos/libris/blue?themeBarHidden=true' -author: Stackbit -ssg: - - Unibit - - Hugo - - Gatsby - - Jekyll - - Next -cms: - - Contentful - - DatoCMS - - Forestry - - NetlifyCMS - - Sanity - - No CMS -css: - - SCSS -archetype: - - Documentation -date: 2019-05-23T18:31:33.000Z -github_branch: master -description: Libris is a documentation theme -stale: false -weight: 6 -disabled: true -disabled_reason: demo url not found ---- diff --git a/content/theme/stackbit-reflex-unibit.md b/content/theme/stackbit-reflex-unibit.md deleted file mode 100644 index 1d6e00895..000000000 --- a/content/theme/stackbit-reflex-unibit.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: Reflex -layout: single-pricing -github: 'https://github.com/stackbit/stackbit-theme-reflex' -demo: 'https://themes.stackbit.com/demos/reflex?themeBarHidden=true' -author: Stackbit -ssg: - - Unibit - - Hugo - - Gatsby - - Jekyll - - Next -cms: - - Contentful - - DatoCMS - - Forestry - - NetlifyCMS - - Sanity -date: 2019-05-10T14:40:09.000Z -github_branch: master -description: Reflex a multipage theme with posts for Stackbit -stale: false -disabled: true -disabled_reason: demo url not found ---- diff --git a/content/theme/stackbit-spectral-unibit.md b/content/theme/stackbit-spectral-unibit.md deleted file mode 100644 index 473a05830..000000000 --- a/content/theme/stackbit-spectral-unibit.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: Spectral -layout: single-pricing -github: 'https://github.com/stackbit/stackbit-theme-spectral' -demo: 'https://themes.stackbit.com/demos/spectral/blue?themeBarHidden=true' -author: Stackbit -ssg: - - Unibit - - Hugo - - Gatsby - - Jekyll - - Next -cms: - - Contentful - - DatoCMS - - Forestry - - NetlifyCMS - - Sanity -date: 2019-05-10T00:00:00.000Z -github_branch: master -description: Spectral is a multipage theme for Stackbit -stale: false -disabled: true -disabled_reason: demo url not found ---- diff --git a/content/theme/stackbit-starter-gatsby.md b/content/theme/stackbit-starter-gatsby.md deleted file mode 100644 index ac7c94c38..000000000 --- a/content/theme/stackbit-starter-gatsby.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: Stackbit Starter Gatsby -github: 'https://github.com/stackbit-themes/stackbit-starter-gatsby' -demo: 'https://themes.stackbit.com/demos/starter/features?themeBarHidden=true' -author: Stackbit -ssg: - - Gatsby -cms: - - No CMS -css: - - SCSS -date: 2020-09-28T00:00:00.000Z -github_branch: master -description: A developer focused starter theme for Gatsby and Stackbit. -stale: false -weight: 5 -disabled: true ---- diff --git a/content/theme/stackbit-starter-hugo.md b/content/theme/stackbit-starter-hugo.md deleted file mode 100644 index debea24c9..000000000 --- a/content/theme/stackbit-starter-hugo.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: Stackbit Starter Hugo -github: 'https://github.com/stackbit-themes/stackbit-starter-hugo' -demo: 'https://themes.stackbit.com/demos/starter/features?themeBarHidden=true' -author: Stackbit -ssg: - - Hugo -cms: - - No CMS -css: - - SCSS -date: 2020-09-18T00:00:00.000Z -github_branch: master -description: A developer focused starter theme for Hugo and Stackbit. -stale: false -weight: 5 -disabled: true ---- diff --git a/content/theme/stackbit-starter-jekyll.md b/content/theme/stackbit-starter-jekyll.md deleted file mode 100644 index 26878a855..000000000 --- a/content/theme/stackbit-starter-jekyll.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: Starter Jekyll -github: 'https://github.com/stackbit-themes/stackbit-starter-jekyll' -demo: 'https://themes.stackbit.com/demos/starter/features?themeBarHidden=true' -author: Stackbit -ssg: - - Jekyll -cms: - - No CMS -css: - - SCSS -date: 2020-08-23T00:00:00.000Z -github_branch: master -description: A developer focused starter theme for Jekyll and Stackbit. -stale: false -weight: 7 -disabled: true ---- diff --git a/content/theme/stackbit-starter-nextjs.md b/content/theme/stackbit-starter-nextjs.md deleted file mode 100644 index 76accfc8d..000000000 --- a/content/theme/stackbit-starter-nextjs.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: Stackbit Starter Nextjs -github: 'https://github.com/stackbit-themes/stackbit-starter-nextjs' -demo: 'https://themes.stackbit.com/demos/starter/features?themeBarHidden=true' -author: Stackbit -ssg: - - Next -cms: - - No CMS -css: - - SCSS -date: 2020-10-28T00:00:00.000Z -github_branch: master -description: A developer focused starter theme for Nextjs and Stackbit. -stale: false -disabled: true ---- diff --git a/content/theme/stackbit-starter-unibit.md b/content/theme/stackbit-starter-unibit.md deleted file mode 100644 index 5ddb3d048..000000000 --- a/content/theme/stackbit-starter-unibit.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: Starter Stackbit -layout: single-pricing -github: 'https://github.com/stackbit/stackbit-theme-starter' -github_branch: master -demo: 'https://themes.stackbit.com/demos/starter?themeBarHidden=true' -author: Stackbit -ssg: - - Unibit - - Hugo - - Gatsby - - Jekyll - - Next -cms: - - Contentful - - DatoCMS - - Forestry - - NetlifyCMS - - Sanity - - No CMS -css: - - SCSS -date: 2019-05-23T18:26:16.000Z -description: A developer focused starter theme for Stackbit. -stale: false -weight: 5 ---- diff --git a/content/theme/stackbit-vanilla-unibit.md b/content/theme/stackbit-vanilla-unibit.md deleted file mode 100644 index f329e663c..000000000 --- a/content/theme/stackbit-vanilla-unibit.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: Vanilla -layout: single-pricing -github: 'https://github.com/stackbit/stackbit-theme-vanilla' -github_branch: master -demo: 'https://themes.stackbit.com/demos/vanilla?themeBarHidden=true' -author: Stackbit -ssg: - - Unibit - - Hugo - - Gatsby - - Jekyll - - Next -cms: - - Contentful - - DatoCMS - - Forestry - - NetlifyCMS - - Sanity - - No CMS -css: - - SCSS -date: 2019-05-23T18:26:16.000Z -description: Vanilla a vanilla theme for Stackbit -stale: false -weight: 9 ---- diff --git a/content/theme/startbootstrap-clean-blog-jekyll.md b/content/theme/startbootstrap-clean-blog-jekyll.md index 78f4c503f..32c0ac460 100644 --- a/content/theme/startbootstrap-clean-blog-jekyll.md +++ b/content/theme/startbootstrap-clean-blog-jekyll.md @@ -1,7 +1,7 @@ --- title: Start Bootstrap Clean Blog -github: 'https://github.com/BlackrockDigital/startbootstrap-clean-blog-jekyll' -demo: 'https://blackrockdigital.github.io/startbootstrap-clean-blog-jekyll/' +github: https://github.com/BlackrockDigital/startbootstrap-clean-blog-jekyll +demo: https://blackrockdigital.github.io/startbootstrap-clean-blog-jekyll/ author: BlackrockDigital ssg: - Jekyll @@ -10,9 +10,8 @@ cms: css: - Bootstrap date: 2014-09-27T08:05:10.000Z -github_branch: master description: A Jekyll version of the Clean Blog theme by Start Bootstrap stale: false -disabled: true disabled_reason: demo url not found +disabled: true --- \ No newline at end of file diff --git a/content/theme/statiq-kontent-boilerplate.md b/content/theme/statiq-kontent-boilerplate.md index a89866faa..ee0a9fbaf 100644 --- a/content/theme/statiq-kontent-boilerplate.md +++ b/content/theme/statiq-kontent-boilerplate.md @@ -1,18 +1,19 @@ --- title: Statiq Kontent Boilerplate Kontent -github: 'https://github.com/Kentico/kontent-boilerplate-statiq-net' -demo: 'https://kentico.github.io/kontent-boilerplate-statiq-net' +github: https://github.com/Kentico/kontent-boilerplate-statiq-net +demo: https://kentico.github.io/kontent-boilerplate-statiq-net author: Kentico ssg: - Statiq cms: - Kontent date: 2020-12-01T00:00:00.000Z -github_branch: master -archetype: - - Multi Purpose -description: Boilerplate utilizing Statiq and Kentico Kontent to provide a starting point in the Jamstack world for .NET developers. +description: >- + Boilerplate utilizing Statiq and Kentico Kontent to provide a starting point + in the Jamstack world for .NET developers. stale: false +disabled: true +disabled_reason: demo url not found --- # Statiq boilerplate for Kontent diff --git a/content/theme/statiq-kontent-memoirs.md b/content/theme/statiq-kontent-memoirs.md index c3a932e5b..a60d720e2 100644 --- a/content/theme/statiq-kontent-memoirs.md +++ b/content/theme/statiq-kontent-memoirs.md @@ -1,14 +1,13 @@ --- title: Memoirs Statiq Kontent Theme -github: 'https://github.com/alanta/memoirs-theme' -demo: 'https://alanta.github.io/memoirs-theme' +github: https://github.com/alanta/memoirs-theme +demo: https://alanta.github.io/memoirs-theme author: alanta ssg: - Statiq cms: - Kontent date: 2020-12-01T00:00:00.000Z -github_branch: master archetype: - Blog - Portfolio diff --git a/content/theme/statiq-starter-kontent-lumen.md b/content/theme/statiq-starter-kontent-lumen.md index 2ef0243e8..66d80108b 100644 --- a/content/theme/statiq-starter-kontent-lumen.md +++ b/content/theme/statiq-starter-kontent-lumen.md @@ -1,14 +1,13 @@ --- title: Statiq Starter Kontent Lumen -github: 'https://github.com/Kentico/statiq-starter-kontent-lumen' -demo: 'https://kentico.github.io/statiq-starter-kontent-lumen/' +github: https://github.com/Kentico/statiq-starter-kontent-lumen +demo: https://kentico.github.io/statiq-starter-kontent-lumen/ author: Kentico ssg: - Statiq cms: - Kontent date: 2020-10-20T00:00:00.000Z -github_branch: master archetype: - Blog - Portfolio diff --git a/content/theme/stellar.md b/content/theme/stellar.md new file mode 100644 index 000000000..8716d8d11 --- /dev/null +++ b/content/theme/stellar.md @@ -0,0 +1,29 @@ +--- +title: "Stellar" +github: https://github.com/ekmas/stellar +demo: https://stellar-theme.netlify.app/ +author: Samuel Breznjak +date: 2024-04-21 +ssg: + - Astro +cms: + - No CMS +css: + - Tailwind +archetype: + - Documentation +description: Modern type-safe documentation theme for Astro. +--- + +# Features + +- Astro v4 +- Dark mode +- I18n (type safe) +- MD & MDX support +- Search powered by fuse.js +- Tailwind styling +- View transitions API +- Responsive & SEO-friendly +- Shiki code syntax styling +- Custom import path diff --git a/content/theme/story.md b/content/theme/story.md index 1a50bc8ec..b907ae080 100644 --- a/content/theme/story.md +++ b/content/theme/story.md @@ -1,17 +1,18 @@ --- title: Story -github: 'https://github.com/xaprb/story' -demo: 'https://story.xaprb.com/' +github: https://github.com/xaprb/story +demo: https://story.xaprb.com/ author: Baron Schwartz ssg: - Hugo cms: - No Cms date: 2018-04-14T23:17:41.000Z -github_branch: master description: >- Beautiful responsive Hugo blog theme focused on simplicity and elegance, with many extra features including presentations, math typesetting, music notation, and search. -stale: true +stale: false +disabled: true +disabled_reason: error checking demo url --- diff --git a/content/theme/storyblok-gridsome-boilerplate-moon.md b/content/theme/storyblok-gridsome-boilerplate-moon.md index 99be7537f..d9179b00f 100644 --- a/content/theme/storyblok-gridsome-boilerplate-moon.md +++ b/content/theme/storyblok-gridsome-boilerplate-moon.md @@ -1,5 +1,5 @@ --- -title: "Storyblok's Gridsome Boilerplate (Moon-Theme)" +title: Storyblok's Gridsome Boilerplate (Moon-Theme) github: https://github.com/storyblok/storyblok-gridsome-boilerplate-moon/ demo: https://demo.storyblok.com/ author: Storyblok @@ -7,11 +7,9 @@ ssg: - Gridsome cms: - Storyblok -date: 2020-05-20 -github_branch: master -description: "Gridsome Website by Storyblok" -stale: false -draft: true +date: 2020-05-20T00:00:00.000Z +description: Gridsome Website by Storyblok +stale: true ---

diff --git a/content/theme/streamer-theme.md b/content/theme/streamer-theme.md index 6376f5eaa..9d34820cb 100644 --- a/content/theme/streamer-theme.md +++ b/content/theme/streamer-theme.md @@ -1,14 +1,15 @@ --- title: Streamer Theme -github: 'https://github.com/bradykondek/streamer' -demo: 'https://www.streamertheme.ga' +github: https://github.com/bradykondek/streamer +demo: https://www.streamertheme.ga author: Brady Kondek ssg: - Jekyll cms: - No CMS date: 2019-10-14T16:19:53.000Z -github_branch: master description: Theme for streamer websites -stale: true +stale: false +disabled: true +disabled_reason: error checking demo url --- diff --git a/content/theme/supply.md b/content/theme/supply.md new file mode 100644 index 000000000..459b9ac65 --- /dev/null +++ b/content/theme/supply.md @@ -0,0 +1,35 @@ +--- +title: Supply +github: https://github.com/YJPL/supply +demo: https://supply.templates.supply +author: YJPL +date: 2023-01-17T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +archetype: + - Ecommerce + - Blog +description: Supply, a Jekyll e-commere theme built for Gumroad users. +stale: false +--- + +# A simple e-commerce theme for Jekyll + Gumroad + +Supply is an e-commerce template for Jekyll with Gumroad integration, designed with Tachyons CSS. +If you are a Gumroad creator, you can use Supply with Jekyll to display products within your site or blog. + +## Features + +* List & display products, thanks to Jekyll's collections +* Take payment online using Gumroad +* Contact form with formcarry +* Map with Leaflet +* jekyll-archives to build and sort through categories & tags pages +* Custom variables +* RSS/Atom feed +* SEO tags +* Microdata markup +* Gulp + Browsersync for fast development +* Built-in site search diff --git a/content/theme/tailieubkhn.md b/content/theme/tailieubkhn.md new file mode 100644 index 000000000..2c9a412a4 --- /dev/null +++ b/content/theme/tailieubkhn.md @@ -0,0 +1,25 @@ +--- +title: tailieubkhn convert theme +github: https://github.com/piandhust/tailieubkhn +demo: https://piandhust.github.io/tailieubkhn/ +author: trannguyenhan +date: 2021-10-24T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +css: + - Bootstrap +archetype: + - Personal +description: >- + If you want convert your website domain to domain github page, will use my + product. +stale: true +--- + +## Features + +* Use github page is backyard of your website +* Domain from github page will convert to your website, if it too long you will short it with tool short link in internet +* Easy to setup diff --git a/content/theme/tanstack-chat.md b/content/theme/tanstack-chat.md new file mode 100644 index 000000000..d5542489d --- /dev/null +++ b/content/theme/tanstack-chat.md @@ -0,0 +1,52 @@ +--- +title: TanStack Chat Template +github: https://github.com/netlify-templates/tanstack-template +demo: https://tanstack-starter.netlify.app/ +author: Netlify +date: 2025-03-19 +ssg: + - TanStack +cms: + - No CMS +css: + - Tailwind +archetype: + - Other +description: A modern chat template built with TanStack Router, Claude AI, Sentry, and Convex integrations, featuring a clean and responsive interface. +featured: true +netlify_deploy: https://app.netlify.com/start/deploy?repository=https://github.com/netlify-templates/tanstack-template +--- + +A modern chat template built with TanStack Router, Claude AI, Sentry, and Convex integrations, featuring a clean and responsive interface. + +## Features + +### AI Capabilities +- 🤖 Powered by Claude 3.5 Sonnet +- 📝 Rich markdown formatting with syntax highlighting +- 🎯 Customizable system prompts for tailored AI behavior +- 🔄 Real-time message updates and streaming responses + +### User Experience +- 🎨 Modern UI with Tailwind CSS and Lucide icons +- 🔍 Conversation management +- 🔐 API key management +- 📋 Markdown rendering with code highlighting + +## Architecture + +### Tech Stack +- **Frontend Framework**: React 19 with TanStack Start +- **Routing**: TanStack Router +- **State Management**: TanStack Store +- **Database**: Convex (optional) +- **Styling**: Tailwind CSS 4 +- **AI Integration**: Anthropic's Claude API +- **Build Tool**: Vite 6 with Vinxi + +### Prerequisites + +- [Node.js](https://nodejs.org/) v20.9+ +- (optional) [nvm](https://github.com/nvm-sh/nvm) for Node version management +- [Anthropic Claude API](https://www.anthropic.com/api) +- (optional) [Convex Account](https://dashboard.convex.dev/signup) for database storage \ No newline at end of file diff --git a/content/theme/tao.md b/content/theme/tao.md new file mode 100644 index 000000000..58b308305 --- /dev/null +++ b/content/theme/tao.md @@ -0,0 +1,29 @@ +--- +title: Tao +github: https://github.com/vfvong/jekyll-theme-tao +demo: https://vfvong.blog/jekyll-theme-tao/ +author: Song-Zi Vong +date: 2022-03-23T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +css: + - SCSS +archetype: + - Blog +description: A content-first minimalist Jekyll theme for blogs. +stale: false +--- + +Tao is a content-first minimalist Jekyll theme for blogs. + +## Highlight Features + +- Support the CSS resets [Normalize](https://github.com/necolas/normalize.css) +- Support [Font Awesome](https://fontawesome.com/) +- Support [MathJax](https://www.mathjax.org/) +- Support [Disqus](https://disqus.com/) +- Support [Google Analytics 4](https://analytics.google.com/analytics/web/) +- Light and dark mode, via [`prefers-color-scheme`](https://web.dev/prefers-color-scheme/) +- Archive pages implemented in pure [Liquid](https://shopify.github.io/liquid/) diff --git a/content/theme/the-interesting-times.md b/content/theme/the-interesting-times.md index 3a5f4def3..81501fdb3 100644 --- a/content/theme/the-interesting-times.md +++ b/content/theme/the-interesting-times.md @@ -1,14 +1,13 @@ --- title: The Interesting Times -github: 'https://github.com/ohduran/the-interesting-times' -demo: 'https://ohduran.github.io/the-interesting-times' +github: https://github.com/ohduran/the-interesting-times +demo: https://ohduran.github.io/the-interesting-times author: Alvaro Duran ssg: - Jekyll cms: - No Cms date: 2019-10-06T21:10:52.000Z -github_branch: master description: The Interesting Times Theme for Jekyll -stale: false +stale: true --- diff --git a/content/theme/theme-nextjs-bea.md b/content/theme/theme-nextjs-bea.md new file mode 100644 index 000000000..0da724760 --- /dev/null +++ b/content/theme/theme-nextjs-bea.md @@ -0,0 +1,56 @@ +--- +title: Prezly Bea Theme +github: https://github.com/prezly/theme-nextjs-bea +demo: https://theme-nextjs-bea-the-good-newsroom.vercel.app/ +author: Prezly +date: 2022-04-06T00:00:00.000Z +ssg: + - Next +cms: + - No CMS +archetype: + - Blog +description: News site built with NextJS, Typescript and Prezly SDK +stale: false +--- + + +Deploy the example using [Vercel](https://vercel.com) or [Netlify](https://www.netlify.com/): + +| Vercel | Netlify | +| ------------- | ------------- | +| [![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/git/external?repository-url=https://github.com/prezly/theme-nextjs-bea) | [![Netlify Deploy button](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/prezly/theme-nextjs-bea) | + +### Scripts in package.json + +In addition to regular Next scripts, we provide some scripts to help with code-styling checks. +This repo is configured with GitHub workflows to run linter checks on every push, but you can also run these checks locally, along with TypeScript checks, by running this script: +```Shell +npm run check +``` + +Prettier is configured to be managed by ESLint, but you can always run it separately with `npm run prettier` to check code-style, or with `npm run prettier:fix` to auto-fix code-style issues in the project. + +## Documentation + +### Business logic + +The data layer is abstracted by [Prezly Theme Kit]. You can get more info on it in the repo README. + +Logic for content display is based heavily on [Prezly Theme Starter]. Check it out if you only want to see the bare minimum required to display data from Prezly newsrooms. + +### Testing/Token + +To ease with development we have created a few sample newsrooms in different categories: + +* **The Good Newsroom** [(preview on vercel)](https://theme-nextjs-bea-the-good-newsroom.vercel.app/): A newsroom filled with good news +* **Cookbook** [(preview on vercel)](https://theme-nextjs-bea-cookbook.vercel.app/): Recipes shared by the Prezly team +* **Anonymous Photographer** [(preview on vercel)](https://theme-nextjs-bea-photography.vercel.app/): Pictures from a photographer. Combination of albums and imagery + +A list of tokens/newsroom uuids that can be used to kickstart the theme. + +| Name | API Token | Newsroom UUID | +|---|---|---| +| Good Newsroom | `HKcab_nEbab_a7b2fe3a3465d3729772fa5381800ab5a0c30d8d` | `578e78e9-9a5b-44ad-bda2-5214895ee036` | +| Cookbook | `TKcab_nEbab_28432b75d3a85a826e51cd0b502a3d76acf98d19` | `9d90b2c1-aed9-4415-a9fb-82dd3a2a1b52` | +| Anonymous Photographer | `SKcab_nEbab_0b63a6dd0b09286cc99fab93e6e80bfd9aecfbb5` | `ce8299f6-a293-41df-8ffc-1c064d4401bc` | diff --git a/content/theme/timer-hugo.md b/content/theme/timer-hugo.md deleted file mode 100644 index 6e07ddce5..000000000 --- a/content/theme/timer-hugo.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: Timer -github: 'https://github.com/themefisher/timer-hugo' -demo: 'https://themes.gohugo.io/theme/timer-hugo/' -author: Themefisher -ssg: - - Hugo -cms: - - No Cms -date: 2018-07-15T10:07:51.000Z -github_branch: master -description: Timer Template Hugo Version by themefisher -stale: false ---- \ No newline at end of file diff --git a/content/theme/tiny-blog.md b/content/theme/tiny-blog.md deleted file mode 100644 index 48548707d..000000000 --- a/content/theme/tiny-blog.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: Tiny Blog -github: 'https://github.com/sumeetmathpati/tiny-blog' -demo: 'https://sumeetmathpati.github.io/tiny-blog/' -author: Sumeet Mathpati -date: 2020-09-21T00:00:00.000Z -github_branch: master -ssg: - - Jekyll -cms: - - No Cms -archetype: - - Blog - - Portfolio -description: Small and minimal jekyll blog theme. -stale: false -disabled: true -disabled_reason: demo url not found ---- - -# Small theme for jekyll blog and portfolio. -Inspired from [No-style-please](https://github.com/riggraz/no-style-please) - -## Features - -* Responsive -* SEO optimized (uses [Jekyll SEO Tag](https://github.com/jekyll/jekyll-seo-tag)) -* RSS feed (uses [Jekyll Feed](https://github.com/jekyll/jekyll-feed)) -* Fully compatible with [GitHub Pages](https://pages.github.com/) (see [GitHub Pages installation](#github-pages-installation)) diff --git a/content/theme/tokyo-gozer.md b/content/theme/tokyo-gozer.md new file mode 100644 index 000000000..9edbb7d14 --- /dev/null +++ b/content/theme/tokyo-gozer.md @@ -0,0 +1,29 @@ +--- +title: "Tokyo" +github: https://github.com/htejera/tokyo-gozer/ +demo: https://tokyo-gozer.surge.sh +author: htejera +date: 2024-03-14 +ssg: + - Gozer +cms: + - No CMS +css: + - Chota +archetype: + - Blog + - Portfolio +description: This is a simple HTML template for Gozer. It's clean and straightforward, with no frills. Just your content. +--- + +# A minimalist template for Gozer + +This is a simple HTML template for Gozer. It's clean and straightforward, with no frills. Just your content. +It does not have support for pagination or tags. Chota v0.9.2 is used. + +## Features + +* Blog Home +* Blog post +* Dark mode +* RSS diff --git a/content/theme/tradly.md b/content/theme/tradly.md new file mode 100644 index 000000000..8ef938279 --- /dev/null +++ b/content/theme/tradly.md @@ -0,0 +1,34 @@ +--- +title: Butterflies +github: https://github.com/TRADLY-PLATFORM/Butterflies +demo: https://watchtracker.vercel.app/ +author: Tradly.app +date: 2021-11-18T00:00:00.000Z +ssg: + - Next +cms: + - No CMS +css: + - Tailwind +archetype: + - Ecommerce + - Business +description: This is an amazing theme and this is a small description about it! +stale: false +--- + +# Free NextJS + Tailwind Kit for Marketplace + +This theme is a almost complete e-commerce and marketplace website. Especially suited for event marketplace. This code is a growing codebase, so every few days you will get new features update. + +You can use this for booking based event marketplaces. And also commenting out the SELLER/SUPPLY side by using ONLY as a B2C Event booking site. + +## Features + +- Content served from [Tradly Headless API](https://tradly.app) for marketplace/commerce +- NextJS latest Version 12 +- Tailwind, Mobile Responsive +- SEO Packed +- One click deployment for Vercel and Netlify +- Due to [Tradly JS sdk](https://www.npmjs.com/package/tradly) used, design are properly componentized. +- Production Ready diff --git a/content/theme/tufte.md b/content/theme/tufte.md new file mode 100644 index 000000000..aa47d48de --- /dev/null +++ b/content/theme/tufte.md @@ -0,0 +1,94 @@ +--- +title: Tufte +github: https://github.com/slashformotion/hugo-tufte +demo: https://slashformotion.github.io/hugo-tufte/ +author: Slashformotion, Shawn O'Hare +date: 2021-07-28T00:00:00.000Z +ssg: + - Hugo +cms: + - No CMS +description: Content centric Hugo blogging theme styled with Tufte-css. +stale: false +--- + +# Tufte Hugo Theme +[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.0-4baaaa.svg)](code_of_conduct.md) + +Hugo-Tufte is a minimalist blog-like theme for the +[static site generator Hugo](https://gohugo.io) that +attempts to be a faithful implementation of the +[Tufte-css](https://github.com/edwardtufte/tufte-css) project. +It supports mathematical typesetting via [katex](https://katex.org/). +By utilizing copious partial templates the theme is largely customizable. + +## State of Project + +This is a fork of the original [hugo-tufte](https://github.com/shawnohare/hugo-tufte). + +## Features + +### Math + +[Katex](https://katex.org/) renders LaTeX written inside of markdown files. LaTeX can be +written more or less as normal. Some examples: + +- This `$ \frac{1}{2} $` will be rendered inline. +- A simple displayed equation: `$$f(x, y) := e^{x^2 - y^2}.$$` + +There currently seems to be some weirdness with other environments, +such as the `aligned` environment (`align*` is not supported by katex). These environments will render provided +they are wrapped in `

` tags and blank lines. The snippet below should +render correctly. +``` +Let $G$ be a finite group with exponent $2$. Then every element is +an involution, hence for any $x$, $y$ in $G$ we have: + +

+\begin{aligned} + e &= (xy)^2 \\ + &=xyxy \implies \\ + y^{-1} &= xyx \implies \\ + y^{-1}x^{-1} &= xy, +\end{aligned*} +

+ +establishing that $G$ is abelian. +``` + +### Site Parameters + +The site specific parameters that this theme recognizes are: + +- `subtitle` string: This is displayed under the main title. +- `showPoweredBy` boolean: if true, display a shoutout to Hugo and this theme. +- `copyrightHolder` string: Inserts the value in the default copyright notice. +- `copyright` string: Custom copyright notice. + +### Page Parameters + +- `hideDate` boolean: if true, do not display a page date. When `meta` is set to + true, `hideDate` takes greater precedence. +- `hideReadTime` boolean: if true, do not display the page's reading time + estimate. When `meta` is set to true, `hideReadTime` takes greater precedence. +- `math` boolean: if true, try to render the page's LaTeX code using MatheJax. +- `meta` boolean: if true, display page metadata such as author, date, categories provided + these page parameters exist and are not overridden. Content in the `/post` directory, + (i.e., pages of type "post") ignore this parameter. +- `toc` boolean: if true, display the table of contents for the page. + +### Shortcodes + +This theme provides the following shortcodes in an attempt to completely +support all the features present in the +[Tufte-css](https://github.com/edwardtufte/tufte-css) project. + +- `blockquote` +- `div` +- `epigraph` +- `marginnote` +- `section` +- `sidenote` + +See the repo for more + diff --git a/content/theme/twentytwentyone.md b/content/theme/twentytwentyone.md index 0f7a816f1..2b331698c 100644 --- a/content/theme/twentytwentyone.md +++ b/content/theme/twentytwentyone.md @@ -1,20 +1,19 @@ --- title: Twenty Twentyone -github: 'https://github.com/smolcodes/twentytwenyonetheme' -demo: 'https://twentytwenyonetheme.netlify.app/' +github: https://github.com/smolcodes/twentytwenyonetheme +demo: https://twentytwenyonetheme.netlify.app/ author: smolcodes date: 2019-01-21T00:00:00.000Z -github_branch: main ssg: - Eleventy cms: - - NetlifyCMS + - DecapCMS css: - - TailwindCSS + - Tailwind archetype: - Blog description: This is a simple little blog with support for writing math -stale: false +stale: true --- # A simple theme for blogging diff --git a/content/theme/ubuild-jekyll.md b/content/theme/ubuild-jekyll.md index 20ab263fe..6f4d9b1fe 100644 --- a/content/theme/ubuild-jekyll.md +++ b/content/theme/ubuild-jekyll.md @@ -1,14 +1,13 @@ --- title: Ubuild Jekyll -github: 'https://github.com/forestryio/ubuild-jekyll' -demo: 'https://forestryio.github.io/ubuild-jekyll/' +github: https://github.com/forestryio/ubuild-jekyll +demo: https://forestryio.github.io/ubuild-jekyll/ author: Forestry.io ssg: - Jekyll cms: - Forestry date: 2018-06-20T13:05:57.000Z -github_branch: master description: A Jekyll theme designed to work with Forestry Blocks -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/ueno-gatsby-starter.md b/content/theme/ueno-gatsby-starter.md index 583068276..3f7e611d4 100644 --- a/content/theme/ueno-gatsby-starter.md +++ b/content/theme/ueno-gatsby-starter.md @@ -1,14 +1,13 @@ --- title: Ueno Gatsby Starter -github: 'https://github.com/ueno-llc/ueno-gatsby-starter' -demo: 'https://create-ueno-app.netlify.com/' +github: https://github.com/ueno-llc/ueno-gatsby-starter +demo: https://create-ueno-app.netlify.com/ author: Ueno ssg: - Gatsby cms: - No Cms date: 2018-10-03T14:38:07.000Z -github_branch: master description: Opinionated Gatsby starter by Ueno. -stale: false +stale: true --- diff --git a/content/theme/ultra-jekyll.md b/content/theme/ultra-jekyll.md index 73ca73ac7..d4e795189 100644 --- a/content/theme/ultra-jekyll.md +++ b/content/theme/ultra-jekyll.md @@ -1,10 +1,9 @@ --- title: Ultra -github: 'https://github.com/ronv/ultra' -demo: 'https://ultra-jekyll.netlify.com' +github: https://github.com/ronv/ultra +demo: https://ultra-jekyll.netlify.com author: Ronalds Vilcins date: 2019-11-09T00:00:00.000Z -github_branch: master ssg: - Jekyll description: Ultra - Super fast Jekyll theme diff --git a/content/theme/urban.md b/content/theme/urban.md new file mode 100644 index 000000000..5c595e4c8 --- /dev/null +++ b/content/theme/urban.md @@ -0,0 +1,24 @@ +--- +title: Urban Theme +github: https://github.com/midzer/urban-theme +demo: https://midzer.github.io/urban-theme/ +author: midzer +date: 2021-12-16T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +archetype: + - Blog +description: Minimal jekyll theme for visual artists +stale: true +--- + +# Urban Theme + +This theme is a Jekyll port of http://erosie.net/ with some modifications. It is designed for visual artists. + +## Features + +* Lightweight +* No JavaScript diff --git a/content/theme/vhealth-gatsby.md b/content/theme/vhealth-gatsby.md index ce457f25c..b8368be23 100644 --- a/content/theme/vhealth-gatsby.md +++ b/content/theme/vhealth-gatsby.md @@ -1,16 +1,15 @@ --- title: vHealth - Virtual healthcare -github: 'https://github.com/shantanu-deshmukh/vhealth-gatsby' -demo: 'https://vhealth.openthemes.dev/' +github: https://github.com/shantanu-deshmukh/vhealth-gatsby +demo: https://vhealth.openthemes.dev/ author: Shantanu Deshmukh date: 2020-08-26T00:00:00.000Z -github_branch: master ssg: - Gatsby cms: - No Cms description: Modular and easy to use Gatsby template for a Healthcare Startup. -stale: false +stale: true --- # Easy to use gatsby template for a healthcare startup. diff --git a/content/theme/vredeburg.md b/content/theme/vredeburg.md index b14cf2cab..c720c9990 100644 --- a/content/theme/vredeburg.md +++ b/content/theme/vredeburg.md @@ -1,10 +1,9 @@ --- title: Vredeburg -github: 'https://github.com/dafiulh/vredeburg' -demo: 'https://vredeburg.netlify.app' +github: https://github.com/dafiulh/vredeburg +demo: https://vredeburg.netlify.app author: Dafiul Haq date: 2020-10-12T00:14:00.000Z -github_branch: master ssg: - Eleventy cms: diff --git a/content/theme/vuepress-theme-bulma.md b/content/theme/vuepress-theme-bulma.md index 0e98f3803..4b631f4d1 100644 --- a/content/theme/vuepress-theme-bulma.md +++ b/content/theme/vuepress-theme-bulma.md @@ -1,7 +1,7 @@ --- title: Vuepress Bulma -github: 'https://github.com/nakorndev/vuepress-theme-bulma' -demo: 'https://nakorn.dev/vuepress-theme-bulma/' +github: https://github.com/nakorndev/vuepress-theme-bulma +demo: https://nakorn.dev/vuepress-theme-bulma/ author: Nakorn Sinpadung ssg: - Vuepress @@ -10,7 +10,8 @@ cms: css: - Bulma date: 2018-07-16T12:37:30.000Z -github_branch: master description: A pure Bulma.css theme for VuePress -stale: false +stale: true +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/vuepress-theme-canvas.md b/content/theme/vuepress-theme-canvas.md index 04a3e2405..dc8b408c0 100644 --- a/content/theme/vuepress-theme-canvas.md +++ b/content/theme/vuepress-theme-canvas.md @@ -1,14 +1,15 @@ --- title: Vuepress Canvas -github: 'https://github.com/whoan/vuepress-theme-canvas' -demo: 'https://whoan.me/' +github: https://github.com/whoan/vuepress-theme-canvas +demo: https://whoan.me/ author: Juan Eugenio Abadie ssg: - Vuepress cms: - No Cms date: 2018-05-09T06:14:00.000Z -github_branch: master description: Vuepress custom theme for blogging. See my blog as an example! stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/vuepress-theme-casper.md b/content/theme/vuepress-theme-casper.md index 20e9fbf46..c2d4c29cd 100644 --- a/content/theme/vuepress-theme-casper.md +++ b/content/theme/vuepress-theme-casper.md @@ -1,17 +1,16 @@ --- title: Vuepress Casper -github: 'https://github.com/alexander-heimbuch/vuepress-theme-casper' -demo: 'https://alexander.heimbu.ch/vuepress-theme-casper/' +github: https://github.com/alexander-heimbuch/vuepress-theme-casper +demo: https://alexander.heimbu.ch/vuepress-theme-casper/ author: Alexander Heimbuch ssg: - Vuepress cms: - DatoCMS - Contentful - - NetlifyCMS + - DecapCMS - Forestry date: 2018-08-26T09:29:18.000Z -github_branch: master description: Ghost default theme ported to vuepress -stale: false +stale: true --- diff --git a/content/theme/vuepress-theme-cool-starter.md b/content/theme/vuepress-theme-cool-starter.md index e0c42e3b8..2de5b589f 100644 --- a/content/theme/vuepress-theme-cool-starter.md +++ b/content/theme/vuepress-theme-cool-starter.md @@ -1,14 +1,13 @@ --- title: Cool Starter -github: 'https://github.com/FriendlyUser/vuepress-theme-cool-starter' -demo: 'https://friendlyuser.github.io/vuepress-theme-cool-starter/#disclaimer' +github: https://github.com/FriendlyUser/vuepress-theme-cool-starter +demo: https://friendlyuser.github.io/vuepress-theme-cool-starter/#disclaimer author: David Li ssg: - Vuepress cms: - No Cms date: 2018-11-12T21:46:46.000Z -github_branch: master description: Starter project for vuepress theme cool stale: false --- diff --git a/content/theme/vuepress-theme-indigo.md b/content/theme/vuepress-theme-indigo.md index a3a4b3426..a70af507d 100644 --- a/content/theme/vuepress-theme-indigo.md +++ b/content/theme/vuepress-theme-indigo.md @@ -1,14 +1,13 @@ --- title: Vuepress Indigo -github: 'https://github.com/yscoder/vuepress-theme-indigo' -demo: 'https://yscoder.github.io/vuepress-theme-indigo/' +github: https://github.com/yscoder/vuepress-theme-indigo +demo: https://yscoder.github.io/vuepress-theme-indigo/ author: Yusen ssg: - Vuepress cms: - No Cms date: 2018-04-14T08:21:05.000Z -github_branch: master description: A blog theme for VuePress. stale: true --- diff --git a/content/theme/vuepress-theme-mediumish.md b/content/theme/vuepress-theme-mediumish.md index 5516d528a..e5aba9a6a 100644 --- a/content/theme/vuepress-theme-mediumish.md +++ b/content/theme/vuepress-theme-mediumish.md @@ -1,16 +1,15 @@ --- title: Mediumish -github: 'https://github.com/wowthemesnet/mediumish-vuepress-blog-theme' -demo: 'https://wowthemesnet.github.io/vuepress-theme-mediumish/' +github: https://github.com/wowthemesnet/mediumish-vuepress-blog-theme +demo: https://wowthemesnet.github.io/vuepress-theme-mediumish/ author: wowthemesnet ssg: - Vuepress cms: - No Cms date: 2020-04-08T17:50:17.000Z -github_branch: master description: ':mediumish: A blog theme for Vuepress' -stale: false +stale: true --- This is a free VuePress Bootstrap Blogging Theme, Medium styled, fully featured: multi author, search, categories, newsletter, Disqus, RSS, sitemap, TOC, Prism, 100% Github pages compatible, ready for automatic deployment. \ No newline at end of file diff --git a/content/theme/vuepress-theme-meteorlxy.md b/content/theme/vuepress-theme-meteorlxy.md index df638239b..0b5fe8467 100644 --- a/content/theme/vuepress-theme-meteorlxy.md +++ b/content/theme/vuepress-theme-meteorlxy.md @@ -1,14 +1,13 @@ --- title: Meteorixy -github: 'https://github.com/meteorlxy/vuepress-theme-meteorlxy' -demo: 'https://vuepress-theme-meteorlxy.meteorlxy.cn/' +github: https://github.com/meteorlxy/vuepress-theme-meteorlxy +demo: https://vuepress-theme-meteorlxy.meteorlxy.cn/ author: meteorlxy ssg: - Vuepress cms: - No Cms date: 2018-05-09T08:49:11.000Z -github_branch: master description: ':sparkling_heart: VuePress Blog Theme - Meteorlxy' -stale: false +stale: true --- diff --git a/content/theme/vuepress-theme-ououe.md b/content/theme/vuepress-theme-ououe.md index fbabed1ba..d123752bc 100644 --- a/content/theme/vuepress-theme-ououe.md +++ b/content/theme/vuepress-theme-ououe.md @@ -1,14 +1,13 @@ --- title: Ououe -github: 'https://github.com/tolking/vuepress-theme-ououe' -demo: 'https://ououe.com/' +github: https://github.com/tolking/vuepress-theme-ououe +demo: https://ououe.com/ author: Qiang ssg: - Vuepress cms: - No Cms date: 2019-02-23T04:18:48.000Z -github_branch: master description: A blog theme for VuePress -stale: false +stale: true --- diff --git a/content/theme/vuepress-theme-resume.md b/content/theme/vuepress-theme-resume.md index 088561ad4..caae34b9a 100644 --- a/content/theme/vuepress-theme-resume.md +++ b/content/theme/vuepress-theme-resume.md @@ -1,14 +1,15 @@ --- title: Resume -github: 'https://github.com/wannaxiao/vuepress-theme-resume' -demo: 'https://wannaxiao.github.io/vuepress-theme-resume/example/dist/' +github: https://github.com/wannaxiao/vuepress-theme-resume +demo: https://wannaxiao.github.io/vuepress-theme-resume/example/dist/ author: Momoko ssg: - Vuepress cms: - No Cms date: 2018-06-03T07:19:01.000Z -github_branch: master -description: "\U0001F408 书写简洁优雅的前端程序员 markdown 简历,由 vuepress 驱动" +description: 🐈 书写简洁优雅的前端程序员 markdown 简历,由 vuepress 驱动 stale: false +disabled: true +disabled_reason: demo url not found --- diff --git a/content/theme/vuepress-theme-simple.md b/content/theme/vuepress-theme-simple.md index d6dd8dfb8..4830fc973 100644 --- a/content/theme/vuepress-theme-simple.md +++ b/content/theme/vuepress-theme-simple.md @@ -1,14 +1,13 @@ --- title: Simple Vuepress Theme -github: 'https://github.com/viko16/vuepress-theme-simple' -demo: 'https://ukn.me/' +github: https://github.com/viko16/vuepress-theme-simple +demo: https://ukn.me/ author: viko16 ssg: - Vuepress cms: - No Cms date: 2019-02-02T03:15:40.000Z -github_branch: master description: ✏️ Very Simple Blog Theme for VuePress -stale: false +stale: true --- diff --git a/content/theme/vuepress-theme-yubisaki.md b/content/theme/vuepress-theme-yubisaki.md index fb344f216..e53ba11be 100644 --- a/content/theme/vuepress-theme-yubisaki.md +++ b/content/theme/vuepress-theme-yubisaki.md @@ -1,14 +1,15 @@ --- title: Yubisaki -github: 'https://github.com/Yubisaki/vuepress-theme-yubisaki' -demo: 'https://wuwaki.me/yubisaki/intro.html' +github: https://github.com/Yubisaki/vuepress-theme-yubisaki +demo: https://wuwaki.me/yubisaki/intro.html author: Yubisaki ssg: - Vuepress cms: - No Cms date: 2018-04-21T17:50:17.000Z -github_branch: master description: ':sparkles: A blog theme for vuepress' stale: true +disabled: true +disabled_reason: demo url connection refused --- diff --git a/content/theme/waffel.md b/content/theme/waffel.md index 4b38f1770..41564b793 100644 --- a/content/theme/waffel.md +++ b/content/theme/waffel.md @@ -1,16 +1,15 @@ --- title: Waffel -github: 'https://github.com/moonwave99/waffel' -demo: 'https://moonwave99.github.io/waffel/' +github: https://github.com/moonwave99/waffel +demo: https://moonwave99.github.io/waffel/ author: Diego Caponera ssg: - Brunch cms: - No Cms date: 2015-04-07T12:17:22.000Z -github_branch: master description: >- Yet another static generator, here to help you with more concrete use cases than just your personal blog. -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/will-jekyll-template.md b/content/theme/will-jekyll-template.md index 29c40f4e2..eddc416ca 100644 --- a/content/theme/will-jekyll-template.md +++ b/content/theme/will-jekyll-template.md @@ -1,14 +1,13 @@ --- title: Will -github: 'https://github.com/willianjusten/will-jekyll-template' -demo: 'https://willianjusten.github.io/will-jekyll-template/' +github: https://github.com/willianjusten/will-jekyll-template +demo: https://willianjusten.github.io/will-jekyll-template/ author: Willianjusten ssg: - Jekyll cms: - No Cms date: 2015-08-04T06:35:46.000Z -github_branch: gh-pages description: A simple Jekyll theme. -stale: false +stale: true --- \ No newline at end of file diff --git a/content/theme/wind-theme.md b/content/theme/wind-theme.md new file mode 100644 index 000000000..8dfedb9a9 --- /dev/null +++ b/content/theme/wind-theme.md @@ -0,0 +1,50 @@ +--- +title: Wind +github: https://github.com/a-chacon/wind +demo: https://wind-site-a-chacon-6a52e6cfd07a698368129fcdb6001ca6dc9154381681.gitlab.io/ +author: a-chacon +date: 2023-11-1T00:00:00.000Z +ssg: + - Jekyll +cms: + - No CMS +css: + - Tailwind +archetype: + - Blog + - Personal +description: Wind is a clean, minimalistic Jekyll theme designed to offer a delightful blogging experience. +stale: false +--- + +# Wind: A Minimalistic, Simple, and Beautiful Blogging Theme + +Wind is a clean, minimalistic Jekyll theme designed to offer a delightful blogging experience. With a focus on simplicity and aesthetics, Wind brings an elegant touch to your blog or personal website. + +## Features + +1. **Responsive Design:** Wind offers a thoughtfully crafted responsive design that ensures your blog looks stunning and functions flawlessly on a variety of devices, including desktops, tablets, and smartphones. Your content remains accessible and visually appealing, no matter how your audience chooses to engage with it. + +2. **Blog-Centric Focus:** Wind is tailored for bloggers, putting the spotlight on your content. Its clean and minimalistic design highlights your articles, providing readers with an uncluttered and immersive reading experience. + +3. **Tags Page:** Easily categorize and organize your blog posts using tags. Wind includes a dedicated Tags page that allows your readers to find and explore posts by tag, making content discovery and navigation a breeze. + +4. **Disqus Integration:** Engage with your audience through the built-in Disqus commenting system. Enable discussions on your blog posts to encourage interaction, receive feedback, and foster a sense of community. + +5. **Customizable Head Section:** Wind empowers you to customize the theme's `` section, enabling you to insert various scripts, such as Google Analytics, social media meta tags, or any other third-party integrations you require to enhance your website's functionality and insights. + +6. **Dark Mode:** Wind provides a dark mode feature, allowing readers to switch to a more comfortable reading experience in low-light conditions. Enhance accessibility and cater to different user preferences effortlessly. + +7. **Go Up Button:** Enhance user navigation with the "Go Up" button. This feature enables users to quickly return to the top of the page, offering a convenient and user-friendly browsing experience. + +8. **Social Media Integration:** Seamlessly link your social media profiles to your blog, making it simple for your readers to connect with you on various platforms. Enhance your online presence and grow your social media following by leveraging Wind's integrated social media links. + +9. **SEO Optimized:** Wind is designed with search engine optimization (SEO) in mind. Its clean code, structured metadata, and user-friendly URL structure help improve your blog's visibility on search engines, driving organic traffic to your site. + +10. **Cross-Browser Compatibility:** Ensure your blog looks and performs consistently across a wide range of web browsers, providing an optimal experience for all visitors. + +11. **Accessibility Features:** Wind adheres to accessibility best practices, ensuring that your content is accessible to users with disabilities. This inclusivity enhances the reach and usability of your blog. + +12. **RSS Feed Support:** Wind includes RSS feed support, allowing your readers to subscribe to your blog and receive updates when new content is published. + +13. **Author Profile:** Personalize your blog by adding an author profile section, allowing you to share information about yourself and connect with your audience on a more personal level. diff --git a/content/theme/yanbt.md b/content/theme/yanbt.md new file mode 100644 index 000000000..8c4cb06cd --- /dev/null +++ b/content/theme/yanbt.md @@ -0,0 +1,28 @@ +--- +title: "YANBT (Yet Another Nuxt Blog Theme)" +github: https://github.com/kokamkarsahil/yanbt +demo: https://yanbt.netlify.app/ +author: Sahil +date: 2024-03-17 +ssg: + - Nuxt +cms: + - No CMS +css: + - Tailwind +archetype: + - Blog +description: A simple blog theme. Built using nuxt3 and nuxt content. + +--- + +# Simple blog theme. Built using nuxt3 and nuxt content. + +A lightweight, easy to customize and use theme. Easily hostable on any static hosting, platform. Content can be managed via Markdown with Nuxt studio support. + +## Features: +- Easy Setup +- Write post in markdown with MDC support thanks to [nuxt/content](https://github.com/nuxt/content) +- Auto generate og:image using Satori thanks to [nuxt-seo-kit](https://github.com/harlan-zw/nuxt-seo-kit) +- Image optimization using Nuxt image +- Auto generated RSS Feed and sitemaps \ No newline at end of file diff --git a/data/errors.json b/data/errors.json new file mode 100644 index 000000000..7016f3328 --- /dev/null +++ b/data/errors.json @@ -0,0 +1,22 @@ +[ + { + "theme_key": "obaez-dentistsmile", + "file": "dentistsmile.md", + "repoUrl": "https://github.com/obaez/dentistsmile", + "error": "Github repo not found, status: 404" + }, + { + "theme_key": "hugo-sid-hugo-blog-awesome", + "file": "hugo-blog-awesome.md", + "repoUrl": "https://github.com/hugo-sid/hugo-blog-awesome", + "demoUrl": "https://hugo-blog-awesome.netlify.app/", + "error": "demo url not found" + }, + { + "theme_key": "obaez-dentistsmile", + "file": "dentistsmile.md", + "repoUrl": "https://github.com/obaez/dentistsmile", + "demoUrl": "https://obaez.com/dentistsmile/", + "error": "error checking demo url" + } +] \ No newline at end of file diff --git a/data/social.json b/data/social.json deleted file mode 100644 index d09628754..000000000 --- a/data/social.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "links": [ - { - "name": "twitter", - "url": "https://twitter.com/stackbit", - "image": "images/social/twitter.svg" - }, - { - "name": "github", - "url": "https://github.com/stackbit/jamstackthemes", - "image": "images/social/github.svg" - } - ] -} \ No newline at end of file diff --git a/data/stackbit.json b/data/stackbit.json index 4f06573ee..9e26dfeeb 100644 --- a/data/stackbit.json +++ b/data/stackbit.json @@ -1,2648 +1 @@ -{ - "2-rec-hugo-myportfolio-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/2-REC/hugo-myportfolio-theme&ssg=hugo" - }, - "416serg-gatsby-starter-lightbox-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/416serg/gatsby-starter-lightbox&ssg=gatsby" - }, - "a9kitkumar-gatsby-ecommerce-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/a9kitkumar/Gatsby-Ecommerce&ssg=gatsby" - }, - "aanupam23-hugo-sugoi-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/aanupam23/hugo-sugoi&ssg=hugo" - }, - "abhaynikam-gatsby-nice-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/abhaynikam/gatsby-nice-blog&ssg=gatsby" - }, - "abhinavs-moonwalk-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/abhinavs/moonwalk&ssg=jekyll" - }, - "abhn-soot-spirits-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/abhn/Soot-Spirits&ssg=jekyll" - }, - "abhn-wall-e-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/abhn/Wall-E&ssg=jekyll" - }, - "achary-engimo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/achary/engimo&ssg=hugo" - }, - "act-labs-gatsby-starter-act-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/act-labs/gatsby-starter-act-blog&ssg=gatsby" - }, - "adagio-cantabile-adagio-cantabile.github.io-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/Adagio-cantabile/Adagio-cantabile.github.io&ssg=jekyll" - }, - "adityatelange-hugo-papermod-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/adityatelange/hugo-PaperMod&ssg=hugo" - }, - "adueck-cayman-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/adueck/cayman-blog&ssg=jekyll" - }, - "adueck-good-clean-read-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/adueck/good-clean-read&ssg=jekyll" - }, - "aerohub-hugo-faq-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/aerohub/hugo-faq-theme&ssg=hugo" - }, - "aerohub-hugo-identity-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/aerohub/hugo-identity-theme&ssg=hugo" - }, - "aerohub-hugo-orbit-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/aerohub/hugo-orbit-theme&ssg=hugo" - }, - "aerohub-hugrid-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/aerohub/hugrid&ssg=hugo" - }, - "agility-agility-gatsby-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/agility/agility-gatsby-starter&ssg=gatsby" - }, - "agusmakmun-agusmakmun.github.io-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/agusmakmun/agusmakmun.github.io&ssg=jekyll" - }, - "aigarsdz-brume-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/aigarsdz/brume&ssg=jekyll" - }, - "airrayagroupwebdesign-sciblog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/airrayagroupwebdesign/sciblog&ssg=jekyll" - }, - "ajayns-gatsby-absurd-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ajayns/gatsby-absurd&ssg=gatsby" - }, - "akiritsu-project-negya-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/akiritsu/pRoJEct-NeGYa&ssg=jekyll" - }, - "aksakalli-jekyll-doc-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/aksakalli/jekyll-doc-theme&ssg=jekyll" - }, - "akshayagarwal007-jekyll-mono-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/AkshayAgarwal007/Jekyll-Mono&ssg=jekyll" - }, - "akzhy-gatsby-starter-elemental-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/akzhy/gatsby-starter-elemental&ssg=gatsby" - }, - "alainpham-alainpham.github.io-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/alainpham/alainpham.github.io&ssg=jekyll" - }, - "alanorth-hugo-theme-bootstrap4-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/alanorth/hugo-theme-bootstrap4-blog&ssg=hugo" - }, - "alex-shpak-hugo-book-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/alex-shpak/hugo-book&ssg=hugo" - }, - "alexanderussell-progress-for-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/alexanderussell/progress-for-jekyll&ssg=jekyll" - }, - "alexcarpenter-butane-jekyll-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/alexcarpenter/butane-jekyll-theme&ssg=jekyll" - }, - "alexcarpenter-library-jekyll-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/alexcarpenter/library-jekyll-theme&ssg=jekyll" - }, - "alexcarpenter-material-jekyll-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/alexcarpenter/material-jekyll-theme&ssg=jekyll" - }, - "alexfinn-simple-a-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/AlexFinn/simple-a&ssg=hugo" - }, - "alixedi-typewriter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/alixedi/typewriter&ssg=jekyll" - }, - "allnightgrocery-hugo-theme-blueberry-detox-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/allnightgrocery/hugo-theme-blueberry-detox&ssg=hugo" - }, - "alperenbozkurt-jblog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/alperenbozkurt/JBlog&ssg=jekyll" - }, - "altcointrading-trading-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/altcointrading/trading&ssg=jekyll" - }, - "alxshelepenok-gatsby-starter-lumen-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/alxshelepenok/gatsby-starter-lumen&ssg=gatsby" - }, - "amandeepmittal-gatsby-bulma-quickstart-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/amandeepmittal/gatsby-bulma-quickstart&ssg=gatsby" - }, - "ammarjabakji-gatsby-markdown-blog-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ammarjabakji/gatsby-markdown-blog-starter&ssg=gatsby" - }, - "anandubajith-block-log-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/anandubajith/block-log&ssg=jekyll" - }, - "andrewbanchich-forty-jekyll-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/andrewbanchich/Forty-Jekyll-Theme&ssg=jekyll" - }, - "andrewhwanpark-dark-poole-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/andrewhwanpark/dark-poole&ssg=jekyll" - }, - "andykenward-gatsby-starter-default-typescript-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/andykenward/gatsby-starter-default-typescript&ssg=gatsby" - }, - "angelostavrow-indigo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/AngeloStavrow/indigo&ssg=hugo" - }, - "ankit-kumar-jat-limp-dark-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ankit-kumar-jat/limp-dark&ssg=jekyll" - }, - "ankitsultana-accent-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ankitsultana/accent&ssg=jekyll" - }, - "ankitsultana-chaplin-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ankitsultana/Chaplin&ssg=jekyll" - }, - "ankitsultana-researcher-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ankitsultana/researcher&ssg=jekyll" - }, - "anna-morawska-gatsby-material-design-for-bootstrap-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/anna-morawska/gatsby-material-design-for-bootstrap&ssg=gatsby" - }, - "anoun-gatsby-starter-material-business-markdown-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ANOUN/gatsby-starter-material-business-markdown&ssg=gatsby" - }, - "antonpolishko-hugo-stellar-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/antonpolishko/hugo-stellar-theme&ssg=hugo" - }, - "anubhavsrivastava-gatsby-starter-aerial-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/anubhavsrivastava/gatsby-starter-aerial&ssg=gatsby" - }, - "anubhavsrivastava-gatsby-starter-casual-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/anubhavsrivastava/gatsby-starter-casual&ssg=gatsby" - }, - "anubhavsrivastava-gatsby-starter-directive-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/anubhavsrivastava/gatsby-starter-directive&ssg=gatsby" - }, - "anubhavsrivastava-gatsby-starter-eventually-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/anubhavsrivastava/gatsby-starter-eventually&ssg=gatsby" - }, - "anubhavsrivastava-gatsby-starter-fractal-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/anubhavsrivastava/gatsby-starter-fractal&ssg=gatsby" - }, - "anubhavsrivastava-gatsby-starter-grayscale-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/anubhavsrivastava/gatsby-starter-grayscale&ssg=gatsby" - }, - "anubhavsrivastava-gatsby-starter-highlights-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/anubhavsrivastava/gatsby-starter-highlights&ssg=gatsby" - }, - "anubhavsrivastava-gatsby-starter-hyperspace-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/anubhavsrivastava/gatsby-starter-hyperspace&ssg=gatsby" - }, - "anubhavsrivastava-gatsby-starter-identity-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/anubhavsrivastava/gatsby-starter-identity&ssg=gatsby" - }, - "anubhavsrivastava-gatsby-starter-multiverse-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/anubhavsrivastava/gatsby-starter-multiverse&ssg=gatsby" - }, - "anubhavsrivastava-gatsby-starter-newage-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/anubhavsrivastava/gatsby-starter-newage&ssg=gatsby" - }, - "anubhavsrivastava-gatsby-starter-overflow-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/anubhavsrivastava/gatsby-starter-overflow&ssg=gatsby" - }, - "anubhavsrivastava-gatsby-starter-paradigmshift-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/anubhavsrivastava/gatsby-starter-paradigmshift&ssg=gatsby" - }, - "anubhavsrivastava-gatsby-starter-prologue-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/anubhavsrivastava/gatsby-starter-prologue&ssg=gatsby" - }, - "anubhavsrivastava-gatsby-starter-readonly-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/anubhavsrivastava/gatsby-starter-readonly&ssg=gatsby" - }, - "anubhavsrivastava-gatsby-starter-resume-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/anubhavsrivastava/gatsby-starter-resume&ssg=gatsby" - }, - "anubhavsrivastava-gatsby-starter-solidstate-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/anubhavsrivastava/gatsby-starter-solidstate&ssg=gatsby" - }, - "anubhavsrivastava-gatsby-starter-spectral-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/anubhavsrivastava/gatsby-starter-spectral&ssg=gatsby" - }, - "anubhavsrivastava-gatsby-starter-stylish-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/anubhavsrivastava/gatsby-starter-stylish&ssg=gatsby" - }, - "app-generator-gatsbyjs-starter-tailwindplay-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/app-generator/gatsbyjs-starter-tailwindplay&ssg=gatsby" - }, - "appernetic-hugo-nederburg-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/appernetic/hugo-nederburg-theme&ssg=hugo" - }, - "arhen-hugo-cereus-pro-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/arhen/hugo-cereus-pro-theme&ssg=hugo" - }, - "ariestiyansyah-naringu-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ariestiyansyah/naringu&ssg=jekyll" - }, - "arkadianriver-spectral-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/arkadianriver/spectral&ssg=jekyll" - }, - "aron-bordin-neo-hpstr-jekyll-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/aron-bordin/neo-hpstr-jekyll-theme&ssg=jekyll" - }, - "artemsheludko-adam-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/artemsheludko/adam-blog&ssg=jekyll" - }, - "artemsheludko-bef-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/artemsheludko/bef&ssg=jekyll" - }, - "artemsheludko-flexible-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/artemsheludko/flexible-jekyll&ssg=jekyll" - }, - "artemsheludko-fresh-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/artemsheludko/fresh&ssg=jekyll" - }, - "artemsheludko-monday-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/artemsheludko/monday&ssg=jekyll" - }, - "artemsheludko-mr-brown-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/artemsheludko/mr-brown&ssg=jekyll" - }, - "ashr81-gatsby-theme-profile-builder-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ashr81/gatsby-theme-profile-builder&ssg=gatsby" - }, - "aspirethemes-type-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/aspirethemes/type&ssg=jekyll" - }, - "avianto-hugo-kiera-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/avianto/hugo-kiera&ssg=hugo" - }, - "avivero-gatsby-redux-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/AVivero/gatsby-redux-starter&ssg=gatsby" - }, - "aweekj-kiko-plus-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/AWEEKJ/Kiko-plus&ssg=jekyll" - }, - "azmelanar-hugo-theme-pixyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/azmelanar/hugo-theme-pixyll&ssg=hugo" - }, - "b2a3e8-jekyll-theme-console-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/b2a3e8/jekyll-theme-console&ssg=jekyll" - }, - "bagseye-bonneville-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/bagseye/bonneville&ssg=gatsby" - }, - "bake-solar-theme-hugo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/bake/solar-theme-hugo&ssg=hugo" - }, - "balaramadurai-hugo-travelify-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/balaramadurai/hugo-travelify-theme&ssg=hugo" - }, - "baobabkoodaa-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/baobabKoodaa/blog&ssg=gatsby" - }, - "baobabkoodaa-gatsby-starter-infinite-scroll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/baobabKoodaa/gatsby-starter-infinite-scroll&ssg=gatsby" - }, - "baobabkoodaa-gatsby-starter-photo-book-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/baobabKoodaa/gatsby-starter-photo-book&ssg=gatsby" - }, - "barryclark-jekyll-now-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/barryclark/jekyll-now&ssg=jekyll" - }, - "bawn92-sleek_blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/bawn92/sleek_blog&ssg=jekyll" - }, - "bdougie-casper-cms-template-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/bdougie/casper-cms-template&ssg=hugo" - }, - "ben-siewert-gatsby-starter-auth-aws-amplify-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ben-siewert/gatsby-starter-auth-aws-amplify&ssg=gatsby" - }, - "bencentra-centrarium-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/bencentra/centrarium&ssg=jekyll" - }, - "benjamin-glitsos-gatsby-kea-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/benjamin-glitsos/gatsby-kea-starter&ssg=gatsby" - }, - "benjamingrobertson-gatsby-starter-accessibility-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/benjamingrobertson/gatsby-starter-accessibility&ssg=gatsby" - }, - "benradford-slate-and-simple-jekyll-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/benradford/Slate-and-Simple-Jekyll-Theme&ssg=jekyll" - }, - "bep-docuapi-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/bep/docuapi&ssg=hugo" - }, - "bigcommerce-gatsby-bigcommerce-netlify-cms-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/bigcommerce/gatsby-bigcommerce-netlify-cms-starter&ssg=gatsby" - }, - "billyfish152-renge-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/billyfish152/Renge&ssg=jekyll" - }, - "billyjacoby-gatsby-react-bootstrap-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/billyjacoby/gatsby-react-bootstrap-starter&ssg=gatsby" - }, - "biomadeira-jasper-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/biomadeira/jasper&ssg=jekyll" - }, - "biomadeira-sustain-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/biomadeira/sustain&ssg=jekyll" - }, - "biomadeira-vitae-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/biomadeira/vitae&ssg=jekyll" - }, - "bit-ranger-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/bit-ranger/blog&ssg=jekyll" - }, - "bjacquemet-personal-web-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/bjacquemet/personal-web&ssg=hugo" - }, - "blackrockdigital-startbootstrap-clean-blog-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/BlackrockDigital/startbootstrap-clean-blog-jekyll&ssg=jekyll" - }, - "blakenoll-gatsby-starter-styled-components-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/blakenoll/gatsby-starter-styled-components&ssg=gatsby" - }, - "blankoworld-hugo_theme_adam_eve-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/blankoworld/hugo_theme_adam_eve&ssg=hugo" - }, - "bluepeter-gatsby-material-ui-business-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/bluepeter/gatsby-material-ui-business-starter&ssg=gatsby" - }, - "borekb-gatsby-starter-mobx-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/borekb/gatsby-starter-mobx&ssg=gatsby" - }, - "boyney123-evento-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/boyney123/evento&ssg=jekyll" - }, - "boywithsilverwings-gatsby-blog-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/BoyWithSilverWings/gatsby-blog-starter&ssg=gatsby" - }, - "boywithsilverwings-gatsby-careers-page-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/BoyWithSilverWings/gatsby-careers-page&ssg=gatsby" - }, - "bradykondek-streamer-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/bradykondek/streamer&ssg=jekyll" - }, - "brianmaierjr-long-haul-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/brianmaierjr/long-haul&ssg=jekyll" - }, - "brijeshb42-bitwiser-material-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/brijeshb42/bitwiser-material&ssg=jekyll" - }, - "brohlson-gatsby-datocms-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/brohlson/gatsby-datocms-starter&ssg=gatsby" - }, - "brxck-gatsby-starter-stripe-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/brxck/gatsby-starter-stripe&ssg=gatsby" - }, - "brxyxncorp-ultra-minimalista-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/brxyxncorp/ultra-minimalista&ssg=jekyll" - }, - "brycematheson-allegiant-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/brycematheson/allegiant&ssg=hugo" - }, - "budparr-gohugo-theme-ananke-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/budparr/gohugo-theme-ananke&ssg=hugo" - }, - "bul-ikana-hugo-cards-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/bul-ikana/hugo-cards&ssg=hugo" - }, - "buttercms-gatsby-starter-buttercms-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ButterCMS/gatsby-starter-buttercms&ssg=gatsby" - }, - "caki0915-gatsby-starter-redux-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/caki0915/gatsby-starter-redux&ssg=gatsby" - }, - "calintat-minimal-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/calintat/minimal&ssg=hugo" - }, - "calpa-gatsby-starter-calpa-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/calpa/gatsby-starter-calpa-blog&ssg=gatsby" - }, - "carsonip-hugo-theme-minos-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/carsonip/hugo-theme-minos&ssg=hugo" - }, - "cboettig-hugo-now-ui-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/cboettig/hugo-now-ui&ssg=hugo" - }, - "cdeck3r-onedly-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/cdeck3r/OneDly-Theme&ssg=hugo" - }, - "cfrome77-hugo-theme-sky-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/cfrome77/hugo-theme-sky&ssg=hugo" - }, - "chalatz-yellowblue-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/chalatz/yellowblue&ssg=jekyll" - }, - "chesterhow-tale-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/chesterhow/tale&ssg=jekyll" - }, - "chibicode-solo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/chibicode/solo/&ssg=jekyll" - }, - "chipsenkbeil-grid-side-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/chipsenkbeil/grid-side&ssg=hugo" - }, - "chipzoller-hugo-clarity-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/chipzoller/hugo-clarity&ssg=hugo" - }, - "chrisrhymes-bulma-clean-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/chrisrhymes/bulma-clean-theme&ssg=jekyll" - }, - "chrisrhymes-mere-blog-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/chrisrhymes/mere-blog-theme&ssg=jekyll" - }, - "chrisrhymes-purpletual-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/chrisrhymes/purpletual&ssg=jekyll" - }, - "christianezeani-panthera-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/christianezeani/panthera-jekyll&ssg=jekyll" - }, - "christianmendoza-hugo-split-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/christianmendoza/hugo-split-theme&ssg=hugo" - }, - "clark-zhao-bohu-jekyll-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/Clark-Zhao/bohu-jekyll-theme&ssg=jekyll" - }, - "clarkhacks-minimal-text-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/clarkhacks/Minimal-Text&ssg=jekyll" - }, - "clayh53-tufte-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/clayh53/tufte-jekyll&ssg=jekyll" - }, - "cloudcannon-aviator-jekyll-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/CloudCannon/Aviator-Jekyll-Theme&ssg=jekyll" - }, - "cloudcannon-cause-jekyll-template-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/CloudCannon/cause-jekyll-template&ssg=jekyll" - }, - "cloudcannon-dopetrope-jekyll-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/CloudCannon/DopeTrope-Jekyll-Theme&ssg=jekyll" - }, - "cloudcannon-edition-jekyll-template-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/CloudCannon/edition-jekyll-template&ssg=jekyll" - }, - "cloudcannon-frisco-jekyll-template-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/CloudCannon/frisco-jekyll-template&ssg=jekyll" - }, - "cloudcannon-hydra-jekyll-template-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/CloudCannon/hydra-jekyll-template&ssg=jekyll" - }, - "cloudcannon-justice-jekyll-template-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/CloudCannon/justice-jekyll-template&ssg=jekyll" - }, - "cloudcannon-malt-jekyll-template-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/CloudCannon/malt-jekyll-template&ssg=jekyll" - }, - "cloudcannon-strata-jekyll-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/CloudCannon/Strata-Jekyll-Theme&ssg=jekyll" - }, - "cloudcannon-twenty-jekyll-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/CloudCannon/Twenty-Jekyll-Theme&ssg=jekyll" - }, - "cloudcannon-urban-jekyll-template-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/CloudCannon/urban-jekyll-template&ssg=jekyll" - }, - "codeasashu-hcz-jekyll-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/codeasashu/hcz-jekyll-blog&ssg=jekyll" - }, - "codebushi-gatsby-starter-dimension-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/codebushi/gatsby-starter-dimension&ssg=gatsby" - }, - "codebushi-gatsby-starter-forty-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/codebushi/gatsby-starter-forty&ssg=gatsby" - }, - "codebushi-gatsby-starter-photon-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/codebushi/gatsby-starter-photon&ssg=gatsby" - }, - "codebushi-gatsby-starter-stellar-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/codebushi/gatsby-starter-stellar&ssg=gatsby" - }, - "codebushi-gatsby-starter-strata-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/codebushi/gatsby-starter-strata&ssg=gatsby" - }, - "coderzh-hugo-pacman-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/coderzh/hugo-pacman-theme&ssg=hugo" - }, - "codinfox-codinfox-lanyon-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/codinfox/codinfox-lanyon&ssg=jekyll" - }, - "colbyfayock-gatsby-starter-sass-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/colbyfayock/gatsby-starter-sass&ssg=gatsby" - }, - "coletownsend-balzac-for-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/coletownsend/balzac-for-jekyll&ssg=jekyll" - }, - "collective-gatsby-starter-plone-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/collective/gatsby-starter-plone&ssg=gatsby" - }, - "contentstack-gatsby-starter-contentstack-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/contentstack/gatsby-starter-contentstack&ssg=gatsby" - }, - "cosmicjs-gatsby-agency-portfolio-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/cosmicjs/gatsby-agency-portfolio&ssg=gatsby" - }, - "cosmicjs-gatsby-blog-cosmicjs-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/cosmicjs/gatsby-blog-cosmicjs&ssg=gatsby" - }, - "cosmicjs-gatsby-docs-app-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/cosmicjs/gatsby-docs-app&ssg=gatsby" - }, - "cosmicjs-gatsby-localization-app-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/cosmicjs/gatsby-localization-app-starter&ssg=gatsby" - }, - "cosmicjs-gatsby-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/cosmicjs/gatsby-starter&ssg=gatsby" - }, - "cotes2020-jekyll-theme-chirpy-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/cotes2020/jekyll-theme-chirpy/&ssg=jekyll" - }, - "cssandstuff-hugo-theme-winning-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/cssandstuff/hugo-theme-winning&ssg=hugo" - }, - "curtistimson-hugo-theme-dopetrope-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/curtistimson/hugo-theme-dopetrope&ssg=hugo" - }, - "curtistimson-hugo-theme-massively-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/curtistimson/hugo-theme-massively&ssg=hugo" - }, - "cvluca-gatsby-starter-markdown-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/cvluca/gatsby-starter-markdown&ssg=gatsby" - }, - "cyevgeniy-jekyll-true-minimal-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/cyevgeniy/jekyll-true-minimal&ssg=jekyll" - }, - "d-kusk-minimage-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/d-kusk/minimage&ssg=hugo" - }, - "daattali-beautiful-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/daattali/beautiful-jekyll&ssg=jekyll" - }, - "dabit3-gatsby-auth-starter-aws-amplify-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/dabit3/gatsby-auth-starter-aws-amplify&ssg=gatsby" - }, - "damassi-gatsby-starter-typescript-rebass-netlifycms-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/damassi/gatsby-starter-typescript-rebass-netlifycms&ssg=gatsby" - }, - "danielkvist-hugo-piercer-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/danielkvist/hugo-piercer-theme&ssg=hugo" - }, - "danielkvist-hugo-terrassa-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/danielkvist/hugo-terrassa-theme&ssg=hugo" - }, - "danilowoz-gatsby-advanced-blog-system-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/danilowoz/gatsby-advanced-blog-system&ssg=gatsby" - }, - "danshai-gatsbyv2-scientific-blog-machine-learning-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/DanShai/gatsbyv2-scientific-blog-machine-learning&ssg=gatsby" - }, - "darshanbaral-aafu-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/darshanbaral/aafu&ssg=hugo" - }, - "darshanbaral-khata-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/darshanbaral/khata&ssg=hugo" - }, - "darshanbaral-kitab-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/darshanbaral/kitab&ssg=hugo" - }, - "darshanbaral-mero-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/darshanbaral/mero&ssg=hugo" - }, - "darshanbaral-sada-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/darshanbaral/sada&ssg=hugo" - }, - "dashdashzako-hugo-journal-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/dashdashzako/hugo-journal&ssg=hugo" - }, - "dashdashzako-paperback-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/dashdashzako/paperback&ssg=hugo" - }, - "dashingcode-front-cover-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/dashingcode/front-cover&ssg=jekyll" - }, - "datocms-gatsby-portfolio-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/datocms/gatsby-portfolio&ssg=gatsby" - }, - "daviddarnes-garth-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/daviddarnes/garth&ssg=jekyll" - }, - "davidhampgonsalves-hugo-black-and-light-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/davidhampgonsalves/hugo-black-and-light-theme&ssg=hugo" - }, - "davshoward-gatsby-starter-honey-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/davshoward/gatsby-starter-honey&ssg=gatsby" - }, - "dbtek-dbyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/dbtek/dbyll&ssg=jekyll" - }, - "dbtek-paper-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/dbtek/paper&ssg=jekyll" - }, - "ddbullfrog-resumecard-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ddbullfrog/resumecard&ssg=jekyll" - }, - "de-souza-hugo-flex-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/de-souza/hugo-flex&ssg=hugo" - }, - "deepidea-web-presentation-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/deepidea/web-presentation&ssg=jekyll" - }, - "denningk-gatsby-starter-typescript-jest-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/denningk/gatsby-starter-typescript-jest&ssg=gatsby" - }, - "devcows-hugo-universal-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/devcows/hugo-universal-theme&ssg=hugo" - }, - "dgraph-io-hugo-dgraph-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/dgraph-io/hugo-dgraph-theme&ssg=hugo" - }, - "diezcami-arctic-fox-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/diezcami/arctic-fox-theme/&ssg=jekyll" - }, - "diezcami-polar-bear-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/diezcami/polar-bear-theme/&ssg=jekyll" - }, - "digital-roots-jekyll-2-column-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/Digital-Roots/Jekyll-2-Column-Theme&ssg=jekyll" - }, - "digitalcraftsman-hugo-artists-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/digitalcraftsman/hugo-artists-theme&ssg=hugo" - }, - "digitalcraftsman-hugo-cactus-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/digitalcraftsman/hugo-cactus-theme&ssg=hugo" - }, - "digitalcraftsman-hugo-creative-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/digitalcraftsman/hugo-creative-theme&ssg=hugo" - }, - "digitalcraftsman-hugo-freelancer-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/digitalcraftsman/hugo-freelancer-theme&ssg=hugo" - }, - "digitalcraftsman-hugo-hikari-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/digitalcraftsman/hugo-hikari-theme&ssg=hugo" - }, - "digitalcraftsman-hugo-icarus-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/digitalcraftsman/hugo-icarus-theme&ssg=hugo" - }, - "digitalcraftsman-hugo-type-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/digitalcraftsman/hugo-type-theme&ssg=hugo" - }, - "digitalmindch-gridster-jekyll-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/DigitalMindCH/gridster-jekyll-theme&ssg=jekyll" - }, - "digitalmindch-twister-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/DigitalMindCH/twister&ssg=jekyll" - }, - "dikiaap-mangan-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/dikiaap/mangan&ssg=jekyll" - }, - "dirkfabisch-mediator-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/dirkfabisch/mediator&ssg=jekyll" - }, - "diwao-hestia-pure-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/diwao/hestia-pure&ssg=hugo" - }, - "dldx-hpstr-hugo-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/dldx/hpstr-hugo-theme&ssg=hugo" - }, - "dominicabela-gatsby-starter-material-ui-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/dominicabela/gatsby-starter-material-ui&ssg=gatsby" - }, - "dongchuan-yummy-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/DONGChuan/Yummy-Jekyll&ssg=jekyll" - }, - "dplesca-purehugo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/dplesca/purehugo&ssg=hugo" - }, - "drassil-git-wiki-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/drassil/git-wiki&ssg=jekyll" - }, - "drvy-minimal-block-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/drvy/minimal-block&ssg=jekyll" - }, - "dschau-gatsby-blog-starter-kit-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/DSchau/gatsby-blog-starter-kit&ssg=gatsby" - }, - "durianstack-gatsby-tailwindcss-sass-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/durianstack/gatsby-tailwindcss-sass-starter&ssg=gatsby" - }, - "dwyfrequency-gatsby-ghub-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/dwyfrequency/gatsby-ghub&ssg=gatsby" - }, - "dyndna-lanyon-plus-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/dyndna/lanyon-plus&ssg=jekyll" - }, - "dyutibarma-monochrome-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/dyutibarma/monochrome&ssg=jekyll" - }, - "dzello-reveal-hugo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/dzello/reveal-hugo&ssg=hugo" - }, - "edavidaja-docter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/edavidaja/docter&ssg=hugo" - }, - "eddiewebb-hugo-resume-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/eddiewebb/hugo-resume&ssg=hugo" - }, - "eliasson-liquorice-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/eliasson/liquorice&ssg=hugo" - }, - "eliottvincent-bay-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/eliottvincent/bay&ssg=jekyll" - }, - "ellekasai-resumecards-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ellekasai/resumecards/&ssg=jekyll" - }, - "ellekasai-shiori-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ellekasai/shiori/&ssg=jekyll" - }, - "elotroalex-ed-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/elotroalex/ed&ssg=jekyll" - }, - "email2vimalraj-gatsby-starter-tech-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/email2vimalraj/gatsby-starter-tech-blog&ssg=gatsby" - }, - "emasuriano-gatsby-starter-event-calendar-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/EmaSuriano/gatsby-starter-event-calendar&ssg=gatsby" - }, - "emielh-hallo-hugo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/EmielH/hallo-hugo&ssg=hugo" - }, - "emielh-stip-hugo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/EmielH/stip-hugo&ssg=hugo" - }, - "emielh-tale-hugo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/EmielH/tale-hugo&ssg=hugo" - }, - "emilbaehr-automatic-app-landing-page-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/emilbaehr/automatic-app-landing-page&ssg=jekyll" - }, - "endymion1818-gatsby-starter-carraway-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/endymion1818/gatsby-starter-carraway&ssg=gatsby" - }, - "erayaydin-jekyll-bulma-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/erayaydin/jekyll-bulma&ssg=jekyll" - }, - "eshlox-simplicity-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/eshlox/simplicity&ssg=hugo" - }, - "essentialenemy-noir-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/essentialenemy/noir&ssg=jekyll" - }, - "excentris-compass-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/excentris/compass&ssg=jekyll" - }, - "exchangerate-api-rlstevenson-jekyll-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ExchangeRate-API/rlstevenson-jekyll-theme&ssg=jekyll" - }, - "exchangerate-api-strange-case-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ExchangeRate-API/strange-case&ssg=hugo" - }, - "ezrasavard-ezora-jekyll-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ezrasavard/ezora-jekyll-theme&ssg=jekyll" - }, - "fabe-gatsby-starter-deck-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/fabe/gatsby-starter-deck&ssg=gatsby" - }, - "fabe-gatsby-universal-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/fabe/gatsby-universal&ssg=gatsby" - }, - "fabien0102-gatsby-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/fabien0102/gatsby-starter&ssg=gatsby" - }, - "fareez-ahamed-millikyl-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/fareez-ahamed/millikyl&ssg=jekyll" - }, - "fastbyte01-keepit-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/Fastbyte01/KeepIt&ssg=hugo" - }, - "felicianotech-hugo-theme-lean-launch-page-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/felicianotech/hugo-theme-lean-launch-page&ssg=hugo" - }, - "ferrolho-jekyll-theme-libretto-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ferrolho/jekyll-theme-libretto&ssg=jekyll" - }, - "fiatjaf-classless-hugo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/fiatjaf/classless-hugo&ssg=hugo" - }, - "fongandrew-hydeout-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/fongandrew/hydeout&ssg=jekyll" - }, - "forestryio-ubuild-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/forestryio/ubuild-jekyll&ssg=jekyll&cms=forestry" - }, - "formspree-blogophonic-hugo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/formspree/blogophonic-hugo&ssg=hugo" - }, - "foxandgeese-tiny-agency-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/foxandgeese/tiny-agency&ssg=gatsby" - }, - "frankievalentine-gatsby-craftcms-barebones-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/frankievalentine/gatsby-craftcms-barebones&ssg=gatsby" - }, - "friedger-gatsby-starter-blockstack-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/friedger/gatsby-starter-blockstack&ssg=gatsby" - }, - "frjo-hugo-theme-zen-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/frjo/hugo-theme-zen&ssg=hugo" - }, - "frnki-gatsby-typescript-starter-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/frnki/gatsby-typescript-starter-blog&ssg=gatsby" - }, - "fromendworld-loffer-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/FromEndWorld/LOFFER&ssg=jekyll" - }, - "fullit-fullit.github.io-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/fullit/fullit.github.io&ssg=jekyll" - }, - "funkydan2-alpha-church-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/funkydan2/alpha-church&ssg=hugo" - }, - "g1eny0ung-hugo-theme-dream-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/g1eny0ung/hugo-theme-dream&ssg=hugo" - }, - "ganevru-gatsby-starter-blog-grommet-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/Ganevru/gatsby-starter-blog-grommet&ssg=gatsby" - }, - "gaohaoyang-gaohaoyang.github.io-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/Gaohaoyang/gaohaoyang.github.io&ssg=jekyll" - }, - "garvincasimir-hugo-h5bp-simple-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/garvincasimir/hugo-h5bp-simple&ssg=hugo" - }, - "gatsbycentral-gatsby-v2-starter-casper-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/GatsbyCentral/gatsby-v2-starter-casper&ssg=gatsby" - }, - "gatsbycentral-gatsby-v2-starter-lumen-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/GatsbyCentral/gatsby-v2-starter-lumen&ssg=gatsby" - }, - "gatsbyjs-gatsby-starter-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/gatsbyjs/gatsby-starter-blog&ssg=gatsby" - }, - "gatsbyjs-gatsby-starter-default-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/gatsbyjs/gatsby-starter-default&ssg=gatsby" - }, - "gchauras-much-worse-jekyll-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/gchauras/much-worse-jekyll-theme&ssg=jekyll" - }, - "gcushen-hugo-academic-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/gcushen/hugo-academic&ssg=hugo" - }, - "gdg-managua-jekyll-mdl-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/gdg-managua/jekyll-mdl&ssg=jekyll" - }, - "geocine-gatsby-starter-devto-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/geocine/gatsby-starter-devto&ssg=gatsby" - }, - "geocine-gatsby-starter-organization-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/geocine/gatsby-starter-organization&ssg=gatsby" - }, - "geschke-hugo-tikva-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/geschke/hugo-tikva&ssg=hugo" - }, - "gesquive-slate-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/gesquive/slate&ssg=hugo" - }, - "gherciu-gatsby-all-in-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/Gherciu/gatsby-all-in&ssg=gatsby" - }, - "gildasio-clyell-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/gildasio/clyell&ssg=jekyll" - }, - "gillkyle-gatsby-starter-landing-page-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/gillkyle/gatsby-starter-landing-page&ssg=gatsby" - }, - "gizak-nofancy-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/gizak/nofancy&ssg=hugo" - }, - "gjuniioor-darcli-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/gjuniioor/darcli&ssg=jekyll" - }, - "gkmngrgn-hugo-alageek-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/gkmngrgn/hugo-alageek-theme&ssg=hugo" - }, - "gmlunesa-gatsby-starter-personal-portfolio-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/gmlunesa/gatsby-starter-personal-portfolio&ssg=gatsby" - }, - "gonapps-org-hugo-apps-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/gonapps-org/hugo-apps-theme&ssg=hugo" - }, - "goodroot-hugo-classic-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/goodroot/hugo-classic&ssg=hugo" - }, - "graphcms-gatsby-graphcms-tailwindcss-example-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/GraphCMS/gatsby-graphcms-tailwindcss-example&ssg=gatsby" - }, - "greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/greatgatsbyjsthemes/gatsby-starter-ggt-material-ui-blog&ssg=gatsby" - }, - "greglobinski-gatsby-starter-hero-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/greglobinski/gatsby-starter-hero-blog&ssg=gatsby" - }, - "grrinchas-aliquam-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/grrinchas/aliquam&ssg=jekyll" - }, - "gundamew-hugo-bingo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/gundamew/hugo-bingo&ssg=hugo" - }, - "guovz-pithy-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/guovz/pithy&ssg=jekyll" - }, - "gurusabarish-hugo-profile-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/gurusabarish/hugo-profile&ssg=hugo" - }, - "gustavoquinalha-jekyll-help-center-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/gustavoquinalha/jekyll-help-center-theme&ssg=jekyll" - }, - "gyorb-hugo-dusk-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/gyorb/hugo-dusk&ssg=hugo" - }, - "h01000110-windows-95-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/h01000110/windows-95&ssg=jekyll" - }, - "hadisinaee-avicenna-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/hadisinaee/avicenna&ssg=hugo" - }, - "haezl-gatsby-starter-haezl-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/haezl/gatsby-starter-haezl&ssg=gatsby" - }, - "hagnerd-gatsby-starter-blog-mdx-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/hagnerd/gatsby-starter-blog-mdx&ssg=gatsby" - }, - "halogenica-beautifulhugo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/halogenica/beautifulhugo&ssg=hugo" - }, - "harshil1712-gatsby-starter-googlesheets-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/harshil1712/gatsby-starter-googlesheets&ssg=gatsby" - }, - "hasura-gatsby-gitbook-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/hasura/gatsby-gitbook-starter&ssg=gatsby" - }, - "hauke96-hugo-theme-hamburg-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/hauke96/hugo-theme-hamburg&ssg=hugo" - }, - "hdcdstr8fwd-foundation-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/hdcdstr8fwd/foundation-theme&ssg=hugo" - }, - "heiswayi-textlog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/heiswayi/textlog&ssg=jekyll" - }, - "heiswayi-the-plain-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/heiswayi/the-plain&ssg=jekyll" - }, - "heiswayi-thinkspace-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/heiswayi/thinkspace&ssg=jekyll" - }, - "heliumjk-heliumjk.github.io-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/heliumjk/heliumjk.github.io&ssg=jekyll" - }, - "hemangsk-devjournal-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/hemangsk/DevJournal&ssg=jekyll" - }, - "hemangsk-gravity-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/hemangsk/Gravity&ssg=jekyll" - }, - "hemangsk-safarnama-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/hemangsk/safarnama&ssg=jekyll" - }, - "henrythemes-jekyll-book-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/henrythemes/jekyll-book-theme&ssg=jekyll" - }, - "henrythemes-jekyll-bootstrap-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/henrythemes/jekyll-bootstrap-theme&ssg=jekyll" - }, - "henrythemes-jekyll-minimal-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/henrythemes/jekyll-minimal-theme&ssg=jekyll" - }, - "himali-patel-myclicks-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/himali-patel/MyClicks&ssg=gatsby" - }, - "histaff-website-static-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/histaff/website-static&ssg=gatsby" - }, - "hmfaysal-hmfaysal-omega-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/hmfaysal/hmfaysal-omega-theme&ssg=jekyll" - }, - "hmfaysal-jekyll-hmfaysal-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/hmfaysal/Jekyll-HMFAYSAL-Theme&ssg=jekyll" - }, - "hmfaysal-notepad-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/hmfaysal/Notepad&ssg=jekyll" - }, - "hoffli-saigon-jekyll-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/hoffli/saigon-jekyll-theme&ssg=jekyll" - }, - "holman-left-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/holman/left&ssg=jekyll" - }, - "htdvisser-hugo-base16-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/htdvisser/hugo-base16-theme&ssg=hugo" - }, - "htr3n-hyde-hyde-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/htr3n/hyde-hyde&ssg=hugo" - }, - "hugocarreira-jekyll-materializecss-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/hugocarreira/jekyll-materializecss&ssg=jekyll" - }, - "hugocarreira-jekyll-vision-casper-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/hugocarreira/jekyll-vision-casper-theme&ssg=jekyll" - }, - "hugoferreira-papyrus-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/hugoferreira/papyrus-theme&ssg=jekyll" - }, - "humrochagf-colordrop-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/humrochagf/colordrop&ssg=hugo" - }, - "huyb1991-hugo-lamp-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/huyb1991/hugo-lamp&ssg=hugo" - }, - "icyris-hugo-theme-yuki-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/iCyris/hugo-theme-yuki&ssg=hugo" - }, - "ifedyukin-mekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ifedyukin/Mekyll&ssg=jekyll" - }, - "ijsucceed-onepress-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ijsucceed/onepress&ssg=hugo" - }, - "imedadel-gatsby-london-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ImedAdel/gatsby-london&ssg=gatsby" - }, - "inded-jekyll_modern-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/inded/Jekyll_modern-blog&ssg=jekyll" - }, - "insidiousmind-material-bliss-jekyll-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/InsidiousMind/material-bliss-jekyll-theme&ssg=jekyll" - }, - "issydennis-gatsby-snipcart-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/issydennis/gatsby-snipcart&ssg=gatsby" - }, - "it-gro-hugo-theme-w3css-basic-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/it-gro/hugo-theme-w3css-basic&ssg=hugo" - }, - "itisbenjamin-nice_blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/itisbenjamin/Nice_Blog&ssg=jekyll" - }, - "itsmeaga1n-minimal-categorized-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ItsMeaga1n/minimal-categorized&ssg=jekyll" - }, - "itsrifat-rifyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/itsrifat/rifyll&ssg=jekyll" - }, - "ivanchou-hugo-theme-vec-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/IvanChou/hugo-theme-vec&ssg=hugo" - }, - "iwiedenm-jekyll-theme-massively-src-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/iwiedenm/jekyll-theme-massively-src&ssg=jekyll" - }, - "iwilsonq-gatsby-starter-reasonml-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/iwilsonq/gatsby-starter-reasonml&ssg=gatsby" - }, - "jack614-jalpc-a-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/Jack614/Jalpc-A&ssg=jekyll" - }, - "jackbravo-gatsby-starter-i18n-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jackbravo/gatsby-starter-i18n-blog&ssg=gatsby" - }, - "jacobsun-edidor-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jacobsun/edidor&ssg=hugo" - }, - "jacobtomlinson-carte-noire-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jacobtomlinson/carte-noire&ssg=jekyll" - }, - "jaden-twentyfourteen-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jaden/twentyfourteen&ssg=hugo" - }, - "jaehee0113-console-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jaehee0113/console&ssg=jekyll" - }, - "jaeyeophan-gatsby-starter-bee-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/JaeYeopHan/gatsby-starter-bee&ssg=gatsby" - }, - "jamigibbs-phantom-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jamigibbs/phantom&ssg=jekyll" - }, - "janczizikow-sleek-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/janczizikow/sleek&ssg=jekyll" - }, - "jannikbuschke-gatsby-antd-docs-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jannikbuschke/gatsby-antd-docs&ssg=gatsby" - }, - "jarrekk-jalpc-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jarrekk/Jalpc&ssg=jekyll" - }, - "jasoncostello-slate-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jasoncostello/slate&ssg=jekyll" - }, - "jbub-ghostwriter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jbub/ghostwriter&ssg=hugo" - }, - "jdh8-sweet-16-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jdh8/sweet-16/&ssg=jekyll" - }, - "jeblister-bulma-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jeblister/bulma&ssg=hugo" - }, - "jeblister-kube-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jeblister/kube&ssg=hugo" - }, - "jeffreytse-jekyll-theme-yat-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jeffreytse/jekyll-theme-yat&ssg=jekyll" - }, - "jekyller-jasper2-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jekyller/jasper2&ssg=jekyll" - }, - "jekyller-online-cv-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jekyller/online-cv&ssg=jekyll" - }, - "jekyller-panelcv-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jekyller/PanelCV&ssg=jekyll" - }, - "jekynewage-jekynewage.github.io-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jekynewage/jekynewage.github.io&ssg=jekyll" - }, - "jeromelachaud-freelancer-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jeromelachaud/freelancer-theme&ssg=jekyll" - }, - "jeromelachaud-grayscale-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jeromelachaud/grayscale-theme&ssg=jekyll" - }, - "jesselau76-hugo-w3-simple-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jesselau76/hugo-w3-simple&ssg=hugo" - }, - "jjcav84-mdbreact-gatsby-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jjcav84/mdbreact-gatsby-starter&ssg=gatsby" - }, - "jnjosh-internet-weblog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jnjosh/internet-weblog&ssg=hugo" - }, - "johncoene-marat-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/JohnCoene/marat&ssg=jekyll" - }, - "johnotander-pixyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/johnotander/pixyll&ssg=jekyll" - }, - "josephhutch-aether-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/josephhutch/aether&ssg=hugo" - }, - "joshuaavalon-jekyll-avalon-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/joshuaavalon/Jekyll-Avalon&ssg=jekyll" - }, - "joway-hugo-theme-yinyang-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/joway/hugo-theme-yinyang&ssg=hugo" - }, - "joytou-joytou.github.io-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/joytou/joytou.github.io&ssg=jekyll" - }, - "jpescador-hugo-future-imperfect-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jpescador/hugo-future-imperfect&ssg=hugo" - }, - "jrutheiser-hugo-lithium-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jrutheiser/hugo-lithium-theme&ssg=hugo" - }, - "jsnjack-hugo-changelog-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jsnjack/hugo-changelog-theme&ssg=hugo" - }, - "jsnjack-kraiklyn-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jsnjack/kraiklyn&ssg=hugo" - }, - "jugglerx-gatsby-serif-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/JugglerX/gatsby-serif-theme&ssg=gatsby" - }, - "jugglerx-hugo-hero-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/JugglerX/hugo-hero-theme&ssg=hugo" - }, - "jugglerx-hugo-whisper-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/JugglerX/hugo-whisper-theme&ssg=hugo" - }, - "juhi-trivedi-cape-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/juhi-trivedi/cape&ssg=gatsby" - }, - "jumpalottahigh-gatsby-starter-blog-jumpalottahigh-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jumpalottahigh/gatsby-starter-blog-jumpalottahigh&ssg=gatsby" - }, - "junlulocky-popuptweets-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/junlulocky/PopupTweets&ssg=jekyll" - }, - "justinformentin-gatsby-v2-tutorial-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/justinformentin/gatsby-v2-tutorial-starter&ssg=gatsby" - }, - "jweslley-hugo-conference-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jweslley/hugo-conference&ssg=hugo" - }, - "jwillmer-jekylldecent-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/jwillmer/jekyllDecent&ssg=jekyll" - }, - "kakawait-hugo-tranquilpeak-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/kakawait/hugo-tranquilpeak-theme&ssg=hugo" - }, - "kamikat-jekyll-theme-kagami-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/kamikat/jekyll-theme-kagami&ssg=jekyll" - }, - "karloespiritu-blackdoc-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/karloespiritu/BlackDoc&ssg=jekyll" - }, - "kausalflow-connectome-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/kausalflow/connectome&ssg=hugo" - }, - "kaushalmodi-hugo-bare-min-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/kaushalmodi/hugo-bare-min-theme&ssg=hugo" - }, - "kazumasato-siera-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/KazumaSATO/Siera&ssg=jekyll" - }, - "kc0bfv-autophugo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/kc0bfv/autophugo&ssg=hugo" - }, - "kc0bfv-ticky_tacky_dark-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/kc0bfv/ticky_tacky_dark&ssg=hugo" - }, - "keichi-vienna-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/keichi/vienna&ssg=hugo" - }, - "kejunmao-jekyll-theme-mdui-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/KeJunMao/jekyll-theme-mdui&ssg=jekyll" - }, - "kendallstrautman-brevifolia-gatsby-forestry-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/kendallstrautman/brevifolia-gatsby-forestry&ssg=gatsby&cms=forestry" - }, - "kevit-devaid-jekyll-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/kevit/devaid-jekyll-theme&ssg=jekyll" - }, - "kimnagui-gatsby-starter-nagui-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/kimnagui/gatsby-starter-nagui&ssg=gatsby" - }, - "kingfelix-emerald-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/KingFelix/emerald&ssg=jekyll" - }, - "kippt-jekyll-incorporated-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/kippt/jekyll-incorporated&ssg=jekyll" - }, - "kishaningithub-hugo-creative-portfolio-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/kishaningithub/hugo-creative-portfolio-theme&ssg=hugo" - }, - "kitian616-jekyll-text-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/kitian616/jekyll-TeXt-theme&ssg=jekyll" - }, - "kkninjae-book-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/kkninjae/book/&ssg=jekyll" - }, - "knaman2609-clean-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/knaman2609/clean&ssg=jekyll" - }, - "knhash-pudhina-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/knhash/Pudhina&ssg=jekyll" - }, - "knightjdr-gatsby-starter-scientist-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/knightjdr/gatsby-starter-scientist&ssg=gatsby" - }, - "koirand-pulp-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/koirand/pulp&ssg=hugo" - }, - "konsumer-gatsby-starter-bootstrap-netlify-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/konsumer/gatsby-starter-bootstrap-netlify&ssg=gatsby" - }, - "kronik3r-daktilo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/kronik3r/daktilo&ssg=jekyll" - }, - "kuntoaji-dekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/kuntoaji/dekyll&ssg=jekyll" - }, - "kxxvii-kikofri-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/kxxvii/Kikofri&ssg=jekyll" - }, - "laixintao-princess-diaries-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/laixintao/Princess-Diaries&ssg=jekyll" - }, - "laobubu-jekyll-theme-easybook-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/laobubu/jekyll-theme-EasyBook&ssg=jekyll" - }, - "lasseborly-anybodyhome-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/lasseborly/anybodyhome&ssg=hugo" - }, - "lavkumarv-feature-blog-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/lavkumarv/feature-blog-jekyll&ssg=jekyll" - }, - "le4ker-personal-jekyll-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/le4ker/personal-jekyll-theme&ssg=jekyll" - }, - "lednerb-bilberry-hugo-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/Lednerb/bilberry-hugo-theme&ssg=hugo" - }, - "lekoarts-gatsby-starter-minimal-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/LekoArts/gatsby-starter-minimal-blog&ssg=jekyll" - }, - "lekoarts-gatsby-starter-portfolio-cara-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/LekoArts/gatsby-starter-portfolio-cara&ssg=gatsby" - }, - "lekoarts-gatsby-starter-portfolio-emilia-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/LekoArts/gatsby-starter-portfolio-emilia&ssg=gatsby" - }, - "lekoarts-gatsby-starter-portfolio-emma-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/LekoArts/gatsby-starter-portfolio-emma&ssg=gatsby" - }, - "lekoarts-gatsby-starter-portfolio-jodie-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/LekoArts/gatsby-starter-portfolio-jodie&ssg=gatsby" - }, - "lekovicmilos-gatsby-starter-portfolio-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/LekovicMilos/gatsby-starter-portfolio&ssg=gatsby" - }, - "lenpaul-lagrange-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/LeNPaul/Lagrange&ssg=jekyll" - }, - "lenpaul-millennial-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/LeNPaul/Millennial&ssg=jekyll" - }, - "lenpaul-portfolio-jekyll-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/LeNPaul/portfolio-jekyll-theme&ssg=jekyll" - }, - "leonhe-hugo_eiio-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/leonhe/hugo_eiio&ssg=hugo" - }, - "leopardpan-leopardpan.github.io-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/leopardpan/leopardpan.github.io&ssg=jekyll" - }, - "lewislbr-lewis-gatsby-starter-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/lewislbr/lewis-gatsby-starter-blog&ssg=gatsby" - }, - "lgaida-mediumish-gohugo-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/lgaida/mediumish-gohugo-theme&ssg=hugo" - }, - "lgcolella-gatsby-starter-developer-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/lgcolella/gatsby-starter-developer-blog&ssg=gatsby" - }, - "liberxue-liberxue.github.io-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/Liberxue/liberxue.github.io&ssg=jekyll" - }, - "lingxz-er-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/lingxz/er&ssg=hugo" - }, - "link9596-hydrogen-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/link9596/hydrogen&ssg=jekyll" - }, - "liungkejin-liungkejin.github.io-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/liungkejin/liungkejin.github.io&ssg=jekyll" - }, - "liuzc-leaveit-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/liuzc/LeaveIt&ssg=hugo" - }, - "livingdocsio-gatsby-magazine-example-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/livingdocsIO/gatsby-magazine-example&ssg=gatsby" - }, - "lixizhi-lixizhi.github.io-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/lixizhi/lixizhi.github.io&ssg=jekyll" - }, - "lordmathis-hugo-theme-nix-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/LordMathis/hugo-theme-nix&ssg=hugo" - }, - "lorepirri-cayman-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/lorepirri/cayman-blog&ssg=jekyll" - }, - "lorepirri-jekyll-theme-simple-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://gitlab.com/lorepirri/jekyll-theme-simple-blog&ssg=jekyll" - }, - "lubang-hugo-hello-programmer-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/lubang/hugo-hello-programmer-theme&ssg=hugo" - }, - "luizdepra-hugo-coder-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/luizdepra/hugo-coder&ssg=hugo" - }, - "lukas-h-material-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/lukas-h/material-theme/&ssg=jekyll" - }, - "lukas-h-onepage-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/lukas-h/onepage&ssg=jekyll" - }, - "lukewhitehouse-gatsby-starter-blog-with-lunr-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/lukewhitehouse/gatsby-starter-blog-with-lunr&ssg=gatsby" - }, - "lundgren2-gatsby-starter-github-api-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/lundgren2/gatsby-starter-github-api&ssg=gatsby" - }, - "luoyan35714-lessormore-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/luoyan35714/LessOrMore&ssg=jekyll" - }, - "lwz7512-gatsby-netlify-identity-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/lwz7512/gatsby-netlify-identity-starter&ssg=gatsby" - }, - "macrod68-jekyll-materialize-starter-template-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/macrod68/jekyll-materialize-starter-template&ssg=jekyll" - }, - "madelyneriksen-gatsby-starter-tyra-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/madelyneriksen/gatsby-starter-tyra&ssg=gatsby" - }, - "madforjekyll-madforjekyll.github.io-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/madforjekyll/madforjekyll.github.io&ssg=jekyll" - }, - "manid2-lone-wolf-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/manid2/lone-wolf-theme/&ssg=jekyll" - }, - "marcanuy-hugotube-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/marcanuy/hugotube&ssg=hugo" - }, - "marcanuy-simpleit-hugo-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/marcanuy/simpleit-hugo-theme&ssg=hugo" - }, - "marcusvirg-forty-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/MarcusVirg/forty&ssg=hugo" - }, - "markoradak-gatsby-starter-storybook-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/markoradak/gatsby-starter-storybook&ssg=gatsby" - }, - "matcornic-hugo-theme-learn-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/matcornic/hugo-theme-learn&ssg=hugo" - }, - "mateussmedeiros-blade-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/mateussmedeiros/blade-theme&ssg=jekyll" - }, - "mattbutton-silhouette-hugo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/mattbutton/silhouette-hugo&ssg=hugo" - }, - "mattcouchman-jekyll-resume-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/mattcouchman/jekyll-resume&ssg=jekyll" - }, - "mattgraham-leap-day-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/mattgraham/Leap-Day&ssg=jekyll" - }, - "mattgraham-midnight-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/mattgraham/midnight&ssg=jekyll" - }, - "mattvh-solar-theme-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/mattvh/solar-theme-jekyll&ssg=jekyll" - }, - "maxpou-gatsby-starter-morning-dew-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/maxpou/gatsby-starter-morning-dew&ssg=gatsby" - }, - "mazgi-hugo-theme-techlog-simple-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/mazgi/hugo-theme-techlog-simple&ssg=hugo" - }, - "meibenny-elephants-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/meibenny/elephants&ssg=hugo" - }, - "melangue-dactl-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/melangue/dactl&ssg=jekyll" - }, - "meliodus-meliodus.github.io-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/meliodus/meliodus.github.io&ssg=jekyll" - }, - "meliodus-uno-dbyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/meliodus/uno-dbyll&ssg=jekyll" - }, - "melvinchng-event-jekyll-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/melvinchng/event-jekyll-theme&ssg=jekyll" - }, - "mhadaily-gatsby-starter-typescript-power-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/mhadaily/gatsby-starter-typescript-power-blog&ssg=gatsby" - }, - "midzer-urban-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/midzer/urban-theme&ssg=jekyll" - }, - "miguelsimoni-hugo-initio-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/miguelsimoni/hugo-initio&ssg=hugo" - }, - "mikeblum-hugo-now-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/mikeblum/hugo-now&ssg=hugo" - }, - "minhhuy150894-minhhuy150894.github.io-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/minhhuy150894/minhhuy150894.github.io&ssg=jekyll" - }, - "mmistakes-hpstr-jekyll-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/mmistakes/hpstr-jekyll-theme&ssg=jekyll" - }, - "mmistakes-jekyll-theme-basically-basic-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/mmistakes/jekyll-theme-basically-basic&ssg=jekyll" - }, - "mmistakes-jekyll-theme-skinny-bones-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/mmistakes/jekyll-theme-skinny-bones&ssg=jekyll" - }, - "mmistakes-minimal-mistakes-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/mmistakes/minimal-mistakes&ssg=jekyll" - }, - "mmistakes-so-simple-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/mmistakes/so-simple-theme&ssg=jekyll" - }, - "mmrath-hugo-bootstrap-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/mmrath/hugo-bootstrap&ssg=hugo" - }, - "mohanmonu777-gatsby-starter-krisp-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/mohanmonu777/gatsby-starter-krisp&ssg=gatsby" - }, - "molebox-gatsby-theme-pocket-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/molebox/gatsby-theme-pocket&ssg=gatsby" - }, - "moltin-gatsby-demo-store-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/moltin/gatsby-demo-store&ssg=gatsby" - }, - "muan-scribble-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/muan/scribble&ssg=jekyll" - }, - "muhajirdev-gatsby-starter-firebase-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/muhajirdev/gatsby-starter-firebase&ssg=gatsby" - }, - "muhajirdev-gatsby-tailwind-emotion-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/muhajirdev/gatsby-tailwind-emotion-starter&ssg=gatsby" - }, - "mumuxme-materialize-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/mumuxme/materialize-jekyll&ssg=jekyll" - }, - "muniftanjim-minimo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/MunifTanjim/minimo&ssg=hugo" - }, - "murraco-jekyll-theme-minimal-resume-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/murraco/jekyll-theme-minimal-resume&ssg=jekyll" - }, - "mushishi78-jekyll-video-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/mushishi78/jekyll-video&ssg=jekyll" - }, - "mushishi78-one-page-wonder-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/mushishi78/one-page-wonder-jekyll&ssg=jekyll" - }, - "mx3m-hikari-for-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/mx3m/hikari-for-Jekyll&ssg=jekyll" - }, - "nadjetey-gridgallery-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/nadjetey/GridGallery&ssg=jekyll" - }, - "nadjetey-redcup-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/nadjetey/redcup&ssg=jekyll" - }, - "nadjetey-wangana-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/nadjetey/wangana&ssg=jekyll" - }, - "nandomoreirame-dotx-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/nandomoreirame/dotX&ssg=jekyll" - }, - "nandomoreirame-end2end-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/nandomoreirame/end2end&ssg=jekyll" - }, - "nandomoreirame-lora-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/nandomoreirame/lora&ssg=jekyll" - }, - "nandomoreirame-mug-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/nandomoreirame/mug&ssg=jekyll" - }, - "nandomoreirame-nandomoreira-jekyll-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/nandomoreirame/nandomoreira-jekyll-theme&ssg=jekyll" - }, - "nandomoreirame-simplest-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/nandomoreirame/simplest&ssg=jekyll" - }, - "nandomoreirame-zetsu-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/nandomoreirame/zetsu&ssg=jekyll" - }, - "nanxiaobei-hugo-paper-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/nanxiaobei/hugo-paper&ssg=hugo" - }, - "narative-gatsby-theme-novela-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/narative/gatsby-theme-novela&ssg=gatsby&cms=contentful" - }, - "natarajmb-charaka-hugo-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/natarajmb/charaka-hugo-theme&ssg=hugo" - }, - "nathancday-min_night-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/nathancday/min_night&ssg=hugo" - }, - "nehalist-gatsby-starter-nehalem-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/nehalist/gatsby-starter-nehalem&ssg=gatsby" - }, - "neizod-lemma-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/neizod/lemma-theme&ssg=jekyll" - }, - "netlify-templates-gatsby-starter-netlify-cms-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/netlify-templates/gatsby-starter-netlify-cms&ssg=gatsby" - }, - "netlify-templates-one-click-hugo-cms-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/netlify-templates/one-click-hugo-cms&ssg=hugo" - }, - "ngzhio-jekyll-theme-hamilton-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ngzhio/jekyll-theme-hamilton&ssg=jekyll" - }, - "nickbalestra-kactus-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/nickbalestra/kactus&ssg=jekyll" - }, - "nielsenramon-chalk-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/nielsenramon/chalk&ssg=jekyll" - }, - "niklasbuschmann-contrast-hugo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/niklasbuschmann/contrast-hugo&ssg=hugo" - }, - "niklasbuschmann-contrast-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/niklasbuschmann/contrast&ssg=jekyll" - }, - "niklasmtj-gatsby-starter-julia-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/niklasmtj/gatsby-starter-julia&ssg=gatsby" - }, - "nikrich-jekyll-slender-template-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/nikrich/jekyll-slender-template&ssg=jekyll" - }, - "nikrich-jekyll-wing-template-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/nikrich/jekyll-wing-template&ssg=jekyll" - }, - "ninapetrop-artist-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ninapetrop/Artist-Theme&ssg=jekyll" - }, - "nirocfz-arabica-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/nirocfz/arabica&ssg=hugo" - }, - "nix1947-jekyll-hilmi-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/nix1947/jekyll-hilmi&ssg=jekyll" - }, - "nodejh-hugo-theme-cactus-plus-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/nodejh/hugo-theme-cactus-plus&ssg=hugo" - }, - "nrandecker-particle-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/nrandecker/particle&ssg=jekyll" - }, - "nurlansu-hugo-sustain-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/nurlansu/hugo-sustain&ssg=hugo" - }, - "obaez-dentistsmile-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/obaez/dentistsmile&ssg=jekyll" - }, - "ofranke-gatsby-typescript-scss-docker-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/OFranke/gatsby-typescript-scss-docker&ssg=gatsby" - }, - "ohduran-onassis-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ohduran/Onassis&ssg=jekyll" - }, - "ohduran-the-interesting-times-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ohduran/the-interesting-times&ssg=jekyll" - }, - "okkur-syna-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/okkur/syna&ssg=hugo" - }, - "olakara-jekyllmetro-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/olakara/JekyllMetro&ssg=jekyll" - }, - "olowolo-hugo-theme-even-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/olOwOlo/hugo-theme-even&ssg=hugo" - }, - "onweru-compose-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/onweru/compose&ssg=hugo&cms=forestry" - }, - "onweru-hugo-swift-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/onweru/hugo-swift-theme&ssg=hugo" - }, - "onweru-newsroom-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/onweru/newsroom&ssg=hugo" - }, - "open-sl-jekyll-modern-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/Open-SL/Jekyll-Modern-Blog&ssg=jekyll" - }, - "open-start-opentheme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/open-start/opentheme&ssg=jekyll" - }, - "orderedlist-minimal-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/orderedlist/minimal&ssg=jekyll" - }, - "orderedlist-modernist-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/orderedlist/modernist&ssg=jekyll" - }, - "osogrizz-gatsby-starter-santa-fe-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/osogrizz/gatsby-starter-santa-fe&ssg=gatsby" - }, - "ozgrozer-dasper-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ozgrozer/dasper&ssg=jekyll" - }, - "pablovila-gatsby-starter-wordpress-community-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/pablovila/gatsby-starter-wordpress-community&ssg=gatsby" - }, - "pacollins-hugo-future-imperfect-slim-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/pacollins/hugo-future-imperfect-slim&ssg=hugo" - }, - "pandasekh-jekyll-podcaster-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/PandaSekh/Jekyll-Podcaster&ssg=jekyll" - }, - "pandasekh-jekyll-yamt-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/PandaSekh/Jekyll-YAMT&ssg=jekyll" - }, - "panr-gatsby-starter-hello-friend-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/panr/gatsby-starter-hello-friend&ssg=gatsby" - }, - "panr-hugo-theme-hello-friend-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/panr/hugo-theme-hello-friend&ssg=hugo" - }, - "panr-hugo-theme-terminal-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/panr/hugo-theme-terminal&ssg=hugo" - }, - "panxw-panxw.github.com-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/panxw/panxw.github.com&ssg=jekyll" - }, - "parmsang-gatsby-starter-ecommerce-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/parmsang/gatsby-starter-ecommerce&ssg=gatsby" - }, - "parsiya-hugo-octopress-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/parsiya/Hugo-Octopress&ssg=hugo" - }, - "pasindud-jekyll-masonry-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/pasindud/jekyll-masonry&ssg=jekyll" - }, - "patdryburgh-hitchens-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/patdryburgh/hitchens&ssg=jekyll" - }, - "patricoferris-gatsby-starter-notes-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/patricoferris/gatsby-starter-notes&ssg=gatsby" - }, - "pdevty-material-design-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/pdevty/material-design&ssg=hugo" - }, - "pdevty-polymer-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/pdevty/polymer&ssg=hugo" - }, - "peaceiris-hugo-theme-iris-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/peaceiris/hugo-theme-iris&ssg=hugo" - }, - "peahatlanding-plain-webcomic-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/peahatlanding/Plain-Webcomic&ssg=jekyll" - }, - "penibelst-jekyll-noita-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/penibelst/jekyll-noita&ssg=jekyll" - }, - "phlow-feeling-responsive-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/Phlow/feeling-responsive&ssg=jekyll" - }, - "piducancore-gatsby-starter-apollo-netlify-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/piducancore/gatsby-starter-apollo-netlify&ssg=gatsby" - }, - "pietromenna-jekyll-architect-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/pietromenna/jekyll-architect-theme&ssg=jekyll" - }, - "pietromenna-jekyll-cayman-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/pietromenna/jekyll-cayman-theme&ssg=jekyll" - }, - "piharpi-jekyll-klise-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/piharpi/jekyll-klise&ssg=jekyll" - }, - "pipporj-hugo-refresh-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/PippoRJ/hugo-refresh&ssg=hugo" - }, - "pixelsign-gatsby-starter-tachyons-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/pixelsign/gatsby-starter-tachyons&ssg=gatsby" - }, - "planetjekyll-jekyll-starter-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/planetjekyll/jekyll-starter-theme&ssg=jekyll" - }, - "pmarsceill-just-the-docs-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/pmarsceill/just-the-docs&ssg=jekyll" - }, - "poole-hyde-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/poole/hyde&ssg=jekyll" - }, - "poole-lanyon-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/poole/lanyon&ssg=jekyll" - }, - "poole-poole-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/poole/poole&ssg=jekyll" - }, - "portfolio-central-jekyll-instagram-portfolio-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/portfolio-central/jekyll-instagram-portfolio-theme&ssg=jekyll" - }, - "pranavrajs-limpid-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/pranavrajs/limpid&ssg=jekyll" - }, - "pranavrajs-swift-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/pranavrajs/swift/&ssg=jekyll" - }, - "prio101-metaphor-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/prio101/metaphor-jekyll&ssg=jekyll" - }, - "progrhyme-hugo-theme-bootie-docs-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/progrhyme/hugo-theme-bootie-docs&ssg=hugo" - }, - "projectpages-project-pages-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/projectpages/project-pages&ssg=jekyll" - }, - "prototypeinteractive-gatsby-react-boilerplate-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/PrototypeInteractive/gatsby-react-boilerplate&ssg=gatsby" - }, - "qingpingmeng-gatsby-starter-traveler-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/QingpingMeng/gatsby-starter-traveler-blog&ssg=gatsby" - }, - "qqhann-hugo-primer-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/qqhann/hugo-primer&ssg=hugo" - }, - "railsr-autm-rb-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/railsr/autm-rb&ssg=jekyll" - }, - "raphadeluca-gatsby-starter-quiz-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/raphadeluca/gatsby-starter-quiz&ssg=gatsby" - }, - "rcjach-hugo-webslides-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/RCJacH/hugo-webslides&ssg=hugo" - }, - "realorangeone-hugo-theme-revealjs-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/RealOrangeOne/hugo-theme-revealjs&ssg=hugo" - }, - "redvi-voyager-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/redVi/voyager&ssg=jekyll" - }, - "renvrant-gatsby-mdx-netlify-cms-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/renvrant/gatsby-mdx-netlify-cms-starter&ssg=gatsby" - }, - "renyuanz-leonids-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/renyuanz/leonids&ssg=jekyll" - }, - "resir014-gatsby-starter-typescript-plus-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/resir014/gatsby-starter-typescript-plus&ssg=gatsby" - }, - "reuixiy-hugo-theme-meme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/reuixiy/hugo-theme-meme&ssg=hugo" - }, - "rhazdon-hugo-theme-hello-friend-ng-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/rhazdon/hugo-theme-hello-friend-ng&ssg=hugo" - }, - "ribice-kiss-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ribice/kiss&ssg=hugo" - }, - "riggraz-no-style-please-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/riggraz/no-style-please&ssg=jekyll" - }, - "ritijjain-pudhina-fresh-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ritijjain/pudhina-fresh&ssg=jekyll" - }, - "rlue-jekyll-solana-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/rlue/jekyll-solana&ssg=jekyll" - }, - "rmagon-gatsby-starter-interviews-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/rmagon/gatsby-starter-interviews&ssg=gatsby" - }, - "rmsubekti-emping-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/rmsubekti/emping&ssg=jekyll" - }, - "rmsubekti-nangka-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/rmsubekti/nangka&ssg=jekyll" - }, - "robertcoopercode-gatsby-netlify-cms-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/robertcoopercode/gatsby-netlify-cms&ssg=gatsby" - }, - "robincsl-gatsby-starter-docz-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/RobinCsl/gatsby-starter-docz&ssg=gatsby" - }, - "robinmetral-gatsby-starter-under-construction-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/robinmetral/gatsby-starter-under-construction&ssg=gatsby" - }, - "rohanchandra-type-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/rohanchandra/type-theme&ssg=jekyll" - }, - "rohitguptab-oneshopper-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/rohitguptab/OneShopper&ssg=gatsby" - }, - "rohitguptab-rg-portfolio-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/rohitguptab/rg-portfolio&ssg=gatsby&cms=contentful" - }, - "ronv-colorie-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ronv/colorie&ssg=jekyll" - }, - "ronv-gray-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ronv/gray&ssg=jekyll" - }, - "ronv-lines-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ronv/lines&ssg=hugo" - }, - "ronv-sidey-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ronv/sidey&ssg=jekyll" - }, - "ronv-ultra-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ronv/ultra&ssg=jekyll" - }, - "rosario-kasper-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/rosario/kasper&ssg=jekyll" - }, - "rowanoulton-galileo-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/rowanoulton/galileo-theme&ssg=jekyll" - }, - "rowanoulton-travelog-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/rowanoulton/travelog-theme&ssg=jekyll" - }, - "rundocs-jekyll-rtd-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/rundocs/jekyll-rtd-theme&ssg=jekyll" - }, - "runningstream-hugograyscale-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/runningstream/hugograyscale/&ssg=hugo" - }, - "ryanfitzgerald-devblog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/RyanFitzgerald/devblog&ssg=gatsby" - }, - "s-kris-gatsby-minimal-portfolio-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/s-kris/gatsby-minimal-portfolio-blog&ssg=gatsby" - }, - "saey55-hugo-elate-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/saey55/hugo-elate-theme&ssg=hugo" - }, - "sag-dev-hugo-minimalist-spa-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/Sag-Dev/hugo-minimalist-spa&ssg=hugo" - }, - "salcan-beyondnothing-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/salcan/BeyondNothing&ssg=hugo" - }, - "salgnt-travelogue-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/SalGnt/Travelogue&ssg=jekyll" - }, - "salsysd-hugo-assembly-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/salsysd/hugo-assembly&ssg=hugo" - }, - "samanyougarg-hanuman-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/samanyougarg/hanuman&ssg=jekyll" - }, - "samesies-barber-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/samesies/barber-jekyll&ssg=jekyll" - }, - "santosfrancisco-gatsby-starter-cv-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/santosfrancisco/gatsby-starter-cv&ssg=gatsby" - }, - "sarasate-gate-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/sarasate/gate&ssg=gatsby" - }, - "saschajullmann-gatsby-starter-gatsbythemes-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/saschajullmann/gatsby-starter-gatsbythemes&ssg=gatsby" - }, - "schmanat-hugo-highlights-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/schmanat/hugo-highlights-theme&ssg=hugo" - }, - "schollz-onetwothree-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/schollz/onetwothree&ssg=hugo" - }, - "scotte-jekyll-clean-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/scotte/jekyll-clean&ssg=jekyll" - }, - "scottmathson-simpol-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/scottmathson/simpol-theme&ssg=jekyll" - }, - "seanlane-gochowdown-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/seanlane/gochowdown&ssg=hugo" - }, - "serg-yourfolio-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/serg/yourfolio&ssg=hugo" - }, - "sergiokopplin-indigo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/sergiokopplin/indigo&ssg=jekyll" - }, - "sergiokopplin-violet-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/sergiokopplin/violet&ssg=jekyll" - }, - "sethmacleod-aerial-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/sethmacleod/aerial&ssg=hugo" - }, - "sethmacleod-prologue-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/sethmacleod/prologue&ssg=hugo" - }, - "sfreytag-friday-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/sfreytag/friday-theme&ssg=jekyll" - }, - "shaform-hugo-theme-den-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/shaform/hugo-theme-den&ssg=hugo" - }, - "shankar-hugo-grapes-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/shankar/hugo-grapes&ssg=hugo" - }, - "shantanu-deshmukh-vhealth-gatsby-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/shantanu-deshmukh/vhealth-gatsby&ssg=gatsby" - }, - "sharadcodes-geekyll-starter-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/sharadcodes/geekyll-starter-blog&ssg=jekyll" - }, - "sharadcodes-jekyll-theme-milo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/sharadcodes/jekyll-theme-milo&ssg=jekyll" - }, - "sharadcodes-jekyll-theme-retro-yellow-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/sharadcodes/jekyll-theme-retro-yellow&ssg=jekyll" - }, - "sharu725-ashwath-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/sharu725/ashwath&ssg=jekyll" - }, - "sharu725-bheema-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/sharu725/bheema&ssg=jekyll" - }, - "sharu725-cards-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/sharu725/cards&ssg=jekyll" - }, - "sharu725-gatok-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/sharu725/gatok&ssg=jekyll" - }, - "sharu725-hagura-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/sharu725/hagura&ssg=jekyll" - }, - "sharu725-karna-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/sharu725/karna&ssg=jekyll" - }, - "sharu725-online-cv-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/sharu725/online-cv&ssg=jekyll" - }, - "sharu725-slides-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/sharu725/slides&ssg=jekyll" - }, - "sharu725-thunder-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/sharu725/thunder&ssg=jekyll" - }, - "sharu725-vyaasa-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/sharu725/vyaasa&ssg=jekyll" - }, - "shawnteoh-matjek-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ShawnTeoh/matjek&ssg=jekyll" - }, - "shenoybr-hugo-goa-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/shenoybr/hugo-goa&ssg=hugo" - }, - "shobhitchittora-gatsby-starter-fashion-portfolio-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/shobhitchittora/gatsby-starter-fashion-portfolio&ssg=gatsby" - }, - "siawyoung-immaculate-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/siawyoung/immaculate&ssg=jekyll" - }, - "siegerts-hugo-theme-basic-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/siegerts/hugo-theme-basic&ssg=hugo" - }, - "simplecode-io-gatsby-crafty-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/simplecode-io/gatsby-crafty-theme&ssg=gatsby" - }, - "simpleyyt-jekyll-jacman-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/Simpleyyt/jekyll-jacman&ssg=jekyll" - }, - "simpleyyt-jekyll-simpleyyt-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/Simpleyyt/jekyll-simpleyyt&ssg=jekyll" - }, - "simpleyyt-jekyll-theme-next-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/Simpleyyt/jekyll-theme-next&ssg=jekyll" - }, - "smakosh-gatsby-apollo-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/smakosh/gatsby-apollo-starter&ssg=gatsby" - }, - "smakosh-gatsby-app-starter-rest-api-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/smakosh/gatsby-app-starter-rest-api&ssg=gatsby" - }, - "smakosh-gatsby-portfolio-dev-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/smakosh/gatsby-portfolio-dev&ssg=gatsby" - }, - "smakosh-gatsby-starter-i18n-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/smakosh/gatsby-starter-i18n&ssg=gatsby" - }, - "smallmuou-jekyll-pithy-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/smallmuou/Jekyll-Pithy&ssg=jekyll" - }, - "snipcart-stackbit-theme-planty-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/snipcart/stackbit-theme-planty" - }, - "songroger-murmur-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/songroger/murmur&ssg=jekyll" - }, - "south-paw-awesome-gatsby-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/South-Paw/awesome-gatsby-starter&ssg=gatsby" - }, - "spaceg-glas-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/SpaceG/glas&ssg=jekyll" - }, - "sparanoid-almace-scaffolding-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/sparanoid/almace-scaffolding&ssg=jekyll" - }, - "spech66-bootstrap-bp-hugo-startpage-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/spech66/bootstrap-bp-hugo-startpage&ssg=hugo" - }, - "spech66-bootstrap-bp-hugo-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/spech66/bootstrap-bp-hugo-theme&ssg=hugo" - }, - "spf13-hyde-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/spf13/hyde&ssg=hugo" - }, - "spookey-slick-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/spookey/slick&ssg=hugo" - }, - "ssokurenko-jekyll-smart-material-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ssokurenko/jekyll-smart-material&ssg=jekyll" - }, - "st4ple-solid-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/st4ple/solid-jekyll&ssg=jekyll" - }, - "stackbit-stackbit-theme-ampersand-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit/stackbit-theme-ampersand" - }, - "stackbit-stackbit-theme-azimuth-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit/stackbit-theme-azimuth" - }, - "stackbit-stackbit-theme-diy-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit/stackbit-theme-diy" - }, - "stackbit-stackbit-theme-exto-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit/stackbit-theme-exto" - }, - "stackbit-stackbit-theme-fjord-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit/stackbit-theme-fjord" - }, - "stackbit-stackbit-theme-fractal-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit/stackbit-theme-fractal" - }, - "stackbit-stackbit-theme-fresh-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit/stackbit-theme-fresh" - }, - "stackbit-stackbit-theme-hyperspace-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit/stackbit-theme-hyperspace" - }, - "stackbit-stackbit-theme-libris-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit/stackbit-theme-libris" - }, - "stackbit-stackbit-theme-reflex-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit/stackbit-theme-reflex" - }, - "stackbit-stackbit-theme-spectral-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit/stackbit-theme-spectral" - }, - "stackbit-stackbit-theme-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit/stackbit-theme-starter" - }, - "stackbit-stackbit-theme-vanilla-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit/stackbit-theme-vanilla" - }, - "stackbit-themes-azimuth-gatsby-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit-themes/azimuth-gatsby&ssg=gatsby" - }, - "stackbit-themes-azimuth-hugo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit-themes/azimuth-hugo&ssg=hugo" - }, - "stackbit-themes-azimuth-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit-themes/azimuth-jekyll&ssg=jekyll" - }, - "stackbit-themes-diy-gatsby-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit-themes/diy-gatsby&ssg=gatsby" - }, - "stackbit-themes-diy-hugo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit-themes/diy-hugo&ssg=hugo" - }, - "stackbit-themes-diy-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit-themes/diy-jekyll&ssg=jekyll" - }, - "stackbit-themes-exto-gatsby-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit-themes/exto-gatsby&ssg=gatsby" - }, - "stackbit-themes-exto-hugo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit-themes/exto-hugo&ssg=hugo" - }, - "stackbit-themes-exto-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit-themes/exto-jekyll&ssg=jekyll" - }, - "stackbit-themes-fjord-gatsby-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit-themes/fjord-gatsby&ssg=gatsby" - }, - "stackbit-themes-fjord-hugo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit-themes/fjord-hugo&ssg=hugo" - }, - "stackbit-themes-fjord-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit-themes/fjord-jekyll&ssg=jekyll" - }, - "stackbit-themes-stackbit-starter-gatsby-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit-themes/stackbit-starter-gatsby&ssg=gatsby" - }, - "stackbit-themes-stackbit-starter-hugo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit-themes/stackbit-starter-hugo&ssg=hugo" - }, - "stackbit-themes-stackbit-starter-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackbit-themes/stackbit-starter-jekyll&ssg=jekyll" - }, - "stackrole-gatsby-starter-foundation-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stackrole/gatsby-starter-foundation&ssg=gatsby" - }, - "staticmania-roxo-hugo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/StaticMania/roxo-hugo&ssg=hugo" - }, - "stephen-cloud-gatsby-markdown-material-typescript-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stephen-cloud/gatsby-markdown-material-typescript-starter&ssg=gatsby" - }, - "stevelane-hugo-icon-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/SteveLane/hugo-icon&ssg=hugo" - }, - "stijnvc-holo-alfa-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/stijnvc/holo-alfa&ssg=jekyll" - }, - "streetturtle-jekyll-clean-dark-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/streetturtle/jekyll-clean-dark&ssg=jekyll" - }, - "sudorook-capsule-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/sudorook/capsule&ssg=hugo" - }, - "sujaykundu777-devlopr-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/sujaykundu777/devlopr-jekyll&ssg=jekyll" - }, - "sumeetmathpati-tiny-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/sumeetmathpati/tiny-blog&ssg=jekyll" - }, - "sunbliss-photorama-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/sunbliss/photorama&ssg=jekyll" - }, - "svmiller-steve-ngvb-jekyll-template-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/svmiller/steve-ngvb-jekyll-template&ssg=jekyll" - }, - "sw-yx-jamstack-hackathon-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/sw-yx/jamstack-hackathon-starter&ssg=gatsby" - }, - "swanson-lagom-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/swanson/lagom&ssg=jekyll" - }, - "swcool-landing-page-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/swcool/landing-page-theme&ssg=jekyll" - }, - "sylhare-type-on-strap-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/Sylhare/Type-on-Strap&ssg=jekyll" - }, - "syui-hugo-theme-air-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/syui/hugo-theme-air&ssg=hugo" - }, - "syui-hugo-theme-wave-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/syui/hugo-theme-wave&ssg=hugo" - }, - "szhielelp-jekylltheme-projectgaia-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/szhielelp/JekyllTheme-ProjectGaia&ssg=jekyll" - }, - "sziv2p-jekyll-theme-scaffold-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/sziv2p/jekyll-theme-scaffold&ssg=jekyll" - }, - "t413-singlepaged-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/t413/SinglePaged&ssg=jekyll" - }, - "taikii-whiteplain-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/taikii/whiteplain&ssg=hugo" - }, - "taylantatli-halve-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/TaylanTatli/Halve&ssg=jekyll" - }, - "taylantatli-moon-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/TaylanTatli/Moon&ssg=jekyll" - }, - "taylantatli-ramme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/TaylanTatli/Ramme&ssg=jekyll" - }, - "tazeg-hugo-blog-jeffprod-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/Tazeg/hugo-blog-jeffprod&ssg=hugo" - }, - "tblyler-light-hugo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/tblyler/light-hugo&ssg=hugo" - }, - "tcbutler320-jekyll-theme-dumbarton-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/tcbutler320/Jekyll-Theme-Dumbarton&ssg=jekyll" - }, - "teaware-gatsby-starter-point-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/teaware/gatsby-starter-point&ssg=gatsby" - }, - "thakkaryash94-gatsby-github-personal-website-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/thakkaryash94/gatsby-github-personal-website&ssg=gatsby" - }, - "the-development-flex-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/the-development/flex&ssg=jekyll" - }, - "the2ne-hugo-frais-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/the2ne/hugo-frais&ssg=hugo" - }, - "thecodemint-gatsby-starter-simple-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/thecodemint/gatsby-starter-simple&ssg=gatsby" - }, - "thedevslot-whatatheme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/thedevslot/WhatATheme/&ssg=jekyll" - }, - "thelehhman-plainwhite-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/thelehhman/plainwhite-jekyll&ssg=jekyll" - }, - "thelehhman-texture-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/thelehhman/texture&ssg=jekyll" - }, - "themefisher-airspace-hugo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/themefisher/airspace-hugo&ssg=hugo" - }, - "themefisher-dot-hugo-documentation-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/themefisher/dot-hugo-documentation-theme&ssg=hugo" - }, - "themefisher-infinity-hugo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/themefisher/infinity-hugo&ssg=hugo" - }, - "themefisher-kross-hugo-portfolio-template-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/themefisher/kross-hugo-portfolio-template&ssg=hugo" - }, - "themefisher-meghna-hugo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/themefisher/meghna-hugo&ssg=hugo" - }, - "themefisher-navigator-hugo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/themefisher/navigator-hugo&ssg=hugo" - }, - "themefisher-parsa-hugo-personal-blog-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/themefisher/parsa-hugo-personal-blog-theme&ssg=hugo" - }, - "themefisher-restaurant-hugo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/themefisher/restaurant-hugo&ssg=hugo" - }, - "themefisher-timer-hugo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/themefisher/timer-hugo&ssg=hugo" - }, - "themefisher-vex-hugo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/themefisher/vex-hugo&ssg=hugo" - }, - "thephuse-strange_case-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/thephuse/strange_case&ssg=jekyll" - }, - "thetrevorharmon-gatsby-starter-typescript-sass-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/thetrevorharmon/gatsby-starter-typescript-sass&ssg=gatsby" - }, - "thiagorossener-jekflix-template-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/thiagorossener/jekflix-template&ssg=jekyll" - }, - "thingsym-hugo-theme-techdoc-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/thingsym/hugo-theme-techdoc&ssg=hugo" - }, - "thinker3197-ink-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/thinker3197/ink&ssg=jekyll" - }, - "thomasheller-crab-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/thomasheller/crab&ssg=hugo" - }, - "thomasvaeth-trophy-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/thomasvaeth/trophy-jekyll&ssg=jekyll" - }, - "thomaswangio-gatsby-personal-starter-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/thomaswangio/gatsby-personal-starter-blog&ssg=gatsby" - }, - "thomaswangio-gatsby-starter-primer-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/thomaswangio/gatsby-starter-primer&ssg=gatsby" - }, - "thriveweb-yellowcake-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/thriveweb/yellowcake&ssg=gatsby" - }, - "thundermiracle-gatsby-simple-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/thundermiracle/gatsby-simple-blog&ssg=gatsby" - }, - "tigefa4u-jekmdl-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/tigefa4u/jekmdl&ssg=jekyll" - }, - "tnguyen-blueface-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/tnguyen/blueface&ssg=jekyll" - }, - "tnwhitwell-hugo-startpage-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/tnwhitwell/hugo-startpage-theme&ssg=hugo" - }, - "toboko-gatsby-starter-fine-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/toboko/gatsby-starter-fine&ssg=gatsby" - }, - "tocttou-hacker-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/tocttou/hacker-blog&ssg=jekyll" - }, - "tomanistor-osprey-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/tomanistor/osprey&ssg=hugo" - }, - "tomekskuta-gatsby-starter-intl-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/tomekskuta/gatsby-starter-intl&ssg=gatsby" - }, - "tomjohnson1492-documentation-theme-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/tomjohnson1492/documentation-theme-jekyll&ssg=jekyll" - }, - "tomoyukikashiro-gatsby-starter-blog-amp-to-pwa-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/tomoyukikashiro/gatsby-starter-blog-amp-to-pwa&ssg=gatsby" - }, - "tosi29-inkblotty-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/tosi29/inkblotty&ssg=hugo" - }, - "track3-hermit-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/Track3/hermit&ssg=hugo" - }, - "ttskch-jekyll-ttskch-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ttskch/jekyll-ttskch-theme&ssg=jekyll" - }, - "tummychow-lanyon-hugo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/tummychow/lanyon-hugo&ssg=hugo" - }, - "tybenz-exemplar-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/tybenz/exemplar&ssg=jekyll" - }, - "tybenz-otter-pop-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/tybenz/otter-pop/&ssg=jekyll" - }, - "tylergreulich-gatsby-typescript-mdx-prismjs-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/tylergreulich/gatsby-typescript-mdx-prismjs-starter&ssg=gatsby" - }, - "tzuehlke-jekyll-uno-timeline-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/tzuehlke/jekyll-uno-timeline&ssg=jekyll" - }, - "ueno-llc-ueno-gatsby-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ueno-llc/ueno-gatsby-starter&ssg=gatsby" - }, - "ugglr-gatsby-clean-portfolio-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/ugglr/gatsby-clean-portfolio&ssg=gatsby" - }, - "uicardiodev-hugo-appyness-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/uicardiodev/hugo-appyness&ssg=hugo" - }, - "uicardiodev-hugo-lime-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/uicardiodev/hugo-lime&ssg=hugo" - }, - "uicardiodev-hugo-sodium-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/uicardiodev/hugo-sodium-theme&ssg=hugo" - }, - "uicardiodev-hugo-uilite-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/uicardiodev/hugo-uilite&ssg=hugo" - }, - "unifreak-unifreak.github.io-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/UniFreak/unifreak.github.io&ssg=jekyll" - }, - "upagge-ublogger-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/uPagge/uBlogger&ssg=hugo" - }, - "v4iv-gatsby-starter-business-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/v4iv/gatsby-starter-business&ssg=gatsby" - }, - "vaga-hugo-theme-m10c-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/vaga/hugo-theme-m10c&ssg=hugo" - }, - "vagr9k-gatsby-advanced-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/Vagr9K/gatsby-advanced-starter&ssg=gatsby" - }, - "vagr9k-gatsby-material-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/Vagr9K/gatsby-material-starter&ssg=gatsby" - }, - "vantagedesign-ace-documentation-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/vantagedesign/ace-documentation&ssg=hugo" - }, - "vfalanis-taken-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/vfalanis/taken&ssg=jekyll" - }, - "victoriadrake-hugo-theme-introduction-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/victoriadrake/hugo-theme-introduction&ssg=hugo" - }, - "victoriadrake-hugo-theme-sam-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/victoriadrake/hugo-theme-sam&ssg=hugo" - }, - "victorvoid-space-jekyll-template-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/victorvoid/space-jekyll-template/&ssg=jekyll" - }, - "vietanhdev-benice17-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/vietanhdev/beNice17&ssg=jekyll" - }, - "vimux-binario-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/Vimux/Binario&ssg=hugo" - }, - "vimux-blank-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/vimux/blank&ssg=hugo" - }, - "vimux-mainroad-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/Vimux/Mainroad&ssg=hugo" - }, - "vincentchan-mickey-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/vincentchan/mickey&ssg=jekyll" - }, - "vinitkumar-white-paper-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/vinitkumar/white-paper&ssg=jekyll" - }, - "vividvilla-ezhil-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/vividvilla/ezhil&ssg=hugo" - }, - "volny-creative-theme-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/volny/creative-theme-jekyll&ssg=jekyll" - }, - "volny-stylish-portfolio-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/volny/stylish-portfolio-jekyll&ssg=jekyll" - }, - "vormwald-joon-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/vormwald/joon&ssg=jekyll" - }, - "vszhub-not-pure-poole-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/vszhub/not-pure-poole&ssg=jekyll" - }, - "vvalchev-creative-theme-jekyll-new-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/vvalchev/creative-theme-jekyll-new&ssg=jekyll" - }, - "vvelox-hugo-dusky-neon-potato-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/VVelox/hugo-dusky-neon-potato&ssg=hugo" - }, - "w3layouts-gatsby-starter-delog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/W3Layouts/gatsby-starter-delog&ssg=gatsby" - }, - "wangchucheng-hugo-eureka-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/wangchucheng/hugo-eureka&ssg=hugo" - }, - "wangonya-flexible-gatsby-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/wangonya/flexible-gatsby&ssg=gatsby" - }, - "wangonya-the-plain-gatsby-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/wangonya/the-plain-gatsby&ssg=gatsby" - }, - "wd-hugo-fabric-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/wd/hugo-fabric&ssg=hugo" - }, - "webcu-gatsby-material-kit-react-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/WebCu/gatsby-material-kit-react&ssg=gatsby" - }, - "wemake-services-jekyll-theme-hackcss-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/wemake-services/jekyll-theme-hackcss&ssg=jekyll" - }, - "whoisryosuke-gatsby-documentation-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/whoisryosuke/gatsby-documentation-starter&ssg=gatsby" - }, - "wild-flame-jekyll-simple-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/wild-flame/jekyll-simple&ssg=jekyll" - }, - "wildhaber-gohugo-amp-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/wildhaber/gohugo-amp&ssg=hugo" - }, - "wileybaba-hugo-theme-robotico-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/wileybaba/hugo-theme-robotico&ssg=hugo" - }, - "willcode4food-gatsby-starter-paperbase-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/willcode4food/gatsby-starter-paperbase&ssg=gatsby" - }, - "williamcanin-typing-jekyll-template-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/williamcanin/typing-jekyll-template&ssg=jekyll" - }, - "willianjusten-cards-jekyll-template-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/willianjusten/cards-jekyll-template&ssg=jekyll" - }, - "willianjusten-will-jekyll-template-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/willianjusten/will-jekyll-template&ssg=jekyll" - }, - "willjw3-gatsby-starter-developer-diary-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/willjw3/gatsby-starter-developer-diary&ssg=gatsby" - }, - "windedge-gatsby-tailwind-serif-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/windedge/gatsby-tailwind-serif&ssg=gatsby" - }, - "wiredcraft-carte-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/Wiredcraft/carte&ssg=jekyll" - }, - "wowthemesnet-affiliates-jekyll-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/wowthemesnet/affiliates-jekyll-theme&ssg=jekyll" - }, - "wowthemesnet-jekyll-theme-memoirs-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/wowthemesnet/jekyll-theme-memoirs&ssg=jekyll" - }, - "wowthemesnet-mediumish-theme-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/wowthemesnet/mediumish-theme-jekyll&ssg=jekyll" - }, - "wowthemesnet-mundana-theme-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/wowthemesnet/mundana-theme-jekyll&ssg=jekyll" - }, - "wu-kan-wu-kan.github.io-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/wu-kan/wu-kan.github.io&ssg=jekyll" - }, - "xaprb-story-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/xaprb/story&ssg=hugo" - }, - "xaviablaza-hugo-lodi-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/xaviablaza/hugo-lodi-theme&ssg=hugo" - }, - "xukimseven-hardcandy-jekyll-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/xukimseven/HardCandy-Jekyll&ssg=jekyll" - }, - "xydac-xylo-gatsby-bulma-starter-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/xydac/xylo-gatsby-bulma-starter&ssg=gatsby" - }, - "xzya-hugo-material-blog-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/Xzya/hugo-material-blog&ssg=hugo" - }, - "y7kim-agency-jekyll-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/y7kim/agency-jekyll-theme&ssg=jekyll" - }, - "yihui-hugo-xmag-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/yihui/hugo-xmag&ssg=hugo" - }, - "yihui-hugo-xmin-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/yihui/hugo-xmin&ssg=hugo" - }, - "yizeng-jekyll-theme-simple-texture-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/yizeng/jekyll-theme-simple-texture&ssg=jekyll" - }, - "yonojoy-yax-coming-soon-jekyll-template-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/yonojoy/YAX-Coming-soon-Jekyll-Template&ssg=jekyll" - }, - "yous-whiteglass-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/yous/whiteglass&ssg=jekyll" - }, - "yulijia-freshman21-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/yulijia/freshman21&ssg=jekyll" - }, - "yursan9-manis-hugo-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/yursan9/manis-hugo-theme&ssg=hugo" - }, - "yvesespinosa-jekyll-html5up-fractal-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/yvesespinosa/jekyll-html5up-fractal&ssg=jekyll" - }, - "zerostaticthemes-hugo-serif-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/zerostaticthemes/hugo-serif-theme&ssg=hugo" - }, - "zerostaticthemes-jekyll-serif-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/zerostaticthemes/jekyll-serif-theme&ssg=jekyll" - }, - "zhaohuabing-hugo-theme-cleanwhite-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/zhaohuabing/hugo-theme-cleanwhite&ssg=hugo" - }, - "zhe-hugo-theme-slim-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/zhe/hugo-theme-slim&ssg=hugo" - }, - "zhouyuexie-gatsby-starter-quiet-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/zhouyuexie/gatsby-starter-quiet&ssg=gatsby" - }, - "zwbetz-gh-cayman-hugo-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/zwbetz-gh/cayman-hugo-theme&ssg=hugo" - }, - "zwbetz-gh-cupper-hugo-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/zwbetz-gh/cupper-hugo-theme&ssg=hugo" - }, - "zwbetz-gh-minimal-bootstrap-hugo-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/zwbetz-gh/minimal-bootstrap-hugo-theme&ssg=hugo" - }, - "zwbetz-gh-papercss-hugo-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/zwbetz-gh/papercss-hugo-theme&ssg=hugo" - }, - "zwbetz-gh-vanilla-bootstrap-hugo-theme-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/zwbetz-gh/vanilla-bootstrap-hugo-theme&ssg=hugo" - }, - "zxixia-jekyll-xixia-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/zxixia/jekyll-xixia&ssg=jekyll" - }, - "zzossig-hugo-theme-zdoc-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/zzossig/hugo-theme-zdoc&ssg=hugo" - }, - "zzossig-hugo-theme-zzo-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/zzossig/hugo-theme-zzo&ssg=hugo" - }, - "zzzmisa-hugo-theme-doors-master": { - "createUrl": "https://app.stackbit.com/create?theme=https://github.com/zzzmisa/hugo-theme-doors&ssg=hugo" - } -} \ No newline at end of file +{} \ No newline at end of file diff --git a/data/themes.json b/data/themes.json index 08f516ee4..4eee279d3 100644 --- a/data/themes.json +++ b/data/themes.json @@ -1,585 +1,726 @@ { - "11ty-eleventy-base-blog-master": { - "theme_key": "11ty-eleventy-base-blog-master", + "0xunorthod-gatsby-starter-simple": { + "theme_key": "thecodemint-gatsby-starter-simple", + "file": "gatsby-starter-simple.md", + "name": "gatsby-starter-simple", + "title": "Gastsby Simple Blog", + "github_username": "0xunorthod", + "repo": "0xunorthod/gatsby-starter-simple", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/0xunorthod/gatsby-starter-simple", + "demo_url": "https://thecodemint.github.io/gatsby-starter-simple/", + "stars": 13, + "forks": 2, + "open_issues": 0, + "last_commit": "2020-05-10T15:40:43Z", + "created_at": "2020-04-12T18:31:25Z", + "description": "A simple blogging Gatsby starter", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/thecodemint-gatsby-starter-simple.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thecodemint-gatsby-starter-simple.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thecodemint-gatsby-starter-simple-2x.jpg" + } + }, + "11ty-eleventy-base-blog": { + "theme_key": "11ty-eleventy-base-blog", "file": "eleventy-base-blog.md", "name": "eleventy-base-blog", "title": "Eleventy Base Blog", "github_username": "11ty", "repo": "11ty/eleventy-base-blog", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/11ty/eleventy-base-blog", "demo_url": "https://eleventy-base-blog.netlify.com/", - "stars": 504, - "forks": 307, - "open_issues": 12, - "last_commit": "2021-01-10T21:01:43Z", + "stars": 877, + "forks": 499, + "open_issues": 6, + "last_commit": "2022-06-30T15:21:08Z", "created_at": "2018-01-15T19:28:07Z", "description": "A starter repository for a blog web site using the Eleventy static site generator.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/11ty-eleventy-base-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/11ty-eleventy-base-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/11ty-eleventy-base-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/11ty-eleventy-base-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/11ty-eleventy-base-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/11ty-eleventy-base-blog-2x.jpg" } }, - "12vanblart-gridsome-airtable-starter-master": { - "theme_key": "12vanblart-gridsome-airtable-starter-master", + "12vanblart-gridsome-airtable-starter": { + "theme_key": "12vanblart-gridsome-airtable-starter", "file": "gridsome-airtable-starter.md", "name": "gridsome-airtable-starter", "title": "Gridsome Airtable Starter", "github_username": "TerabyteTiger", "repo": "TerabyteTiger/gridsome-airtable-starter", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/TerabyteTiger/gridsome-airtable-starter", "demo_url": "https://gridsomeairtable.netlify.com/", - "stars": 21, + "stars": 23, "forks": 8, "open_issues": 2, - "last_commit": "2021-01-06T08:45:05Z", + "last_commit": "2020-12-21T15:20:49Z", "created_at": "2019-08-06T11:03:14Z", "description": "A Gridsome starter leveraging Airtable with a minimalist design. ", "images": { - "hires": "https://www.jamstackthemes.dev/capture/12vanblart-gridsome-airtable-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/12vanblart-gridsome-airtable-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/12vanblart-gridsome-airtable-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/12vanblart-gridsome-airtable-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/12vanblart-gridsome-airtable-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/12vanblart-gridsome-airtable-starter-2x.jpg" } }, - "2-rec-hugo-myportfolio-theme-master": { - "theme_key": "2-rec-hugo-myportfolio-theme-master", + "2-rec-hugo-myportfolio-theme": { + "theme_key": "2-rec-hugo-myportfolio-theme", "file": "hugo-myportfolio-theme.md", "name": "hugo-myportfolio-theme", "title": "MyPortfolio", "github_username": "2-REC", "repo": "2-REC/hugo-myportfolio-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/2-REC/hugo-myportfolio-theme", "demo_url": "https://themes.gohugo.io/theme/hugo-myportfolio-theme/", "stars": 8, - "forks": 10, + "forks": 11, "open_issues": 0, "last_commit": "2020-07-25T08:35:46Z", "created_at": "2018-09-10T06:57:49Z", "description": "Adaptation of the HUGO Creative Theme to support several portfolios.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/2-rec-hugo-myportfolio-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/2-rec-hugo-myportfolio-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/2-rec-hugo-myportfolio-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/2-rec-hugo-myportfolio-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/2-rec-hugo-myportfolio-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/2-rec-hugo-myportfolio-theme-2x.jpg" } }, - "416serg-gatsby-starter-lightbox-master": { - "theme_key": "416serg-gatsby-starter-lightbox-master", + "416serg-gatsby-starter-lightbox": { + "theme_key": "416serg-gatsby-starter-lightbox", "file": "gatsby-starter-lightbox.md", "name": "gatsby-starter-lightbox", "title": "Gatsby Starter Lightbox", "github_username": "416serg", "repo": "416serg/gatsby-starter-lightbox", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/416serg/gatsby-starter-lightbox", "demo_url": "https://gatsby-lightbox.416serg.me/", - "stars": 17, - "forks": 8, + "stars": 21, + "forks": 9, "open_issues": 2, "last_commit": "2018-08-05T22:37:05Z", "created_at": "2018-08-05T22:04:23Z", "description": null, - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/416serg-gatsby-starter-lightbox-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/416serg-gatsby-starter-lightbox-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/416serg-gatsby-starter-lightbox-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/416serg-gatsby-starter-lightbox.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/416serg-gatsby-starter-lightbox.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/416serg-gatsby-starter-lightbox-2x.jpg" + } + }, + "526avijitgupta-gokarna": { + "theme_key": "526avijitgupta-gokarna", + "file": "hugo-gokarna.md", + "name": "gokarna", + "title": "Gokarna", + "github_username": "526avijitgupta", + "repo": "526avijitgupta/gokarna", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/526avijitgupta/gokarna", + "demo_url": "https://gokarna-hugo.netlify.app/", + "stars": 147, + "forks": 64, + "open_issues": 11, + "last_commit": "2023-01-09T15:27:11Z", + "created_at": "2021-05-22T08:45:30Z", + "description": "A minimal opinionated theme for Hugo", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/526avijitgupta-gokarna.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/526avijitgupta-gokarna.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/526avijitgupta-gokarna-2x.jpg" } }, - "a9kitkumar-gatsby-ecommerce-master": { - "theme_key": "a9kitkumar-gatsby-ecommerce-master", + "a9kitkumar-gatsby-ecommerce": { + "theme_key": "a9kitkumar-gatsby-ecommerce", "file": "gatsby-ecommerce.md", "name": "Gatsby-Ecommerce", "title": "Gatsby Ecommerce", "github_username": "a9kitkumar", "repo": "a9kitkumar/Gatsby-Ecommerce", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/a9kitkumar/Gatsby-Ecommerce", "demo_url": "https://cosmicjs.com/apps/gatsby-ecommerce-website/demo", - "stars": 5, - "forks": 9, + "stars": 7, + "forks": 7, "open_issues": 0, "last_commit": "2019-04-29T19:44:02Z", "created_at": "2019-04-26T22:45:03Z", "description": null, - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/a9kitkumar-gatsby-ecommerce-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/a9kitkumar-gatsby-ecommerce-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/a9kitkumar-gatsby-ecommerce-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/a9kitkumar-gatsby-ecommerce.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/a9kitkumar-gatsby-ecommerce.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/a9kitkumar-gatsby-ecommerce-2x.jpg" } }, - "aanupam23-hugo-sugoi-master": { - "theme_key": "aanupam23-hugo-sugoi-master", + "aanupam23-hugo-sugoi": { + "theme_key": "aanupam23-hugo-sugoi", "file": "hugo-sugoi.md", "name": "hugo-sugoi", "title": "Sugoi", "github_username": "aanupam23", "repo": "aanupam23/hugo-sugoi", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/aanupam23/hugo-sugoi", "demo_url": "https://gosugoi.onrender.com/", - "stars": 22, - "forks": 12, + "stars": 27, + "forks": 16, "open_issues": 0, "last_commit": "2020-10-19T18:15:08Z", "created_at": "2020-03-21T07:46:30Z", "description": "Hugo-Sugoi - An Ultra Minimal Hugo Theme based on Skeleton", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/aanupam23-hugo-sugoi-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/aanupam23-hugo-sugoi-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/aanupam23-hugo-sugoi-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/aanupam23-hugo-sugoi.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/aanupam23-hugo-sugoi.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/aanupam23-hugo-sugoi-2x.jpg" } }, - "abhaynikam-gatsby-nice-blog-master": { - "theme_key": "abhaynikam-gatsby-nice-blog-master", + "abhaynikam-gatsby-nice-blog": { + "theme_key": "abhaynikam-gatsby-nice-blog", "file": "gatsby-nice-blog.md", "name": "gatsby-nice-blog", "title": "Gatsby Nice Blog", "github_username": "abhaynikam", "repo": "abhaynikam/gatsby-nice-blog", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/abhaynikam/gatsby-nice-blog", "demo_url": "https://nostalgic-liskov-e76c32.netlify.app/", - "stars": 11, - "forks": 11, + "stars": 27, + "forks": 13, "open_issues": 2, - "last_commit": "2021-01-10T10:27:00Z", + "last_commit": "2021-01-01T08:03:34Z", "created_at": "2020-10-10T18:20:49Z", "description": "A nice starter blog post template built using Gatsby.", "images": { - "hires": "https://www.jamstackthemes.dev/capture/abhaynikam-gatsby-nice-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/abhaynikam-gatsby-nice-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/abhaynikam-gatsby-nice-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/abhaynikam-gatsby-nice-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/abhaynikam-gatsby-nice-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/abhaynikam-gatsby-nice-blog-2x.jpg" + } + }, + "abhinavs-cookie": { + "theme_key": "abhinavs-cookie", + "file": "jekyll-cookie.md", + "name": "cookie", + "title": "Cookie", + "github_username": "abhinavs", + "repo": "abhinavs/cookie", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/abhinavs/cookie", + "demo_url": "https://cookie-demo.netlify.app/", + "stars": 69, + "forks": 72, + "open_issues": 2, + "last_commit": "2022-11-15T14:33:14Z", + "created_at": "2021-01-12T20:33:49Z", + "description": "Landing website + Blog using Jekyll & Tailwind CSS", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/abhinavs-cookie.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/abhinavs-cookie.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/abhinavs-cookie-2x.jpg" } }, - "abhinavs-moonwalk-master": { - "theme_key": "abhinavs-moonwalk-master", + "abhinavs-moonwalk": { + "theme_key": "abhinavs-moonwalk", "file": "jekyll-moonwalk.md", "name": "moonwalk", "title": "Moonwalk", "github_username": "abhinavs", "repo": "abhinavs/moonwalk", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/abhinavs/moonwalk", "demo_url": "https://abhinavs.github.io/moonwalk/", - "stars": 5, - "forks": 5, - "open_issues": 0, - "last_commit": "2021-01-07T19:45:19Z", + "stars": 221, + "forks": 297, + "open_issues": 7, + "last_commit": "2022-11-01T12:55:23Z", "created_at": "2020-10-29T02:55:26Z", "description": "A fast & minimal Jekyll blog theme with clean dark mode", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/abhinavs-moonwalk-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/abhinavs-moonwalk-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/abhinavs-moonwalk-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/abhinavs-moonwalk.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/abhinavs-moonwalk.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/abhinavs-moonwalk-2x.jpg" } }, - "abhn-soot-spirits-master": { - "theme_key": "abhn-soot-spirits-master", + "abhn-soot-spirits": { + "theme_key": "abhn-soot-spirits", "file": "jekyll-sootspirits-theme.md", "name": "Soot-Spirits", "title": "Soot Spirits", "github_username": "abhn", "repo": "abhn/Soot-Spirits", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/abhn/Soot-Spirits", "demo_url": "https://sootspirits.github.io/", - "stars": 42, - "forks": 43, + "stars": 44, + "forks": 44, "open_issues": 2, "last_commit": "2018-10-16T03:56:12Z", "created_at": "2017-04-17T17:06:15Z", "description": "A simple responsive two column Jekyll theme. Great for personal blog and basic portfolio website", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/abhn-soot-spirits-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/abhn-soot-spirits-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/abhn-soot-spirits-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/abhn-soot-spirits.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/abhn-soot-spirits.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/abhn-soot-spirits-2x.jpg" } }, - "abhn-wall-e-master": { - "theme_key": "abhn-wall-e-master", + "abhn-wall-e": { + "theme_key": "abhn-wall-e", "file": "jekyll-wall-e-theme.md", "name": "Wall-E", "title": "Wall-E", "github_username": "abhn", "repo": "abhn/Wall-E", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/abhn/Wall-E", "demo_url": "https://wall-e-jekyll.github.io/", "stars": 38, - "forks": 89, + "forks": 88, "open_issues": 5, "last_commit": "2018-01-13T15:53:04Z", "created_at": "2017-10-21T10:30:33Z", "description": "A modern jekyll theme with grid frontpage, beautiful typography, mobile responsive, made with Semantic UI", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/abhn-wall-e-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/abhn-wall-e-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/abhn-wall-e-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/abhn-wall-e.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/abhn-wall-e.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/abhn-wall-e-2x.jpg" } }, - "achariam-elyxel-master": { - "theme_key": "achariam-elyxel-master", + "achariam-elyxel": { + "theme_key": "achariam-elyxel", "file": "elyxel.md", "name": "elyxel", "title": "Elyxel", "github_username": "achariam", "repo": "achariam/elyxel", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/achariam/elyxel", "demo_url": "https://www.elyxel.com/", "stars": 55, - "forks": 5, + "forks": 4, "open_issues": 0, "last_commit": "2017-08-25T03:47:57Z", "created_at": "2016-05-25T02:35:00Z", "description": "Community Software", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/achariam-elyxel-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/achariam-elyxel-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/achariam-elyxel-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/achariam-elyxel.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/achariam-elyxel.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/achariam-elyxel-2x.jpg" } }, - "achary-engimo-master": { - "theme_key": "achary-engimo-master", + "achary-engimo": { + "theme_key": "achary-engimo", "file": "hugo-engimo-theme.md", "name": "engimo", "title": "Engimo", "github_username": "achary", "repo": "achary/engimo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/achary/engimo", "demo_url": "https://engimo.netlify.com/", - "stars": 46, - "forks": 31, - "open_issues": 7, - "last_commit": "2020-01-11T10:00:53Z", + "stars": 48, + "forks": 24, + "open_issues": 6, + "last_commit": "2022-10-25T19:39:37Z", "created_at": "2018-07-26T17:44:04Z", "description": "minimo-eng - Minimalist theme for Hugo tuned for engineering content, based on Minimo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/achary-engimo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/achary-engimo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/achary-engimo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/achary-engimo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/achary-engimo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/achary-engimo-2x.jpg" } }, - "act-labs-gatsby-starter-act-blog-master": { - "theme_key": "act-labs-gatsby-starter-act-blog-master", + "act-labs-gatsby-starter-act-blog": { + "theme_key": "act-labs-gatsby-starter-act-blog", "file": "gatsby-starter-act-blog.md", "name": "gatsby-starter-act-blog", "title": "Gatsby Starter Act Blog", "github_username": "act-labs", "repo": "act-labs/gatsby-starter-act-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/act-labs/gatsby-starter-act-blog", "demo_url": "https://act-labs.github.io", "stars": 2, - "forks": 0, + "forks": 2, "open_issues": 0, "last_commit": "2019-05-31T16:20:49Z", "created_at": "2019-05-31T16:02:20Z", "description": "ACT: Gatsby starter for blog/documentation using MDX, Ant Design, gatsby-plugin-combine", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/act-labs-gatsby-starter-act-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/act-labs-gatsby-starter-act-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/act-labs-gatsby-starter-act-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/act-labs-gatsby-starter-act-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/act-labs-gatsby-starter-act-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/act-labs-gatsby-starter-act-blog-2x.jpg" } }, - "adagio-cantabile-adagio-cantabile.github.io-master": { - "theme_key": "adagio-cantabile-adagio-cantabile.github.io-master", + "adagio-cantabile-adagio-cantabile.github.io": { + "theme_key": "adagio-cantabile-adagio-cantabile.github.io", "file": "jekyll-pink-theme.md", "name": "Adagio-cantabile.github.io", "title": "pink-theme", "github_username": "Adagio-cantabile", "repo": "Adagio-cantabile/Adagio-cantabile.github.io", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Adagio-cantabile/Adagio-cantabile.github.io", - "demo_url": "http://adagio-cantabile.github.io/", + "demo_url": "https://adagio-cantabile.github.io/", "stars": 4, - "forks": 9, + "forks": 8, "open_issues": 0, "last_commit": "2019-03-03T06:00:13Z", "created_at": "2016-04-14T14:34:34Z", "description": null, - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/adagio-cantabile-adagio-cantabile.github.io-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/adagio-cantabile-adagio-cantabile.github.io-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/adagio-cantabile-adagio-cantabile.github.io-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/adagio-cantabile-adagio-cantabile.github.io.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/adagio-cantabile-adagio-cantabile.github.io.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/adagio-cantabile-adagio-cantabile.github.io-2x.jpg" } }, - "adisaktijrs-hexo-theme-minima-master": { - "theme_key": "adisaktijrs-hexo-theme-minima-master", + "adisaktijrs-hexo-theme-minima": { + "theme_key": "adisaktijrs-hexo-theme-minima", "file": "hexo-theme-minima.md", "name": "hexo-theme-minima", "title": "Minima", "github_username": "adisaktijrs", "repo": "adisaktijrs/hexo-theme-minima", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/adisaktijrs/hexo-theme-minima", "demo_url": "https://adisaktijrs.github.io/minima/", - "stars": 24, - "forks": 7, - "open_issues": 0, - "last_commit": "2020-11-09T12:41:26Z", + "stars": 163, + "forks": 43, + "open_issues": 5, + "last_commit": "2022-04-02T13:44:18Z", "created_at": "2020-10-10T06:00:05Z", - "description": "An undoubtedly simple and lightweight dark/light mode theme for Hexo.", - "stale": false, + "description": "An undoubtedly simple and lightweight dark/light theme for Hexo.js", "images": { - "hires": "https://www.jamstackthemes.dev/capture/adisaktijrs-hexo-theme-minima-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/adisaktijrs-hexo-theme-minima-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/adisaktijrs-hexo-theme-minima-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/adisaktijrs-hexo-theme-minima.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/adisaktijrs-hexo-theme-minima.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/adisaktijrs-hexo-theme-minima-2x.jpg" } }, - "adityatelange-hugo-papermod-master": { - "theme_key": "adityatelange-hugo-papermod-master", + "adityatelange-hugo-papermod": { + "theme_key": "adityatelange-hugo-papermod", "file": "hugo-papermod.md", "name": "hugo-PaperMod", "title": "PaperMod", "github_username": "adityatelange", "repo": "adityatelange/hugo-PaperMod", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/adityatelange/hugo-PaperMod", "demo_url": "https://adityatelange.github.io/hugo-PaperMod/", - "stars": 343, - "forks": 166, - "open_issues": 2, - "last_commit": "2021-01-08T18:06:01Z", + "stars": 5338, + "forks": 1689, + "open_issues": 66, + "last_commit": "2022-12-24T15:21:10Z", "created_at": "2020-07-21T04:45:10Z", - "description": "Hugo Theme PaperMod", - "stale": false, + "description": " A fast, clean, responsive Hugo theme.", "images": { - "hires": "https://www.jamstackthemes.dev/capture/adityatelange-hugo-papermod-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/adityatelange-hugo-papermod-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/adityatelange-hugo-papermod-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/adityatelange-hugo-papermod.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/adityatelange-hugo-papermod.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/adityatelange-hugo-papermod-2x.jpg" } }, - "adueck-cayman-blog-master": { - "theme_key": "adueck-cayman-blog-master", + "adueck-cayman-blog": { + "theme_key": "adueck-cayman-blog", "file": "jekyll-cayman-blog.md", "name": "cayman-blog", "title": "Cayman Blog", "github_username": "adueck", "repo": "adueck/cayman-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/adueck/cayman-blog", "demo_url": "https://adueck.github.io/cayman-blog/", "stars": 18, - "forks": 59, + "forks": 64, "open_issues": 0, - "last_commit": "2017-02-21T20:27:56Z", + "last_commit": "2022-09-19T13:48:41Z", "created_at": "2016-01-27T21:10:18Z", "description": "A Jekyll blog template made for simple, readable snippets of your brain drippings.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/adueck-cayman-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/adueck-cayman-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/adueck-cayman-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/adueck-cayman-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/adueck-cayman-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/adueck-cayman-blog-2x.jpg" } }, - "adueck-good-clean-read-master": { - "theme_key": "adueck-good-clean-read-master", + "adueck-good-clean-read": { + "theme_key": "adueck-good-clean-read", "file": "jekyll-good-clean-read.md", "name": "good-clean-read", "title": "Good Clean Read", "github_username": "adueck", "repo": "adueck/good-clean-read", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/adueck/good-clean-read", "demo_url": "https://adueck.github.io/good-clean-read/", - "stars": 203, + "stars": 216, "forks": 114, "open_issues": 0, - "last_commit": "2018-06-07T22:33:43Z", + "last_commit": "2022-09-19T13:50:29Z", "created_at": "2016-01-16T17:35:55Z", "description": "A Jekyll template for publishing clean, readable articles and single-page sites", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/adueck-good-clean-read-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/adueck-good-clean-read-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/adueck-good-clean-read-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/adueck-good-clean-read.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/adueck-good-clean-read.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/adueck-good-clean-read-2x.jpg" } }, - "aerohub-hugo-faq-theme-master": { - "theme_key": "aerohub-hugo-faq-theme-master", + "aerohub-hugo-faq-theme": { + "theme_key": "aerohub-hugo-faq-theme", "file": "hugo-faq-theme.md", "name": "hugo-faq-theme", "title": "Hugo Faq", "github_username": "aerohub", "repo": "aerohub/hugo-faq-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/aerohub/hugo-faq-theme", "demo_url": "https://themes.gohugo.io/theme/hugo-faq-theme/", - "stars": 21, - "forks": 13, + "stars": 23, + "forks": 11, "open_issues": 4, "last_commit": "2016-10-16T22:58:01Z", "created_at": "2016-09-21T20:55:08Z", "description": "Simple FAQ Theme for Hugo", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/aerohub-hugo-faq-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/aerohub-hugo-faq-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/aerohub-hugo-faq-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/aerohub-hugo-faq-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/aerohub-hugo-faq-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/aerohub-hugo-faq-theme-2x.jpg" } }, - "aerohub-hugo-identity-theme-master": { - "theme_key": "aerohub-hugo-identity-theme-master", + "aerohub-hugo-identity-theme": { + "theme_key": "aerohub-hugo-identity-theme", "file": "hugo-identity-theme.md", "name": "hugo-identity-theme", "title": "Hugo Identity", "github_username": "aerohub", "repo": "aerohub/hugo-identity-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/aerohub/hugo-identity-theme", "demo_url": "https://themes.gohugo.io/theme/hugo-identity-theme/", - "stars": 85, - "forks": 44, + "stars": 87, + "forks": 47, "open_issues": 7, "last_commit": "2017-12-09T13:05:28Z", "created_at": "2016-03-31T15:43:08Z", "description": "Little profile/card-style template for Hugo. Based on Identity by HTML5 UP.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/aerohub-hugo-identity-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/aerohub-hugo-identity-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/aerohub-hugo-identity-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/aerohub-hugo-identity-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/aerohub-hugo-identity-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/aerohub-hugo-identity-theme-2x.jpg" } }, - "aerohub-hugo-orbit-theme-master": { - "theme_key": "aerohub-hugo-orbit-theme-master", + "aerohub-hugo-orbit-theme": { + "theme_key": "aerohub-hugo-orbit-theme", "file": "hugo-orbit-theme.md", "name": "hugo-orbit-theme", "title": "Orbit", "github_username": "aerohub", "repo": "aerohub/hugo-orbit-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/aerohub/hugo-orbit-theme", "demo_url": "https://themes.gohugo.io/theme/hugo-orbit-theme/", - "stars": 210, - "forks": 96, - "open_issues": 10, + "stars": 233, + "forks": 103, + "open_issues": 12, "last_commit": "2017-05-15T13:04:10Z", "created_at": "2016-09-26T06:30:06Z", "description": "Great looking resume/CV theme designed for developers.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/aerohub-hugo-orbit-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/aerohub-hugo-orbit-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/aerohub-hugo-orbit-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/aerohub-hugo-orbit-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/aerohub-hugo-orbit-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/aerohub-hugo-orbit-theme-2x.jpg" } }, - "aerohub-hugrid-master": { - "theme_key": "aerohub-hugrid-master", + "aerohub-hugrid": { + "theme_key": "aerohub-hugrid", "file": "hugo-hugrid-theme.md", "name": "hugrid", "title": "Hugrid", "github_username": "aerohub", "repo": "aerohub/hugrid", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/aerohub/hugrid", "demo_url": "https://themes.gohugo.io/theme/hugrid/", - "stars": 132, - "forks": 66, - "open_issues": 12, + "stars": 148, + "forks": 71, + "open_issues": 15, "last_commit": "2018-08-02T08:16:51Z", "created_at": "2016-08-17T16:59:32Z", "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.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/aerohub-hugrid-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/aerohub-hugrid-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/aerohub-hugrid-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/aerohub-hugrid.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/aerohub-hugrid.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/aerohub-hugrid-2x.jpg" } }, - "agility-agility-gatsby-starter-master": { - "theme_key": "agility-agility-gatsby-starter-master", + "agility-agility-gatsby-starter": { + "theme_key": "agility-agility-gatsby-starter", "file": "gatsby-agility-starter.md", "name": "agility-gatsby-starter", "title": "Gatsby Agility", "github_username": "agility", "repo": "agility/agility-gatsby-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/agility/agility-gatsby-starter", "demo_url": "https://agility-gatsby-starter.netlify.com/", - "stars": 16, - "forks": 11, - "open_issues": 16, - "last_commit": "2021-01-06T19:59:48Z", + "stars": 26, + "forks": 13, + "open_issues": 34, + "last_commit": "2021-04-14T13:50:11Z", "created_at": "2019-08-01T14:14:40Z", "description": "A sample GatsbyJS website using the Agility CMS Gatsby source plugin", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/agility-agility-gatsby-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/agility-agility-gatsby-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/agility-agility-gatsby-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/agility-agility-gatsby-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/agility-agility-gatsby-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/agility-agility-gatsby-starter-2x.jpg" + } + }, + "agneym-gatsby-blog-starter": { + "theme_key": "boywithsilverwings-gatsby-blog-starter", + "file": "gatsby-blog-starter.md", + "name": "gatsby-blog-starter", + "title": "Blog Starter", + "github_username": "agneym", + "repo": "agneym/gatsby-blog-starter", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/agneym/gatsby-blog-starter", + "demo_url": "https://vigilant-leakey-a4f8cd.netlify.com/", + "stars": 20, + "forks": 11, + "open_issues": 0, + "last_commit": "2023-01-13T11:24:24Z", + "created_at": "2018-12-25T17:01:37Z", + "description": "A Gatsby Blog Starter with Styled Components ", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/boywithsilverwings-gatsby-blog-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/boywithsilverwings-gatsby-blog-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/boywithsilverwings-gatsby-blog-starter-2x.jpg" + } + }, + "agneym-gatsby-careers-page": { + "theme_key": "boywithsilverwings-gatsby-careers-page", + "file": "gatsby-careers-page.md", + "name": "gatsby-careers-page", + "title": "Gatsby Careers Page", + "github_username": "agneym", + "repo": "agneym/gatsby-careers-page", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/agneym/gatsby-careers-page", + "demo_url": "https://hardcore-darwin-d7328f.netlify.com/", + "stars": 9, + "forks": 3, + "open_issues": 0, + "last_commit": "2018-12-29T19:52:49Z", + "created_at": "2018-12-29T17:56:56Z", + "description": "Job Listing Page", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/boywithsilverwings-gatsby-careers-page.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/boywithsilverwings-gatsby-careers-page.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/boywithsilverwings-gatsby-careers-page-2x.jpg" } }, - "agusmakmun-agusmakmun.github.io-master": { - "theme_key": "agusmakmun-agusmakmun.github.io-master", + "agusmakmun-agusmakmun.github.io": { + "theme_key": "agusmakmun-agusmakmun.github.io", "file": "jekyll-stack-problems.md", "name": "agusmakmun.github.io", "title": "Stack Problems", "github_username": "agusmakmun", "repo": "agusmakmun/agusmakmun.github.io", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/agusmakmun/agusmakmun.github.io", "demo_url": "https://agusmakmun.github.io/", - "stars": 393, - "forks": 570, - "open_issues": 10, - "last_commit": "2020-11-13T01:01:16Z", + "stars": 439, + "forks": 611, + "open_issues": 14, + "last_commit": "2022-12-04T14:48:33Z", "created_at": "2016-04-18T11:12:39Z", "description": ":coffee: Free and open-source Jekyll theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/agusmakmun-agusmakmun.github.io-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/agusmakmun-agusmakmun.github.io-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/agusmakmun-agusmakmun.github.io-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/agusmakmun-agusmakmun.github.io.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/agusmakmun-agusmakmun.github.io.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/agusmakmun-agusmakmun.github.io-2x.jpg" + } + }, + "ahmadajmi-type": { + "theme_key": "aspirethemes-type", + "file": "jekyll-type.md", + "name": "type", + "title": "Jekyll Type", + "github_username": "ahmadajmi", + "repo": "ahmadajmi/type", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/ahmadajmi/type", + "demo_url": "https://type-jekyll.aspirethemes.com/", + "stars": 200, + "forks": 142, + "open_issues": 8, + "last_commit": "2020-06-01T14:12:23Z", + "created_at": "2017-09-25T11:27:16Z", + "description": "🎉 Minimal and Clean Free Jekyll Theme", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/aspirethemes-type.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/aspirethemes-type.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/aspirethemes-type-2x.jpg" } }, - "aigarsdz-brume-master": { - "theme_key": "aigarsdz-brume-master", + "aigarsdz-brume": { + "theme_key": "aigarsdz-brume", "file": "jekyll-brume.md", "name": "brume", "title": "brume", "github_username": "aigarsdz", "repo": "aigarsdz/brume", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/aigarsdz/brume", "demo_url": "https://aigarsdz.github.io/brume/", - "stars": 116, - "forks": 142, + "stars": 121, + "forks": 140, "open_issues": 1, "last_commit": "2019-02-20T16:03:42Z", "created_at": "2013-09-22T10:23:03Z", "description": "A simple Jekyll blog theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/aigarsdz-brume-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/aigarsdz-brume-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/aigarsdz-brume-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/aigarsdz-brume.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/aigarsdz-brume.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/aigarsdz-brume-2x.jpg" } }, - "airrayagroupwebdesign-sciblog-master": { - "theme_key": "airrayagroupwebdesign-sciblog-master", + "airrayagroupwebdesign-sciblog": { + "theme_key": "airrayagroupwebdesign-sciblog", "file": "jekyll-sciblog.md", "name": "sciblog", "title": "Sciblog", "github_username": "yourfreebies", "repo": "yourfreebies/sciblog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/yourfreebies/sciblog", "demo_url": "https://sciblog.yourfreebies.org/", "stars": 16, @@ -588,2538 +729,3034 @@ "last_commit": "2018-06-19T22:55:41Z", "created_at": "2016-02-10T04:25:25Z", "description": "Sci Blog jekyll theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/airrayagroupwebdesign-sciblog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/airrayagroupwebdesign-sciblog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/airrayagroupwebdesign-sciblog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/airrayagroupwebdesign-sciblog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/airrayagroupwebdesign-sciblog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/airrayagroupwebdesign-sciblog-2x.jpg" } }, - "ajayns-gatsby-absurd-master": { - "theme_key": "ajayns-gatsby-absurd-master", + "ajayns-gatsby-absurd": { + "theme_key": "ajayns-gatsby-absurd", "file": "gatsby-absurd.md", "name": "gatsby-absurd", "title": "Gatsby Absurd", "github_username": "ajayns", "repo": "ajayns/gatsby-absurd", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ajayns/gatsby-absurd", "demo_url": "https://gatsby-absurd.surge.sh/", - "stars": 146, - "forks": 57, - "open_issues": 0, + "stars": 175, + "forks": 68, + "open_issues": 12, "last_commit": "2020-06-18T12:16:06Z", "created_at": "2019-04-21T11:32:28Z", "description": "An absurd Gatsby starter", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ajayns-gatsby-absurd-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ajayns-gatsby-absurd-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ajayns-gatsby-absurd-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ajayns-gatsby-absurd.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ajayns-gatsby-absurd.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ajayns-gatsby-absurd-2x.jpg" + } + }, + "akiritsu-project-negya": { + "theme_key": "akiritsu-project-negya", + "file": "jekyll-theme-project-negya.md", + "name": "pRoJEct-NeGYa", + "title": "pRoJEct-NeGYa", + "github_username": "akiritsu", + "repo": "akiritsu/pRoJEct-NeGYa", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/akiritsu/pRoJEct-NeGYa", + "demo_url": "https://akiritsu.github.io/pRoJEct-NeGYa/", + "stars": 7, + "forks": 4, + "open_issues": 0, + "last_commit": "2021-08-22T08:09:15Z", + "created_at": "2021-08-22T07:28:09Z", + "description": "Old version of pRoJEct-VeXEd", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/akiritsu-project-negya.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/akiritsu-project-negya.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/akiritsu-project-negya-2x.jpg" } }, - "akiritsu-project-negya-master": { - "theme_key": "akiritsu-project-negya-master", + "akiritsu-project-vexed": { + "theme_key": "akiritsu-project-negya", "file": "jekyll-theme-project-negya.md", "name": "pRoJEct-VeXEd", "title": "pRoJEct-NeGYa", "github_username": "akiritsu", "repo": "akiritsu/pRoJEct-VeXEd", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/akiritsu/pRoJEct-VeXEd", "demo_url": "https://akiritsu.github.io/pRoJEct-NeGYa/", - "stars": 79, - "forks": 74, - "open_issues": 2, - "last_commit": "2020-11-19T10:56:50Z", + "stars": 91, + "forks": 82, + "open_issues": 5, + "last_commit": "2020-12-08T18:07:13Z", "created_at": "2019-06-15T10:37:38Z", "description": null, - "stale": false + "images": { + "hires": "https://www.jamstackthemes.dev/capture/akiritsu-project-negya.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/akiritsu-project-negya.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/akiritsu-project-negya-2x.jpg" + } }, - "aksakalli-jekyll-doc-theme-gh-pages": { - "theme_key": "aksakalli-jekyll-doc-theme-gh-pages", + "aksakalli-jekyll-doc-theme": { + "theme_key": "aksakalli-jekyll-doc-theme", "file": "jekyll-doc-theme.md", "name": "jekyll-doc-theme", "title": "Jekyll Doc Theme", "github_username": "aksakalli", "repo": "aksakalli/jekyll-doc-theme", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/aksakalli/jekyll-doc-theme", "demo_url": "https://aksakalli.github.io/jekyll-doc-theme", - "stars": 199, - "forks": 194, - "open_issues": 3, - "last_commit": "2020-08-28T13:44:51Z", + "stars": 252, + "forks": 237, + "open_issues": 5, + "last_commit": "2022-06-22T22:24:01Z", "created_at": "2017-05-03T17:48:59Z", "description": "Jekyll theme for creating project documentation websites", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/aksakalli-jekyll-doc-theme-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/aksakalli-jekyll-doc-theme-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/aksakalli-jekyll-doc-theme-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/aksakalli-jekyll-doc-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/aksakalli-jekyll-doc-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/aksakalli-jekyll-doc-theme-2x.jpg" } }, - "akshayagarwal007-jekyll-mono-master": { - "theme_key": "akshayagarwal007-jekyll-mono-master", + "akshayagarwal007-jekyll-mono": { + "theme_key": "akshayagarwal007-jekyll-mono", "file": "jekyll-Mono.md", "name": "Jekyll-Mono", "title": "Jekyll-Mono", "github_username": "AkshayAgarwal007", "repo": "AkshayAgarwal007/Jekyll-Mono", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/AkshayAgarwal007/Jekyll-Mono", "demo_url": "https://akshayagarwal007.github.io/Jekyll-Mono", - "stars": 140, - "forks": 287, + "stars": 135, + "forks": 272, "open_issues": 13, "last_commit": "2016-12-07T14:33:18Z", "created_at": "2016-05-20T19:44:40Z", "description": ":red_circle: Jekyll-Mono :large_blue_circle: is a simple and elegant GitHub Profile cum Blog theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/akshayagarwal007-jekyll-mono-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/akshayagarwal007-jekyll-mono-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/akshayagarwal007-jekyll-mono-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/akshayagarwal007-jekyll-mono.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/akshayagarwal007-jekyll-mono.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/akshayagarwal007-jekyll-mono-2x.jpg" } }, - "akzhy-gatsby-starter-elemental-master": { - "theme_key": "akzhy-gatsby-starter-elemental-master", + "akzhy-gatsby-starter-elemental": { + "theme_key": "akzhy-gatsby-starter-elemental", "file": "gatsby-starter-elemental.md", "name": "gatsby-starter-elemental", "title": "Gatsby Starter Elemental", "github_username": "akzhy", "repo": "akzhy/gatsby-starter-elemental", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/akzhy/gatsby-starter-elemental", "demo_url": "https://elemental.netlify.com", - "stars": 105, - "forks": 46, - "open_issues": 2, + "stars": 132, + "forks": 58, + "open_issues": 16, "last_commit": "2020-10-10T06:03:26Z", "created_at": "2019-07-25T09:28:07Z", "description": "Gatsby starter for portfolio sites", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/akzhy-gatsby-starter-elemental-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/akzhy-gatsby-starter-elemental-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/akzhy-gatsby-starter-elemental-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/akzhy-gatsby-starter-elemental.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/akzhy-gatsby-starter-elemental.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/akzhy-gatsby-starter-elemental-2x.jpg" } }, - "alainpham-alainpham.github.io-master": { - "theme_key": "alainpham-alainpham.github.io-master", + "alainpham-alainpham.github.io": { + "theme_key": "alainpham-alainpham.github.io", "file": "jekyll-theme-SIMPLE-GREEN-TECH.md", "name": "alainpham.github.io", "title": "SIMPLE GREEN TECHBLOG", "github_username": "alainpham", "repo": "alainpham/alainpham.github.io", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/alainpham/alainpham.github.io", "demo_url": "https://alainpham.github.io", - "stars": 17, - "forks": 115, - "open_issues": 2, + "stars": 25, + "forks": 113, + "open_issues": 3, "last_commit": "2020-04-20T20:58:52Z", "created_at": "2016-12-16T09:55:03Z", "description": "Personal blog to present projects and thoughts", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/alainpham-alainpham.github.io-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alainpham-alainpham.github.io-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alainpham-alainpham.github.io-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/alainpham-alainpham.github.io.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alainpham-alainpham.github.io.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alainpham-alainpham.github.io-2x.jpg" } }, - "alanorth-hugo-theme-bootstrap4-blog-master": { - "theme_key": "alanorth-hugo-theme-bootstrap4-blog-master", + "alanorth-hugo-theme-bootstrap4-blog": { + "theme_key": "alanorth-hugo-theme-bootstrap4-blog", "file": "hugo-theme-bootstrap4-blog.md", "name": "hugo-theme-bootstrap4-blog", "title": "Hugo Bootstrap v4 Blog", "github_username": "alanorth", "repo": "alanorth/hugo-theme-bootstrap4-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/alanorth/hugo-theme-bootstrap4-blog", "demo_url": "https://picturingjordan.com/", - "stars": 182, - "forks": 137, - "open_issues": 5, - "last_commit": "2020-12-10T10:56:02Z", + "stars": 206, + "forks": 141, + "open_issues": 7, + "last_commit": "2022-07-29T17:15:32Z", "created_at": "2016-08-28T13:23:53Z", "description": "A blogging-centric Bootstrap v4 theme for the Hugo static site generator.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/alanorth-hugo-theme-bootstrap4-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alanorth-hugo-theme-bootstrap4-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alanorth-hugo-theme-bootstrap4-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/alanorth-hugo-theme-bootstrap4-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alanorth-hugo-theme-bootstrap4-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alanorth-hugo-theme-bootstrap4-blog-2x.jpg" } }, - "alanta-memoirs-theme-master": { - "theme_key": "alanta-memoirs-theme-master", + "alanta-memoirs-theme": { + "theme_key": "alanta-memoirs-theme", "file": "statiq-kontent-memoirs.md", "name": "memoirs-theme", "title": "Memoirs Statiq Kontent Theme", "github_username": "alanta", "repo": "alanta/memoirs-theme", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/alanta/memoirs-theme", "demo_url": "https://alanta.github.io/memoirs-theme", - "stars": 2, - "forks": 0, + "stars": 9, + "forks": 2, "open_issues": 0, - "last_commit": "2020-12-30T04:09:14Z", + "last_commit": "2022-04-29T21:18:21Z", "created_at": "2020-11-18T21:50:10Z", "description": "Memoirs theme for Statiq and Kontent", "images": { - "hires": "https://www.jamstackthemes.dev/capture/alanta-memoirs-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alanta-memoirs-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alanta-memoirs-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/alanta-memoirs-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alanta-memoirs-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alanta-memoirs-theme-2x.jpg" } }, - "alex-shpak-hugo-book-master": { - "theme_key": "alex-shpak-hugo-book-master", + "alex-shpak-hugo-book": { + "theme_key": "alex-shpak-hugo-book", "file": "hugo-book.md", "name": "hugo-book", "title": "Book", "github_username": "alex-shpak", "repo": "alex-shpak/hugo-book", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/alex-shpak/hugo-book", - "demo_url": "https://themes.gohugo.io/theme/hugo-book/", - "stars": 1017, - "forks": 471, - "open_issues": 19, - "last_commit": "2020-12-23T10:51:50Z", + "demo_url": "https://hugo-book-demo.netlify.app/", + "stars": 2173, + "forks": 898, + "open_issues": 48, + "last_commit": "2022-11-11T10:08:54Z", "created_at": "2018-09-05T14:21:31Z", "description": "Hugo documentation theme as simple as plain book", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/alex-shpak-hugo-book-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alex-shpak-hugo-book-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alex-shpak-hugo-book-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/alex-shpak-hugo-book.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alex-shpak-hugo-book.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alex-shpak-hugo-book-2x.jpg" } }, - "alexander-heimbuch-vuepress-theme-casper-master": { - "theme_key": "alexander-heimbuch-vuepress-theme-casper-master", + "alexander-heimbuch-vuepress-theme-casper": { + "theme_key": "alexander-heimbuch-vuepress-theme-casper", "file": "vuepress-theme-casper.md", "name": "vuepress-theme-casper", "title": "Vuepress Casper", "github_username": "alexander-heimbuch", "repo": "alexander-heimbuch/vuepress-theme-casper", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/alexander-heimbuch/vuepress-theme-casper", "demo_url": "https://alexander.heimbu.ch/vuepress-theme-casper/", - "stars": 86, - "forks": 37, - "open_issues": 10, - "last_commit": "2020-05-21T19:23:17Z", + "stars": 108, + "forks": 51, + "open_issues": 25, + "last_commit": "2021-06-10T18:07:43Z", "created_at": "2018-08-26T09:29:18Z", "description": "Ghost default theme ported to vuepress", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/alexander-heimbuch-vuepress-theme-casper-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alexander-heimbuch-vuepress-theme-casper-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alexander-heimbuch-vuepress-theme-casper-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/alexander-heimbuch-vuepress-theme-casper.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alexander-heimbuch-vuepress-theme-casper.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alexander-heimbuch-vuepress-theme-casper-2x.jpg" } }, - "alexanderussell-progress-for-jekyll-master": { - "theme_key": "alexanderussell-progress-for-jekyll-master", + "alexanderussell-progress-for-jekyll": { + "theme_key": "alexanderussell-progress-for-jekyll", "file": "jekyll-progress-for-jekyll.md", "name": "progress-for-jekyll", "title": "Progress", "github_username": "alexanderussell", "repo": "alexanderussell/progress-for-jekyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/alexanderussell/progress-for-jekyll", "demo_url": "https://alexanderussell.github.io/progress-for-jekyll", - "stars": 24, - "forks": 30, + "stars": 25, + "forks": 31, "open_issues": 1, "last_commit": "2016-07-10T01:47:41Z", "created_at": "2016-06-10T18:34:46Z", "description": "A long-form blogging theme for Jekyll.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/alexanderussell-progress-for-jekyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alexanderussell-progress-for-jekyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alexanderussell-progress-for-jekyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/alexanderussell-progress-for-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alexanderussell-progress-for-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alexanderussell-progress-for-jekyll-2x.jpg" } }, - "alexcarpenter-butane-jekyll-theme-gh-pages": { - "theme_key": "alexcarpenter-butane-jekyll-theme-gh-pages", + "alexcarpenter-butane-jekyll-theme": { + "theme_key": "alexcarpenter-butane-jekyll-theme", "file": "jekyll-butane.md", "name": "butane-jekyll-theme", "title": "Butane", "github_username": "alexcarpenter", "repo": "alexcarpenter/butane-jekyll-theme", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/alexcarpenter/butane-jekyll-theme", "demo_url": "https://alexcarpenter.github.io/butane-jekyll-theme/", - "stars": 86, + "stars": 88, "forks": 38, "open_issues": 2, "last_commit": "2017-03-26T14:22:32Z", "created_at": "2015-11-29T18:29:17Z", "description": "Butane Jekyll Theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/alexcarpenter-butane-jekyll-theme-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alexcarpenter-butane-jekyll-theme-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alexcarpenter-butane-jekyll-theme-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/alexcarpenter-butane-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alexcarpenter-butane-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alexcarpenter-butane-jekyll-theme-2x.jpg" } }, - "alexcarpenter-library-jekyll-theme-master": { - "theme_key": "alexcarpenter-library-jekyll-theme-master", + "alexcarpenter-library-jekyll-theme": { + "theme_key": "alexcarpenter-library-jekyll-theme", "file": "jekyll-library.md", "name": "library-jekyll-theme", "title": "Library", "github_username": "alexcarpenter", "repo": "alexcarpenter/library-jekyll-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/alexcarpenter/library-jekyll-theme", - "demo_url": "http://alexcarpenter.me/library-jekyll-theme/", - "stars": 52, - "forks": 32, + "demo_url": "https://alexcarpenter.me/library-jekyll-theme/", + "stars": 56, + "forks": 35, "open_issues": 2, "last_commit": "2017-03-26T14:19:07Z", "created_at": "2016-01-24T15:20:15Z", "description": "Create a digital bookshelf using Jekyll.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/alexcarpenter-library-jekyll-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alexcarpenter-library-jekyll-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alexcarpenter-library-jekyll-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/alexcarpenter-library-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alexcarpenter-library-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alexcarpenter-library-jekyll-theme-2x.jpg" } }, - "alexcarpenter-material-jekyll-theme-master": { - "theme_key": "alexcarpenter-material-jekyll-theme-master", + "alexcarpenter-material-jekyll-theme": { + "theme_key": "alexcarpenter-material-jekyll-theme", "file": "jekyll-materialize.md", "name": "material-jekyll-theme", "title": "Materialize", "github_username": "alexcarpenter", "repo": "alexcarpenter/material-jekyll-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/alexcarpenter/material-jekyll-theme", - "demo_url": "http://alexcarpenter.me/material-jekyll-theme/", - "stars": 196, - "forks": 67, + "demo_url": "https://alexcarpenter.me/material-jekyll-theme/", + "stars": 194, + "forks": 66, "open_issues": 2, "last_commit": "2018-09-21T12:52:23Z", "created_at": "2015-12-01T23:49:41Z", "description": "Material Design inspired Jekyll Theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/alexcarpenter-material-jekyll-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alexcarpenter-material-jekyll-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alexcarpenter-material-jekyll-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/alexcarpenter-material-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alexcarpenter-material-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alexcarpenter-material-jekyll-theme-2x.jpg" } }, - "alexfinn-simple-a-master": { - "theme_key": "alexfinn-simple-a-master", + "alexfinn-simple-a": { + "theme_key": "alexfinn-simple-a", "file": "hugo-simple-a.md", "name": "simple-a", "title": "Simple-A", "github_username": "AlexFinn", "repo": "AlexFinn/simple-a", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/AlexFinn/simple-a", "demo_url": "https://simple-a.alxschwarz.com/", - "stars": 55, - "forks": 26, + "stars": 53, + "forks": 27, "open_issues": 0, "last_commit": "2019-12-02T06:25:40Z", "created_at": "2014-06-19T09:30:36Z", "description": "Minimalistic Hugo theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/alexfinn-simple-a-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alexfinn-simple-a-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alexfinn-simple-a-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/alexfinn-simple-a.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alexfinn-simple-a.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alexfinn-simple-a-2x.jpg" } }, - "alixedi-typewriter-master": { - "theme_key": "alixedi-typewriter-master", - "file": "jekyll-typewriter.md", - "name": "typewriter", - "title": "Typewriter", - "github_username": "alixedi", - "repo": "alixedi/typewriter", + "algokun-gatsby-starter-krisp": { + "theme_key": "mohanmonu777-gatsby-starter-krisp", + "file": "gatsby-starter-krisp.md", + "name": "gatsby-starter-krisp", + "title": "Gatsby Starter Krisp", + "github_username": "algokun", + "repo": "algokun/gatsby-starter-krisp", "branch": "master", - "github_url": "https://github.com/alixedi/typewriter", - "demo_url": "https://alixedi.github.io/typewriter/", - "stars": 46, + "default_branch": "master", + "github_url": "https://github.com/algokun/gatsby-starter-krisp", + "demo_url": "https://gatsby-starter-krisp.netlify.com/", + "stars": 14, + "forks": 7, + "open_issues": 1, + "last_commit": "2019-07-18T17:53:02Z", + "created_at": "2019-07-18T17:06:13Z", + "description": "A minimal, clean and responsive starter built with gatsby", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/mohanmonu777-gatsby-starter-krisp.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mohanmonu777-gatsby-starter-krisp.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mohanmonu777-gatsby-starter-krisp-2x.jpg" + } + }, + "aliifam-jdox": { + "theme_key": "aliifam-jdox", + "file": "jdox.md", + "name": "jdox", + "title": "JDox", + "github_username": "aliifam", + "repo": "aliifam/jdox", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/aliifam/jdox", + "demo_url": "https://aliifam.github.io/jdox/", + "stars": 2, + "forks": 6, + "open_issues": 0, + "last_commit": "2022-06-06T09:46:10Z", + "created_at": "2022-04-10T09:49:17Z", + "description": "JDox open source jekyll theme powered by Github Pages", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/aliifam-jdox.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/aliifam-jdox.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/aliifam-jdox-2x.jpg" + } + }, + "alixedi-typewriter": { + "theme_key": "alixedi-typewriter", + "file": "jekyll-typewriter.md", + "name": "typewriter", + "title": "Typewriter", + "github_username": "alixedi", + "repo": "alixedi/typewriter", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/alixedi/typewriter", + "demo_url": "https://alixedi.github.io/typewriter/", + "stars": 56, "forks": 48, "open_issues": 1, "last_commit": "2014-06-09T11:39:20Z", "created_at": "2014-06-05T18:19:20Z", "description": "A simple and beautiful theme for Jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/alixedi-typewriter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alixedi-typewriter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alixedi-typewriter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/alixedi-typewriter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alixedi-typewriter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alixedi-typewriter-2x.jpg" } }, - "allnightgrocery-hugo-theme-blueberry-detox-master": { - "theme_key": "allnightgrocery-hugo-theme-blueberry-detox-master", + "allnightgrocery-hugo-theme-blueberry-detox": { + "theme_key": "allnightgrocery-hugo-theme-blueberry-detox", "file": "hugo-theme-blueberry-detox.md", "name": "hugo-theme-blueberry-detox", "title": "Detox", "github_username": "allnightgrocery", "repo": "allnightgrocery/hugo-theme-blueberry-detox", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/allnightgrocery/hugo-theme-blueberry-detox", "demo_url": "https://themes.gohugo.io/theme/detox/", - "stars": 53, - "forks": 62, + "stars": 54, + "forks": 59, "open_issues": 2, "last_commit": "2017-01-29T01:05:46Z", "created_at": "2015-04-25T16:51:59Z", "description": null, - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/allnightgrocery-hugo-theme-blueberry-detox-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/allnightgrocery-hugo-theme-blueberry-detox-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/allnightgrocery-hugo-theme-blueberry-detox-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/allnightgrocery-hugo-theme-blueberry-detox.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/allnightgrocery-hugo-theme-blueberry-detox.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/allnightgrocery-hugo-theme-blueberry-detox-2x.jpg" } }, - "alperenbozkurt-jblog-master": { - "theme_key": "alperenbozkurt-jblog-master", + "alperenbozkurt-jblog": { + "theme_key": "alperenbozkurt-jblog", "file": "jekyll-JBlog-theme.md", "name": "JBlog", "title": "JBlog", "github_username": "alperenbozkurt", "repo": "alperenbozkurt/JBlog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/alperenbozkurt/JBlog", "demo_url": "https://alperenbozkurt.net/JBlog/", "stars": 69, - "forks": 108, - "open_issues": 6, - "last_commit": "2017-12-19T11:14:17Z", + "forks": 103, + "open_issues": 2, + "last_commit": "2021-10-31T10:35:24Z", "created_at": "2017-06-14T13:47:32Z", "description": "JBlog is a simple jekyll theme.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/alperenbozkurt-jblog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alperenbozkurt-jblog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alperenbozkurt-jblog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/alperenbozkurt-jblog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alperenbozkurt-jblog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alperenbozkurt-jblog-2x.jpg" } }, - "altcointrading-trading-master": { - "theme_key": "altcointrading-trading-master", + "altcointrading-trading": { + "theme_key": "altcointrading-trading", "file": "jekyll-trading.md", "name": "trading", "title": "Trading", "github_username": "altcointrading", "repo": "altcointrading/trading", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/altcointrading/trading", "demo_url": "https://www.altcointrading.net/", - "stars": 12, - "forks": 7, + "stars": 15, + "forks": 9, "open_issues": 0, - "last_commit": "2017-03-14T17:16:01Z", + "last_commit": "2021-12-19T13:44:31Z", "created_at": "2016-04-08T08:45:41Z", "description": "jekyll theme in newspaper style", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/altcointrading-trading-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/altcointrading-trading-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/altcointrading-trading-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/altcointrading-trading.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/altcointrading-trading.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/altcointrading-trading-2x.jpg" + } + }, + "alxschwarz-simple-a": { + "theme_key": "alexfinn-simple-a", + "file": "hugo-simple-a.md", + "name": "simple-a", + "title": "Simple-A", + "github_username": "alxschwarz", + "repo": "alxschwarz/simple-a", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/alxschwarz/simple-a", + "demo_url": "https://simple-a.alxschwarz.com/", + "stars": 52, + "forks": 28, + "open_issues": 0, + "last_commit": "2019-12-02T06:25:40Z", + "created_at": "2014-06-19T09:30:36Z", + "description": "Minimalistic Hugo theme", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/alexfinn-simple-a.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alexfinn-simple-a.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alexfinn-simple-a-2x.jpg" } }, - "alxshelepenok-gatsby-starter-lumen-master": { - "theme_key": "alxshelepenok-gatsby-starter-lumen-master", + "alxshelepenok-gatsby-starter-lumen": { + "theme_key": "alxshelepenok-gatsby-starter-lumen", "file": "gatsby-starter-lumen.md", "name": "gatsby-starter-lumen", "title": "Gatsby Starter Lumen", "github_username": "alxshelepenok", "repo": "alxshelepenok/gatsby-starter-lumen", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/alxshelepenok/gatsby-starter-lumen", "demo_url": "https://lumen.netlify.com/", - "stars": 1557, - "forks": 522, - "open_issues": 43, - "last_commit": "2021-01-10T00:05:51Z", + "stars": 1906, + "forks": 661, + "open_issues": 6, + "last_commit": "2023-01-23T14:56:17Z", "created_at": "2016-03-11T21:02:37Z", - "description": "A constantly evolving and thoughtful architecture for creating static blogs.", - "stale": false, + "description": "A constantly evolving and thoughtful architecture for creating static blogs with Gatsby.", "images": { - "hires": "https://www.jamstackthemes.dev/capture/alxshelepenok-gatsby-starter-lumen-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alxshelepenok-gatsby-starter-lumen-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alxshelepenok-gatsby-starter-lumen-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/alxshelepenok-gatsby-starter-lumen.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alxshelepenok-gatsby-starter-lumen.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alxshelepenok-gatsby-starter-lumen-2x.jpg" } }, - "alynxzhou-hexo-theme-aria-master": { - "theme_key": "alynxzhou-hexo-theme-aria-master", + "alynxzhou-hexo-theme-aria": { + "theme_key": "alynxzhou-hexo-theme-aria", "file": "hexo-theme-aria.md", "name": "hexo-theme-aria", "title": "Aria", "github_username": "AlynxZhou", "repo": "AlynxZhou/hexo-theme-aria", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/AlynxZhou/hexo-theme-aria", "demo_url": "https://aria.ismyonly.one/", - "stars": 147, - "forks": 51, + "stars": 148, + "forks": 46, "open_issues": 1, "last_commit": "2019-10-20T09:49:18Z", "created_at": "2018-03-15T03:06:27Z", "description": "A Hexo theme inspired by Kalafina's song ARIA.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/alynxzhou-hexo-theme-aria-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alynxzhou-hexo-theme-aria-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alynxzhou-hexo-theme-aria-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/alynxzhou-hexo-theme-aria.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/alynxzhou-hexo-theme-aria.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/alynxzhou-hexo-theme-aria-2x.jpg" } }, - "amandeepmittal-gatsby-bulma-quickstart-master": { - "theme_key": "amandeepmittal-gatsby-bulma-quickstart-master", + "amandeepmittal-gatsby-bulma-quickstart": { + "theme_key": "amandeepmittal-gatsby-bulma-quickstart", "file": "gatsby-bulma-quickstart.md", "name": "gatsby-bulma-quickstart", "title": "Gatsby Bulma Quickstart", "github_username": "amandeepmittal", "repo": "amandeepmittal/gatsby-bulma-quickstart", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/amandeepmittal/gatsby-bulma-quickstart", "demo_url": "https://tender-raman-99e09b.netlify.com/", - "stars": 83, - "forks": 26, - "open_issues": 2, - "last_commit": "2020-08-15T10:00:37Z", + "stars": 86, + "forks": 29, + "open_issues": 18, + "last_commit": "2022-10-07T10:49:49Z", "created_at": "2018-11-26T13:25:33Z", "description": "🚀 + ⚛️ A Quick Way to bootstrap your next Gatsby + Bulma site.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/amandeepmittal-gatsby-bulma-quickstart-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/amandeepmittal-gatsby-bulma-quickstart-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/amandeepmittal-gatsby-bulma-quickstart-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/amandeepmittal-gatsby-bulma-quickstart.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/amandeepmittal-gatsby-bulma-quickstart.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/amandeepmittal-gatsby-bulma-quickstart-2x.jpg" } }, - "ammarjabakji-gatsby-markdown-blog-starter-master": { - "theme_key": "ammarjabakji-gatsby-markdown-blog-starter-master", + "ammarjabakji-gatsby-markdown-blog-starter": { + "theme_key": "ammarjabakji-gatsby-markdown-blog-starter", "file": "gatsby-markdown-blog-starter.md", "name": "gatsby-markdown-blog-starter", "title": "Gatsby Markdown Blog Starter", "github_username": "ammarjabakji", "repo": "ammarjabakji/gatsby-markdown-blog-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ammarjabakji/gatsby-markdown-blog-starter", "demo_url": "https://gatsby-markdown-blog-starter.netlify.com/", - "stars": 37, - "forks": 24, - "open_issues": 1, + "stars": 61, + "forks": 38, + "open_issues": 17, "last_commit": "2020-03-19T16:40:27Z", "created_at": "2019-08-28T09:16:35Z", "description": "Gatsby Markdown Blog Starter, demo link:", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ammarjabakji-gatsby-markdown-blog-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ammarjabakji-gatsby-markdown-blog-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ammarjabakji-gatsby-markdown-blog-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ammarjabakji-gatsby-markdown-blog-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ammarjabakji-gatsby-markdown-blog-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ammarjabakji-gatsby-markdown-blog-starter-2x.jpg" } }, - "anandubajith-block-log-master": { - "theme_key": "anandubajith-block-log-master", + "anandubajith-block-log": { + "theme_key": "anandubajith-block-log", "file": "jekyll-block-log.md", "name": "block-log", "title": "block-log", "github_username": "anandubajith", "repo": "anandubajith/block-log", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/anandubajith/block-log", "demo_url": "https://anandu.net/demo/block-log/", - "stars": 27, - "forks": 35, + "stars": 30, + "forks": 37, "open_issues": 1, "last_commit": "2019-06-16T14:09:14Z", "created_at": "2014-05-16T05:57:19Z", "description": "block-log , A Jekyll theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/anandubajith-block-log-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anandubajith-block-log-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anandubajith-block-log-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/anandubajith-block-log.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anandubajith-block-log.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anandubajith-block-log-2x.jpg" } }, - "andrewbanchich-forty-jekyll-theme-master": { - "theme_key": "andrewbanchich-forty-jekyll-theme-master", + "andrewbanchich-forty-jekyll-theme": { + "theme_key": "andrewbanchich-forty-jekyll-theme", "file": "jekyll-Forty.md", "name": "forty-jekyll-theme", "title": "Forty (by HTML5 Up!)", "github_username": "andrewbanchich", "repo": "andrewbanchich/forty-jekyll-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/andrewbanchich/forty-jekyll-theme", "demo_url": "https://andrewbanchich.github.io/forty-jekyll-theme/", - "stars": 675, - "forks": 1217, - "open_issues": 0, - "last_commit": "2021-01-06T03:21:44Z", + "stars": 904, + "forks": 1780, + "open_issues": 3, + "last_commit": "2022-12-10T02:59:31Z", "created_at": "2016-08-23T00:53:06Z", "description": "A Jekyll version of the \"Forty\" theme by HTML5 UP.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/andrewbanchich-forty-jekyll-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/andrewbanchich-forty-jekyll-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/andrewbanchich-forty-jekyll-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/andrewbanchich-forty-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/andrewbanchich-forty-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/andrewbanchich-forty-jekyll-theme-2x.jpg" + } + }, + "andrewhwanpark-brutalist-blog": { + "theme_key": "andrewhwanpark-brutalist-blog", + "file": "brutalist-blog.md", + "name": "brutalist-blog", + "title": "brutalist-blog", + "github_username": "andrewhwanpark", + "repo": "andrewhwanpark/brutalist-blog", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/andrewhwanpark/brutalist-blog", + "demo_url": "https://andrewhwanpark.github.io/brutalist-blog/", + "stars": 49, + "forks": 35, + "open_issues": 1, + "last_commit": "2021-08-29T22:52:17Z", + "created_at": "2021-07-13T00:42:57Z", + "description": "Minimalistic Jekyll theme that automatically supports dark and light modes for blogs", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/andrewhwanpark-brutalist-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/andrewhwanpark-brutalist-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/andrewhwanpark-brutalist-blog-2x.jpg" } }, - "andrewhwanpark-dark-poole-master": { - "theme_key": "andrewhwanpark-dark-poole-master", + "andrewhwanpark-dark-poole": { + "theme_key": "andrewhwanpark-dark-poole", "file": "dark-poole.md", "name": "dark-poole", "title": "dark-poole", "github_username": "andrewhwanpark", "repo": "andrewhwanpark/dark-poole", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/andrewhwanpark/dark-poole", "demo_url": "https://andrewhwanpark.github.io/dark-poole/", - "stars": 30, - "forks": 57, - "open_issues": 1, + "stars": 100, + "forks": 124, + "open_issues": 4, "last_commit": "2020-10-08T02:52:04Z", "created_at": "2020-08-01T21:54:31Z", "description": "Permanent dark(er) theme for Poole", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/andrewhwanpark-dark-poole-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/andrewhwanpark-dark-poole-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/andrewhwanpark-dark-poole-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/andrewhwanpark-dark-poole.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/andrewhwanpark-dark-poole.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/andrewhwanpark-dark-poole-2x.jpg" + } + }, + "andy-piccalilli-hylia": { + "theme_key": "andybelldesign-hylia", + "file": "11ty-hylia.md", + "name": "hylia", + "title": "Eleventy Hylia", + "github_username": "andy-piccalilli", + "repo": "andy-piccalilli/hylia", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/andy-piccalilli/hylia", + "demo_url": "https://hylia.website/", + "stars": 870, + "forks": 216, + "open_issues": 34, + "last_commit": "2021-10-15T19:09:18Z", + "created_at": "2019-06-11T20:15:02Z", + "description": "Hylia is a lightweight Eleventy starter kit to help you to create your own blog or personal website.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/andybelldesign-hylia.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/andybelldesign-hylia.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/andybelldesign-hylia-2x.jpg" + } + }, + "andy-set-studio-hylia": { + "theme_key": "andybelldesign-hylia", + "file": "11ty-hylia.md", + "name": "hylia", + "title": "Eleventy Hylia", + "github_username": "Andy-set-studio", + "repo": "Andy-set-studio/hylia", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/Andy-set-studio/hylia", + "demo_url": "https://hylia.website/", + "stars": 899, + "forks": 228, + "open_issues": 33, + "last_commit": "2021-10-15T19:09:18Z", + "created_at": "2019-06-11T20:15:02Z", + "description": "Hylia is a lightweight Eleventy starter kit to help you to create your own blog or personal website.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/andybelldesign-hylia.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/andybelldesign-hylia.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/andybelldesign-hylia-2x.jpg" } }, - "andybelldesign-hylia-master": { - "theme_key": "andybelldesign-hylia-master", + "andybelldesign-hylia": { + "theme_key": "andybelldesign-hylia", "file": "11ty-hylia.md", "name": "hylia", "title": "Eleventy Hylia", "github_username": "hankchizljaw", "repo": "hankchizljaw/hylia", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/hankchizljaw/hylia", "demo_url": "https://hylia.website/", - "stars": 830, - "forks": 204, + "stars": 841, + "forks": 205, "open_issues": 33, "last_commit": "2020-06-10T10:47:14Z", "created_at": "2019-06-11T20:15:02Z", "description": "Hylia is a lightweight Eleventy starter kit to help you to create your own blog or personal website.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/andybelldesign-hylia-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/andybelldesign-hylia-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/andybelldesign-hylia-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/andybelldesign-hylia.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/andybelldesign-hylia.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/andybelldesign-hylia-2x.jpg" } }, - "andykenward-gatsby-starter-default-typescript-master": { - "theme_key": "andykenward-gatsby-starter-default-typescript-master", + "andykenward-gatsby-starter-default-typescript": { + "theme_key": "andykenward-gatsby-starter-default-typescript", "file": "gatsby-starter-default-typescript.md", "name": "gatsby-starter-default-typescript", "title": "Gatsby Starter Default Typescript", "github_username": "andykenward", "repo": "andykenward/gatsby-starter-default-typescript", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/andykenward/gatsby-starter-default-typescript", "demo_url": "https://gatsby-starter-default-typescript.netlify.com/", "stars": 13, - "forks": 3, - "open_issues": 6, - "last_commit": "2020-10-10T17:13:39Z", + "forks": 4, + "open_issues": 8, + "last_commit": "2021-08-21T14:19:55Z", "created_at": "2019-05-27T08:33:21Z", "description": "The default Gatsby starter TypeScript", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/andykenward-gatsby-starter-default-typescript-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/andykenward-gatsby-starter-default-typescript-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/andykenward-gatsby-starter-default-typescript-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/andykenward-gatsby-starter-default-typescript.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/andykenward-gatsby-starter-default-typescript.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/andykenward-gatsby-starter-default-typescript-2x.jpg" } }, - "angelostavrow-indigo-master": { - "theme_key": "angelostavrow-indigo-master", + "angelostavrow-indigo": { + "theme_key": "angelostavrow-indigo", "file": "hugo-indigo.md", "name": "indigo", "title": "Hugo Indigo", "github_username": "AngeloStavrow", "repo": "AngeloStavrow/indigo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/AngeloStavrow/indigo", "demo_url": "https://themes.gohugo.io/theme/indigo/", - "stars": 49, + "stars": 54, "forks": 30, "open_issues": 17, "last_commit": "2020-07-20T10:59:29Z", "created_at": "2018-08-14T10:10:53Z", "description": "An IndieWeb-friendly custom theme for Hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/angelostavrow-indigo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/angelostavrow-indigo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/angelostavrow-indigo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/angelostavrow-indigo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/angelostavrow-indigo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/angelostavrow-indigo-2x.jpg" } }, - "ankit-kumar-jat-limp-dark-master": { - "theme_key": "ankit-kumar-jat-limp-dark-master", + "ankit-kumar-jat-limp-dark": { + "theme_key": "ankit-kumar-jat-limp-dark", "file": "limp-dark.md", "name": "limp-dark", "title": "Limp Dark", "github_username": "ankit-kumar-jat", "repo": "ankit-kumar-jat/limp-dark", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/ankit-kumar-jat/limp-dark", "demo_url": "https://ankitkumarjat.me/limp/", "stars": 1, "forks": 1, "open_issues": 0, - "last_commit": "2020-12-03T09:56:42Z", + "last_commit": "2020-12-03T09:56:40Z", "created_at": "2020-11-28T11:54:38Z", - "description": "A lightning fast dark jekyll theme" + "description": "A lightning fast dark jekyll theme", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/ankit-kumar-jat-limp-dark.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ankit-kumar-jat-limp-dark.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ankit-kumar-jat-limp-dark-2x.jpg" + } }, - "ankitsultana-accent-gh-pages": { - "theme_key": "ankitsultana-accent-gh-pages", + "ankitsultana-accent": { + "theme_key": "ankitsultana-accent", "file": "jekyll-accent.md", "name": "accent", "title": "accent", "github_username": "ankitsultana", "repo": "ankitsultana/accent", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/ankitsultana/accent", "demo_url": "https://ankitsultana.com/accent", - "stars": 97, - "forks": 63, + "stars": 101, + "forks": 57, "open_issues": 0, "last_commit": "2017-12-13T10:04:56Z", "created_at": "2016-02-09T18:08:07Z", "description": "A single accent, single column Jekyll Theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ankitsultana-accent-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ankitsultana-accent-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ankitsultana-accent-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ankitsultana-accent.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ankitsultana-accent.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ankitsultana-accent-2x.jpg" } }, - "ankitsultana-chaplin-gh-pages": { - "theme_key": "ankitsultana-chaplin-gh-pages", + "ankitsultana-chaplin": { + "theme_key": "ankitsultana-chaplin", "file": "jekyll-Chaplin.md", "name": "Chaplin", "title": "Chaplin", "github_username": "ankitsultana", "repo": "ankitsultana/Chaplin", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/ankitsultana/Chaplin", "demo_url": "https://ankitsultana.com/Chaplin/", - "stars": 25, + "stars": 23, "forks": 9, "open_issues": 0, "last_commit": "2016-04-05T06:02:38Z", "created_at": "2016-01-08T20:08:48Z", "description": "A minimalistic, single column theme for Jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ankitsultana-chaplin-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ankitsultana-chaplin-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ankitsultana-chaplin-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ankitsultana-chaplin.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ankitsultana-chaplin.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ankitsultana-chaplin-2x.jpg" } }, - "ankitsultana-researcher-gh-pages": { - "theme_key": "ankitsultana-researcher-gh-pages", + "ankitsultana-researcher": { + "theme_key": "ankitsultana-researcher", "file": "jekyll-researcher.md", "name": "researcher", "title": "Researcher", "github_username": "ankitsultana", "repo": "ankitsultana/researcher", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/ankitsultana/researcher", "demo_url": "https://ankitsultana.com/researcher", - "stars": 355, - "forks": 335, + "stars": 508, + "forks": 495, "open_issues": 3, - "last_commit": "2018-12-08T12:13:34Z", + "last_commit": "2021-06-11T12:07:01Z", "created_at": "2016-08-29T16:23:36Z", "description": "A jekyll based resume template", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ankitsultana-researcher-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ankitsultana-researcher-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ankitsultana-researcher-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ankitsultana-researcher.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ankitsultana-researcher.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ankitsultana-researcher-2x.jpg" } }, - "anna-morawska-gatsby-material-design-for-bootstrap-master": { - "theme_key": "anna-morawska-gatsby-material-design-for-bootstrap-master", + "anna-morawska-gatsby-material-design-for-bootstrap": { + "theme_key": "anna-morawska-gatsby-material-design-for-bootstrap", "file": "gatsby-material-design-for-bootstrap.md", "name": "gatsby-material-design-for-bootstrap", "title": "Gatsby Material Design For Bootstrap", "github_username": "anna-morawska", "repo": "anna-morawska/gatsby-material-design-for-bootstrap", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/anna-morawska/gatsby-material-design-for-bootstrap", "demo_url": "https://gatsby-starter.mdbootstrap.com/", - "stars": 11, - "forks": 6, + "stars": 12, + "forks": 7, "open_issues": 0, "last_commit": "2020-02-22T17:59:22Z", "created_at": "2019-01-24T13:06:10Z", "description": "A simple starter which lets you quickly start developing with Gastby and Material Design For Bootstrap", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/anna-morawska-gatsby-material-design-for-bootstrap-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anna-morawska-gatsby-material-design-for-bootstrap-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anna-morawska-gatsby-material-design-for-bootstrap-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/anna-morawska-gatsby-material-design-for-bootstrap.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anna-morawska-gatsby-material-design-for-bootstrap.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anna-morawska-gatsby-material-design-for-bootstrap-2x.jpg" } }, - "anoun-gatsby-starter-material-business-markdown-master": { - "theme_key": "anoun-gatsby-starter-material-business-markdown-master", + "anoun-gatsby-starter-material-business-markdown": { + "theme_key": "anoun-gatsby-starter-material-business-markdown", "file": "gatsby-starter-material-business-markdown.md", "name": "gatsby-starter-material-business-markdown", "title": "Gatsby Material Business Markdown", "github_username": "jaydanurwin", "repo": "jaydanurwin/gatsby-starter-material-business-markdown", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jaydanurwin/gatsby-starter-material-business-markdown", "demo_url": "https://gatsby-starter-material-business-markdown.netlify.com/", "stars": 10, "forks": 7, "open_issues": 0, - "last_commit": "2019-07-08T17:35:47Z", + "last_commit": "2021-01-11T23:19:14Z", "created_at": "2019-05-02T16:21:45Z", "description": "View Live Demo:", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/anoun-gatsby-starter-material-business-markdown-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anoun-gatsby-starter-material-business-markdown-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anoun-gatsby-starter-material-business-markdown-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/anoun-gatsby-starter-material-business-markdown.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anoun-gatsby-starter-material-business-markdown.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anoun-gatsby-starter-material-business-markdown-2x.jpg" } }, - "antonpolishko-hugo-stellar-theme-master": { - "theme_key": "antonpolishko-hugo-stellar-theme-master", + "antonpolishko-hugo-stellar-theme": { + "theme_key": "antonpolishko-hugo-stellar-theme", "file": "hugo-stellar-theme.md", "name": "hugo-stellar-theme", "title": "Stellar", "github_username": "antonpolishko", "repo": "antonpolishko/hugo-stellar-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/antonpolishko/hugo-stellar-theme", "demo_url": "https://themes.gohugo.io/theme/hugo-stellar-theme/", "stars": 23, "forks": 17, - "open_issues": 2, + "open_issues": 3, "last_commit": "2018-09-19T07:55:39Z", "created_at": "2018-06-09T03:49:08Z", "description": "a port of html5up.net/stellar template for Hugo static site generator", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/antonpolishko-hugo-stellar-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/antonpolishko-hugo-stellar-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/antonpolishko-hugo-stellar-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/antonpolishko-hugo-stellar-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/antonpolishko-hugo-stellar-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/antonpolishko-hugo-stellar-theme-2x.jpg" } }, - "anubhavsrivastava-gatsby-starter-aerial-master": { - "theme_key": "anubhavsrivastava-gatsby-starter-aerial-master", + "anubhavsrivastava-gatsby-starter-aerial": { + "theme_key": "anubhavsrivastava-gatsby-starter-aerial", "file": "gatsby-starter-aerial.md", "name": "gatsby-starter-aerial", "title": "Gatsby Starter Aerial", "github_username": "anubhavsrivastava", "repo": "anubhavsrivastava/gatsby-starter-aerial", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/anubhavsrivastava/gatsby-starter-aerial", "demo_url": "https://anubhavsrivastava.github.io/gatsby-starter-aerial/", - "stars": 9, - "forks": 3, + "stars": 13, + "forks": 7, "open_issues": 0, - "last_commit": "2020-07-12T22:52:26Z", + "last_commit": "2022-01-13T09:39:26Z", "created_at": "2019-05-11T14:53:26Z", "description": "Gatsby.js V2 starter template based on aerial by HTML5 UP", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-aerial-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-aerial-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-aerial-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-aerial.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-aerial.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-aerial-2x.jpg" } }, - "anubhavsrivastava-gatsby-starter-casual-master": { - "theme_key": "anubhavsrivastava-gatsby-starter-casual-master", + "anubhavsrivastava-gatsby-starter-casual": { + "theme_key": "anubhavsrivastava-gatsby-starter-casual", "file": "gatsby-starter-casual.md", "name": "gatsby-starter-casual", "title": "Gatsby Starter Casual", "github_username": "anubhavsrivastava", "repo": "anubhavsrivastava/gatsby-starter-casual", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/anubhavsrivastava/gatsby-starter-casual", "demo_url": "https://anubhavsrivastava.github.io/gatsby-starter-casual/", - "stars": 10, - "forks": 9, + "stars": 12, + "forks": 13, "open_issues": 0, - "last_commit": "2020-07-12T22:41:16Z", + "last_commit": "2022-01-13T09:44:33Z", "created_at": "2019-06-27T11:35:02Z", "description": "Gatsby.js V2 starter template based on Casual by startbootstrap", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-casual-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-casual-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-casual-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-casual.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-casual.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-casual-2x.jpg" } }, - "anubhavsrivastava-gatsby-starter-directive-master": { - "theme_key": "anubhavsrivastava-gatsby-starter-directive-master", + "anubhavsrivastava-gatsby-starter-directive": { + "theme_key": "anubhavsrivastava-gatsby-starter-directive", "file": "gatsby-starter-directive.md", "name": "gatsby-starter-directive", "title": "Gatsby Starter Directive", "github_username": "anubhavsrivastava", "repo": "anubhavsrivastava/gatsby-starter-directive", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/anubhavsrivastava/gatsby-starter-directive", "demo_url": "https://anubhavsrivastava.github.io/gatsby-starter-directive/", "stars": 10, - "forks": 6, + "forks": 10, "open_issues": 0, - "last_commit": "2020-07-12T22:49:31Z", + "last_commit": "2022-01-13T09:50:16Z", "created_at": "2019-06-07T18:46:04Z", "description": "Gatsby.js V2 starter template based on Directive by HTML5 UP", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-directive-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-directive-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-directive-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-directive.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-directive.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-directive-2x.jpg" } }, - "anubhavsrivastava-gatsby-starter-eventually-master": { - "theme_key": "anubhavsrivastava-gatsby-starter-eventually-master", + "anubhavsrivastava-gatsby-starter-eventually": { + "theme_key": "anubhavsrivastava-gatsby-starter-eventually", "file": "gatsby-starter-eventually.md", "name": "gatsby-starter-eventually", "title": "Gatsby Starter Eventually", "github_username": "anubhavsrivastava", "repo": "anubhavsrivastava/gatsby-starter-eventually", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/anubhavsrivastava/gatsby-starter-eventually", "demo_url": "https://anubhavsrivastava.github.io/gatsby-starter-eventually/", - "stars": 31, - "forks": 13, + "stars": 33, + "forks": 19, "open_issues": 2, - "last_commit": "2020-07-12T23:01:26Z", + "last_commit": "2022-01-13T09:41:08Z", "created_at": "2019-05-12T07:05:30Z", "description": "Gatsby.js V2 starter template based on Eventually by HTML5 UP", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-eventually-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-eventually-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-eventually-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-eventually.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-eventually.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-eventually-2x.jpg" } }, - "anubhavsrivastava-gatsby-starter-fractal-master": { - "theme_key": "anubhavsrivastava-gatsby-starter-fractal-master", + "anubhavsrivastava-gatsby-starter-fractal": { + "theme_key": "anubhavsrivastava-gatsby-starter-fractal", "file": "gatsby-starter-fractal.md", "name": "gatsby-starter-fractal", "title": "Gatsby Starter Fractal", "github_username": "anubhavsrivastava", "repo": "anubhavsrivastava/gatsby-starter-fractal", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/anubhavsrivastava/gatsby-starter-fractal", "demo_url": "https://anubhavsrivastava.github.io/gatsby-starter-fractal/", - "stars": 15, - "forks": 5, - "open_issues": 1, - "last_commit": "2020-07-12T22:49:00Z", + "stars": 21, + "forks": 10, + "open_issues": 0, + "last_commit": "2022-01-13T09:50:03Z", "created_at": "2019-06-15T06:39:38Z", "description": "Gatsby.js V2 starter template based on Fractal by HTML5 UP", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-fractal-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-fractal-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-fractal-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-fractal.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-fractal.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-fractal-2x.jpg" } }, - "anubhavsrivastava-gatsby-starter-grayscale-master": { - "theme_key": "anubhavsrivastava-gatsby-starter-grayscale-master", + "anubhavsrivastava-gatsby-starter-grayscale": { + "theme_key": "anubhavsrivastava-gatsby-starter-grayscale", "file": "gatsby-starter-grayscale.md", "name": "gatsby-starter-grayscale", "title": "Gatsby Starter Grayscale", "github_username": "anubhavsrivastava", "repo": "anubhavsrivastava/gatsby-starter-grayscale", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/anubhavsrivastava/gatsby-starter-grayscale", "demo_url": "https://anubhavsrivastava.github.io/gatsby-starter-grayscale/", - "stars": 14, - "forks": 9, - "open_issues": 0, - "last_commit": "2020-07-12T22:41:54Z", + "stars": 25, + "forks": 26, + "open_issues": 1, + "last_commit": "2022-01-13T09:44:47Z", "created_at": "2019-06-24T05:52:10Z", "description": "Gatsby.js V2 starter template based on Grayscale by startbootstrap", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-grayscale-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-grayscale-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-grayscale-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-grayscale.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-grayscale.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-grayscale-2x.jpg" } }, - "anubhavsrivastava-gatsby-starter-highlights-master": { - "theme_key": "anubhavsrivastava-gatsby-starter-highlights-master", + "anubhavsrivastava-gatsby-starter-highlights": { + "theme_key": "anubhavsrivastava-gatsby-starter-highlights", "file": "gatsby-starter-highlights.md", "name": "gatsby-starter-highlights", "title": "Gatsby Starter Highlights", "github_username": "anubhavsrivastava", "repo": "anubhavsrivastava/gatsby-starter-highlights", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/anubhavsrivastava/gatsby-starter-highlights", "demo_url": "https://anubhavsrivastava.github.io/gatsby-starter-highlights/", - "stars": 10, - "forks": 8, + "stars": 16, + "forks": 13, "open_issues": 0, - "last_commit": "2020-07-12T22:48:29Z", + "last_commit": "2022-01-13T09:40:56Z", "created_at": "2019-05-25T11:08:00Z", "description": "Gatsby.js V2 starter template based on highlights by HTML5 UP", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-highlights-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-highlights-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-highlights-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-highlights.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-highlights.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-highlights-2x.jpg" } }, - "anubhavsrivastava-gatsby-starter-hyperspace-master": { - "theme_key": "anubhavsrivastava-gatsby-starter-hyperspace-master", + "anubhavsrivastava-gatsby-starter-hyperspace": { + "theme_key": "anubhavsrivastava-gatsby-starter-hyperspace", "file": "gatsby-starter-hyperspace.md", "name": "gatsby-starter-hyperspace", "title": "Gatsby Starter Hyperspace", "github_username": "anubhavsrivastava", "repo": "anubhavsrivastava/gatsby-starter-hyperspace", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/anubhavsrivastava/gatsby-starter-hyperspace", "demo_url": "https://anubhavsrivastava.github.io/gatsby-starter-hyperspace/", - "stars": 24, - "forks": 19, + "stars": 26, + "forks": 20, "open_issues": 1, - "last_commit": "2020-07-12T23:00:59Z", + "last_commit": "2022-01-13T09:40:48Z", "created_at": "2019-05-11T10:32:19Z", "description": "Gatsby.js V2 starter template based on Hyperspace by HTML5 UP", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-hyperspace-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-hyperspace-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-hyperspace-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-hyperspace.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-hyperspace.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-hyperspace-2x.jpg" } }, - "anubhavsrivastava-gatsby-starter-identity-master": { - "theme_key": "anubhavsrivastava-gatsby-starter-identity-master", + "anubhavsrivastava-gatsby-starter-identity": { + "theme_key": "anubhavsrivastava-gatsby-starter-identity", "file": "gatsby-starter-identity.md", "name": "gatsby-starter-identity", "title": "Gatsby Starter Identity", "github_username": "anubhavsrivastava", "repo": "anubhavsrivastava/gatsby-starter-identity", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/anubhavsrivastava/gatsby-starter-identity", "demo_url": "https://anubhavsrivastava.github.io/gatsby-starter-identity/", - "stars": 18, - "forks": 5, + "stars": 16, + "forks": 8, "open_issues": 0, - "last_commit": "2020-07-12T22:47:59Z", + "last_commit": "2022-01-13T09:40:40Z", "created_at": "2019-05-12T09:28:43Z", "description": "Gatsby.js V2 starter template based on Identity by HTML5 UP", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-identity-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-identity-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-identity-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-identity.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-identity.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-identity-2x.jpg" } }, - "anubhavsrivastava-gatsby-starter-multiverse-master": { - "theme_key": "anubhavsrivastava-gatsby-starter-multiverse-master", + "anubhavsrivastava-gatsby-starter-multiverse": { + "theme_key": "anubhavsrivastava-gatsby-starter-multiverse", "file": "gatsby-starter-multiverse.md", "name": "gatsby-starter-multiverse", "title": "Gatsby Starter Multiverse", "github_username": "anubhavsrivastava", "repo": "anubhavsrivastava/gatsby-starter-multiverse", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/anubhavsrivastava/gatsby-starter-multiverse", "demo_url": "https://anubhavsrivastava.github.io/gatsby-starter-multiverse/", - "stars": 13, - "forks": 5, - "open_issues": 1, - "last_commit": "2020-07-12T22:47:31Z", + "stars": 17, + "forks": 10, + "open_issues": 2, + "last_commit": "2022-01-13T09:40:31Z", "created_at": "2019-05-25T06:49:49Z", "description": "Gatsby.js V2 starter template based on multiverse by HTML5 UP", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-multiverse-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-multiverse-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-multiverse-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-multiverse.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-multiverse.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-multiverse-2x.jpg" } }, - "anubhavsrivastava-gatsby-starter-newage-master": { - "theme_key": "anubhavsrivastava-gatsby-starter-newage-master", + "anubhavsrivastava-gatsby-starter-newage": { + "theme_key": "anubhavsrivastava-gatsby-starter-newage", "file": "gatsby-starter-newage.md", "name": "gatsby-starter-newage", "title": "Gatsby Starter Newage", "github_username": "anubhavsrivastava", "repo": "anubhavsrivastava/gatsby-starter-newage", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/anubhavsrivastava/gatsby-starter-newage", "demo_url": "https://anubhavsrivastava.github.io/gatsby-starter-newage/", - "stars": 20, - "forks": 8, - "open_issues": 0, + "stars": 29, + "forks": 16, + "open_issues": 1, "last_commit": "2020-07-12T22:42:27Z", "created_at": "2019-07-12T17:18:52Z", "description": " Gatsby.js V2 starter template based on New Age by startbootstrap", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-newage-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-newage-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-newage-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-newage.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-newage.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-newage-2x.jpg" } }, - "anubhavsrivastava-gatsby-starter-overflow-master": { - "theme_key": "anubhavsrivastava-gatsby-starter-overflow-master", + "anubhavsrivastava-gatsby-starter-overflow": { + "theme_key": "anubhavsrivastava-gatsby-starter-overflow", "file": "gatsby-starter-overflow.md", "name": "gatsby-starter-overflow", "title": "Gatsby Starter Overflow", "github_username": "anubhavsrivastava", "repo": "anubhavsrivastava/gatsby-starter-overflow", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/anubhavsrivastava/gatsby-starter-overflow", "demo_url": "https://anubhavsrivastava.github.io/gatsby-starter-overflow/", - "stars": 11, - "forks": 7, + "stars": 12, + "forks": 9, "open_issues": 0, - "last_commit": "2020-07-12T22:46:51Z", + "last_commit": "2022-01-13T09:40:06Z", "created_at": "2019-05-19T10:28:43Z", "description": "Gatsby.js V2 starter template based on overflow by HTML5 UP", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-overflow-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-overflow-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-overflow-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-overflow.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-overflow.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-overflow-2x.jpg" } }, - "anubhavsrivastava-gatsby-starter-paradigmshift-master": { - "theme_key": "anubhavsrivastava-gatsby-starter-paradigmshift-master", + "anubhavsrivastava-gatsby-starter-paradigmshift": { + "theme_key": "anubhavsrivastava-gatsby-starter-paradigmshift", "file": "gatsby-starter-paradigmshift.md", "name": "gatsby-starter-paradigmshift", "title": "Gatsby Paradigmshift", "github_username": "anubhavsrivastava", "repo": "anubhavsrivastava/gatsby-starter-paradigmshift", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/anubhavsrivastava/gatsby-starter-paradigmshift", "demo_url": "https://anubhavsrivastava.github.io/gatsby-starter-paradigmshift/", - "stars": 14, - "forks": 9, + "stars": 16, + "forks": 12, "open_issues": 0, - "last_commit": "2020-07-12T22:46:14Z", + "last_commit": "2022-01-13T09:40:20Z", "created_at": "2019-05-31T06:48:11Z", "description": "Gatsby.js V2 starter template based on Paradigm Shift by HTML5 UP", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-paradigmshift-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-paradigmshift-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-paradigmshift-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-paradigmshift.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-paradigmshift.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-paradigmshift-2x.jpg" } }, - "anubhavsrivastava-gatsby-starter-prologue-master": { - "theme_key": "anubhavsrivastava-gatsby-starter-prologue-master", + "anubhavsrivastava-gatsby-starter-prologue": { + "theme_key": "anubhavsrivastava-gatsby-starter-prologue", "file": "gatsby-starter-prologue.md", "name": "gatsby-starter-prologue", "title": "Gatsby Starter Prologue", "github_username": "anubhavsrivastava", "repo": "anubhavsrivastava/gatsby-starter-prologue", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/anubhavsrivastava/gatsby-starter-prologue", "demo_url": "https://anubhavsrivastava.github.io/gatsby-starter-prologue/", - "stars": 22, - "forks": 8, + "stars": 24, + "forks": 12, "open_issues": 0, - "last_commit": "2020-07-12T18:41:12Z", + "last_commit": "2022-01-13T09:39:47Z", "created_at": "2019-05-18T11:51:19Z", "description": "Gatsby.js V2 starter template based on readonly by HTML5 UP", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-prologue-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-prologue-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-prologue-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-prologue.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-prologue.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-prologue-2x.jpg" } }, - "anubhavsrivastava-gatsby-starter-readonly-master": { - "theme_key": "anubhavsrivastava-gatsby-starter-readonly-master", + "anubhavsrivastava-gatsby-starter-readonly": { + "theme_key": "anubhavsrivastava-gatsby-starter-readonly", "file": "gatsby-starter-readonly.md", "name": "gatsby-starter-readonly", "title": "Gatsby Starter Readonly", "github_username": "anubhavsrivastava", "repo": "anubhavsrivastava/gatsby-starter-readonly", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/anubhavsrivastava/gatsby-starter-readonly", "demo_url": "https://anubhavsrivastava.github.io/gatsby-starter-readonly/", - "stars": 7, - "forks": 1, - "open_issues": 0, - "last_commit": "2020-07-12T22:45:15Z", + "stars": 9, + "forks": 2, + "open_issues": 1, + "last_commit": "2022-01-04T12:37:57Z", "created_at": "2019-05-17T10:45:41Z", "description": "Gatsby.js V2 starter template based on readonly by HTML5 UP", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-readonly-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-readonly-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-readonly-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-readonly.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-readonly.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-readonly-2x.jpg" } }, - "anubhavsrivastava-gatsby-starter-resume-master": { - "theme_key": "anubhavsrivastava-gatsby-starter-resume-master", + "anubhavsrivastava-gatsby-starter-resume": { + "theme_key": "anubhavsrivastava-gatsby-starter-resume", "file": "gatsby-starter-resume.md", "name": "gatsby-starter-resume", "title": "Gatsby Starter Resume", "github_username": "anubhavsrivastava", "repo": "anubhavsrivastava/gatsby-starter-resume", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/anubhavsrivastava/gatsby-starter-resume", "demo_url": "https://anubhavsrivastava.github.io/gatsby-starter-resume/", - "stars": 56, - "forks": 15, + "stars": 66, + "forks": 27, "open_issues": 3, - "last_commit": "2020-07-12T22:57:36Z", + "last_commit": "2022-01-13T09:44:56Z", "created_at": "2019-06-22T16:31:13Z", "description": "Gatsby.js V2 starter template based on Resume by startbootstrap", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-resume-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-resume-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-resume-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-resume.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-resume.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-resume-2x.jpg" } }, - "anubhavsrivastava-gatsby-starter-solidstate-master": { - "theme_key": "anubhavsrivastava-gatsby-starter-solidstate-master", + "anubhavsrivastava-gatsby-starter-solidstate": { + "theme_key": "anubhavsrivastava-gatsby-starter-solidstate", "file": "gatsby-starter-solidstate.md", "name": "gatsby-starter-solidstate", "title": "Gatsby Starter Solidstate", "github_username": "anubhavsrivastava", "repo": "anubhavsrivastava/gatsby-starter-solidstate", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/anubhavsrivastava/gatsby-starter-solidstate", "demo_url": "https://anubhavsrivastava.github.io/gatsby-starter-solidstate/", - "stars": 24, - "forks": 10, - "open_issues": 0, - "last_commit": "2020-07-12T22:44:39Z", + "stars": 31, + "forks": 21, + "open_issues": 2, + "last_commit": "2022-01-13T09:45:57Z", "created_at": "2019-06-08T18:34:29Z", "description": "Gatsby.js V2 starter template based on Solid State by HTML5 UP", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-solidstate-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-solidstate-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-solidstate-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-solidstate.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-solidstate.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-solidstate-2x.jpg" } }, - "anubhavsrivastava-gatsby-starter-spectral-master": { - "theme_key": "anubhavsrivastava-gatsby-starter-spectral-master", + "anubhavsrivastava-gatsby-starter-spectral": { + "theme_key": "anubhavsrivastava-gatsby-starter-spectral", "file": "gatsby-starter-spectral.md", "name": "gatsby-starter-spectral", "title": "Gatsby Starter Spectral", "github_username": "anubhavsrivastava", "repo": "anubhavsrivastava/gatsby-starter-spectral", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/anubhavsrivastava/gatsby-starter-spectral", "demo_url": "https://anubhavsrivastava.github.io/gatsby-starter-spectral/", - "stars": 32, - "forks": 23, + "stars": 45, + "forks": 30, "open_issues": 1, - "last_commit": "2020-07-12T22:43:14Z", + "last_commit": "2022-01-13T09:45:15Z", "created_at": "2019-06-08T08:30:22Z", "description": "Gatsby.js V2 starter template based on Spectral by HTML5 UP", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-spectral-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-spectral-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-spectral-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-spectral.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-spectral.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-spectral-2x.jpg" } }, - "anubhavsrivastava-gatsby-starter-stylish-master": { - "theme_key": "anubhavsrivastava-gatsby-starter-stylish-master", + "anubhavsrivastava-gatsby-starter-stylish": { + "theme_key": "anubhavsrivastava-gatsby-starter-stylish", "file": "gatsby-starter-stylish.md", "name": "gatsby-starter-stylish", "title": "Gatsby Starter Stylish", "github_username": "anubhavsrivastava", "repo": "anubhavsrivastava/gatsby-starter-stylish", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/anubhavsrivastava/gatsby-starter-stylish", "demo_url": "https://anubhavsrivastava.github.io/gatsby-starter-stylish/", - "stars": 6, - "forks": 10, + "stars": 9, + "forks": 12, "open_issues": 0, - "last_commit": "2020-07-12T22:44:00Z", + "last_commit": "2022-01-13T09:45:37Z", "created_at": "2019-06-25T11:47:44Z", "description": "Gatsby.js V2 starter template based on Stylish Portfolio by startbootstrap", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-stylish-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-stylish-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-stylish-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/anubhavsrivastava-gatsby-starter-stylish.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-stylish.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-stylish-2x.jpg" + } + }, + "app-generator-eleventy-soft-ui-design": { + "theme_key": "app-generator-eleventy-soft-ui-design", + "file": "11ty-soft-ui-design.md", + "name": "eleventy-soft-ui-design", + "title": "Eleventy Soft UI Design", + "github_username": "app-generator", + "repo": "app-generator/eleventy-soft-ui-design", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/app-generator/eleventy-soft-ui-design", + "demo_url": "https://eleventy-soft-ui.appseed-srv1.com/", + "stars": 25, + "forks": 10, + "open_issues": 1, + "last_commit": "2021-08-07T14:01:20Z", + "created_at": "2021-07-07T10:15:56Z", + "description": "Eleventy (11ty) - Soft UI Design | AppSeed", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/app-generator-eleventy-soft-ui-design.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/app-generator-eleventy-soft-ui-design.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/app-generator-eleventy-soft-ui-design-2x.jpg" } }, - "app-generator-gatsbyjs-starter-tailwindplay-master": { - "theme_key": "app-generator-gatsbyjs-starter-tailwindplay-master", + "app-generator-gatsbyjs-starter-tailwindplay": { + "theme_key": "app-generator-gatsbyjs-starter-tailwindplay", "file": "gatsby-starter-tailwindplay.md", "name": "gatsbyjs-starter-tailwindplay", "title": "Gatsby Starter Tailwindplay", "github_username": "app-generator", "repo": "app-generator/gatsbyjs-starter-tailwindplay", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/app-generator/gatsbyjs-starter-tailwindplay", "demo_url": "https://gatsbyjs-starter-tailwindplay.appseed.us/", - "stars": 53, - "forks": 23, + "stars": 70, + "forks": 21, "open_issues": 1, "last_commit": "2019-09-04T19:39:47Z", "created_at": "2019-06-24T18:26:49Z", "description": "GatsbyJS Tailwind Starter - TailwindPlay", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/app-generator-gatsbyjs-starter-tailwindplay-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/app-generator-gatsbyjs-starter-tailwindplay-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/app-generator-gatsbyjs-starter-tailwindplay-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/app-generator-gatsbyjs-starter-tailwindplay.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/app-generator-gatsbyjs-starter-tailwindplay.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/app-generator-gatsbyjs-starter-tailwindplay-2x.jpg" } }, - "appernetic-hugo-nederburg-theme-master": { - "theme_key": "appernetic-hugo-nederburg-theme-master", + "appernetic-hugo-nederburg-theme": { + "theme_key": "appernetic-hugo-nederburg-theme", "file": "hugo-nederburg-theme.md", "name": "hugo-nederburg-theme", "title": "Nederburg", "github_username": "appernetic", "repo": "appernetic/hugo-nederburg-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/appernetic/hugo-nederburg-theme", "demo_url": "https://themes.gohugo.io/theme/hugo-nederburg-theme/", - "stars": 106, - "forks": 92, - "open_issues": 25, + "stars": 107, + "forks": 90, + "open_issues": 26, "last_commit": "2019-07-12T15:22:04Z", "created_at": "2018-03-16T01:18:29Z", "description": "Nederburg is a fast and secure hugo theme and is a port of the Tracks WP theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/appernetic-hugo-nederburg-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/appernetic-hugo-nederburg-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/appernetic-hugo-nederburg-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/appernetic-hugo-nederburg-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/appernetic-hugo-nederburg-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/appernetic-hugo-nederburg-theme-2x.jpg" } }, - "arhen-hugo-cereus-pro-theme-master": { - "theme_key": "arhen-hugo-cereus-pro-theme-master", - "file": "cereus-pro.md", - "name": "hugo-cereus-pro-theme", - "title": "Cereus Pro", - "github_username": "arhen", - "repo": "arhen/hugo-cereus-pro-theme", - "branch": "master", - "github_url": "https://github.com/arhen/hugo-cereus-pro-theme", - "demo_url": "https://cereus-pro.netlify.com/", - "stars": 5, - "forks": 2, - "open_issues": 0, - "last_commit": "2019-04-28T20:25:27Z", - "created_at": "2019-04-28T13:21:23Z", + "apvarun-blist-hugo-theme": { + "theme_key": "apvarun-blist-hugo-theme", + "file": "hugo-blist.md", + "name": "blist-hugo-theme", + "title": "Blist", + "github_username": "apvarun", + "repo": "apvarun/blist-hugo-theme", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/apvarun/blist-hugo-theme", + "demo_url": "https://blist.vercel.app/", + "stars": 211, + "forks": 94, + "open_issues": 9, + "last_commit": "2023-01-09T20:18:03Z", + "created_at": "2021-07-15T11:59:59Z", + "description": "Blist is a clean and fast blog theme for your Hugo site.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/apvarun-blist-hugo-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/apvarun-blist-hugo-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/apvarun-blist-hugo-theme-2x.jpg" + } + }, + "apvarun-digital-garden-hugo-theme": { + "theme_key": "apvarun-digital-garden-hugo-theme", + "file": "hugo-digital-garden.md", + "name": "digital-garden-hugo-theme", + "title": "Digital Garden", + "github_username": "apvarun", + "repo": "apvarun/digital-garden-hugo-theme", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/apvarun/digital-garden-hugo-theme", + "demo_url": "https://digital-garden-hugo-theme.vercel.app/", + "stars": 121, + "forks": 56, + "open_issues": 2, + "last_commit": "2023-01-21T20:06:35Z", + "created_at": "2021-12-17T06:26:49Z", + "description": "Build your own personal Digital Garden effortlessly with this Hugo theme", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/apvarun-digital-garden-hugo-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/apvarun-digital-garden-hugo-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/apvarun-digital-garden-hugo-theme-2x.jpg" + } + }, + "apvarun-productlog-nextjs-theme": { + "theme_key": "apvarun-productlog-nextjs-theme", + "file": "productlog-nextjs-theme.md", + "name": "productlog-nextjs-theme", + "title": "NextJS-based changelog theme for your product", + "github_username": "apvarun", + "repo": "apvarun/productlog-nextjs-theme", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/apvarun/productlog-nextjs-theme", + "demo_url": "https://productlog-theme.vercel.app/", + "stars": 24, + "forks": 7, + "open_issues": 0, + "last_commit": "2022-12-24T18:01:28Z", + "created_at": "2021-09-23T18:28:40Z", + "description": "NextJS-based changelog theme for your product", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/apvarun-productlog-nextjs-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/apvarun-productlog-nextjs-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/apvarun-productlog-nextjs-theme-2x.jpg" + } + }, + "apvarun-showfolio-hugo-theme": { + "theme_key": "apvarun-showfolio-hugo-theme", + "file": "hugo-showfolio.md", + "name": "showfolio-hugo-theme", + "title": "ShowFolio", + "github_username": "apvarun", + "repo": "apvarun/showfolio-hugo-theme", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/apvarun/showfolio-hugo-theme", + "demo_url": "https://showfolio.vercel.app/", + "stars": 77, + "forks": 35, + "open_issues": 0, + "last_commit": "2022-09-01T03:24:27Z", + "created_at": "2021-04-24T12:51:41Z", + "description": "Modern portfolio theme for your Hugo site", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/apvarun-showfolio-hugo-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/apvarun-showfolio-hugo-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/apvarun-showfolio-hugo-theme-2x.jpg" + } + }, + "ar363-eleventy-stylus-blog-theme": { + "theme_key": "ar363-eleventy-stylus-blog-theme", + "file": "eleventy-stylus-blog-theme.md", + "name": "eleventy-stylus-blog-theme", + "title": "Eleventy + Stylus Blog Theme - Purple", + "github_username": "ar363", + "repo": "ar363/eleventy-stylus-blog-theme", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/ar363/eleventy-stylus-blog-theme", + "demo_url": "https://eleventy-stylus-blog-theme-ar363.vercel.app/", + "stars": 45, + "forks": 9, + "open_issues": 1, + "last_commit": "2023-01-03T01:44:01Z", + "created_at": "2021-03-23T06:34:50Z", + "description": "Repository for a template blog website built out using Eleventy static site generator and Stylus CSS preprocessor", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/ar363-eleventy-stylus-blog-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ar363-eleventy-stylus-blog-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ar363-eleventy-stylus-blog-theme-2x.jpg" + } + }, + "arhen-hugo-cereus-pro-theme": { + "theme_key": "arhen-hugo-cereus-pro-theme", + "file": "cereus-pro.md", + "name": "hugo-cereus-pro-theme", + "title": "Cereus Pro", + "github_username": "arhen", + "repo": "arhen/hugo-cereus-pro-theme", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/arhen/hugo-cereus-pro-theme", + "demo_url": "https://cereus-pro.netlify.com/", + "stars": 7, + "forks": 3, + "open_issues": 1, + "last_commit": "2019-04-28T20:25:27Z", + "created_at": "2019-04-28T13:21:23Z", "description": " Blazing Fast & Minimalist Blog Hugo Themes for Developer", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/arhen-hugo-cereus-pro-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/arhen-hugo-cereus-pro-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/arhen-hugo-cereus-pro-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/arhen-hugo-cereus-pro-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/arhen-hugo-cereus-pro-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/arhen-hugo-cereus-pro-theme-2x.jpg" } }, - "ariestiyansyah-naringu-master": { - "theme_key": "ariestiyansyah-naringu-master", + "ariestiyansyah-naringu": { + "theme_key": "ariestiyansyah-naringu", "file": "jekyll-naringu.md", "name": "naringu", "title": "Naringu", "github_username": "ariestiyansyah", "repo": "ariestiyansyah/naringu", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ariestiyansyah/naringu", - "demo_url": "http://naringu.oonlab.com", - "stars": 71, - "forks": 51, + "demo_url": "https://naringu.oonlab.com", + "stars": 78, + "forks": 54, "open_issues": 0, "last_commit": "2019-05-15T10:17:46Z", "created_at": "2015-02-20T17:02:41Z", "description": "Naringu is jekyll dark theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ariestiyansyah-naringu-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ariestiyansyah-naringu-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ariestiyansyah-naringu-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ariestiyansyah-naringu.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ariestiyansyah-naringu.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ariestiyansyah-naringu-2x.jpg" + } + }, + "arjayosma-nextacular": { + "theme_key": "arjayosma-nextacular", + "file": "nextacular.md", + "name": "nextacular", + "title": "Nextacular", + "github_username": "arjayosma", + "repo": "arjayosma/nextacular", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/arjayosma/nextacular", + "demo_url": "https://demo.nextacular.co", + "stars": 155, + "forks": 27, + "open_issues": 6, + "last_commit": "2022-04-24T01:19:08Z", + "created_at": "2022-01-07T01:12:41Z", + "description": "An open-source starter kit that will help you build full-stack multi-tenant SaaS platforms efficiently and help you focus on developing your core SaaS features. Built on top of popular and modern technologies such as Next JS, Tailwind, Prisma, and Stripe.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/arjayosma-nextacular.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/arjayosma-nextacular.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/arjayosma-nextacular-2x.jpg" } }, - "arkadianriver-spectral-master": { - "theme_key": "arkadianriver-spectral-master", + "arkadianriver-spectral": { + "theme_key": "arkadianriver-spectral", "file": "jekyll-spectral.md", "name": "spectral", "title": "Spectral", "github_username": "arkadianriver", "repo": "arkadianriver/spectral", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/arkadianriver/spectral", "demo_url": "https://arkadianriver.github.io/spectral/", - "stars": 362, - "forks": 382, + "stars": 378, + "forks": 394, "open_issues": 1, "last_commit": "2017-06-26T23:35:35Z", "created_at": "2016-02-20T06:39:31Z", "description": "A jekyll theme for the spectral template by html5up.net (@ajlkn). Demo: http://arkadianriver.github.io/spectral. How to jekyll: http://jekyllrb.com/docs/home/. If you intend to use this theme as a blog site with more than a few pages, have a look at my fork at https://github.com/arkadianriver/arkadianriver.com", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/arkadianriver-spectral-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/arkadianriver-spectral-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/arkadianriver-spectral-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/arkadianriver-spectral.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/arkadianriver-spectral.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/arkadianriver-spectral-2x.jpg" } }, - "aron-bordin-neo-hpstr-jekyll-theme-master": { - "theme_key": "aron-bordin-neo-hpstr-jekyll-theme-master", + "aron-bordin-neo-hpstr-jekyll-theme": { + "theme_key": "aron-bordin-neo-hpstr-jekyll-theme", "file": "jekyll-neo-hpstr-theme.md", "name": "neo-hpstr-jekyll-theme", "title": "Neo-HPSTR", "github_username": "aron-bordin", "repo": "aron-bordin/neo-hpstr-jekyll-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/aron-bordin/neo-hpstr-jekyll-theme", "demo_url": "https://aron-bordin.github.io/neo-hpstr-jekyll-theme/", - "stars": 217, - "forks": 245, - "open_issues": 18, + "stars": 220, + "forks": 246, + "open_issues": 19, "last_commit": "2016-12-11T15:18:55Z", "created_at": "2015-09-05T00:02:58Z", "description": " A Jekyll blog theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/aron-bordin-neo-hpstr-jekyll-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/aron-bordin-neo-hpstr-jekyll-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/aron-bordin-neo-hpstr-jekyll-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/aron-bordin-neo-hpstr-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/aron-bordin-neo-hpstr-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/aron-bordin-neo-hpstr-jekyll-theme-2x.jpg" } }, - "arpitbatra123-eleventy-blog-mnml-master": { - "theme_key": "arpitbatra123-eleventy-blog-mnml-master", + "arpitbatra123-eleventy-blog-mnml": { + "theme_key": "arpitbatra123-eleventy-blog-mnml", "file": "eleventy-blog-mnml.md", "name": "eleventy-blog-mnml", "title": "Eleventy Minimal Blog", "github_username": "arpitbatra123", "repo": "arpitbatra123/eleventy-blog-mnml", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/arpitbatra123/eleventy-blog-mnml", "demo_url": "https://eleventy-blog-mnml.netlify.com/", - "stars": 38, - "forks": 15, + "stars": 90, + "forks": 26, "open_issues": 3, - "last_commit": "2020-08-07T23:27:38Z", + "last_commit": "2021-10-04T04:39:14Z", "created_at": "2019-07-02T13:08:30Z", "description": "A minimal blog template using eleventy", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/arpitbatra123-eleventy-blog-mnml-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/arpitbatra123-eleventy-blog-mnml-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/arpitbatra123-eleventy-blog-mnml-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/arpitbatra123-eleventy-blog-mnml.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/arpitbatra123-eleventy-blog-mnml.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/arpitbatra123-eleventy-blog-mnml-2x.jpg" } }, - "artemsheludko-adam-blog-master": { - "theme_key": "artemsheludko-adam-blog-master", + "artemsheludko-adam-blog": { + "theme_key": "artemsheludko-adam-blog", "file": "jekyll-adam-blog-theme.md", "name": "adam-blog", "title": "Adam Blog", "github_username": "artemsheludko", "repo": "artemsheludko/adam-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/artemsheludko/adam-blog", "demo_url": "https://artemsheludko.github.io/adam-blog/", - "stars": 166, - "forks": 261, - "open_issues": 3, + "stars": 175, + "forks": 283, + "open_issues": 4, "last_commit": "2019-08-14T13:24:10Z", "created_at": "2017-09-06T10:24:57Z", "description": "Adam Blog is a minimal clear theme for Jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/artemsheludko-adam-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/artemsheludko-adam-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/artemsheludko-adam-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/artemsheludko-adam-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/artemsheludko-adam-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/artemsheludko-adam-blog-2x.jpg" } }, - "artemsheludko-bef-master": { - "theme_key": "artemsheludko-bef-master", + "artemsheludko-bef": { + "theme_key": "artemsheludko-bef", "file": "jekyll-bef-theme.md", "name": "bef", "title": "Bef", "github_username": "artemsheludko", "repo": "artemsheludko/bef", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/artemsheludko/bef", "demo_url": "https://artemsheludko.github.io/bef/", - "stars": 144, - "forks": 285, - "open_issues": 6, + "stars": 156, + "forks": 312, + "open_issues": 5, "last_commit": "2019-08-14T13:29:01Z", "created_at": "2017-07-16T15:34:56Z", "description": "Bef is a responsive jekyll theme https://artemsheludko.github.io/bef/", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/artemsheludko-bef-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/artemsheludko-bef-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/artemsheludko-bef-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/artemsheludko-bef.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/artemsheludko-bef.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/artemsheludko-bef-2x.jpg" } }, - "artemsheludko-flexible-jekyll-master": { - "theme_key": "artemsheludko-flexible-jekyll-master", + "artemsheludko-flexible-jekyll": { + "theme_key": "artemsheludko-flexible-jekyll", "file": "flexible-jekyll.md", "name": "flexible-jekyll", "title": "Flexible Jekyll", "github_username": "artemsheludko", "repo": "artemsheludko/flexible-jekyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/artemsheludko/flexible-jekyll", "demo_url": "https://artemsheludko.com/flexible-jekyll/", - "stars": 512, - "forks": 1284, - "open_issues": 15, - "last_commit": "2020-06-16T10:00:08Z", + "stars": 578, + "forks": 1461, + "open_issues": 16, + "last_commit": "2021-06-10T12:09:17Z", "created_at": "2017-09-14T13:16:08Z", "description": "Flexible-Jekyll is a simple and clean theme for Jekyll", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/artemsheludko-flexible-jekyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/artemsheludko-flexible-jekyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/artemsheludko-flexible-jekyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/artemsheludko-flexible-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/artemsheludko-flexible-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/artemsheludko-flexible-jekyll-2x.jpg" } }, - "artemsheludko-fresh-master": { - "theme_key": "artemsheludko-fresh-master", + "artemsheludko-fresh": { + "theme_key": "artemsheludko-fresh", "file": "jekyll-fresh-theme.md", "name": "fresh", "title": "Fresh", "github_username": "artemsheludko", "repo": "artemsheludko/fresh", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/artemsheludko/fresh", "demo_url": "https://artemsheludko.com/fresh/", - "stars": 45, - "forks": 88, - "open_issues": 5, + "stars": 46, + "forks": 91, + "open_issues": 6, "last_commit": "2017-04-03T18:20:53Z", "created_at": "2017-04-03T13:25:22Z", "description": "Fresh is a free blog template for Jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/artemsheludko-fresh-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/artemsheludko-fresh-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/artemsheludko-fresh-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/artemsheludko-fresh.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/artemsheludko-fresh.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/artemsheludko-fresh-2x.jpg" } }, - "artemsheludko-monday-master": { - "theme_key": "artemsheludko-monday-master", + "artemsheludko-monday": { + "theme_key": "artemsheludko-monday", "file": "jekyll-monday-theme.md", "name": "monday", "title": "Monday", "github_username": "artemsheludko", "repo": "artemsheludko/monday", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/artemsheludko/monday", "demo_url": "https://artemsheludko.pw/monday", - "stars": 30, - "forks": 39, + "stars": 32, + "forks": 35, "open_issues": 3, "last_commit": "2017-05-12T15:03:58Z", "created_at": "2017-03-10T15:42:27Z", "description": "Monday is a minimal and 100% free blog template for Jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/artemsheludko-monday-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/artemsheludko-monday-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/artemsheludko-monday-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/artemsheludko-monday.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/artemsheludko-monday.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/artemsheludko-monday-2x.jpg" } }, - "artemsheludko-mr-brown-master": { - "theme_key": "artemsheludko-mr-brown-master", + "artemsheludko-mr-brown": { + "theme_key": "artemsheludko-mr-brown", "file": "jekyll-mr-brown.md", "name": "mr-brown", "title": "Mr.Brown", "github_username": "artemsheludko", "repo": "artemsheludko/mr-brown", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/artemsheludko/mr-brown", "demo_url": "https://artemsheludko.pw/mr-brown", - "stars": 21, + "stars": 20, "forks": 46, "open_issues": 1, "last_commit": "2017-05-06T11:59:51Z", "created_at": "2017-02-23T17:03:57Z", "description": "Mr.Brown is a responsive Jekyll theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/artemsheludko-mr-brown-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/artemsheludko-mr-brown-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/artemsheludko-mr-brown-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/artemsheludko-mr-brown.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/artemsheludko-mr-brown.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/artemsheludko-mr-brown-2x.jpg" } }, - "arulrajnet-attila-master": { - "theme_key": "arulrajnet-attila-master", + "arulrajnet-attila": { + "theme_key": "arulrajnet-attila", "file": "pelican-attila.md", "name": "attila", "title": "Attila", "github_username": "arulrajnet", "repo": "arulrajnet/attila", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/arulrajnet/attila", "demo_url": "https://attila.demo.arulraj.net/", - "stars": 135, - "forks": 61, - "open_issues": 11, - "last_commit": "2019-09-02T16:57:15Z", + "stars": 148, + "forks": 66, + "open_issues": 12, + "last_commit": "2021-08-02T07:36:27Z", "created_at": "2016-09-11T17:32:26Z", "description": "Pelican version of ghost theme https://github.com/zutrinken/attila", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/arulrajnet-attila-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/arulrajnet-attila-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/arulrajnet-attila-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/arulrajnet-attila.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/arulrajnet-attila.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/arulrajnet-attila-2x.jpg" } }, - "ashr81-gatsby-theme-profile-builder-master": { - "theme_key": "ashr81-gatsby-theme-profile-builder-master", + "ashr81-gatsby-theme-profile-builder": { + "theme_key": "ashr81-gatsby-theme-profile-builder", "file": "gatsby-theme-profile-builder.md", "name": "gatsby-theme-profile-builder", "title": "Profile Builder", "github_username": "ashr81", "repo": "ashr81/gatsby-theme-profile-builder", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ashr81/gatsby-theme-profile-builder", "demo_url": "https://gatsby-theme-profile-builder.netlify.com/", - "stars": 1, + "stars": 3, "forks": 1, - "open_issues": 1, + "open_issues": 26, "last_commit": "2019-09-15T05:28:28Z", "created_at": "2019-07-31T17:42:47Z", "description": null, - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ashr81-gatsby-theme-profile-builder-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ashr81-gatsby-theme-profile-builder-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ashr81-gatsby-theme-profile-builder-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ashr81-gatsby-theme-profile-builder.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ashr81-gatsby-theme-profile-builder.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ashr81-gatsby-theme-profile-builder-2x.jpg" } }, - "aslammultidots-blogger-master": { - "theme_key": "aslammultidots-blogger-master", + "aslammultani-blogger": { + "theme_key": "aslammultidots-blogger", "file": "gatsby-blogger.md", "name": "blogger", "title": "Blogger", "github_username": "aslammultani", "repo": "aslammultani/blogger", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/aslammultani/blogger", "demo_url": "https://gatsby-blogger.netlify.com/", "stars": 22, + "forks": 12, + "open_issues": 1, + "last_commit": "2019-02-26T09:00:55Z", + "created_at": "2019-02-25T05:18:26Z", + "description": "A Gatsby demo for blogging", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/aslammultidots-blogger.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/aslammultidots-blogger.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/aslammultidots-blogger-2x.jpg" + } + }, + "aslammultidots-blogger": { + "theme_key": "aslammultidots-blogger", + "file": "gatsby-blogger.md", + "name": "blogger", + "title": "Blogger", + "github_username": "aslammultani", + "repo": "aslammultani/blogger", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/aslammultani/blogger", + "demo_url": "https://gatsby-blogger.netlify.com/", + "stars": 21, "forks": 10, "open_issues": 1, "last_commit": "2019-02-26T09:00:55Z", "created_at": "2019-02-25T05:18:26Z", "description": "A Gatsby demo for blogging", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/aslammultidots-blogger-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/aslammultidots-blogger-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/aslammultidots-blogger-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/aslammultidots-blogger.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/aslammultidots-blogger.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/aslammultidots-blogger-2x.jpg" } }, - "aspirethemes-type-master": { - "theme_key": "aspirethemes-type-master", + "aspirethemes-type": { + "theme_key": "aspirethemes-type", "file": "jekyll-type.md", "name": "type", "title": "Jekyll Type", "github_username": "aspirethemes", "repo": "aspirethemes/type", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/aspirethemes/type", "demo_url": "https://type-jekyll.aspirethemes.com/", - "stars": 182, - "forks": 142, + "stars": 183, + "forks": 140, "open_issues": 6, "last_commit": "2020-06-01T14:12:23Z", "created_at": "2017-09-25T11:27:16Z", "description": "🎉 Minimal and Clean Free Jekyll Theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/aspirethemes-type-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/aspirethemes-type-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/aspirethemes-type-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/aspirethemes-type.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/aspirethemes-type.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/aspirethemes-type-2x.jpg" + } + }, + "avatar-kaleb-gatsby-starter-ggt-material-ui-blog": { + "theme_key": "greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog", + "file": "gatsby-starter-ggt-material-ui-blog.md", + "name": "gatsby-starter-ggt-material-ui-blog", + "title": "Gatsby Ggt Material-ui Blog", + "github_username": "avatar-kaleb", + "repo": "avatar-kaleb/gatsby-starter-ggt-material-ui-blog", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/avatar-kaleb/gatsby-starter-ggt-material-ui-blog", + "demo_url": "https://gatsby-theme-ggt-material-ui-blog.netlify.com/", + "stars": 4, + "forks": 4, + "open_issues": 22, + "last_commit": "2020-03-14T14:50:56Z", + "created_at": "2019-04-26T11:47:18Z", + "description": "Gatsby starter that uses a Material-ui blog theme - letting you set up an blog with minimal effort!", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog-2x.jpg" } }, - "avianto-hugo-kiera-master": { - "theme_key": "avianto-hugo-kiera-master", + "avianto-hugo-kiera": { + "theme_key": "avianto-hugo-kiera", "file": "hugo-kiera.md", "name": "hugo-kiera", "title": "Kiera", "github_username": "avianto", "repo": "avianto/hugo-kiera", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/avianto/hugo-kiera", "demo_url": "https://themes.gohugo.io/theme/hugo-kiera/", "stars": 97, - "forks": 116, - "open_issues": 19, + "forks": 119, + "open_issues": 20, "last_commit": "2019-09-22T14:33:15Z", "created_at": "2017-11-13T00:53:41Z", "description": "Kiera - A Hugo Theme for writing", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/avianto-hugo-kiera-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/avianto-hugo-kiera-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/avianto-hugo-kiera-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/avianto-hugo-kiera.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/avianto-hugo-kiera.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/avianto-hugo-kiera-2x.jpg" } }, - "avivero-gatsby-redux-starter-master": { - "theme_key": "avivero-gatsby-redux-starter-master", + "avivero-gatsby-redux-starter": { + "theme_key": "avivero-gatsby-redux-starter", "file": "gatsby-redux-starter.md", "name": "gatsby-redux-starter", "title": "Gatsby Redux Starter", "github_username": "AVivero", "repo": "AVivero/gatsby-redux-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/AVivero/gatsby-redux-starter", "demo_url": "https://avivero.github.io/gatsby-redux-starter/", - "stars": 11, + "stars": 10, "forks": 5, "open_issues": 1, "last_commit": "2018-11-07T05:33:03Z", "created_at": "2018-11-06T06:56:06Z", "description": "A simple GatsbyJS starter that provides multiple technologies out of the box, like Redux, Sass and Bootstrap.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/avivero-gatsby-redux-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/avivero-gatsby-redux-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/avivero-gatsby-redux-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/avivero-gatsby-redux-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/avivero-gatsby-redux-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/avivero-gatsby-redux-starter-2x.jpg" } }, - "aweekj-kiko-plus-master": { - "theme_key": "aweekj-kiko-plus-master", + "aweekj-kiko-plus": { + "theme_key": "aweekj-kiko-plus", "file": "jekyll-kiko-plus.md", "name": "Kiko-plus", "title": "Kiko Plus", "github_username": "aweekj", "repo": "aweekj/Kiko-plus", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/aweekj/Kiko-plus", "demo_url": "https://aweekj.github.io/Kiko-plus", - "stars": 173, - "forks": 219, + "stars": 172, + "forks": 203, "open_issues": 3, "last_commit": "2017-10-08T17:46:44Z", "created_at": "2016-08-08T10:33:16Z", "description": "[DEPRECATED!!!] Please redirect to the new and easier version, kiko-now==>", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/aweekj-kiko-plus-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/aweekj-kiko-plus-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/aweekj-kiko-plus-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/aweekj-kiko-plus.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/aweekj-kiko-plus.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/aweekj-kiko-plus-2x.jpg" } }, - "azmelanar-hugo-theme-pixyll-master": { - "theme_key": "azmelanar-hugo-theme-pixyll-master", + "azmelanar-hugo-theme-pixyll": { + "theme_key": "azmelanar-hugo-theme-pixyll", "file": "hugo-theme-pixyll.md", "name": "hugo-theme-pixyll", "title": "Hugo Pixyll", "github_username": "azmelanar", "repo": "azmelanar/hugo-theme-pixyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/azmelanar/hugo-theme-pixyll", "demo_url": "https://themes.gohugo.io/theme/pixyll/", - "stars": 131, - "forks": 48, + "stars": 140, + "forks": 50, "open_issues": 8, "last_commit": "2020-01-14T03:26:37Z", "created_at": "2014-11-15T12:25:29Z", "description": "A simple, beautiful Hugo theme that's mobile first.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/azmelanar-hugo-theme-pixyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/azmelanar-hugo-theme-pixyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/azmelanar-hugo-theme-pixyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/azmelanar-hugo-theme-pixyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/azmelanar-hugo-theme-pixyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/azmelanar-hugo-theme-pixyll-2x.jpg" } }, - "b2a3e8-jekyll-theme-console-master": { - "theme_key": "b2a3e8-jekyll-theme-console-master", + "b2a3e8-jekyll-theme-console": { + "theme_key": "b2a3e8-jekyll-theme-console", "file": "jekyll-theme-console.md", "name": "jekyll-theme-console", "title": "jekyll-theme-console", "github_username": "b2a3e8", "repo": "b2a3e8/jekyll-theme-console", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/b2a3e8/jekyll-theme-console", "demo_url": "https://b2a3e8.github.io/jekyll-theme-console/", - "stars": 273, - "forks": 254, - "open_issues": 2, - "last_commit": "2020-07-04T08:48:41Z", + "stars": 362, + "forks": 296, + "open_issues": 4, + "last_commit": "2021-02-19T20:58:54Z", "created_at": "2018-11-07T15:08:15Z", "description": "A jekyll theme inspired by linux consoles for hackers, developers and script kiddies.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/b2a3e8-jekyll-theme-console-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/b2a3e8-jekyll-theme-console-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/b2a3e8-jekyll-theme-console-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/b2a3e8-jekyll-theme-console.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/b2a3e8-jekyll-theme-console.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/b2a3e8-jekyll-theme-console-2x.jpg" } }, - "bagseye-bonneville-master": { - "theme_key": "bagseye-bonneville-master", + "bagseye-bonneville": { + "theme_key": "bagseye-bonneville", "file": "gatsby-bonneville.md", "name": "bonneville", "title": "Bonneville", "github_username": "bagseye", "repo": "bagseye/bonneville", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/bagseye/bonneville", "demo_url": "https://bonneville.netlify.com/", - "stars": 19, - "forks": 18, - "open_issues": 5, - "last_commit": "2021-01-09T15:59:21Z", + "stars": 39, + "forks": 27, + "open_issues": 19, + "last_commit": "2022-02-27T17:17:41Z", "created_at": "2019-08-24T20:24:33Z", "description": "A simple, clean GatsbyJS starter for those looking to get up and running with Gatsby", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/bagseye-bonneville-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bagseye-bonneville-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bagseye-bonneville-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/bagseye-bonneville.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bagseye-bonneville.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bagseye-bonneville-2x.jpg" } }, - "bake-solar-theme-hugo-master": { - "theme_key": "bake-solar-theme-hugo-master", + "bake-solar-theme-hugo": { + "theme_key": "bake-solar-theme-hugo", "file": "hugo-solar-theme.md", "name": "solar-theme-hugo", "title": "Solar", "github_username": "bake", "repo": "bake/solar-theme-hugo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/bake/solar-theme-hugo", "demo_url": "https://themes.gohugo.io/theme/solar-theme-hugo/", - "stars": 34, - "forks": 25, + "stars": 42, + "forks": 28, "open_issues": 0, - "last_commit": "2019-11-16T08:52:24Z", + "last_commit": "2021-04-03T20:25:35Z", "created_at": "2017-07-24T09:16:53Z", "description": "A port of solar-theme-ghost for Hugo", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/bake-solar-theme-hugo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bake-solar-theme-hugo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bake-solar-theme-hugo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/bake-solar-theme-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bake-solar-theme-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bake-solar-theme-hugo-2x.jpg" } }, - "balaramadurai-hugo-travelify-theme-master": { - "theme_key": "balaramadurai-hugo-travelify-theme-master", + "balaramadurai-hugo-travelify-theme": { + "theme_key": "balaramadurai-hugo-travelify-theme", "file": "hugo-travelify-theme.md", "name": "hugo-travelify-theme", "title": "Travelify", "github_username": "balaramadurai", "repo": "balaramadurai/hugo-travelify-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/balaramadurai/hugo-travelify-theme", "demo_url": "https://themes.gohugo.io/theme/hugo-travelify-theme/", - "stars": 32, - "forks": 24, - "open_issues": 2, - "last_commit": "2020-12-30T08:07:37Z", + "stars": 33, + "forks": 26, + "open_issues": 3, + "last_commit": "2021-03-03T09:04:48Z", "created_at": "2017-06-28T12:20:18Z", "description": "Port of Aigars Silkalns's Wordpress theme Travelify to Hugo. Demo -", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/balaramadurai-hugo-travelify-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/balaramadurai-hugo-travelify-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/balaramadurai-hugo-travelify-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/balaramadurai-hugo-travelify-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/balaramadurai-hugo-travelify-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/balaramadurai-hugo-travelify-theme-2x.jpg" } }, - "baobabkoodaa-blog-master": { - "theme_key": "baobabkoodaa-blog-master", + "baobabkoodaa-blog": { + "theme_key": "baobabkoodaa-blog", "file": "gatsby-blog.md", "name": "blog", "title": "Blog", "github_username": "baobabKoodaa", "repo": "baobabKoodaa/blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/baobabKoodaa/blog", "demo_url": "https://www.attejuvonen.fi", - "stars": 77, - "forks": 48, - "open_issues": 11, - "last_commit": "2020-12-28T18:03:45Z", + "stars": 129, + "forks": 67, + "open_issues": 2, + "last_commit": "2022-12-27T15:23:32Z", "created_at": "2019-01-24T16:12:40Z", - "description": "Source for my blazing fast blog", - "stale": false, + "description": "My blog. Made with Gatsby.", "images": { - "hires": "https://www.jamstackthemes.dev/capture/baobabkoodaa-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/baobabkoodaa-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/baobabkoodaa-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/baobabkoodaa-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/baobabkoodaa-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/baobabkoodaa-blog-2x.jpg" } }, - "baobabkoodaa-gatsby-starter-infinite-scroll-master": { - "theme_key": "baobabkoodaa-gatsby-starter-infinite-scroll-master", + "baobabkoodaa-gatsby-starter-infinite-scroll": { + "theme_key": "baobabkoodaa-gatsby-starter-infinite-scroll", "file": "gatsby-starter-infinite-scroll.md", "name": "gatsby-starter-infinite-scroll", "title": "Gatsby Starter Infinite Scroll", "github_username": "baobabKoodaa", "repo": "baobabKoodaa/gatsby-starter-infinite-scroll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/baobabKoodaa/gatsby-starter-infinite-scroll", "demo_url": "https://gatsby-starter-infinite-scroll.baobab.fi/", - "stars": 144, - "forks": 26, - "open_issues": 6, - "last_commit": "2019-09-15T18:41:22Z", + "stars": 157, + "forks": 28, + "open_issues": 0, + "last_commit": "2022-07-18T20:20:06Z", "created_at": "2019-03-01T16:48:18Z", "description": "A Gatsby starter with infinite scroll and pagination.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/baobabkoodaa-gatsby-starter-infinite-scroll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/baobabkoodaa-gatsby-starter-infinite-scroll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/baobabkoodaa-gatsby-starter-infinite-scroll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/baobabkoodaa-gatsby-starter-infinite-scroll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/baobabkoodaa-gatsby-starter-infinite-scroll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/baobabkoodaa-gatsby-starter-infinite-scroll-2x.jpg" } }, - "baobabkoodaa-gatsby-starter-photo-book-master": { - "theme_key": "baobabkoodaa-gatsby-starter-photo-book-master", + "baobabkoodaa-gatsby-starter-photo-book": { + "theme_key": "baobabkoodaa-gatsby-starter-photo-book", "file": "gatsby-starter-photo-book.md", "name": "gatsby-starter-photo-book", "title": "Gatsby Photo Book", "github_username": "baobabKoodaa", "repo": "baobabKoodaa/gatsby-starter-photo-book", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/baobabKoodaa/gatsby-starter-photo-book", "demo_url": "https://gatsby-starter-photo-book.netlify.com/", - "stars": 70, - "forks": 37, - "open_issues": 12, - "last_commit": "2020-04-01T09:36:56Z", + "stars": 92, + "forks": 44, + "open_issues": 1, + "last_commit": "2022-07-19T15:40:43Z", "created_at": "2019-07-05T01:16:03Z", "description": "A Gatsby starter for sharing photosets.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/baobabkoodaa-gatsby-starter-photo-book-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/baobabkoodaa-gatsby-starter-photo-book-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/baobabkoodaa-gatsby-starter-photo-book-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/baobabkoodaa-gatsby-starter-photo-book.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/baobabkoodaa-gatsby-starter-photo-book.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/baobabkoodaa-gatsby-starter-photo-book-2x.jpg" } }, - "barryclark-jekyll-now-master": { - "theme_key": "barryclark-jekyll-now-master", + "barryclark-jekyll-now": { + "theme_key": "barryclark-jekyll-now", "file": "jekyll-now.md", "name": "jekyll-now", "title": "Jekyll Now", "github_username": "barryclark", "repo": "barryclark/jekyll-now", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/barryclark/jekyll-now", "demo_url": "https://www.jekyllnow.com/", - "stars": 7113, - "forks": 30201, - "open_issues": 249, + "stars": 7930, + "forks": 34793, + "open_issues": 344, "last_commit": "2018-04-12T03:31:03Z", "created_at": "2014-02-07T00:14:55Z", "description": "Build a Jekyll blog in minutes, without touching the command line.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/barryclark-jekyll-now-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/barryclark-jekyll-now-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/barryclark-jekyll-now-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/barryclark-jekyll-now.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/barryclark-jekyll-now.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/barryclark-jekyll-now-2x.jpg" } }, - "bawn92-sleek_blog-master": { - "theme_key": "bawn92-sleek_blog-master", + "bawn92-sleek_blog": { + "theme_key": "bawn92-sleek_blog", "file": "jekyll-sleek-blog.md", "name": "sleek_blog", "title": "Sleek Blog", "github_username": "bawn92", "repo": "bawn92/sleek_blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/bawn92/sleek_blog", "demo_url": "https://www.gearoidoconnor.ie/", - "stars": 35, - "forks": 74, + "stars": 40, + "forks": 77, "open_issues": 4, "last_commit": "2018-11-05T22:05:35Z", "created_at": "2016-01-05T20:39:17Z", "description": "A Empty template blog", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/bawn92-sleek_blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bawn92-sleek_blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bawn92-sleek_blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/bawn92-sleek_blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bawn92-sleek_blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bawn92-sleek_blog-2x.jpg" + } + }, + "bdhu-minimalist": { + "theme_key": "bdhu-minimalist", + "file": "jekyll-minimalist.md", + "name": "minimalist", + "title": "Minimalist", + "github_username": "BDHU", + "repo": "BDHU/minimalist", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/BDHU/minimalist", + "demo_url": "https://www.bodunhu.com/minimalist/", + "stars": 69, + "forks": 85, + "open_issues": 0, + "last_commit": "2022-09-05T14:46:38Z", + "created_at": "2021-08-22T23:16:39Z", + "description": "Minimalist is a Jekyll theme inspired by the Minimal theme ", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/bdhu-minimalist.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bdhu-minimalist.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bdhu-minimalist-2x.jpg" } }, - "bdougie-casper-cms-template-master": { - "theme_key": "bdougie-casper-cms-template-master", + "bdougie-casper-cms-template": { + "theme_key": "bdougie-casper-cms-template", "file": "hugo-starter-blog-theme-casper.md", "name": "casper-cms-template", "title": "Hugo Casper", "github_username": "bdougie", "repo": "bdougie/casper-cms-template", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/bdougie/casper-cms-template", "demo_url": "https://casper-theme.netlify.com/", - "stars": 27, - "forks": 20, - "open_issues": 2, - "last_commit": "2018-04-16T14:00:09Z", + "stars": 34, + "forks": 27, + "open_issues": 0, + "last_commit": "2021-04-09T20:25:44Z", "created_at": "2016-12-23T20:48:55Z", "description": "This is a template for the Netlify CMS", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/bdougie-casper-cms-template-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bdougie-casper-cms-template-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bdougie-casper-cms-template-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/bdougie-casper-cms-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bdougie-casper-cms-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bdougie-casper-cms-template-2x.jpg" } }, - "bdougie-hyde-cms-theme-master": { - "theme_key": "bdougie-hyde-cms-theme-master", + "bdougie-hyde-cms-theme": { + "theme_key": "bdougie-hyde-cms-theme", "file": "hyde-blog-with-netlify-cms.md", "name": "hyde-cms-theme", "title": "Hyde starter blog with Netlify CMS", "github_username": "bdougie", "repo": "bdougie/hyde-cms-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/bdougie/hyde-cms-theme", "demo_url": "https://hyde.netlify.com/", "stars": 4, - "forks": 3, + "forks": 4, "open_issues": 2, "last_commit": "2018-01-03T18:29:16Z", "created_at": "2016-12-28T22:54:17Z", "description": "this is a template for the Netlify CMS", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/bdougie-hyde-cms-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bdougie-hyde-cms-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bdougie-hyde-cms-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/bdougie-hyde-cms-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bdougie-hyde-cms-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bdougie-hyde-cms-theme-2x.jpg" } }, - "ben-siewert-gatsby-starter-auth-aws-amplify-master": { - "theme_key": "ben-siewert-gatsby-starter-auth-aws-amplify-master", + "beamsies-gatsby-starter-auth-aws-amplify": { + "theme_key": "ben-siewert-gatsby-starter-auth-aws-amplify", "file": "gatsby-starter-auth-aws-amplify.md", "name": "gatsby-starter-auth-aws-amplify", "title": "Gatsby Auth Aws Amplify", "github_username": "beamsies", "repo": "beamsies/gatsby-starter-auth-aws-amplify", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/beamsies/gatsby-starter-auth-aws-amplify", "demo_url": "https://authenticaysh.netlify.com/", - "stars": 31, - "forks": 10, - "open_issues": 0, + "stars": 37, + "forks": 14, + "open_issues": 13, + "last_commit": "2021-05-15T02:41:19Z", + "created_at": "2019-08-06T01:31:05Z", + "description": "A full-featured AWS Amplify Auth starter made with GatsbyJS", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/ben-siewert-gatsby-starter-auth-aws-amplify.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ben-siewert-gatsby-starter-auth-aws-amplify.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ben-siewert-gatsby-starter-auth-aws-amplify-2x.jpg" + } + }, + "ben-siewert-gatsby-starter-auth-aws-amplify": { + "theme_key": "ben-siewert-gatsby-starter-auth-aws-amplify", + "file": "gatsby-starter-auth-aws-amplify.md", + "name": "gatsby-starter-auth-aws-amplify", + "title": "Gatsby Auth Aws Amplify", + "github_username": "beamsies", + "repo": "beamsies/gatsby-starter-auth-aws-amplify", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/beamsies/gatsby-starter-auth-aws-amplify", + "demo_url": "https://authenticaysh.netlify.com/", + "stars": 34, + "forks": 11, + "open_issues": 1, "last_commit": "2020-12-28T04:35:34Z", "created_at": "2019-08-06T01:31:05Z", "description": "A full-featured AWS Amplify Auth starter made with GatsbyJS", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ben-siewert-gatsby-starter-auth-aws-amplify-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ben-siewert-gatsby-starter-auth-aws-amplify-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ben-siewert-gatsby-starter-auth-aws-amplify-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ben-siewert-gatsby-starter-auth-aws-amplify.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ben-siewert-gatsby-starter-auth-aws-amplify.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ben-siewert-gatsby-starter-auth-aws-amplify-2x.jpg" } }, - "bencentra-centrarium-master": { - "theme_key": "bencentra-centrarium-master", + "bencentra-centrarium": { + "theme_key": "bencentra-centrarium", "file": "centrarium.md", "name": "centrarium", "title": "Centrarium", "github_username": "bencentra", "repo": "bencentra/centrarium", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/bencentra/centrarium", "demo_url": "https://bencentra.com/centrarium/", - "stars": 350, - "forks": 564, - "open_issues": 7, + "stars": 363, + "forks": 568, + "open_issues": 9, "last_commit": "2019-10-06T01:08:13Z", "created_at": "2015-04-14T00:39:17Z", "description": "A simple yet classy theme for your Jekyll website or blog.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/bencentra-centrarium-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bencentra-centrarium-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bencentra-centrarium-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/bencentra-centrarium.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bencentra-centrarium.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bencentra-centrarium-2x.jpg" } }, - "benjamin-glitsos-gatsby-kea-starter-master": { - "theme_key": "benjamin-glitsos-gatsby-kea-starter-master", + "benjamin-glitsos-gatsby-kea-starter": { + "theme_key": "benjamin-glitsos-gatsby-kea-starter", "file": "gatsby-kea-starter.md", "name": "gatsby-kea-starter", "title": "Gatsby Kea Starter", "github_username": "benjamin-glitsos", "repo": "benjamin-glitsos/gatsby-kea-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/benjamin-glitsos/gatsby-kea-starter", "demo_url": "https://gatsby-kea-starter.netlify.com/", - "stars": 4, + "stars": 3, "forks": 2, - "open_issues": 1, - "last_commit": "2019-06-10T07:07:30Z", + "open_issues": 13, + "last_commit": "2021-05-05T00:34:51Z", "created_at": "2019-06-10T01:54:29Z", "description": "Gatsby starter with redux and sagas made simpler by https://kea.js.org", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/benjamin-glitsos-gatsby-kea-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/benjamin-glitsos-gatsby-kea-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/benjamin-glitsos-gatsby-kea-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/benjamin-glitsos-gatsby-kea-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/benjamin-glitsos-gatsby-kea-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/benjamin-glitsos-gatsby-kea-starter-2x.jpg" } }, - "benjamingrobertson-gatsby-starter-accessibility-master": { - "theme_key": "benjamingrobertson-gatsby-starter-accessibility-master", + "benjamingrobertson-gatsby-starter-accessibility": { + "theme_key": "benjamingrobertson-gatsby-starter-accessibility", "file": "gatsby-starter-accessibility.md", "name": "gatsby-starter-accessibility", "title": "Gatsby Starter Accessibility", "github_username": "benrobertsonio", "repo": "benrobertsonio/gatsby-starter-accessibility", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/benrobertsonio/gatsby-starter-accessibility", "demo_url": "https://gatsby-starter-accessibility.netlify.com/", "stars": 6, "forks": 0, - "open_issues": 2, + "open_issues": 3, "last_commit": "2020-09-01T20:04:19Z", "created_at": "2019-05-01T15:58:21Z", "description": "A Gatsby starter with powerful built-in accessibility tools.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/benjamingrobertson-gatsby-starter-accessibility-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/benjamingrobertson-gatsby-starter-accessibility-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/benjamingrobertson-gatsby-starter-accessibility-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/benjamingrobertson-gatsby-starter-accessibility.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/benjamingrobertson-gatsby-starter-accessibility.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/benjamingrobertson-gatsby-starter-accessibility-2x.jpg" } }, - "benradford-slate-and-simple-jekyll-theme-master": { - "theme_key": "benradford-slate-and-simple-jekyll-theme-master", + "benradford-slate-and-simple-jekyll-theme": { + "theme_key": "benradford-slate-and-simple-jekyll-theme", "file": "jekyll-slate-and-simple-theme.md", "name": "Slate-and-Simple-Jekyll-Theme", "title": "Slate+Simple", "github_username": "benradford", "repo": "benradford/Slate-and-Simple-Jekyll-Theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/benradford/Slate-and-Simple-Jekyll-Theme", "demo_url": "https://benradford.github.io", - "stars": 26, - "forks": 44, + "stars": 24, + "forks": 46, "open_issues": 0, "last_commit": "2019-06-12T13:47:48Z", "created_at": "2017-05-28T01:14:55Z", "description": "A sleek Jekyll theme for blogs with clean typography and post featured images.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/benradford-slate-and-simple-jekyll-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/benradford-slate-and-simple-jekyll-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/benradford-slate-and-simple-jekyll-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/benradford-slate-and-simple-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/benradford-slate-and-simple-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/benradford-slate-and-simple-jekyll-theme-2x.jpg" + } + }, + "benrobertsonio-gatsby-starter-accessibility": { + "theme_key": "benjamingrobertson-gatsby-starter-accessibility", + "file": "gatsby-starter-accessibility.md", + "name": "gatsby-starter-accessibility", + "title": "Gatsby Starter Accessibility", + "github_username": "benrobertsonio", + "repo": "benrobertsonio/gatsby-starter-accessibility", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/benrobertsonio/gatsby-starter-accessibility", + "demo_url": "https://gatsby-starter-accessibility.netlify.com/", + "stars": 7, + "forks": 0, + "open_issues": 16, + "last_commit": "2021-05-10T11:44:58Z", + "created_at": "2019-05-01T15:58:21Z", + "description": "A Gatsby starter with powerful built-in accessibility tools.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/benjamingrobertson-gatsby-starter-accessibility.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/benjamingrobertson-gatsby-starter-accessibility.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/benjamingrobertson-gatsby-starter-accessibility-2x.jpg" } }, - "bep-docuapi-master": { - "theme_key": "bep-docuapi-master", + "bep-docuapi": { + "theme_key": "bep-docuapi", "file": "docuapi.md", "name": "docuapi", "title": "DocuAPI", "github_username": "bep", "repo": "bep/docuapi", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/bep/docuapi", "demo_url": "https://docuapi.netlify.com/", - "stars": 473, - "forks": 155, + "stars": 645, + "forks": 196, "open_issues": 15, - "last_commit": "2020-09-14T15:38:37Z", + "last_commit": "2023-01-15T08:42:13Z", "created_at": "2016-10-17T19:02:31Z", "description": "Beautiful multilingual API documentation theme for Hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/bep-docuapi-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bep-docuapi-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bep-docuapi-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/bep-docuapi.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bep-docuapi.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bep-docuapi-2x.jpg" } }, - "bigcommerce-gatsby-bigcommerce-netlify-cms-starter-master": { - "theme_key": "bigcommerce-gatsby-bigcommerce-netlify-cms-starter-master", + "bigcommerce-gatsby-bigcommerce-netlify-cms-starter": { + "theme_key": "bigcommerce-gatsby-bigcommerce-netlify-cms-starter", "file": "bigcommerce-gatsby-netlify-cms-starter.md", "name": "gatsby-bigcommerce-netlify-cms-starter", "title": "BigCommerce Gatsby Starter Netlify CMS", "github_username": "bigcommerce", "repo": "bigcommerce/gatsby-bigcommerce-netlify-cms-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/bigcommerce/gatsby-bigcommerce-netlify-cms-starter", "demo_url": "https://affectionate-goldwasser-30230c.netlify.com/", - "stars": 92, - "forks": 65, - "open_issues": 8, + "stars": 116, + "forks": 88, + "open_issues": 47, "last_commit": "2020-09-03T06:42:27Z", "created_at": "2019-07-05T21:23:03Z", "description": "Example Gatsby, BigCommerce and Netlify CMS project meant to jump start JAMStack ecommerce sites.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/bigcommerce-gatsby-bigcommerce-netlify-cms-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bigcommerce-gatsby-bigcommerce-netlify-cms-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bigcommerce-gatsby-bigcommerce-netlify-cms-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/bigcommerce-gatsby-bigcommerce-netlify-cms-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bigcommerce-gatsby-bigcommerce-netlify-cms-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bigcommerce-gatsby-bigcommerce-netlify-cms-starter-2x.jpg" } }, - "bijenkorf-james-wakefield-gatsby-firebase-hosting-starter-master": { - "theme_key": "bijenkorf-james-wakefield-gatsby-firebase-hosting-starter-master", + "bijenkorf-james-wakefield-gatsby-firebase-hosting-starter": { + "theme_key": "bijenkorf-james-wakefield-gatsby-firebase-hosting-starter", "file": "gatsby-firebase-hosting-starter.md", "name": "gatsby-firebase-hosting-starter", "title": "Gatsby Firebase Hosting Starter", "github_username": "bijenkorf-james-wakefield", "repo": "bijenkorf-james-wakefield/gatsby-firebase-hosting-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/bijenkorf-james-wakefield/gatsby-firebase-hosting-starter", "demo_url": "https://gatsby-firebase-hosting.firebaseapp.com/", - "stars": 11, - "forks": 3, - "open_issues": 1, + "stars": 12, + "forks": 4, + "open_issues": 0, "last_commit": "2019-04-11T07:18:38Z", "created_at": "2019-04-03T12:36:08Z", "description": "Gatsby starter with Firebase hosting configuration", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/bijenkorf-james-wakefield-gatsby-firebase-hosting-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bijenkorf-james-wakefield-gatsby-firebase-hosting-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bijenkorf-james-wakefield-gatsby-firebase-hosting-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/bijenkorf-james-wakefield-gatsby-firebase-hosting-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bijenkorf-james-wakefield-gatsby-firebase-hosting-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bijenkorf-james-wakefield-gatsby-firebase-hosting-starter-2x.jpg" } }, - "billyfish152-renge-master": { - "theme_key": "billyfish152-renge-master", + "billyfish152-renge": { + "theme_key": "billyfish152-renge", "file": "jekyll-Renge.md", "name": "Renge", "title": "Renge", "github_username": "billyfish152", "repo": "billyfish152/Renge", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/billyfish152/Renge", "demo_url": "https://junchaowang.com", - "stars": 13, + "stars": 14, "forks": 6, "open_issues": 0, "last_commit": "2016-06-22T23:18:13Z", "created_at": "2016-06-14T22:25:56Z", "description": "A Jekyll theme by Junchao", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/billyfish152-renge-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/billyfish152-renge-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/billyfish152-renge-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/billyfish152-renge.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/billyfish152-renge.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/billyfish152-renge-2x.jpg" } }, - "billyjacoby-gatsby-react-bootstrap-starter-master": { - "theme_key": "billyjacoby-gatsby-react-bootstrap-starter-master", + "billyjacoby-gatsby-react-bootstrap-starter": { + "theme_key": "billyjacoby-gatsby-react-bootstrap-starter", "file": "gatsby-react-bootstrap-starter.md", "name": "gatsby-react-bootstrap-starter", "title": "Gatsby React Bootstrap Starter", "github_username": "billyjacoby", "repo": "billyjacoby/gatsby-react-bootstrap-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/billyjacoby/gatsby-react-bootstrap-starter", "demo_url": "https://billyjacoby.github.io/gatsby-react-bootstrap-starter/", - "stars": 30, - "forks": 10, - "open_issues": 15, + "stars": 39, + "forks": 13, + "open_issues": 33, "last_commit": "2019-04-30T23:58:54Z", "created_at": "2019-04-30T23:01:02Z", "description": null, - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/billyjacoby-gatsby-react-bootstrap-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/billyjacoby-gatsby-react-bootstrap-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/billyjacoby-gatsby-react-bootstrap-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/billyjacoby-gatsby-react-bootstrap-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/billyjacoby-gatsby-react-bootstrap-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/billyjacoby-gatsby-react-bootstrap-starter-2x.jpg" } }, - "biomadeira-jasper-master": { - "theme_key": "biomadeira-jasper-master", + "biomadeira-jasper": { + "theme_key": "biomadeira-jasper", "file": "jekyll-jasper.md", "name": "jasper", "title": "Jasper", "github_username": "jekyller", "repo": "jekyller/jasper", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jekyller/jasper", "demo_url": "https://biomadeira.github.io/jasper/", - "stars": 541, - "forks": 299, + "stars": 543, + "forks": 300, "open_issues": 10, "last_commit": "2020-05-15T08:32:48Z", "created_at": "2015-03-25T13:16:07Z", "description": "Full-featured Jekyll port of Ghost's default theme Casper 👻", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/biomadeira-jasper-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/biomadeira-jasper-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/biomadeira-jasper-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/biomadeira-jasper.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/biomadeira-jasper.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/biomadeira-jasper-2x.jpg" } }, - "biomadeira-sustain-gh-pages": { - "theme_key": "biomadeira-sustain-gh-pages", + "biomadeira-sustain": { + "theme_key": "biomadeira-sustain", "file": "jekyll-sustain.md", "name": "sustain", "title": "Sustain", "github_username": "jekyller", "repo": "jekyller/sustain", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/jekyller/sustain", "demo_url": "https://jekyller.github.io/sustain/", - "stars": 263, - "forks": 297, - "open_issues": 11, + "stars": 266, + "forks": 301, + "open_issues": 10, "last_commit": "2018-02-12T19:29:55Z", "created_at": "2015-10-27T22:42:43Z", "description": "🎹 Personal blog powered by Jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/biomadeira-sustain-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/biomadeira-sustain-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/biomadeira-sustain-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/biomadeira-sustain.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/biomadeira-sustain.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/biomadeira-sustain-2x.jpg" } }, - "biomadeira-vitae-gh-pages": { - "theme_key": "biomadeira-vitae-gh-pages", + "biomadeira-vitae": { + "theme_key": "biomadeira-vitae", "file": "jekyll-vitae.md", "name": "vitae", "title": "Vitae", "github_username": "jekyller", "repo": "jekyller/vitae", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/jekyller/vitae", "demo_url": "https://jekyller.github.io/vitae/", - "stars": 191, - "forks": 210, + "stars": 192, + "forks": 213, "open_issues": 1, "last_commit": "2018-02-11T19:26:50Z", "created_at": "2015-10-24T19:05:41Z", "description": "👨‍💼 Personal resume powered by Jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/biomadeira-vitae-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/biomadeira-vitae-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/biomadeira-vitae-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/biomadeira-vitae.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/biomadeira-vitae.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/biomadeira-vitae-2x.jpg" } }, - "bit-ranger-blog-gh-pages": { - "theme_key": "bit-ranger-blog-gh-pages", + "bit-ranger-blog": { + "theme_key": "bit-ranger-blog", "file": "jekyll-theme-tiffany.md", "name": "blog", "title": "Tiffany", "github_username": "bit-ranger", "repo": "bit-ranger/blog", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/bit-ranger/blog", "demo_url": "https://bit-ranger.github.io/blog/", - "stars": 108, - "forks": 106, + "stars": 109, + "forks": 110, "open_issues": 46, - "last_commit": "2019-12-20T03:08:07Z", + "last_commit": "2021-10-14T15:09:05Z", "created_at": "2015-01-25T05:46:39Z", "description": "博客", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/bit-ranger-blog-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bit-ranger-blog-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bit-ranger-blog-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/bit-ranger-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bit-ranger-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bit-ranger-blog-2x.jpg" + } + }, + "bitcoinvsalts-gridsome-shopify-starter": { + "theme_key": "jsappme-gridsome-shopify-starter", + "file": "gridsome-shopify.md", + "name": "gridsome-shopify-starter", + "title": "Gridsome Tailwind CSS Shopify Starter", + "github_username": "bitcoinvsalts", + "repo": "bitcoinvsalts/gridsome-shopify-starter", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/bitcoinvsalts/gridsome-shopify-starter", + "demo_url": "https://gridsome-shopify.netlify.app/", + "stars": 39, + "forks": 15, + "open_issues": 26, + "last_commit": "2020-07-24T13:52:23Z", + "created_at": "2020-06-16T19:25:47Z", + "description": "Ecommerce Headless PWA Gridsome Shopify Starter using TailwindCSS", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/jsappme-gridsome-shopify-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jsappme-gridsome-shopify-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jsappme-gridsome-shopify-starter-2x.jpg" } }, - "bjacquemet-personal-web-master": { - "theme_key": "bjacquemet-personal-web-master", + "bjacquemet-personal-web": { + "theme_key": "bjacquemet-personal-web", "file": "hugo-personal-web.md", "name": "personal-web", "title": "Personal Web", "github_username": "bjacquemet", "repo": "bjacquemet/personal-web", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/bjacquemet/personal-web", "demo_url": "https://themes.gohugo.io/theme/personal-web/", - "stars": 68, - "forks": 45, - "open_issues": 2, - "last_commit": "2020-09-17T17:25:44Z", + "stars": 80, + "forks": 58, + "open_issues": 4, + "last_commit": "2021-09-22T16:50:38Z", "created_at": "2019-02-25T16:08:01Z", "description": "Hugo Template for Freelancer Portfolio and Blog", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/bjacquemet-personal-web-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bjacquemet-personal-web-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bjacquemet-personal-web-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/bjacquemet-personal-web.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bjacquemet-personal-web.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bjacquemet-personal-web-2x.jpg" } }, - "blackrockdigital-startbootstrap-clean-blog-jekyll-master": { - "theme_key": "blackrockdigital-startbootstrap-clean-blog-jekyll-master", + "blackrockdigital-startbootstrap-clean-blog-jekyll": { + "theme_key": "blackrockdigital-startbootstrap-clean-blog-jekyll", "file": "startbootstrap-clean-blog-jekyll.md", "name": "startbootstrap-clean-blog-jekyll", "title": "Start Bootstrap Clean Blog", "github_username": "StartBootstrap", "repo": "StartBootstrap/startbootstrap-clean-blog-jekyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/StartBootstrap/startbootstrap-clean-blog-jekyll", - "demo_url": "http://blackrockdigital.github.io/startbootstrap-clean-blog-jekyll/", - "stars": 1667, - "forks": 1619, - "open_issues": 7, + "demo_url": "https://blackrockdigital.github.io/startbootstrap-clean-blog-jekyll/", + "stars": 1723, + "forks": 1692, + "open_issues": 10, "last_commit": "2020-06-18T20:27:50Z", "created_at": "2014-09-27T08:05:10Z", "description": "A Jekyll version of the Clean Blog theme by Start Bootstrap", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/blackrockdigital-startbootstrap-clean-blog-jekyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/blackrockdigital-startbootstrap-clean-blog-jekyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/blackrockdigital-startbootstrap-clean-blog-jekyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/blackrockdigital-startbootstrap-clean-blog-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/blackrockdigital-startbootstrap-clean-blog-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/blackrockdigital-startbootstrap-clean-blog-jekyll-2x.jpg" } }, - "blakenoll-gatsby-starter-styled-components-master": { - "theme_key": "blakenoll-gatsby-starter-styled-components-master", + "blakenoll-gatsby-starter-styled-components": { + "theme_key": "blakenoll-gatsby-starter-styled-components", "file": "gatsby-starter-styled-components.md", "name": "gatsby-starter-styled-components", "title": "Gatsby Starter Styled Components", "github_username": "blakenoll", "repo": "blakenoll/gatsby-starter-styled-components", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/blakenoll/gatsby-starter-styled-components", "demo_url": "https://gatsby-starter-styled-components.netlify.com/", - "stars": 8, - "forks": 2, - "open_issues": 15, - "last_commit": "2020-02-27T14:34:49Z", + "stars": 6, + "forks": 1, + "open_issues": 38, + "last_commit": "2021-07-28T13:19:19Z", "created_at": "2019-02-26T23:36:59Z", "description": "Gatsby starter using styled components with a sticky footer", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/blakenoll-gatsby-starter-styled-components-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/blakenoll-gatsby-starter-styled-components-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/blakenoll-gatsby-starter-styled-components-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/blakenoll-gatsby-starter-styled-components.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/blakenoll-gatsby-starter-styled-components.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/blakenoll-gatsby-starter-styled-components-2x.jpg" } }, - "blankoworld-hugo_theme_adam_eve-master": { - "theme_key": "blankoworld-hugo_theme_adam_eve-master", + "blankoworld-hugo_theme_adam_eve": { + "theme_key": "blankoworld-hugo_theme_adam_eve", "file": "hugo-adam-eve.md", "name": "hugo_theme_adam_eve", "title": "Adam & Eve", "github_username": "blankoworld", "repo": "blankoworld/hugo_theme_adam_eve", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/blankoworld/hugo_theme_adam_eve", "demo_url": "https://themes.gohugo.io/theme/hugo_theme_adam_eve/", "stars": 15, - "forks": 6, + "forks": 5, "open_issues": 1, "last_commit": "2020-07-22T20:14:57Z", "created_at": "2017-06-21T19:35:04Z", "description": "Adam & Eve theme for Hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/blankoworld-hugo_theme_adam_eve-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/blankoworld-hugo_theme_adam_eve-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/blankoworld-hugo_theme_adam_eve-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/blankoworld-hugo_theme_adam_eve.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/blankoworld-hugo_theme_adam_eve.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/blankoworld-hugo_theme_adam_eve-2x.jpg" + } + }, + "blazity-next-saas-starter": { + "theme_key": "blazity-next-saas-starter", + "file": "next-saas-starter.md", + "name": "next-saas-starter", + "title": "Next SaaS Starter", + "github_username": "Blazity", + "repo": "Blazity/next-saas-starter", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/Blazity/next-saas-starter", + "demo_url": "https://next-saas-starter-ashy.vercel.app/", + "stars": 504, + "forks": 136, + "open_issues": 17, + "last_commit": "2022-12-11T15:12:52Z", + "created_at": "2021-09-03T20:00:32Z", + "description": "⚡️ Free Next.js responsive landing page template for SaaS products made using JAMStack architecture.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/blazity-next-saas-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/blazity-next-saas-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/blazity-next-saas-starter-2x.jpg" } }, - "blleng-hexo-theme-lx-master": { - "theme_key": "blleng-hexo-theme-lx-master", + "blleng-hexo-theme-lx": { + "theme_key": "blleng-hexo-theme-lx", "file": "hexo-theme-lx.md", "name": "hexo-theme-lx", "title": "Lx", "github_username": "blleng", "repo": "blleng/hexo-theme-lx", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/blleng/hexo-theme-lx", "demo_url": "https://lx.blleng.cn/", - "stars": 138, - "forks": 15, - "open_issues": 2, - "last_commit": "2020-11-29T05:39:41Z", + "stars": 194, + "forks": 23, + "open_issues": 6, + "last_commit": "2022-11-26T15:10:31Z", "created_at": "2019-11-02T09:48:38Z", "description": "👉 A simple & clear & elegant Hexo theme. 🔭🔭Lx——一款简洁、美观的Hexo博客主题。", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/blleng-hexo-theme-lx-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/blleng-hexo-theme-lx-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/blleng-hexo-theme-lx-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/blleng-hexo-theme-lx.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/blleng-hexo-theme-lx.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/blleng-hexo-theme-lx-2x.jpg" } }, - "bluepeter-gatsby-material-ui-business-starter-master": { - "theme_key": "bluepeter-gatsby-material-ui-business-starter-master", + "bluepeter-gatsby-material-ui-business-starter": { + "theme_key": "bluepeter-gatsby-material-ui-business-starter", "file": "gatsby-material-ui-business-starter.md", "name": "gatsby-material-ui-business-starter", "title": "Material UI Business", "github_username": "bluepeter", "repo": "bluepeter/gatsby-material-ui-business-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/bluepeter/gatsby-material-ui-business-starter", "demo_url": "https://bluepeter.github.io/gatsby-material-ui-business-starter/", - "stars": 61, - "forks": 22, + "stars": 63, + "forks": 25, "open_issues": 1, "last_commit": "2020-08-04T17:56:55Z", "created_at": "2019-01-09T23:04:36Z", "description": "Beautiful Gatsby Material UI Business Starter", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/bluepeter-gatsby-material-ui-business-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bluepeter-gatsby-material-ui-business-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bluepeter-gatsby-material-ui-business-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/bluepeter-gatsby-material-ui-business-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bluepeter-gatsby-material-ui-business-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bluepeter-gatsby-material-ui-business-starter-2x.jpg" } }, - "borekb-gatsby-starter-mobx-master": { - "theme_key": "borekb-gatsby-starter-mobx-master", + "borekb-gatsby-starter-mobx": { + "theme_key": "borekb-gatsby-starter-mobx", "file": "gatsby-starter-mobx.md", "name": "gatsby-starter-mobx", "title": "Gatsby Starter Mobx", "github_username": "borekb", "repo": "borekb/gatsby-starter-mobx", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/borekb/gatsby-starter-mobx", "demo_url": "https://gatsby-starter-mobx.netlify.com/", "stars": 18, - "forks": 7, + "forks": 6, "open_issues": 1, "last_commit": "2018-11-25T19:41:19Z", "created_at": "2018-11-25T19:08:28Z", "description": "Gatsby starter with MobX and TypeScript", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/borekb-gatsby-starter-mobx-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/borekb-gatsby-starter-mobx-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/borekb-gatsby-starter-mobx-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/borekb-gatsby-starter-mobx.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/borekb-gatsby-starter-mobx.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/borekb-gatsby-starter-mobx-2x.jpg" } }, - "boyney123-evento-master": { - "theme_key": "boyney123-evento-master", + "boyney123-evento": { + "theme_key": "boyney123-evento", "file": "jekyll-evento.md", "name": "evento", "title": "Evento", "github_username": "boyney123", "repo": "boyney123/evento", "branch": "master", - "url": "https://github.com/boyney123/evento", - "stars": 42, - "forks": 50, + "default_branch": "master", + "github_url": "https://github.com/boyney123/evento", + "demo_url": "https://evento.davidboyne.co.uk/", + "stars": 41, + "forks": 46, "open_issues": 1, "last_commit": "2016-03-21T20:47:51Z", "created_at": "2016-01-30T15:51:32Z", "description": "A free to use open source Jekyll project. Allows people to create internal/external events, showing times and information for anybody that wants to attend.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/boyney123-evento-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/boyney123-evento-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/boyney123-evento-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/boyney123-evento.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/boyney123-evento.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/boyney123-evento-2x.jpg" } }, - "boywithsilverwings-gatsby-blog-starter-master": { - "theme_key": "boywithsilverwings-gatsby-blog-starter-master", + "boywithsilverwings-gatsby-blog-starter": { + "theme_key": "boywithsilverwings-gatsby-blog-starter", "file": "gatsby-blog-starter.md", "name": "gatsby-blog-starter", "title": "Blog Starter", "github_username": "agneym", "repo": "agneym/gatsby-blog-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/agneym/gatsby-blog-starter", "demo_url": "https://vigilant-leakey-a4f8cd.netlify.com/", - "stars": 19, - "forks": 13, + "stars": 18, + "forks": 12, "open_issues": 0, - "last_commit": "2020-12-11T19:33:19Z", + "last_commit": "2021-01-21T09:17:43Z", "created_at": "2018-12-25T17:01:37Z", "description": "A Gatsby Blog Starter with Styled Components ", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/boywithsilverwings-gatsby-blog-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/boywithsilverwings-gatsby-blog-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/boywithsilverwings-gatsby-blog-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/boywithsilverwings-gatsby-blog-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/boywithsilverwings-gatsby-blog-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/boywithsilverwings-gatsby-blog-starter-2x.jpg" } }, - "boywithsilverwings-gatsby-careers-page-master": { - "theme_key": "boywithsilverwings-gatsby-careers-page-master", + "boywithsilverwings-gatsby-careers-page": { + "theme_key": "boywithsilverwings-gatsby-careers-page", "file": "gatsby-careers-page.md", "name": "gatsby-careers-page", "title": "Gatsby Careers Page", "github_username": "agneym", "repo": "agneym/gatsby-careers-page", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/agneym/gatsby-careers-page", "demo_url": "https://hardcore-darwin-d7328f.netlify.com/", "stars": 7, @@ -3128,21 +3765,44 @@ "last_commit": "2018-12-29T19:52:49Z", "created_at": "2018-12-29T17:56:56Z", "description": "Job Listing Page", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/boywithsilverwings-gatsby-careers-page-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/boywithsilverwings-gatsby-careers-page-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/boywithsilverwings-gatsby-careers-page-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/boywithsilverwings-gatsby-careers-page.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/boywithsilverwings-gatsby-careers-page.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/boywithsilverwings-gatsby-careers-page-2x.jpg" + } + }, + "brady-kondek-streamer": { + "theme_key": "bradykondek-streamer", + "file": "streamer-theme.md", + "name": "streamer", + "title": "Streamer Theme", + "github_username": "brady-kondek", + "repo": "brady-kondek/streamer", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/brady-kondek/streamer", + "demo_url": "https://www.streamertheme.ga", + "stars": 6, + "forks": 3, + "open_issues": 0, + "last_commit": "2022-01-21T05:46:56Z", + "created_at": "2019-10-14T16:19:53Z", + "description": "Theme for streamer websites", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/bradykondek-streamer.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bradykondek-streamer.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bradykondek-streamer-2x.jpg" } }, - "bradykondek-streamer-master": { - "theme_key": "bradykondek-streamer-master", + "bradykondek-streamer": { + "theme_key": "bradykondek-streamer", "file": "streamer-theme.md", "name": "streamer", "title": "Streamer Theme", "github_username": "brady-kondek", "repo": "brady-kondek/streamer", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/brady-kondek/streamer", "demo_url": "https://www.streamertheme.ga", "stars": 5, @@ -3151,136 +3811,228 @@ "last_commit": "2019-10-25T19:26:07Z", "created_at": "2019-10-14T16:19:53Z", "description": "Theme for streamer websites", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/bradykondek-streamer-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bradykondek-streamer-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bradykondek-streamer-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/bradykondek-streamer.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bradykondek-streamer.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bradykondek-streamer-2x.jpg" + } + }, + "brennanbrown-enjoyment-work": { + "theme_key": "brennanbrown-enjoyment-work", + "file": "jekyll-enjoyment-work.md", + "name": "enjoyment-work", + "title": "Enjoyment Work", + "github_username": "brennanbrown", + "repo": "brennanbrown/enjoyment-work", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/brennanbrown/enjoyment-work", + "demo_url": "https://enjoyment-work.netlify.app", + "stars": 71, + "forks": 8, + "open_issues": 2, + "last_commit": "2022-12-08T19:28:37Z", + "created_at": "2020-11-17T06:18:31Z", + "description": "🗃️ A Digital Garden: Capturing my daily thoughts and progress, as well as curated ideas with unique synthesis—a personal zettelkasten. Built on Simply Jekyll by Raghuveer S.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/brennanbrown-enjoyment-work.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/brennanbrown-enjoyment-work.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/brennanbrown-enjoyment-work-2x.jpg" + } + }, + "brennanbrown-purelog": { + "theme_key": "brennanbrown-purelog", + "file": "jekyll-purelog.md", + "name": "purelog", + "title": "Purelog", + "github_username": "brennanbrown", + "repo": "brennanbrown/purelog", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/brennanbrown/purelog", + "demo_url": "https://purelog.netlify.app", + "stars": 18, + "forks": 30, + "open_issues": 0, + "last_commit": "2022-02-04T05:25:56Z", + "created_at": "2020-11-08T04:33:19Z", + "description": " 📔 A responsive sidebar Jekyll theme, created with the Pure.css framework, designed for writers and bloggers of all kinds.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/brennanbrown-purelog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/brennanbrown-purelog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/brennanbrown-purelog-2x.jpg" + } + }, + "brennanbrown-watery": { + "theme_key": "brennanbrown-watery", + "file": "jekyll-watery.md", + "name": "watery", + "title": "Watery", + "github_username": "brennanbrown", + "repo": "brennanbrown/watery", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/brennanbrown/watery", + "demo_url": "https://watery.netlify.app", + "stars": 9, + "forks": 7, + "open_issues": 0, + "last_commit": "2022-07-24T02:39:49Z", + "created_at": "2020-11-01T21:58:01Z", + "description": "🚰 A minimalist, bare-bones theme for Jekyll only using the Water.css framework while still following the best practices for accessibility and search-engine optimization.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/brennanbrown-watery.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/brennanbrown-watery.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/brennanbrown-watery-2x.jpg" } }, - "brianmaierjr-long-haul-master": { - "theme_key": "brianmaierjr-long-haul-master", + "brianmaierjr-long-haul": { + "theme_key": "brianmaierjr-long-haul", "file": "jekyll-long-haul.md", "name": "long-haul", "title": "Long Haul", "github_username": "brianmaierjr", "repo": "brianmaierjr/long-haul", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/brianmaierjr/long-haul", "demo_url": "https://brianmaierjr.com/long-haul/", - "stars": 516, - "forks": 609, - "open_issues": 0, - "last_commit": "2020-12-21T15:16:30Z", + "stars": 606, + "forks": 689, + "open_issues": 6, + "last_commit": "2022-09-13T04:36:54Z", "created_at": "2014-12-14T08:41:52Z", "description": "A minimal, type-focused Jekyll theme.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/brianmaierjr-long-haul-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/brianmaierjr-long-haul-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/brianmaierjr-long-haul-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/brianmaierjr-long-haul.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/brianmaierjr-long-haul.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/brianmaierjr-long-haul-2x.jpg" } }, - "brijeshb42-bitwiser-material-gh-pages": { - "theme_key": "brijeshb42-bitwiser-material-gh-pages", + "brijeshb42-bitwiser-material": { + "theme_key": "brijeshb42-bitwiser-material", "file": "jekyll-bitwiser-material.md", "name": "bitwiser-material", "title": "Bitwiser Material", "github_username": "brijeshb42", "repo": "brijeshb42/bitwiser-material", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/brijeshb42/bitwiser-material", "demo_url": "https://bitwiser.in/bitwiser-material/", - "stars": 30, - "forks": 25, + "stars": 32, + "forks": 33, "open_issues": 0, "last_commit": "2015-12-07T12:20:03Z", "created_at": "2015-07-11T20:55:48Z", "description": "jekyll material theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/brijeshb42-bitwiser-material-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/brijeshb42-bitwiser-material-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/brijeshb42-bitwiser-material-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/brijeshb42-bitwiser-material.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/brijeshb42-bitwiser-material.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/brijeshb42-bitwiser-material-2x.jpg" } }, - "brohlson-gatsby-datocms-starter-master": { - "theme_key": "brohlson-gatsby-datocms-starter-master", + "brohlson-gatsby-datocms-starter": { + "theme_key": "brohlson-gatsby-datocms-starter", "file": "gatsby-datocms-starter.md", "name": "gatsby-datocms-starter", "title": "Gatsby Datocms Starter", "github_username": "brohlson", "repo": "brohlson/gatsby-datocms-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/brohlson/gatsby-datocms-starter", "demo_url": "https://gatsby-datocms-starter.netlify.com/", - "stars": 26, - "forks": 4, - "open_issues": 10, - "last_commit": "2020-12-17T06:18:32Z", + "stars": 29, + "forks": 6, + "open_issues": 22, + "last_commit": "2021-03-08T03:15:59Z", "created_at": "2019-05-08T23:32:18Z", "description": "⚛️ My preferred configuration for Gatsby DatoCMS projects", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/brohlson-gatsby-datocms-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/brohlson-gatsby-datocms-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/brohlson-gatsby-datocms-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/brohlson-gatsby-datocms-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/brohlson-gatsby-datocms-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/brohlson-gatsby-datocms-starter-2x.jpg" } }, - "brunch-brunch.github.io-source": { - "theme_key": "brunch-brunch.github.io-source", + "brunch-brunch.github.io": { + "theme_key": "brunch-brunch.github.io", "file": "brunch-github.md", "name": "brunch.github.io", "title": "Brunch Github.io", "github_username": "brunch", "repo": "brunch/brunch.github.io", "branch": "source", + "default_branch": "source", "github_url": "https://github.com/brunch/brunch.github.io", "demo_url": "https://brunch.io/", - "stars": 116, + "stars": 115, "forks": 109, - "open_issues": 8, - "last_commit": "2019-12-16T18:09:47Z", + "open_issues": 5, + "last_commit": "2021-12-28T09:32:31Z", "created_at": "2011-01-27T12:07:06Z", "description": "The website", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/brunch-brunch.github.io-source.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/brunch-brunch.github.io-source.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/brunch-brunch.github.io-source-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/brunch-brunch.github.io.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/brunch-brunch.github.io.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/brunch-brunch.github.io-2x.jpg" } }, - "brxck-gatsby-starter-stripe-master": { - "theme_key": "brxck-gatsby-starter-stripe-master", + "brxck-gatsby-starter-stripe": { + "theme_key": "brxck-gatsby-starter-stripe", "file": "gatsby-starter-stripe.md", "name": "gatsby-starter-stripe", "title": "Gatsby Starter Stripe", "github_username": "brxck", "repo": "brxck/gatsby-starter-stripe", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/brxck/gatsby-starter-stripe", "demo_url": "https://gatsby-starter-stripe.netlify.com/", - "stars": 84, - "forks": 35, - "open_issues": 5, - "last_commit": "2020-07-05T19:05:05Z", + "stars": 107, + "forks": 43, + "open_issues": 2, + "last_commit": "2021-04-21T18:21:57Z", "created_at": "2019-02-22T00:49:32Z", "description": " 🛒 A starter storefront & admin UI with Gatsby, Stripe, & Netlify Functions.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/brxck-gatsby-starter-stripe-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/brxck-gatsby-starter-stripe-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/brxck-gatsby-starter-stripe-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/brxck-gatsby-starter-stripe.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/brxck-gatsby-starter-stripe.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/brxck-gatsby-starter-stripe-2x.jpg" + } + }, + "brxyxn-ultra-minimalista": { + "theme_key": "brxyxncorp-ultra-minimalista", + "file": "jekyll-ultra-minimalista.md", + "name": "ultra-minimalista", + "title": "Ultra-Minimalista", + "github_username": "brxyxn", + "repo": "brxyxn/ultra-minimalista", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/brxyxn/ultra-minimalista", + "demo_url": "https://brxyxncorp.github.io/ultra-minimalista/", + "stars": 0, + "forks": 3, + "open_issues": 0, + "last_commit": "2017-03-27T18:44:49Z", + "created_at": "2016-12-25T05:30:54Z", + "description": null, + "images": { + "hires": "https://www.jamstackthemes.dev/capture/brxyxncorp-ultra-minimalista.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/brxyxncorp-ultra-minimalista.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/brxyxncorp-ultra-minimalista-2x.jpg" } }, - "brxyxncorp-ultra-minimalista-master": { - "theme_key": "brxyxncorp-ultra-minimalista-master", + "brxyxncorp-ultra-minimalista": { + "theme_key": "brxyxncorp-ultra-minimalista", "file": "jekyll-ultra-minimalista.md", "name": "ultra-minimalista", "title": "Ultra-Minimalista", "github_username": "brxyxn", "repo": "brxyxn/ultra-minimalista", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/brxyxn/ultra-minimalista", "demo_url": "https://brxyxncorp.github.io/ultra-minimalista/", "stars": 0, @@ -3289,251 +4041,274 @@ "last_commit": "2017-03-27T18:44:49Z", "created_at": "2016-12-25T05:30:54Z", "description": null, - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/brxyxncorp-ultra-minimalista-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/brxyxncorp-ultra-minimalista-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/brxyxncorp-ultra-minimalista-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/brxyxncorp-ultra-minimalista.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/brxyxncorp-ultra-minimalista.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/brxyxncorp-ultra-minimalista-2x.jpg" } }, - "brycematheson-allegiant-master": { - "theme_key": "brycematheson-allegiant-master", + "brycematheson-allegiant": { + "theme_key": "brycematheson-allegiant", "file": "hugo-allegiant-theme.md", "name": "allegiant", "title": "Allegiant", "github_username": "brycematheson", "repo": "brycematheson/allegiant", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/brycematheson/allegiant", "demo_url": "https://themes.gohugo.io/theme/allegiant/", "stars": 24, - "forks": 13, + "forks": 14, "open_issues": 7, "last_commit": "2016-10-24T03:01:26Z", "created_at": "2015-11-21T18:05:54Z", "description": "A kick-ass theme for Hugo, a static-site generator, similar to Jekyll, but programmed in Go. (It's fast).", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/brycematheson-allegiant-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/brycematheson-allegiant-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/brycematheson-allegiant-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/brycematheson-allegiant.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/brycematheson-allegiant.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/brycematheson-allegiant-2x.jpg" } }, - "budparr-gohugo-theme-ananke-master": { - "theme_key": "budparr-gohugo-theme-ananke-master", + "budparr-gohugo-theme-ananke": { + "theme_key": "budparr-gohugo-theme-ananke", "file": "gohugo-theme-ananke.md", "name": "gohugo-theme-ananke", "title": "Ananke", "github_username": "theNewDynamic", "repo": "theNewDynamic/gohugo-theme-ananke", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/theNewDynamic/gohugo-theme-ananke", "demo_url": "https://gohugo-ananke-theme-demo.netlify.com/", - "stars": 551, - "forks": 577, - "open_issues": 88, - "last_commit": "2021-01-05T14:27:07Z", + "stars": 566, + "forks": 613, + "open_issues": 81, + "last_commit": "2021-02-03T15:08:22Z", "created_at": "2017-04-11T01:24:05Z", "description": "Ananke: A theme for Hugo Sites", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/budparr-gohugo-theme-ananke-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/budparr-gohugo-theme-ananke-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/budparr-gohugo-theme-ananke-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/budparr-gohugo-theme-ananke.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/budparr-gohugo-theme-ananke.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/budparr-gohugo-theme-ananke-2x.jpg" } }, - "bul-ikana-hugo-cards-master": { - "theme_key": "bul-ikana-hugo-cards-master", + "bul-ikana-hugo-cards": { + "theme_key": "bul-ikana-hugo-cards", "file": "hugo-cards-theme.md", "name": "hugo-cards", "title": "Hugo Cards", "github_username": "bul-ikana", "repo": "bul-ikana/hugo-cards", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/bul-ikana/hugo-cards", "demo_url": "https://themes.gohugo.io/theme/hugo-cards/", - "stars": 46, - "forks": 42, - "open_issues": 1, + "stars": 54, + "forks": 50, + "open_issues": 3, "last_commit": "2020-10-19T01:48:49Z", "created_at": "2018-09-29T23:11:06Z", "description": "A bootstrap based minimal hugo theme based on webjeda-cards", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/bul-ikana-hugo-cards-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bul-ikana-hugo-cards-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bul-ikana-hugo-cards-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/bul-ikana-hugo-cards.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/bul-ikana-hugo-cards.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/bul-ikana-hugo-cards-2x.jpg" } }, - "buttercms-gatsby-starter-buttercms-master": { - "theme_key": "buttercms-gatsby-starter-buttercms-master", + "buttercms-gatsby-starter-buttercms": { + "theme_key": "buttercms-gatsby-starter-buttercms", "file": "gatsby-starter-buttercms.md", "name": "gatsby-starter-buttercms", "title": "Gatsby Starter Buttercms", "github_username": "ButterCMS", "repo": "ButterCMS/gatsby-starter-buttercms", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ButterCMS/gatsby-starter-buttercms", "demo_url": "https://gatsby-starter-buttercms.netlify.com/", - "stars": 4, + "stars": 5, "forks": 8, - "open_issues": 3, - "last_commit": "2020-10-15T18:52:02Z", + "open_issues": 14, + "last_commit": "2022-12-19T14:59:03Z", "created_at": "2019-01-22T19:39:01Z", "description": "A starter template for spinning up a Gatsby+ ButterCMS site", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/buttercms-gatsby-starter-buttercms-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/buttercms-gatsby-starter-buttercms-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/buttercms-gatsby-starter-buttercms-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/buttercms-gatsby-starter-buttercms.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/buttercms-gatsby-starter-buttercms.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/buttercms-gatsby-starter-buttercms-2x.jpg" } }, - "caki0915-gatsby-starter-redux-master": { - "theme_key": "caki0915-gatsby-starter-redux-master", + "caki0915-gatsby-starter-redux": { + "theme_key": "caki0915-gatsby-starter-redux", "file": "gatsby-starter-redux.md", "name": "gatsby-starter-redux", "title": "Gatsby Starter Redux", "github_username": "caki0915", "repo": "caki0915/gatsby-starter-redux", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/caki0915/gatsby-starter-redux", "demo_url": "https://caki0915.github.io/gatsby-starter-redux/", - "stars": 46, - "forks": 15, - "open_issues": 10, + "stars": 44, + "forks": 14, + "open_issues": 40, "last_commit": "2020-01-14T17:50:27Z", "created_at": "2018-02-11T03:38:08Z", "description": "Simple and clean Startersite for Gatsby with Redux and Emotion ", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/caki0915-gatsby-starter-redux-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/caki0915-gatsby-starter-redux-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/caki0915-gatsby-starter-redux-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/caki0915-gatsby-starter-redux.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/caki0915-gatsby-starter-redux.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/caki0915-gatsby-starter-redux-2x.jpg" } }, - "calintat-minimal-master": { - "theme_key": "calintat-minimal-master", + "calintat-minimal": { + "theme_key": "calintat-minimal", "file": "minimal.md", "name": "minimal", "title": "Minimal", "github_username": "calintat", "repo": "calintat/minimal", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/calintat/minimal", "demo_url": "https://themes.gohugo.io/theme/minimal/", - "stars": 325, - "forks": 202, - "open_issues": 39, + "stars": 357, + "forks": 214, + "open_issues": 41, "last_commit": "2021-01-03T22:03:36Z", "created_at": "2017-07-08T20:50:31Z", "description": "Personal blog theme powered by Hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/calintat-minimal-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/calintat-minimal-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/calintat-minimal-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/calintat-minimal.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/calintat-minimal.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/calintat-minimal-2x.jpg" } }, - "calpa-gatsby-starter-calpa-blog-master": { - "theme_key": "calpa-gatsby-starter-calpa-blog-master", + "calpa-gatsby-starter-calpa-blog": { + "theme_key": "calpa-gatsby-starter-calpa-blog", "file": "gatsby-starter-calpa-blog.md", "name": "gatsby-starter-calpa-blog", "title": "Gatsby Starter Calpa Blog", "github_username": "calpa", "repo": "calpa/gatsby-starter-calpa-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/calpa/gatsby-starter-calpa-blog", "demo_url": "https://calpa.me/", - "stars": 311, - "forks": 66, - "open_issues": 12, - "last_commit": "2020-12-23T06:36:05Z", + "stars": 334, + "forks": 67, + "open_issues": 35, + "last_commit": "2022-12-07T11:47:29Z", "created_at": "2017-10-15T13:40:48Z", "description": "Calpa's Blog (GatsbyJS Starter X Netlify CMS)", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/calpa-gatsby-starter-calpa-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/calpa-gatsby-starter-calpa-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/calpa-gatsby-starter-calpa-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/calpa-gatsby-starter-calpa-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/calpa-gatsby-starter-calpa-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/calpa-gatsby-starter-calpa-blog-2x.jpg" + } + }, + "canhtran-maverick": { + "theme_key": "canhtran-maverick", + "file": "maverick.md", + "name": "maverick", + "title": "Maverick", + "github_username": "canhtran", + "repo": "canhtran/maverick", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/canhtran/maverick", + "demo_url": "https://maverick.canhtran.me", + "stars": 17, + "forks": 11, + "open_issues": 6, + "last_commit": "2023-01-14T06:09:33Z", + "created_at": "2022-06-26T05:04:55Z", + "description": "A minimal hugo theme focus on content", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/canhtran-maverick.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/canhtran-maverick.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/canhtran-maverick-2x.jpg" } }, - "carsonip-hugo-theme-minos-master": { - "theme_key": "carsonip-hugo-theme-minos-master", + "carsonip-hugo-theme-minos": { + "theme_key": "carsonip-hugo-theme-minos", "file": "hugo-theme-minos.md", "name": "hugo-theme-minos", "title": "Minos", "github_username": "carsonip", "repo": "carsonip/hugo-theme-minos", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/carsonip/hugo-theme-minos", "demo_url": "https://themes.gohugo.io/theme/hugo-theme-minos/", - "stars": 112, - "forks": 66, - "open_issues": 9, - "last_commit": "2020-04-21T13:26:59Z", + "stars": 127, + "forks": 74, + "open_issues": 8, + "last_commit": "2021-04-04T15:18:35Z", "created_at": "2017-02-18T21:48:02Z", "description": "A simple and retro styled Hugo theme ported from Hexo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/carsonip-hugo-theme-minos-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/carsonip-hugo-theme-minos-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/carsonip-hugo-theme-minos-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/carsonip-hugo-theme-minos.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/carsonip-hugo-theme-minos.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/carsonip-hugo-theme-minos-2x.jpg" } }, - "cboettig-hugo-now-ui-master": { - "theme_key": "cboettig-hugo-now-ui-master", + "cboettig-hugo-now-ui": { + "theme_key": "cboettig-hugo-now-ui", "file": "hugo-now-ui.md", "name": "hugo-now-ui", "title": "Now UI", "github_username": "cboettig", "repo": "cboettig/hugo-now-ui", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/cboettig/hugo-now-ui", "demo_url": "https://themes.gohugo.io/theme/hugo-now-ui/", - "stars": 96, - "forks": 65, + "stars": 99, + "forks": 62, "open_issues": 6, "last_commit": "2020-09-28T16:30:52Z", "created_at": "2017-11-24T22:14:31Z", "description": ":globe_with_meridians: Hugo adaptation of Now-UI from Creative Tim", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/cboettig-hugo-now-ui-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cboettig-hugo-now-ui-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cboettig-hugo-now-ui-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/cboettig-hugo-now-ui.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cboettig-hugo-now-ui.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cboettig-hugo-now-ui-2x.jpg" } }, - "cdeck3r-onedly-theme-master": { - "theme_key": "cdeck3r-onedly-theme-master", + "cdeck3r-onedly-theme": { + "theme_key": "cdeck3r-onedly-theme", "file": "hugo-onedly-theme.md", "name": "OneDly-Theme", "title": "OneDly Project", "github_username": "cdeck3r", "repo": "cdeck3r/OneDly-Theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/cdeck3r/OneDly-Theme", "demo_url": "https://themes.gohugo.io/theme/OneDly-Theme/", - "stars": 7, - "forks": 9, - "open_issues": 0, + "stars": 11, + "forks": 10, + "open_issues": 2, "last_commit": "2020-01-27T19:43:26Z", "created_at": "2019-08-05T19:25:52Z", "description": "Hugo theme for documenting One-Day-Only projects", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/cdeck3r-onedly-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cdeck3r-onedly-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cdeck3r-onedly-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/cdeck3r-onedly-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cdeck3r-onedly-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cdeck3r-onedly-theme-2x.jpg" } }, - "cfrome77-hugo-theme-sky-master": { - "theme_key": "cfrome77-hugo-theme-sky-master", + "cfrome77-hugo-theme-sky": { + "theme_key": "cfrome77-hugo-theme-sky", "file": "hugo-theme-sky.md", "name": "hugo-theme-sky", "title": "Sky", "github_username": "cfrome77", "repo": "cfrome77/hugo-theme-sky", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/cfrome77/hugo-theme-sky", "demo_url": "https://themes.gohugo.io/theme/hugo-theme-sky/", "stars": 2, @@ -3542,481 +4317,619 @@ "last_commit": "2019-04-21T14:53:25Z", "created_at": "2018-05-29T05:57:18Z", "description": "This is a simple Hugo theme that uses bootstrap", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/cfrome77-hugo-theme-sky-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cfrome77-hugo-theme-sky-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cfrome77-hugo-theme-sky-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/cfrome77-hugo-theme-sky.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cfrome77-hugo-theme-sky.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cfrome77-hugo-theme-sky-2x.jpg" } }, - "chalatz-yellowblue-master": { - "theme_key": "chalatz-yellowblue-master", + "chalatz-yellowblue": { + "theme_key": "chalatz-yellowblue", "file": "jekyll-yellowblue.md", "name": "yellowblue", "title": "Yellowblue", "github_username": "chalatz", "repo": "chalatz/yellowblue", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/chalatz/yellowblue", - "demo_url": "http://chalatz.github.io/yellowblue/", + "demo_url": "https://chalatz.github.io/yellowblue/", "stars": 13, "forks": 16, "open_issues": 3, "last_commit": "2017-07-31T09:02:44Z", "created_at": "2015-10-16T09:59:38Z", "description": "Yellowblue. A free responsive Jekyll blog theme.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/chalatz-yellowblue-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chalatz-yellowblue-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chalatz-yellowblue-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/chalatz-yellowblue.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chalatz-yellowblue.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chalatz-yellowblue-2x.jpg" } }, - "chaooo-hexo-theme-bluelake-master": { - "theme_key": "chaooo-hexo-theme-bluelake-master", + "chaooo-hexo-theme-bluelake": { + "theme_key": "chaooo-hexo-theme-bluelake", "file": "hexo-theme-BlueLake.md", "name": "hexo-theme-BlueLake", "title": "BlueLake", "github_username": "chaooo", "repo": "chaooo/hexo-theme-BlueLake", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/chaooo/hexo-theme-BlueLake", "demo_url": "https://chaoo.oschina.io/", - "stars": 315, - "forks": 124, - "open_issues": 17, - "last_commit": "2020-02-14T15:03:53Z", + "stars": 322, + "forks": 127, + "open_issues": 11, + "last_commit": "2022-04-21T08:30:19Z", "created_at": "2016-11-02T13:05:25Z", "description": "A simple theme for Hexo with great performance on different devices .", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/chaooo-hexo-theme-bluelake-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chaooo-hexo-theme-bluelake-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chaooo-hexo-theme-bluelake-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/chaooo-hexo-theme-bluelake.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chaooo-hexo-theme-bluelake.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chaooo-hexo-theme-bluelake-2x.jpg" + } + }, + "chec-commercejs-chopchop-demo": { + "theme_key": "chec-commercejs-chopchop-demo", + "file": "commercejs-chopchop-shop.md", + "name": "commercejs-chopchop-demo", + "title": "ChopChop Shop", + "github_username": "chec", + "repo": "chec/commercejs-chopchop-demo", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/chec/commercejs-chopchop-demo", + "demo_url": "https://commercejs-chopchop-demo.vercel.app/", + "stars": 133, + "forks": 56, + "open_issues": 3, + "last_commit": "2021-11-24T21:06:24Z", + "created_at": "2020-11-22T21:10:48Z", + "description": "A Commerce.js starter kit for Next.js. A beautifully designed elegantly developed, end to end commerce experience for developers and agencies. Pre-integrated with Stripe. One-click deploy to Vercel. ", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/chec-commercejs-chopchop-demo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chec-commercejs-chopchop-demo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chec-commercejs-chopchop-demo-2x.jpg" } }, - "chec-commercejs-nextjs-demo-store-master": { - "theme_key": "chec-commercejs-nextjs-demo-store-master", + "chec-commercejs-nextjs-demo-store": { + "theme_key": "chec-commercejs-nextjs-demo-store", "file": "commercejs-nextjs-demo-store.md", "name": "commercejs-nextjs-demo-store", "title": "Commerce.js Next.js Demo Store", "github_username": "chec", "repo": "chec/commercejs-nextjs-demo-store", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/chec/commercejs-nextjs-demo-store", "demo_url": "https://commercejs-demo-store.netlify.app/", - "stars": 676, - "forks": 87, - "open_issues": 16, - "last_commit": "2020-12-15T01:27:32Z", + "stars": 997, + "forks": 187, + "open_issues": 31, + "last_commit": "2022-02-14T17:27:02Z", "created_at": "2020-03-23T18:51:15Z", - "description": "Commerce demo store built for the Jamstack. Built with Commerce.js, Next.js, and can be one-click deployed to Netlify. Includes product catalog, categories, variants, cart, checkout, payments (Stripe) order confirmation, and printable receipts.", - "stale": false, + "description": "Commerce demo store built for the Jamstack. Built with Commerce.js, Next.js, and can be one-click deployed to Netlify. Includes product catalog, customer login, categories, variants, cart, checkout, payments (Stripe) order confirmation, and printable receipts.", "images": { - "hires": "https://www.jamstackthemes.dev/capture/chec-commercejs-nextjs-demo-store-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chec-commercejs-nextjs-demo-store-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chec-commercejs-nextjs-demo-store-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/chec-commercejs-nextjs-demo-store.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chec-commercejs-nextjs-demo-store.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chec-commercejs-nextjs-demo-store-2x.jpg" } }, - "chec-commercejs-vuejs-boilerplate-master": { - "theme_key": "chec-commercejs-vuejs-boilerplate-master", + "chec-commercejs-vuejs-boilerplate": { + "theme_key": "chec-commercejs-vuejs-boilerplate", "file": "commercejs-vuejs-boilerplate.md", "name": "commercejs-vuejs-boilerplate", "title": "Commerce.js Vue.js Boilerplate", "github_username": "chec", "repo": "chec/commercejs-vuejs-boilerplate", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/chec/commercejs-vuejs-boilerplate", "demo_url": "https://shoppable-campaign-demo.netlify.app/", - "stars": 10, - "forks": 8, + "stars": 43, + "forks": 19, "open_issues": 0, - "last_commit": "2020-10-07T21:10:51Z", + "last_commit": "2021-11-24T19:58:17Z", "created_at": "2020-07-10T16:25:24Z", "description": "Commerce.js boilerplate, built with Vue.js, for fast eCommerce development and design", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/chec-commercejs-vuejs-boilerplate-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chec-commercejs-vuejs-boilerplate-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chec-commercejs-vuejs-boilerplate-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/chec-commercejs-vuejs-boilerplate.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chec-commercejs-vuejs-boilerplate.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chec-commercejs-vuejs-boilerplate-2x.jpg" } }, - "chesterhow-tale-master": { - "theme_key": "chesterhow-tale-master", + "chesterhow-tale": { + "theme_key": "chesterhow-tale", "file": "jekyll-tale-theme.md", "name": "tale", "title": "Jekyll Tale", "github_username": "chesterhow", "repo": "chesterhow/tale", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/chesterhow/tale", "demo_url": "https://chesterhow.github.io/tale/", - "stars": 715, - "forks": 744, - "open_issues": 3, - "last_commit": "2020-09-16T05:48:54Z", + "stars": 906, + "forks": 845, + "open_issues": 4, + "last_commit": "2021-05-03T08:35:47Z", "created_at": "2017-03-10T04:32:23Z", "description": "Minimal Jekyll theme for storytellers", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/chesterhow-tale-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chesterhow-tale-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chesterhow-tale-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/chesterhow-tale.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chesterhow-tale.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chesterhow-tale-2x.jpg" + } + }, + "chetanverma16-react-portfolio-template": { + "theme_key": "chetanverma16-react-portfolio-template", + "file": "react-portfolio-template.md", + "name": "react-portfolio-template", + "title": "React Portfolio Template", + "github_username": "chetanverma16", + "repo": "chetanverma16/react-portfolio-template", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/chetanverma16/react-portfolio-template", + "demo_url": "https://react-portfolio-template.netlify.app/", + "stars": 804, + "forks": 382, + "open_issues": 8, + "last_commit": "2022-10-10T20:28:48Z", + "created_at": "2019-06-20T05:51:10Z", + "description": "Modern React Portfolio Template (FREE)", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/chetanverma16-react-portfolio-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chetanverma16-react-portfolio-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chetanverma16-react-portfolio-template-2x.jpg" } }, - "chibicode-solo-gh-pages": { - "theme_key": "chibicode-solo-gh-pages", + "chibicode-solo": { + "theme_key": "chibicode-solo", "file": "jekyll-solo.md", "name": "solo", "title": "Solo (single-page)", "github_username": "chibicode", "repo": "chibicode/solo", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/chibicode/solo", "demo_url": "https://chibicode.github.io/solo/", - "stars": 318, - "forks": 190, + "stars": 319, + "forks": 180, "open_issues": 1, "last_commit": "2017-10-25T11:45:17Z", "created_at": "2014-01-25T00:53:09Z", "description": ":older_man: [UNMAINTAINED]: Solo is a Jekyll theme that supports single-page websites only, but supports them well.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/chibicode-solo-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chibicode-solo-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chibicode-solo-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/chibicode-solo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chibicode-solo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chibicode-solo-2x.jpg" } }, - "chipsenkbeil-grid-side-master": { - "theme_key": "chipsenkbeil-grid-side-master", + "chipsenkbeil-grid-side": { + "theme_key": "chipsenkbeil-grid-side", "file": "hugo-gridside-theme.md", "name": "grid-side", "title": "GridSide", "github_username": "chipsenkbeil", "repo": "chipsenkbeil/grid-side", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/chipsenkbeil/grid-side", "demo_url": "https://themes.gohugo.io/theme/grid-side/", "stars": 30, - "forks": 23, + "forks": 21, "open_issues": 20, "last_commit": "2017-06-26T19:17:54Z", "created_at": "2015-08-09T19:22:58Z", "description": "Personal portfolio and blog for use by the Hugo generator.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/chipsenkbeil-grid-side-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chipsenkbeil-grid-side-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chipsenkbeil-grid-side-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/chipsenkbeil-grid-side.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chipsenkbeil-grid-side.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chipsenkbeil-grid-side-2x.jpg" } }, - "chipzoller-hugo-clarity-master": { - "theme_key": "chipzoller-hugo-clarity-master", + "chipzoller-hugo-clarity": { + "theme_key": "chipzoller-hugo-clarity", "file": "hugo-clarity.md", "name": "hugo-clarity", "title": "Clarity", "github_username": "chipzoller", "repo": "chipzoller/hugo-clarity", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/chipzoller/hugo-clarity", "demo_url": "https://themes.gohugo.io/theme/hugo-clarity/", - "stars": 151, - "forks": 94, - "open_issues": 10, - "last_commit": "2021-01-05T23:24:30Z", + "stars": 261, + "forks": 151, + "open_issues": 14, + "last_commit": "2021-08-21T00:46:55Z", "created_at": "2020-04-16T15:31:58Z", "description": "A theme for Hugo based on VMware Clarity", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/chipzoller-hugo-clarity-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chipzoller-hugo-clarity-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chipzoller-hugo-clarity-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/chipzoller-hugo-clarity.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chipzoller-hugo-clarity.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chipzoller-hugo-clarity-2x.jpg" + } + }, + "chringel21-chringel-hugo-theme": { + "theme_key": "chringel21-chringel-hugo-theme", + "file": "hugo-chringel.md", + "name": "chringel-hugo-theme", + "title": "chringel", + "github_username": "chringel21", + "repo": "chringel21/chringel-hugo-theme", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/chringel21/chringel-hugo-theme", + "demo_url": "https://chringel21.github.io/chringel-hugo-theme/", + "stars": 19, + "forks": 3, + "open_issues": 1, + "last_commit": "2022-11-28T11:45:51Z", + "created_at": "2021-12-22T12:52:08Z", + "description": "chringel - Privacy focused theme for Hugo", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/chringel21-chringel-hugo-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chringel21-chringel-hugo-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chringel21-chringel-hugo-theme-2x.jpg" } }, - "chrisbobbe-jekyll-theme-prologue-master": { - "theme_key": "chrisbobbe-jekyll-theme-prologue-master", + "chrisbobbe-jekyll-theme-prologue": { + "theme_key": "chrisbobbe-jekyll-theme-prologue", "file": "jekyll-theme-prologue.md", "name": "jekyll-theme-prologue", "title": "Prologue", "github_username": "chrisbobbe", "repo": "chrisbobbe/jekyll-theme-prologue", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/chrisbobbe/jekyll-theme-prologue", "demo_url": "https://chrisbobbe.github.io/jekyll-theme-prologue/", - "stars": 338, - "forks": 902, - "open_issues": 34, - "last_commit": "2020-01-29T07:13:24Z", + "stars": 399, + "forks": 921, + "open_issues": 32, + "last_commit": "2021-02-15T16:12:05Z", "created_at": "2018-01-07T03:51:49Z", "description": "A Jekyll version of the \"Prologue\" theme by HTML5 UP", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/chrisbobbe-jekyll-theme-prologue-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chrisbobbe-jekyll-theme-prologue-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chrisbobbe-jekyll-theme-prologue-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/chrisbobbe-jekyll-theme-prologue.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chrisbobbe-jekyll-theme-prologue.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chrisbobbe-jekyll-theme-prologue-2x.jpg" + } + }, + "chrisnmorrison-revista-gatsby-blog-magazine": { + "theme_key": "chrisnmorrison-revista-gatsby-blog-magazine", + "file": "gatsby-blog-revista.md", + "name": "revista-gatsby-blog-magazine", + "title": "Revista", + "github_username": "chrisnmorrison", + "repo": "chrisnmorrison/revista-gatsby-blog-magazine", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/chrisnmorrison/revista-gatsby-blog-magazine", + "demo_url": "https://revista-demo.netlify.app/", + "stars": 1, + "forks": 0, + "open_issues": 0, + "last_commit": "2023-01-22T23:45:48Z", + "created_at": "2022-12-31T01:13:23Z", + "description": "Modern, clean Gatsby Blog/Magazine template. Easy to customize, and ready to publish articles.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/chrisnmorrison-revista-gatsby-blog-magazine.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chrisnmorrison-revista-gatsby-blog-magazine.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chrisnmorrison-revista-gatsby-blog-magazine-2x.jpg" } }, - "chrisrhymes-bulma-clean-theme-master": { - "theme_key": "chrisrhymes-bulma-clean-theme-master", + "chrisrhymes-bulma-clean-theme": { + "theme_key": "chrisrhymes-bulma-clean-theme", "file": "bulma-clean-theme.md", "name": "bulma-clean-theme", "title": "Bulma Clean Theme", "github_username": "chrisrhymes", "repo": "chrisrhymes/bulma-clean-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/chrisrhymes/bulma-clean-theme", "demo_url": "https://www.csrhymes.com/bulma-clean-theme/", - "stars": 168, - "forks": 234, - "open_issues": 6, - "last_commit": "2020-12-20T19:16:14Z", + "stars": 317, + "forks": 410, + "open_issues": 3, + "last_commit": "2022-03-05T19:41:40Z", "created_at": "2018-10-13T20:07:28Z", "description": "A clean and modern Jekyll theme based on Bulma", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/chrisrhymes-bulma-clean-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chrisrhymes-bulma-clean-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chrisrhymes-bulma-clean-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/chrisrhymes-bulma-clean-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chrisrhymes-bulma-clean-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chrisrhymes-bulma-clean-theme-2x.jpg" } }, - "chrisrhymes-mere-blog-theme-master": { - "theme_key": "chrisrhymes-mere-blog-theme-master", + "chrisrhymes-mere-blog-theme": { + "theme_key": "chrisrhymes-mere-blog-theme", "file": "mere-blog-theme.md", "name": "mere-blog-theme", "title": "Mere Blog Theme", "github_username": "chrisrhymes", "repo": "chrisrhymes/mere-blog-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/chrisrhymes/mere-blog-theme", "demo_url": "https://www.csrhymes.com/mere-blog-theme/", - "stars": 14, - "forks": 22, - "open_issues": 0, - "last_commit": "2020-08-22T20:52:52Z", + "stars": 26, + "forks": 45, + "open_issues": 1, + "last_commit": "2021-02-27T08:50:32Z", "created_at": "2019-09-08T20:03:13Z", "description": "Mere is a minimal and simple blog theme, and nothing more, for use with Jekyll and GitHub Pages.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/chrisrhymes-mere-blog-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chrisrhymes-mere-blog-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chrisrhymes-mere-blog-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/chrisrhymes-mere-blog-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chrisrhymes-mere-blog-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chrisrhymes-mere-blog-theme-2x.jpg" } }, - "chrissimpkins-cinder-master": { - "theme_key": "chrissimpkins-cinder-master", + "chrissimpkins-cinder": { + "theme_key": "chrissimpkins-cinder", "file": "mkdocs-cinder.md", "name": "cinder", "title": "Cinder", "github_username": "chrissimpkins", "repo": "chrissimpkins/cinder", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/chrissimpkins/cinder", "demo_url": "https://sourcefoundry.org/cinder/", - "stars": 141, - "forks": 97, - "open_issues": 12, + "stars": 171, + "forks": 109, + "open_issues": 17, "last_commit": "2021-01-05T20:29:39Z", "created_at": "2015-08-28T03:45:23Z", "description": "A clean, responsive MkDocs theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/chrissimpkins-cinder-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chrissimpkins-cinder-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chrissimpkins-cinder-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/chrissimpkins-cinder.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/chrissimpkins-cinder.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/chrissimpkins-cinder-2x.jpg" } }, - "christianezeani-panthera-jekyll-master": { - "theme_key": "christianezeani-panthera-jekyll-master", + "christianezeani-panthera-jekyll": { + "theme_key": "christianezeani-panthera-jekyll", "file": "jekyll-theme-panthera-jekyll.md", "name": "panthera-jekyll", "title": "panthera-jekyll", "github_username": "christianezeani", "repo": "christianezeani/panthera-jekyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/christianezeani/panthera-jekyll", "demo_url": "https://demothemes.github.io/panthera-jekyll/", - "stars": 11, - "forks": 40, + "stars": 17, + "forks": 42, "open_issues": 1, "last_commit": "2020-08-01T14:23:19Z", "created_at": "2019-06-04T23:36:15Z", "description": "A quick and simple responsive developer portfolio theme for jekyll sites and GitHub Pages.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/christianezeani-panthera-jekyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/christianezeani-panthera-jekyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/christianezeani-panthera-jekyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/christianezeani-panthera-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/christianezeani-panthera-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/christianezeani-panthera-jekyll-2x.jpg" } }, - "christianmendoza-hugo-split-theme-master": { - "theme_key": "christianmendoza-hugo-split-theme-master", + "christianmendoza-hugo-split-theme": { + "theme_key": "christianmendoza-hugo-split-theme", "file": "hugo-split-theme.md", "name": "hugo-split-theme", "title": "Split", "github_username": "christianmendoza", "repo": "christianmendoza/hugo-split-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/christianmendoza/hugo-split-theme", "demo_url": "https://themes.gohugo.io/theme/hugo-split-theme/", "stars": 16, - "forks": 68, + "forks": 78, "open_issues": 4, "last_commit": "2017-12-27T15:19:40Z", "created_at": "2017-12-20T22:30:43Z", "description": "Port of Split template by One Page Love to Hugo", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/christianmendoza-hugo-split-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/christianmendoza-hugo-split-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/christianmendoza-hugo-split-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/christianmendoza-hugo-split-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/christianmendoza-hugo-split-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/christianmendoza-hugo-split-theme-2x.jpg" + } + }, + "cjkihl-gatsby-starter-redux": { + "theme_key": "caki0915-gatsby-starter-redux", + "file": "gatsby-starter-redux.md", + "name": "gatsby-starter-redux", + "title": "Gatsby Starter Redux", + "github_username": "cjkihl", + "repo": "cjkihl/gatsby-starter-redux", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/cjkihl/gatsby-starter-redux", + "demo_url": "https://caki0915.github.io/gatsby-starter-redux/", + "stars": 44, + "forks": 13, + "open_issues": 51, + "last_commit": "2020-01-14T17:50:27Z", + "created_at": "2018-02-11T03:38:08Z", + "description": "Simple and clean Startersite for Gatsby with Redux and Emotion ", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/caki0915-gatsby-starter-redux.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/caki0915-gatsby-starter-redux.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/caki0915-gatsby-starter-redux-2x.jpg" } }, - "cjsheets-mkdocs-rtd-dropdown-master": { - "theme_key": "cjsheets-mkdocs-rtd-dropdown-master", + "cjsheets-mkdocs-rtd-dropdown": { + "theme_key": "cjsheets-mkdocs-rtd-dropdown", "file": "mkdocs-rtd-dropdown.md", "name": "mkdocs-rtd-dropdown", "title": "Read The Docs Dropdown", "github_username": "cjsheets", "repo": "cjsheets/mkdocs-rtd-dropdown", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/cjsheets/mkdocs-rtd-dropdown", "demo_url": "https://readthedocs.sheets.ch/", - "stars": 53, - "forks": 37, + "stars": 60, + "forks": 42, "open_issues": 11, "last_commit": "2018-08-20T04:43:50Z", "created_at": "2017-10-29T19:41:23Z", "description": "MkDocs Theme - modified version of ReadTheDocs", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/cjsheets-mkdocs-rtd-dropdown-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cjsheets-mkdocs-rtd-dropdown-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cjsheets-mkdocs-rtd-dropdown-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/cjsheets-mkdocs-rtd-dropdown.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cjsheets-mkdocs-rtd-dropdown.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cjsheets-mkdocs-rtd-dropdown-2x.jpg" } }, - "clark-zhao-bohu-jekyll-theme-gh-pages": { - "theme_key": "clark-zhao-bohu-jekyll-theme-gh-pages", + "clark-zhao-bohu-jekyll-theme": { + "theme_key": "clark-zhao-bohu-jekyll-theme", "file": "jekyll-bohu-theme.md", "name": "bohu-jekyll-theme", "title": "BoHu", "github_username": "clark-zhao", "repo": "clark-zhao/bohu-jekyll-theme", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/clark-zhao/bohu-jekyll-theme", "demo_url": "https://llawlight.github.io/bohu-jekyll-theme/", "stars": 0, - "forks": 3, + "forks": 4, "open_issues": 0, "last_commit": "2020-05-07T15:44:44Z", "created_at": "2020-05-07T15:22:42Z", "description": null, - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/clark-zhao-bohu-jekyll-theme-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/clark-zhao-bohu-jekyll-theme-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/clark-zhao-bohu-jekyll-theme-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/clark-zhao-bohu-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/clark-zhao-bohu-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/clark-zhao-bohu-jekyll-theme-2x.jpg" } }, - "clarkhacks-minimal-text-master": { - "theme_key": "clarkhacks-minimal-text-master", + "clarkhacks-minimal-text": { + "theme_key": "clarkhacks-minimal-text", "file": "jekyll-theme-minimal-text.md", "name": "Minimal-Text", "title": "Minimal Text", "github_username": "clarkhacks", "repo": "clarkhacks/Minimal-Text", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/clarkhacks/Minimal-Text", "demo_url": "https://gh.clarkhacks.com/Minimal-Text/", - "stars": 5, - "forks": 15, + "stars": 9, + "forks": 23, "open_issues": 0, "last_commit": "2018-01-24T18:22:14Z", "created_at": "2020-04-06T20:27:28Z", "description": "Minimal Text Theme, Same version, new repository.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/clarkhacks-minimal-text-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/clarkhacks-minimal-text-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/clarkhacks-minimal-text-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/clarkhacks-minimal-text.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/clarkhacks-minimal-text.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/clarkhacks-minimal-text-2x.jpg" } }, - "clayh53-tufte-jekyll-master": { - "theme_key": "clayh53-tufte-jekyll-master", + "clayh53-tufte-jekyll": { + "theme_key": "clayh53-tufte-jekyll", "file": "jekyll-tufte-theme.md", "name": "tufte-jekyll", "title": "Tufte-Jekyll", "github_username": "clayh53", "repo": "clayh53/tufte-jekyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/clayh53/tufte-jekyll", "demo_url": "https://clayh53.github.io/tufte-jekyll/", - "stars": 454, - "forks": 165, - "open_issues": 12, - "last_commit": "2020-09-07T16:28:30Z", + "stars": 564, + "forks": 198, + "open_issues": 21, + "last_commit": "2022-11-06T22:26:31Z", "created_at": "2015-02-20T21:51:52Z", "description": "Minimal Jekyll blog styled to resemble the look and layout of Edward Tufte's books", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/clayh53-tufte-jekyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/clayh53-tufte-jekyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/clayh53-tufte-jekyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/clayh53-tufte-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/clayh53-tufte-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/clayh53-tufte-jekyll-2x.jpg" + } + }, + "cloudcannon-aviator-jekyll-template": { + "theme_key": "cloudcannon-aviator-jekyll-theme", + "file": "jekyll-aviator.md", + "name": "aviator-jekyll-template", + "title": "Aviator", + "github_username": "CloudCannon", + "repo": "CloudCannon/aviator-jekyll-template", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/CloudCannon/aviator-jekyll-template", + "demo_url": "https://tangerine-lemon.cloudvent.net/", + "stars": 350, + "forks": 185, + "open_issues": 6, + "last_commit": "2022-12-05T02:48:10Z", + "created_at": "2015-01-28T02:49:52Z", + "description": ":droplet: API Documentation template for Jekyll", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/cloudcannon-aviator-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cloudcannon-aviator-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cloudcannon-aviator-jekyll-theme-2x.jpg" } }, - "cloudcannon-aviator-jekyll-theme-master": { - "theme_key": "cloudcannon-aviator-jekyll-theme-master", + "cloudcannon-aviator-jekyll-theme": { + "theme_key": "cloudcannon-aviator-jekyll-theme", "file": "jekyll-aviator.md", "name": "aviator-jekyll-template", "title": "Aviator", "github_username": "CloudCannon", "repo": "CloudCannon/aviator-jekyll-template", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/CloudCannon/aviator-jekyll-template", "demo_url": "https://tangerine-lemon.cloudvent.net/", - "stars": 334, - "forks": 178, + "stars": 337, + "forks": 177, "open_issues": 6, "last_commit": "2019-08-21T01:54:54Z", "created_at": "2015-01-28T02:49:52Z", "description": ":droplet: API Documentation template for Jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/cloudcannon-aviator-jekyll-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cloudcannon-aviator-jekyll-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cloudcannon-aviator-jekyll-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/cloudcannon-aviator-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cloudcannon-aviator-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cloudcannon-aviator-jekyll-theme-2x.jpg" } }, - "cloudcannon-cause-jekyll-template-master": { - "theme_key": "cloudcannon-cause-jekyll-template-master", + "cloudcannon-cause-jekyll-template": { + "theme_key": "cloudcannon-cause-jekyll-template", "file": "jekyll-cause.md", "name": "cause-jekyll-template", "title": "Cause", "github_username": "CloudCannon", "repo": "CloudCannon/cause-jekyll-template", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/CloudCannon/cause-jekyll-template", "demo_url": "https://clean-oryx.cloudvent.net/", - "stars": 105, - "forks": 130, - "open_issues": 3, - "last_commit": "2019-07-02T01:58:10Z", + "stars": 122, + "forks": 133, + "open_issues": 4, + "last_commit": "2021-10-29T07:37:50Z", "created_at": "2016-11-16T01:59:02Z", "description": ":tulip: Not for profit template for Jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/cloudcannon-cause-jekyll-template-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cloudcannon-cause-jekyll-template-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cloudcannon-cause-jekyll-template-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/cloudcannon-cause-jekyll-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cloudcannon-cause-jekyll-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cloudcannon-cause-jekyll-template-2x.jpg" } }, - "cloudcannon-dopetrope-jekyll-theme-master": { - "theme_key": "cloudcannon-dopetrope-jekyll-theme-master", + "cloudcannon-dopetrope-jekyll-theme": { + "theme_key": "cloudcannon-dopetrope-jekyll-theme", "file": "jekyll-dopetrope.md", "name": "DopeTrope-Jekyll-Theme", "title": "Dopetrope", "github_username": "old-jekyll-templates", "repo": "old-jekyll-templates/DopeTrope-Jekyll-Theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/old-jekyll-templates/DopeTrope-Jekyll-Theme", "demo_url": "https://html5up.net/dopetrope", "stars": 56, @@ -4025,550 +4938,573 @@ "last_commit": "2015-09-13T23:34:58Z", "created_at": "2015-01-07T23:00:38Z", "description": "DopeTrope Jekyll Theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/cloudcannon-dopetrope-jekyll-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cloudcannon-dopetrope-jekyll-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cloudcannon-dopetrope-jekyll-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/cloudcannon-dopetrope-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cloudcannon-dopetrope-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cloudcannon-dopetrope-jekyll-theme-2x.jpg" } }, - "cloudcannon-edition-jekyll-template-master": { - "theme_key": "cloudcannon-edition-jekyll-template-master", + "cloudcannon-edition-jekyll-template": { + "theme_key": "cloudcannon-edition-jekyll-template", "file": "jekyll-edition.md", "name": "edition-jekyll-template", "title": "Edition", "github_username": "CloudCannon", "repo": "CloudCannon/edition-jekyll-template", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/CloudCannon/edition-jekyll-template", "demo_url": "https://long-pig.cloudvent.net/", - "stars": 260, - "forks": 225, - "open_issues": 3, - "last_commit": "2018-10-03T03:08:09Z", + "stars": 321, + "forks": 276, + "open_issues": 5, + "last_commit": "2022-12-05T02:49:05Z", "created_at": "2016-07-14T03:38:28Z", "description": ":books: Product documentation template for Jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/cloudcannon-edition-jekyll-template-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cloudcannon-edition-jekyll-template-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cloudcannon-edition-jekyll-template-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/cloudcannon-edition-jekyll-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cloudcannon-edition-jekyll-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cloudcannon-edition-jekyll-template-2x.jpg" } }, - "cloudcannon-frisco-jekyll-template-master": { - "theme_key": "cloudcannon-frisco-jekyll-template-master", + "cloudcannon-frisco-jekyll-template": { + "theme_key": "cloudcannon-frisco-jekyll-template", "file": "jekyll-frisco.md", "name": "frisco-jekyll-template", "title": "Frisco", "github_username": "CloudCannon", "repo": "CloudCannon/frisco-jekyll-template", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/CloudCannon/frisco-jekyll-template", "demo_url": "https://brave-submarine.cloudvent.net/", - "stars": 133, - "forks": 183, - "open_issues": 6, - "last_commit": "2019-06-04T23:13:51Z", + "stars": 154, + "forks": 195, + "open_issues": 4, + "last_commit": "2022-12-05T02:49:23Z", "created_at": "2016-11-01T04:12:15Z", "description": ":iphone: App marketing template for Jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/cloudcannon-frisco-jekyll-template-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cloudcannon-frisco-jekyll-template-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cloudcannon-frisco-jekyll-template-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/cloudcannon-frisco-jekyll-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cloudcannon-frisco-jekyll-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cloudcannon-frisco-jekyll-template-2x.jpg" } }, - "cloudcannon-hydra-jekyll-template-master": { - "theme_key": "cloudcannon-hydra-jekyll-template-master", + "cloudcannon-hydra-jekyll-template": { + "theme_key": "cloudcannon-hydra-jekyll-template", "file": "hydra-jekyll-template.md", "name": "hydra-jekyll-template", "title": "Hydra", "github_username": "CloudCannon", "repo": "CloudCannon/hydra-jekyll-template", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/CloudCannon/hydra-jekyll-template", "demo_url": "https://proud-alligator.cloudvent.net/", - "stars": 291, - "forks": 303, - "open_issues": 3, - "last_commit": "2020-10-04T22:49:05Z", + "stars": 377, + "forks": 352, + "open_issues": 1, + "last_commit": "2021-11-25T02:48:57Z", "created_at": "2016-10-14T04:39:07Z", "description": ":dragon: Product marketing template for Jekyll", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/cloudcannon-hydra-jekyll-template-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cloudcannon-hydra-jekyll-template-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cloudcannon-hydra-jekyll-template-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/cloudcannon-hydra-jekyll-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cloudcannon-hydra-jekyll-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cloudcannon-hydra-jekyll-template-2x.jpg" } }, - "cloudcannon-justice-jekyll-template-master": { - "theme_key": "cloudcannon-justice-jekyll-template-master", + "cloudcannon-justice-jekyll-template": { + "theme_key": "cloudcannon-justice-jekyll-template", "file": "jekyll-justice.md", "name": "justice-jekyll-template", "title": "Justice", "github_username": "CloudCannon", "repo": "CloudCannon/justice-jekyll-template", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/CloudCannon/justice-jekyll-template", "demo_url": "https://grey-grouse.cloudvent.net/", - "stars": 42, - "forks": 65, + "stars": 57, + "forks": 74, "open_issues": 1, - "last_commit": "2019-10-10T20:17:15Z", + "last_commit": "2021-11-24T22:55:13Z", "created_at": "2016-11-10T00:56:02Z", "description": ":office: Law firm themed business template for Jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/cloudcannon-justice-jekyll-template-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cloudcannon-justice-jekyll-template-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cloudcannon-justice-jekyll-template-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/cloudcannon-justice-jekyll-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cloudcannon-justice-jekyll-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cloudcannon-justice-jekyll-template-2x.jpg" } }, - "cloudcannon-malt-jekyll-template-master": { - "theme_key": "cloudcannon-malt-jekyll-template-master", + "cloudcannon-malt-jekyll-template": { + "theme_key": "cloudcannon-malt-jekyll-template", "file": "jekyll-malt.md", "name": "malt-jekyll-template", "title": "Malt", "github_username": "CloudCannon", "repo": "CloudCannon/malt-jekyll-template", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/CloudCannon/malt-jekyll-template", "demo_url": "https://whispering-boat.cloudvent.net/", - "stars": 16, - "forks": 23, - "open_issues": 0, - "last_commit": "2019-07-29T21:25:12Z", + "stars": 18, + "forks": 25, + "open_issues": 1, + "last_commit": "2022-12-05T02:46:48Z", "created_at": "2016-11-09T22:42:40Z", "description": ":beers: Event marketing template for Jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/cloudcannon-malt-jekyll-template-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cloudcannon-malt-jekyll-template-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cloudcannon-malt-jekyll-template-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/cloudcannon-malt-jekyll-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cloudcannon-malt-jekyll-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cloudcannon-malt-jekyll-template-2x.jpg" } }, - "cloudcannon-strata-jekyll-theme-master": { - "theme_key": "cloudcannon-strata-jekyll-theme-master", + "cloudcannon-strata-jekyll-theme": { + "theme_key": "cloudcannon-strata-jekyll-theme", "file": "jekyll-strata.md", "name": "Strata-Jekyll-Theme", "title": "Strata", "github_username": "old-jekyll-templates", "repo": "old-jekyll-templates/Strata-Jekyll-Theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/old-jekyll-templates/Strata-Jekyll-Theme", "demo_url": "https://html5up.net/strata", - "stars": 131, - "forks": 198, + "stars": 132, + "forks": 203, "open_issues": 11, "last_commit": "2017-01-23T17:47:28Z", "created_at": "2015-04-26T18:24:31Z", "description": null, - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/cloudcannon-strata-jekyll-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cloudcannon-strata-jekyll-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cloudcannon-strata-jekyll-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/cloudcannon-strata-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cloudcannon-strata-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cloudcannon-strata-jekyll-theme-2x.jpg" } }, - "cloudcannon-twenty-jekyll-theme-master": { - "theme_key": "cloudcannon-twenty-jekyll-theme-master", + "cloudcannon-twenty-jekyll-theme": { + "theme_key": "cloudcannon-twenty-jekyll-theme", "file": "jekyll-twenty.md", "name": "Twenty-Jekyll-Theme", "title": "Twenty", "github_username": "old-jekyll-templates", "repo": "old-jekyll-templates/Twenty-Jekyll-Theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/old-jekyll-templates/Twenty-Jekyll-Theme", "demo_url": "https://html5up.net/twenty", - "stars": 81, - "forks": 111, + "stars": 80, + "forks": 112, "open_issues": 2, "last_commit": "2015-01-07T22:44:35Z", "created_at": "2015-01-07T02:59:06Z", "description": "Twenty Jekyll Theme - more themes available @ http://cloudcannon.com/jekyll_themes", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/cloudcannon-twenty-jekyll-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cloudcannon-twenty-jekyll-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cloudcannon-twenty-jekyll-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/cloudcannon-twenty-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cloudcannon-twenty-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cloudcannon-twenty-jekyll-theme-2x.jpg" } }, - "cloudcannon-urban-jekyll-template-master": { - "theme_key": "cloudcannon-urban-jekyll-template-master", + "cloudcannon-urban-jekyll-template": { + "theme_key": "cloudcannon-urban-jekyll-template", "file": "jekyll-cc-urban.md", "name": "urban-jekyll-template", "title": "CC Urban", "github_username": "CloudCannon", "repo": "CloudCannon/urban-jekyll-template", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/CloudCannon/urban-jekyll-template", "demo_url": "https://teal-worm.cloudvent.net/", - "stars": 159, - "forks": 190, - "open_issues": 2, - "last_commit": "2019-10-10T20:43:50Z", + "stars": 169, + "forks": 191, + "open_issues": 1, + "last_commit": "2021-11-24T22:58:41Z", "created_at": "2016-11-10T03:08:36Z", "description": ":cloud: Agency template for Jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/cloudcannon-urban-jekyll-template-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cloudcannon-urban-jekyll-template-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cloudcannon-urban-jekyll-template-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/cloudcannon-urban-jekyll-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cloudcannon-urban-jekyll-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cloudcannon-urban-jekyll-template-2x.jpg" } }, - "codeasashu-hcz-jekyll-blog-master": { - "theme_key": "codeasashu-hcz-jekyll-blog-master", + "codeasashu-hcz-jekyll-blog": { + "theme_key": "codeasashu-hcz-jekyll-blog", "file": "jekyll-hcz-material.md", "name": "hcz-jekyll-blog", "title": "HCZ Material", "github_username": "codeasashu", "repo": "codeasashu/hcz-jekyll-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/codeasashu/hcz-jekyll-blog", "demo_url": "https://codeasashu.github.io/hcz-jekyll-blog/", - "stars": 218, - "forks": 255, + "stars": 232, + "forks": 261, "open_issues": 15, - "last_commit": "2017-05-07T01:16:31Z", + "last_commit": "2022-09-27T22:13:42Z", "created_at": "2016-06-02T07:30:03Z", "description": "A simple material theme for blogger", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/codeasashu-hcz-jekyll-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/codeasashu-hcz-jekyll-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/codeasashu-hcz-jekyll-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/codeasashu-hcz-jekyll-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/codeasashu-hcz-jekyll-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/codeasashu-hcz-jekyll-blog-2x.jpg" } }, - "codebushi-gatsby-starter-dimension-master": { - "theme_key": "codebushi-gatsby-starter-dimension-master", + "codebushi-gatsby-starter-dimension": { + "theme_key": "codebushi-gatsby-starter-dimension", "file": "gatsby-starter-dimension.md", "name": "gatsby-starter-dimension", "title": "Gatsby Starter Dimension", "github_username": "codebushi", "repo": "codebushi/gatsby-starter-dimension", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/codebushi/gatsby-starter-dimension", "demo_url": "https://gatsby-dimension.surge.sh/", - "stars": 284, - "forks": 177, - "open_issues": 20, + "stars": 323, + "forks": 201, + "open_issues": 47, "last_commit": "2020-01-25T22:55:34Z", "created_at": "2017-11-25T18:56:41Z", "description": "Gatsby.js V2 starter template based on Dimension, designed by HTML5 UP. Check out https://codebushi.com/gatsby-starters-and-themes/ for more Gatsby starters.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/codebushi-gatsby-starter-dimension-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/codebushi-gatsby-starter-dimension-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/codebushi-gatsby-starter-dimension-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/codebushi-gatsby-starter-dimension.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/codebushi-gatsby-starter-dimension.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/codebushi-gatsby-starter-dimension-2x.jpg" } }, - "codebushi-gatsby-starter-forty-master": { - "theme_key": "codebushi-gatsby-starter-forty-master", + "codebushi-gatsby-starter-forty": { + "theme_key": "codebushi-gatsby-starter-forty", "file": "gatsby-starter-forty.md", "name": "gatsby-starter-forty", "title": "Gatsby Starter Forty", "github_username": "codebushi", "repo": "codebushi/gatsby-starter-forty", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/codebushi/gatsby-starter-forty", "demo_url": "https://gatsby-forty.surge.sh/", - "stars": 201, - "forks": 94, - "open_issues": 3, + "stars": 207, + "forks": 101, + "open_issues": 5, "last_commit": "2020-01-25T22:40:52Z", "created_at": "2017-12-02T23:10:35Z", "description": "Gatsby.js V2 starter template based on Forty, designed by HTML5 UP. Check out https://codebushi.com/gatsby-starters-and-themes/ for more Gatsby starters.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/codebushi-gatsby-starter-forty-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/codebushi-gatsby-starter-forty-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/codebushi-gatsby-starter-forty-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/codebushi-gatsby-starter-forty.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/codebushi-gatsby-starter-forty.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/codebushi-gatsby-starter-forty-2x.jpg" } }, - "codebushi-gatsby-starter-photon-master": { - "theme_key": "codebushi-gatsby-starter-photon-master", + "codebushi-gatsby-starter-photon": { + "theme_key": "codebushi-gatsby-starter-photon", "file": "gatsby-starter-photon.md", "name": "gatsby-starter-photon", "title": "Gatsby Starter Photon", "github_username": "codebushi", "repo": "codebushi/gatsby-starter-photon", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/codebushi/gatsby-starter-photon", "demo_url": "https://gatsby-photon.surge.sh/", - "stars": 54, - "forks": 36, + "stars": 57, + "forks": 38, "open_issues": 1, "last_commit": "2019-10-24T10:38:55Z", "created_at": "2018-03-30T20:57:46Z", "description": "Gatsby.js V2 starter template based on Photon. Check out https://codebushi.com/gatsby-starters-and-themes/ for more Gatsby starters.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/codebushi-gatsby-starter-photon-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/codebushi-gatsby-starter-photon-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/codebushi-gatsby-starter-photon-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/codebushi-gatsby-starter-photon.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/codebushi-gatsby-starter-photon.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/codebushi-gatsby-starter-photon-2x.jpg" } }, - "codebushi-gatsby-starter-stellar-master": { - "theme_key": "codebushi-gatsby-starter-stellar-master", + "codebushi-gatsby-starter-stellar": { + "theme_key": "codebushi-gatsby-starter-stellar", "file": "gatsby-starter-stellar.md", "name": "gatsby-starter-stellar", "title": "Gatsby Starter Stellar", "github_username": "codebushi", "repo": "codebushi/gatsby-starter-stellar", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/codebushi/gatsby-starter-stellar", "demo_url": "https://gatsby-stellar.surge.sh/", - "stars": 129, - "forks": 32, + "stars": 137, + "forks": 37, "open_issues": 2, "last_commit": "2020-03-07T15:33:30Z", "created_at": "2018-03-18T22:04:12Z", "description": "Gatsby.js V2 starter template based on Stellar. Check out https://codebushi.com/gatsby-starters-and-themes/ for more Gatsby starters.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/codebushi-gatsby-starter-stellar-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/codebushi-gatsby-starter-stellar-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/codebushi-gatsby-starter-stellar-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/codebushi-gatsby-starter-stellar.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/codebushi-gatsby-starter-stellar.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/codebushi-gatsby-starter-stellar-2x.jpg" } }, - "codebushi-gatsby-starter-strata-master": { - "theme_key": "codebushi-gatsby-starter-strata-master", + "codebushi-gatsby-starter-strata": { + "theme_key": "codebushi-gatsby-starter-strata", "file": "gatsby-starter-strata.md", "name": "gatsby-starter-strata", "title": "Gatsby Strata", "github_username": "codebushi", "repo": "codebushi/gatsby-starter-strata", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/codebushi/gatsby-starter-strata", "demo_url": "https://gatsby-strata.surge.sh/", - "stars": 132, - "forks": 58, - "open_issues": 0, + "stars": 136, + "forks": 57, + "open_issues": 1, "last_commit": "2020-05-30T13:23:41Z", "created_at": "2018-01-09T23:53:31Z", "description": "Gatsby.js V2 starter template based on Strata, designed by HTML5 UP. Check out https://codebushi.com/gatsby-starters-and-themes/ for more Gatsby starters.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/codebushi-gatsby-starter-strata-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/codebushi-gatsby-starter-strata-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/codebushi-gatsby-starter-strata-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/codebushi-gatsby-starter-strata.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/codebushi-gatsby-starter-strata.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/codebushi-gatsby-starter-strata-2x.jpg" } }, - "coderzh-hugo-pacman-theme-master": { - "theme_key": "coderzh-hugo-pacman-theme-master", + "coderzh-hugo-pacman-theme": { + "theme_key": "coderzh-hugo-pacman-theme", "file": "hugo-pacman-theme.md", "name": "hugo-pacman-theme", "title": "Pacman", "github_username": "coderzh", "repo": "coderzh/hugo-pacman-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/coderzh/hugo-pacman-theme", "demo_url": "https://themes.gohugo.io/theme/hugo-pacman-theme/", "stars": 94, - "forks": 25, + "forks": 26, "open_issues": 4, "last_commit": "2020-02-07T07:01:58Z", "created_at": "2016-03-20T16:05:24Z", "description": "pacman theme support Hugo v0.37.1 now", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/coderzh-hugo-pacman-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/coderzh-hugo-pacman-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/coderzh-hugo-pacman-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/coderzh-hugo-pacman-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/coderzh-hugo-pacman-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/coderzh-hugo-pacman-theme-2x.jpg" + } + }, + "codexfelis-paws-template": { + "theme_key": "codexfelis-paws-template", + "file": "Paws.md", + "name": "paws-template", + "title": "Paws", + "github_username": "codexfelis", + "repo": "codexfelis/paws-template", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/codexfelis/paws-template", + "demo_url": "https://paws.codexfelis.dev/", + "stars": 2, + "forks": 2, + "open_issues": 1, + "last_commit": "2022-01-29T16:56:57Z", + "created_at": "2022-01-29T16:48:32Z", + "description": "Template repository to deploy your own site based on Paws - a lightweight and simple static site template for researchers in the Digital Humanities ", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/codexfelis-paws-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/codexfelis-paws-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/codexfelis-paws-template-2x.jpg" } }, - "codinfox-codinfox-lanyon-dev": { - "theme_key": "codinfox-codinfox-lanyon-dev", + "codinfox-codinfox-lanyon": { + "theme_key": "codinfox-codinfox-lanyon", "file": "jekyll-codinfox-lanyon.md", "name": "codinfox-lanyon", "title": "Codinfox Lanyon", "github_username": "codinfox", "repo": "codinfox/codinfox-lanyon", "branch": "dev", + "default_branch": "dev", "github_url": "https://github.com/codinfox/codinfox-lanyon", "demo_url": "https://codinfox.github.io/", - "stars": 389, - "forks": 243, + "stars": 392, + "forks": 244, "open_issues": 7, "last_commit": "2016-06-08T16:32:04Z", "created_at": "2015-03-05T06:44:00Z", "description": "Another jekyll templated based on lanyon", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/codinfox-codinfox-lanyon-dev.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/codinfox-codinfox-lanyon-dev.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/codinfox-codinfox-lanyon-dev-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/codinfox-codinfox-lanyon.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/codinfox-codinfox-lanyon.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/codinfox-codinfox-lanyon-2x.jpg" } }, - "colbyfayock-gatsby-starter-sass-master": { - "theme_key": "colbyfayock-gatsby-starter-sass-master", + "colbyfayock-gatsby-starter-sass": { + "theme_key": "colbyfayock-gatsby-starter-sass", "file": "gatsby-starter-sass.md", "name": "gatsby-starter-sass", "title": "Gatsby Starter Sass", "github_username": "colbyfayock", "repo": "colbyfayock/gatsby-starter-sass", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/colbyfayock/gatsby-starter-sass", "demo_url": "https://gatsby-starter-sass.netlify.com/", - "stars": 18, - "forks": 2, - "open_issues": 0, - "last_commit": "2020-12-30T17:58:10Z", + "stars": 30, + "forks": 7, + "open_issues": 15, + "last_commit": "2022-02-10T19:13:42Z", "created_at": "2019-04-27T20:01:35Z", "description": "👓 A Gatsby starter with Sass and no assumptions!", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/colbyfayock-gatsby-starter-sass-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/colbyfayock-gatsby-starter-sass-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/colbyfayock-gatsby-starter-sass-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/colbyfayock-gatsby-starter-sass.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/colbyfayock-gatsby-starter-sass.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/colbyfayock-gatsby-starter-sass-2x.jpg" } }, - "coletownsend-balzac-for-jekyll-master": { - "theme_key": "coletownsend-balzac-for-jekyll-master", + "coletownsend-balzac-for-jekyll": { + "theme_key": "coletownsend-balzac-for-jekyll", "file": "jekyll-balzac.md", "name": "Balzac-for-Jekyll", "title": "Balzac", "github_username": "ColeTownsend", "repo": "ColeTownsend/Balzac-for-Jekyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ColeTownsend/Balzac-for-Jekyll", "demo_url": "https://gtat.me/", - "stars": 492, - "forks": 439, - "open_issues": 11, + "stars": 509, + "forks": 442, + "open_issues": 12, "last_commit": "2018-06-26T22:21:42Z", "created_at": "2013-08-02T12:31:24Z", "description": "Your favorite AnchorCMS theme, now for Jekyll!", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/coletownsend-balzac-for-jekyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/coletownsend-balzac-for-jekyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/coletownsend-balzac-for-jekyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/coletownsend-balzac-for-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/coletownsend-balzac-for-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/coletownsend-balzac-for-jekyll-2x.jpg" } }, - "collective-gatsby-starter-plone-master": { - "theme_key": "collective-gatsby-starter-plone-master", + "collective-gatsby-starter-plone": { + "theme_key": "collective-gatsby-starter-plone", "file": "gatsby-starter-plone.md", "name": "gatsby-starter-plone", "title": "Gatsby Starter Plone", "github_username": "collective", "repo": "collective/gatsby-starter-plone", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/collective/gatsby-starter-plone", "demo_url": "https://collective.github.io/gatsby-starter-plone/", "stars": 3, "forks": 2, - "open_issues": 4, + "open_issues": 24, "last_commit": "2020-11-21T13:18:09Z", "created_at": "2018-07-19T13:08:38Z", "description": "Gatsby starter for Plone", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/collective-gatsby-starter-plone-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/collective-gatsby-starter-plone-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/collective-gatsby-starter-plone-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/collective-gatsby-starter-plone.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/collective-gatsby-starter-plone.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/collective-gatsby-starter-plone-2x.jpg" } }, - "contentful-userland-gatsby-contentful-starter-master": { - "theme_key": "contentful-userland-gatsby-contentful-starter-master", + "contentful-userland-gatsby-contentful-starter": { + "theme_key": "contentful-userland-gatsby-contentful-starter", "file": "gatsby-contentful-starter.md", "name": "gatsby-contentful-starter", "title": "Gatsby Contentful Starter", "github_username": "contentful-userland", "repo": "contentful-userland/gatsby-contentful-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/contentful-userland/gatsby-contentful-starter", "demo_url": "https://contentful-userland.github.io/gatsby-contentful-starter/", - "stars": 276, - "forks": 131, - "open_issues": 20, - "last_commit": "2020-08-15T08:58:24Z", + "stars": 279, + "forks": 125, + "open_issues": 23, + "last_commit": "2021-02-16T11:09:26Z", "created_at": "2018-01-29T21:29:51Z", "description": "Gatsby starter for a Contentful project from the community.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/contentful-userland-gatsby-contentful-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/contentful-userland-gatsby-contentful-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/contentful-userland-gatsby-contentful-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/contentful-userland-gatsby-contentful-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/contentful-userland-gatsby-contentful-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/contentful-userland-gatsby-contentful-starter-2x.jpg" } }, - "contentstack-gatsby-starter-contentstack-master": { - "theme_key": "contentstack-gatsby-starter-contentstack-master", + "contentstack-gatsby-starter-contentstack": { + "theme_key": "contentstack-gatsby-starter-contentstack", "file": "gatsby-starter-contentstack.md", "name": "gatsby-starter-contentstack", "title": "Gatsby Starter Contentstack", "github_username": "contentstack", "repo": "contentstack/gatsby-starter-contentstack", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/contentstack/gatsby-starter-contentstack", "demo_url": "https://gatsby-contentstack-starter.netlify.com/", - "stars": 4, - "forks": 10, - "open_issues": 3, - "last_commit": "2020-12-04T13:36:12Z", + "stars": 10, + "forks": 21, + "open_issues": 22, + "last_commit": "2022-11-04T11:21:33Z", "created_at": "2018-09-21T12:47:31Z", "description": "A starter kit for building a websites using Gatsby and Contentstack", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/contentstack-gatsby-starter-contentstack-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/contentstack-gatsby-starter-contentstack-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/contentstack-gatsby-starter-contentstack-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/contentstack-gatsby-starter-contentstack.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/contentstack-gatsby-starter-contentstack.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/contentstack-gatsby-starter-contentstack-2x.jpg" } }, - "cosmicjs-gatsby-agency-portfolio-master": { - "theme_key": "cosmicjs-gatsby-agency-portfolio-master", + "cosmicjs-gatsby-agency-portfolio": { + "theme_key": "cosmicjs-gatsby-agency-portfolio", "file": "gatsby-agency-portfolio.md", "name": "gatsby-agency-portfolio", "title": "Gatsby Agency Portfolio", "github_username": "cosmicjs", "repo": "cosmicjs/gatsby-agency-portfolio", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/cosmicjs/gatsby-agency-portfolio", "demo_url": "https://cosmicjs.com/apps/gatsby-agency-portfolio/demo", - "stars": 13, - "forks": 22, + "stars": 19, + "forks": 26, "open_issues": 0, "last_commit": "2019-05-13T17:06:52Z", "created_at": "2019-05-13T17:02:32Z", "description": "Portfolio client designed with creative agencies in mind.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/cosmicjs-gatsby-agency-portfolio-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cosmicjs-gatsby-agency-portfolio-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cosmicjs-gatsby-agency-portfolio-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/cosmicjs-gatsby-agency-portfolio.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cosmicjs-gatsby-agency-portfolio.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cosmicjs-gatsby-agency-portfolio-2x.jpg" } }, - "cosmicjs-gatsby-blog-cosmicjs-master": { - "theme_key": "cosmicjs-gatsby-blog-cosmicjs-master", + "cosmicjs-gatsby-blog-cosmicjs": { + "theme_key": "cosmicjs-gatsby-blog-cosmicjs", "file": "gatsby-blog-cosmicjs.md", "name": "gatsby-blog-cosmicjs", "title": "Gatsby Blog Cosmicjs", "github_username": "cosmicjs", "repo": "cosmicjs/gatsby-blog-cosmicjs", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/cosmicjs/gatsby-blog-cosmicjs", "demo_url": "https://gatsby-blog-cosmicjs.netlify.com/", - "stars": 22, - "forks": 26, - "open_issues": 5, + "stars": 24, + "forks": 27, + "open_issues": 21, "last_commit": "2020-10-25T15:54:09Z", "created_at": "2018-06-05T18:40:26Z", "description": "🚀⚡️ Blazing fast blog built with Gatsby and the Cosmic Headless CMS 🔥", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/cosmicjs-gatsby-blog-cosmicjs-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cosmicjs-gatsby-blog-cosmicjs-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cosmicjs-gatsby-blog-cosmicjs-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/cosmicjs-gatsby-blog-cosmicjs.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cosmicjs-gatsby-blog-cosmicjs.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cosmicjs-gatsby-blog-cosmicjs-2x.jpg" } }, - "cosmicjs-gatsby-docs-app-master": { - "theme_key": "cosmicjs-gatsby-docs-app-master", + "cosmicjs-gatsby-docs-app": { + "theme_key": "cosmicjs-gatsby-docs-app", "file": "gatsby-docs-app.md", "name": "gatsby-docs-app", "title": "Gatsby Docs App", "github_username": "cosmicjs", "repo": "cosmicjs/gatsby-docs-app", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/cosmicjs/gatsby-docs-app", "demo_url": "https://cosmicjs.com/apps/gatsby-docs/demo", "stars": 6, @@ -4577,481 +5513,642 @@ "last_commit": "2019-02-12T17:43:22Z", "created_at": "2019-02-11T17:12:40Z", "description": "Create and view documentation using Gatsby and Cosmic JS", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/cosmicjs-gatsby-docs-app-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cosmicjs-gatsby-docs-app-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cosmicjs-gatsby-docs-app-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/cosmicjs-gatsby-docs-app.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cosmicjs-gatsby-docs-app.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cosmicjs-gatsby-docs-app-2x.jpg" } }, - "cosmicjs-gatsby-localization-app-starter-master": { - "theme_key": "cosmicjs-gatsby-localization-app-starter-master", + "cosmicjs-gatsby-localization-app-starter": { + "theme_key": "cosmicjs-gatsby-localization-app-starter", "file": "gatsby-localization-app-starter.md", "name": "gatsby-localization-app-starter", "title": "Localization App Starter", "github_username": "cosmicjs", "repo": "cosmicjs/gatsby-localization-app-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/cosmicjs/gatsby-localization-app-starter", "demo_url": "https://cosmicjs.com/apps/gatsby-localization-app-starter/demo", - "stars": 4, + "stars": 3, "forks": 2, "open_issues": 0, "last_commit": "2019-05-03T16:41:38Z", "created_at": "2019-05-03T16:34:14Z", "description": "A Gatsby localization website powered by Cosmic JS", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/cosmicjs-gatsby-localization-app-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cosmicjs-gatsby-localization-app-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cosmicjs-gatsby-localization-app-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/cosmicjs-gatsby-localization-app-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cosmicjs-gatsby-localization-app-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cosmicjs-gatsby-localization-app-starter-2x.jpg" } }, - "cosmicjs-gatsby-starter-master": { - "theme_key": "cosmicjs-gatsby-starter-master", + "cosmicjs-gatsby-starter": { + "theme_key": "cosmicjs-gatsby-starter", "file": "gatsby-cosmicjs-starter.md", "name": "gatsby-starter", "title": "Cosmic Gatsby Starter", "github_username": "cosmicjs", "repo": "cosmicjs/gatsby-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/cosmicjs/gatsby-starter", "demo_url": "https://cosmicjs-gatsby-starter.netlify.com/", "stars": 15, - "forks": 7, + "forks": 6, "open_issues": 0, "last_commit": "2020-03-24T21:48:03Z", "created_at": "2018-06-10T19:54:17Z", "description": "Install a Cosmic-powered Gatsby app in seconds 🔥 ", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/cosmicjs-gatsby-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cosmicjs-gatsby-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cosmicjs-gatsby-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/cosmicjs-gatsby-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cosmicjs-gatsby-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cosmicjs-gatsby-starter-2x.jpg" + } + }, + "cossssmin-gridsome-starter-bleda": { + "theme_key": "hellocosmin-gridsome-starter-bleda", + "file": "bleda.md", + "name": "gridsome-starter-bleda", + "title": "Gridsome Bleda", + "github_username": "cossssmin", + "repo": "cossssmin/gridsome-starter-bleda", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/cossssmin/gridsome-starter-bleda", + "demo_url": "https://gridsome-starter-bleda.netlify.com/", + "stars": 187, + "forks": 50, + "open_issues": 13, + "last_commit": "2021-05-10T07:41:22Z", + "created_at": "2019-03-04T14:14:31Z", + "description": "Gridsome blog starter, built with Tailwind CSS", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/hellocosmin-gridsome-starter-bleda.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hellocosmin-gridsome-starter-bleda.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hellocosmin-gridsome-starter-bleda-2x.jpg" } }, - "cotes2020-jekyll-theme-chirpy-master": { - "theme_key": "cotes2020-jekyll-theme-chirpy-master", + "cotes2020-jekyll-theme-chirpy": { + "theme_key": "cotes2020-jekyll-theme-chirpy", "file": "jekyll-theme-chirpy.md", "name": "jekyll-theme-chirpy", "title": "Chirpy", "github_username": "cotes2020", "repo": "cotes2020/jekyll-theme-chirpy", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/cotes2020/jekyll-theme-chirpy", "demo_url": "https://cotes2020.github.io/chirpy-demo/", - "stars": 619, - "forks": 1248, - "open_issues": 1, - "last_commit": "2021-01-10T10:48:36Z", + "stars": 3469, + "forks": 3233, + "open_issues": 17, + "last_commit": "2023-01-18T15:13:06Z", "created_at": "2019-01-12T07:37:30Z", - "description": "A minimal, sidebar, responsive web design Jekyll theme that focuses on text presentation. ", - "stale": false, + "description": "A minimal, responsive, and powerful Jekyll theme for presenting professional writing.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/cotes2020-jekyll-theme-chirpy.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cotes2020-jekyll-theme-chirpy.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cotes2020-jekyll-theme-chirpy-2x.jpg" + } + }, + "craigary-nobelium": { + "theme_key": "craigary-nobelium", + "file": "nobelium.md", + "name": "nobelium", + "title": "Nobelium", + "github_username": "craigary", + "repo": "craigary/nobelium", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/craigary/nobelium", + "demo_url": "https://nobelium.vercel.app/", + "stars": 1931, + "forks": 1306, + "open_issues": 1, + "last_commit": "2022-03-03T16:55:12Z", + "created_at": "2021-03-14T06:52:48Z", + "description": "A static blog build on top of Notion and NextJS, deployed on Vercel.", "images": { - "hires": "https://www.jamstackthemes.dev/capture/cotes2020-jekyll-theme-chirpy-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cotes2020-jekyll-theme-chirpy-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cotes2020-jekyll-theme-chirpy-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/craigary-nobelium.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/craigary-nobelium.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/craigary-nobelium-2x.jpg" } }, - "creasoft-dev-fundamenty-master": { - "theme_key": "creasoft-dev-fundamenty-master", + "creasoft-dev-fundamenty": { + "theme_key": "creasoft-dev-fundamenty", "file": "11ty-fundamenty.md", "name": "fundamenty", "title": "Fundamenty", "github_username": "creasoft-dev", "repo": "creasoft-dev/fundamenty", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/creasoft-dev/fundamenty", "demo_url": "https://creasoft-dev.github.io/fundamenty/", - "stars": 25, - "forks": 3, - "open_issues": 4, - "last_commit": "2020-12-03T04:24:36Z", + "stars": 55, + "forks": 11, + "open_issues": 18, + "last_commit": "2022-02-11T11:23:09Z", "created_at": "2020-07-19T14:35:02Z", "description": "Eleventy starter project. Uses Tailwind, Algolia, Webpack. Supports multi-language", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/creasoft-dev-fundamenty-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/creasoft-dev-fundamenty-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/creasoft-dev-fundamenty-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/creasoft-dev-fundamenty.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/creasoft-dev-fundamenty.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/creasoft-dev-fundamenty-2x.jpg" } }, - "cssandstuff-hugo-theme-winning-master": { - "theme_key": "cssandstuff-hugo-theme-winning-master", + "cssandstuff-hugo-theme-winning": { + "theme_key": "cssandstuff-hugo-theme-winning", "file": "hugo-theme-winning.md", "name": "hugo-theme-winning", "title": "Winning", "github_username": "cssandstuff", "repo": "cssandstuff/hugo-theme-winning", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/cssandstuff/hugo-theme-winning", "demo_url": "https://themes.gohugo.io/theme/hugo-theme-winning/", - "stars": 46, - "forks": 14, - "open_issues": 3, + "stars": 49, + "forks": 13, + "open_issues": 4, "last_commit": "2020-05-07T09:25:28Z", "created_at": "2018-07-06T02:33:01Z", "description": null, - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/cssandstuff-hugo-theme-winning-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cssandstuff-hugo-theme-winning-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cssandstuff-hugo-theme-winning-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/cssandstuff-hugo-theme-winning.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cssandstuff-hugo-theme-winning.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cssandstuff-hugo-theme-winning-2x.jpg" + } + }, + "curtiscde-hugo-theme-dopetrope": { + "theme_key": "curtiscde-hugo-theme-dopetrope", + "file": "hugo-theme-dopetrope.md", + "name": "hugo-theme-dopetrope", + "title": "Dopetrope", + "github_username": "curtiscde", + "repo": "curtiscde/hugo-theme-dopetrope", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/curtiscde/hugo-theme-dopetrope", + "demo_url": "https://hugo-theme-dopetrope.netlify.com/", + "stars": 25, + "forks": 18, + "open_issues": 3, + "last_commit": "2022-04-06T17:36:33Z", + "created_at": "2018-02-10T14:10:30Z", + "description": "Dopetrope theme for Hugo static site generator", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/curtiscde-hugo-theme-dopetrope.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/curtiscde-hugo-theme-dopetrope.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/curtiscde-hugo-theme-dopetrope-2x.jpg" + } + }, + "curtiscde-hugo-theme-massively": { + "theme_key": "curtiscde-hugo-theme-massively", + "file": "hugo-theme-massively.md", + "name": "hugo-theme-massively", + "title": "Hugo Massively", + "github_username": "curtiscde", + "repo": "curtiscde/hugo-theme-massively", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/curtiscde/hugo-theme-massively", + "demo_url": "https://hugo-theme-massively.netlify.com/", + "stars": 131, + "forks": 137, + "open_issues": 8, + "last_commit": "2022-11-11T15:25:50Z", + "created_at": "2018-02-24T14:39:43Z", + "description": "Massively theme for Hugo static site generator", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/curtiscde-hugo-theme-massively.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/curtiscde-hugo-theme-massively.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/curtiscde-hugo-theme-massively-2x.jpg" } }, - "curtistimson-hugo-theme-dopetrope-master": { - "theme_key": "curtistimson-hugo-theme-dopetrope-master", + "curtistimson-hugo-theme-dopetrope": { + "theme_key": "curtistimson-hugo-theme-dopetrope", "file": "hugo-theme-dopetrope.md", "name": "hugo-theme-dopetrope", "title": "Dopetrope", "github_username": "curtistimson", "repo": "curtistimson/hugo-theme-dopetrope", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/curtistimson/hugo-theme-dopetrope", "demo_url": "https://hugo-theme-dopetrope.netlify.com/", - "stars": 20, - "forks": 14, - "open_issues": 3, + "stars": 21, + "forks": 13, + "open_issues": 4, "last_commit": "2019-01-24T12:05:08Z", "created_at": "2018-02-10T14:10:30Z", "description": "Dopetrope theme for Hugo static site generator", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/curtistimson-hugo-theme-dopetrope-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/curtistimson-hugo-theme-dopetrope-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/curtistimson-hugo-theme-dopetrope-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/curtistimson-hugo-theme-dopetrope.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/curtistimson-hugo-theme-dopetrope.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/curtistimson-hugo-theme-dopetrope-2x.jpg" } }, - "curtistimson-hugo-theme-massively-master": { - "theme_key": "curtistimson-hugo-theme-massively-master", + "curtistimson-hugo-theme-massively": { + "theme_key": "curtistimson-hugo-theme-massively", "file": "hugo-theme-massively.md", "name": "hugo-theme-massively", "title": "Hugo Massively", "github_username": "curtistimson", "repo": "curtistimson/hugo-theme-massively", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/curtistimson/hugo-theme-massively", "demo_url": "https://hugo-theme-massively.netlify.com/", - "stars": 85, - "forks": 89, - "open_issues": 20, - "last_commit": "2020-04-21T07:34:05Z", + "stars": 96, + "forks": 106, + "open_issues": 21, + "last_commit": "2021-11-28T11:33:28Z", "created_at": "2018-02-24T14:39:43Z", "description": "Massively theme for Hugo static site generator", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/curtistimson-hugo-theme-massively-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/curtistimson-hugo-theme-massively-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/curtistimson-hugo-theme-massively-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/curtistimson-hugo-theme-massively.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/curtistimson-hugo-theme-massively.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/curtistimson-hugo-theme-massively-2x.jpg" } }, - "cvluca-gatsby-starter-markdown-master": { - "theme_key": "cvluca-gatsby-starter-markdown-master", + "cvluca-gatsby-starter-markdown": { + "theme_key": "cvluca-gatsby-starter-markdown", "file": "gatsby-starter-markdown.md", "name": "gatsby-starter-markdown", "title": "Gatsby Starter Markdown", "github_username": "cvluca", "repo": "cvluca/gatsby-starter-markdown", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/cvluca/gatsby-starter-markdown", "demo_url": "https://cvluca.github.io/gatsby-starter-markdown/", - "stars": 59, - "forks": 27, - "open_issues": 5, + "stars": 68, + "forks": 37, + "open_issues": 29, "last_commit": "2020-10-30T15:31:01Z", "created_at": "2018-11-08T02:07:22Z", "description": "boilerplate for markdown-based website", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/cvluca-gatsby-starter-markdown-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cvluca-gatsby-starter-markdown-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cvluca-gatsby-starter-markdown-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/cvluca-gatsby-starter-markdown.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cvluca-gatsby-starter-markdown.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cvluca-gatsby-starter-markdown-2x.jpg" } }, - "cwlsn-gatsby-simple-contentful-starter-master": { - "theme_key": "cwlsn-gatsby-simple-contentful-starter-master", + "cwlsn-gatsby-simple-contentful-starter": { + "theme_key": "cwlsn-gatsby-simple-contentful-starter", "file": "gatsby-simple-contentful-starter.md", "name": "gatsby-simple-contentful-starter", "title": "Gatsby Simple Contentful Starter", "github_username": "cwlsn", "repo": "cwlsn/gatsby-simple-contentful-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/cwlsn/gatsby-simple-contentful-starter", "demo_url": "https://gatsby-simple-contentful-starter.netlify.com/", "stars": 9, - "forks": 2, + "forks": 1, "open_issues": 0, "last_commit": "2019-01-22T22:44:46Z", "created_at": "2018-10-10T00:47:54Z", "description": "🎊 A simple Gatsby Starter that talks to Contentful.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/cwlsn-gatsby-simple-contentful-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cwlsn-gatsby-simple-contentful-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cwlsn-gatsby-simple-contentful-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/cwlsn-gatsby-simple-contentful-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cwlsn-gatsby-simple-contentful-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cwlsn-gatsby-simple-contentful-starter-2x.jpg" } }, - "cyevgeniy-jekyll-true-minimal-master": { - "theme_key": "cyevgeniy-jekyll-true-minimal-master", + "cyevgeniy-jekyll-true-minimal": { + "theme_key": "cyevgeniy-jekyll-true-minimal", "file": "jekyll-theme-true-minimal.md", "name": "jekyll-true-minimal", "title": "True Minimal", "github_username": "cyevgeniy", "repo": "cyevgeniy/jekyll-true-minimal", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/cyevgeniy/jekyll-true-minimal", "demo_url": "https://cyevgeniy.github.io/jekyll-true-minimal/", - "stars": 47, - "forks": 37, + "stars": 62, + "forks": 42, "open_issues": 1, "last_commit": "2019-12-29T19:36:41Z", "created_at": "2018-10-17T07:11:51Z", "description": "Minimal and ascetic theme for jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/cyevgeniy-jekyll-true-minimal-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cyevgeniy-jekyll-true-minimal-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cyevgeniy-jekyll-true-minimal-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/cyevgeniy-jekyll-true-minimal.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cyevgeniy-jekyll-true-minimal.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cyevgeniy-jekyll-true-minimal-2x.jpg" } }, - "d-kusk-minimage-master": { - "theme_key": "d-kusk-minimage-master", + "d-kusk-minimage": { + "theme_key": "d-kusk-minimage", "file": "hugo-minimage.md", "name": "minimage", "title": "Minimage", "github_username": "dsk52", "repo": "dsk52/minimage", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/dsk52/minimage", "demo_url": "https://themes.gohugo.io/theme/minimage/", "stars": 16, - "forks": 11, + "forks": 10, "open_issues": 4, "last_commit": "2020-08-21T06:46:20Z", "created_at": "2017-11-04T10:52:19Z", "description": "Hugo's theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/d-kusk-minimage-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/d-kusk-minimage-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/d-kusk-minimage-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/d-kusk-minimage.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/d-kusk-minimage.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/d-kusk-minimage-2x.jpg" } }, - "daattali-beautiful-jekyll-master": { - "theme_key": "daattali-beautiful-jekyll-master", + "daattali-beautiful-jekyll": { + "theme_key": "daattali-beautiful-jekyll", "file": "jekyll-beautiful-theme.md", "name": "beautiful-jekyll", "title": "Beautiful Jekyll", "github_username": "daattali", "repo": "daattali/beautiful-jekyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/daattali/beautiful-jekyll", "demo_url": "https://deanattali.com/beautiful-jekyll/", - "stars": 3104, - "forks": 9828, - "open_issues": 11, - "last_commit": "2020-12-10T23:54:42Z", + "stars": 4507, + "forks": 13879, + "open_issues": 8, + "last_commit": "2023-01-06T21:56:10Z", "created_at": "2015-03-02T20:04:26Z", "description": "✨ Build a beautiful and simple website in literally minutes. Demo at https://beautifuljekyll.com", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/daattali-beautiful-jekyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/daattali-beautiful-jekyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/daattali-beautiful-jekyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/daattali-beautiful-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/daattali-beautiful-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/daattali-beautiful-jekyll-2x.jpg" } }, - "dabit3-gatsby-auth-starter-aws-amplify-master": { - "theme_key": "dabit3-gatsby-auth-starter-aws-amplify-master", + "dabit3-gatsby-auth-starter-aws-amplify": { + "theme_key": "dabit3-gatsby-auth-starter-aws-amplify", "file": "gatsby-auth-starter-aws-amplify.md", "name": "gatsby-auth-starter-aws-amplify", "title": "Gatsby Auth Starter AWS Amplify", "github_username": "dabit3", "repo": "dabit3/gatsby-auth-starter-aws-amplify", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/dabit3/gatsby-auth-starter-aws-amplify", "demo_url": "https://master.d2f5ek3dnwfe9v.amplifyapp.com/", - "stars": 303, - "forks": 397, - "open_issues": 23, - "last_commit": "2019-08-01T21:53:58Z", + "stars": 321, + "forks": 416, + "open_issues": 13, + "last_commit": "2021-07-04T12:29:50Z", "created_at": "2018-08-24T22:49:54Z", "description": "Starter Project with Authentication with Gatsby & AWS Amplify", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/dabit3-gatsby-auth-starter-aws-amplify-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dabit3-gatsby-auth-starter-aws-amplify-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dabit3-gatsby-auth-starter-aws-amplify-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/dabit3-gatsby-auth-starter-aws-amplify.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dabit3-gatsby-auth-starter-aws-amplify.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dabit3-gatsby-auth-starter-aws-amplify-2x.jpg" } }, - "dafiulh-vredeburg-master": { - "theme_key": "dafiulh-vredeburg-master", + "dafiulh-vredeburg": { + "theme_key": "dafiulh-vredeburg", "file": "vredeburg.md", "name": "vredeburg", "title": "Vredeburg", "github_username": "dafiulh", "repo": "dafiulh/vredeburg", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/dafiulh/vredeburg", "demo_url": "https://vredeburg.netlify.app", - "stars": 28, - "forks": 13, - "open_issues": 0, - "last_commit": "2020-12-31T10:23:14Z", + "stars": 139, + "forks": 51, + "open_issues": 12, + "last_commit": "2021-08-13T01:30:21Z", + "created_at": "2020-07-12T07:42:23Z", + "description": "A simple starter project to create a blog using Eleventy and Tailwind CSS", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/dafiulh-vredeburg.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dafiulh-vredeburg.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dafiulh-vredeburg-2x.jpg" + } + }, + "daflh-vredeburg": { + "theme_key": "dafiulh-vredeburg", + "file": "vredeburg.md", + "name": "vredeburg", + "title": "Vredeburg", + "github_username": "daflh", + "repo": "daflh/vredeburg", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/daflh/vredeburg", + "demo_url": "https://vredeburg.netlify.app", + "stars": 140, + "forks": 52, + "open_issues": 13, + "last_commit": "2023-01-23T03:11:07Z", "created_at": "2020-07-12T07:42:23Z", "description": "A simple starter project to create a blog using Eleventy and Tailwind CSS", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/dafiulh-vredeburg-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dafiulh-vredeburg-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dafiulh-vredeburg-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/dafiulh-vredeburg.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dafiulh-vredeburg.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dafiulh-vredeburg-2x.jpg" } }, - "damassi-gatsby-starter-typescript-rebass-netlifycms-master": { - "theme_key": "damassi-gatsby-starter-typescript-rebass-netlifycms-master", + "damassi-gatsby-starter-typescript-rebass-netlifycms": { + "theme_key": "damassi-gatsby-starter-typescript-rebass-netlifycms", "file": "gatsby-starter-typescript-rebass-netlifycms.md", "name": "gatsby-starter-typescript-rebass-netlifycms", "title": "Typescript Rebass Netlifycms", "github_username": "damassi", "repo": "damassi/gatsby-starter-typescript-rebass-netlifycms", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/damassi/gatsby-starter-typescript-rebass-netlifycms", "demo_url": "https://frosty-ride-4ff3b9.netlify.com/", - "stars": 78, - "forks": 18, - "open_issues": 2, + "stars": 82, + "forks": 15, + "open_issues": 14, "last_commit": "2019-11-09T20:17:14Z", "created_at": "2019-01-26T04:06:58Z", "description": "My default Gatsby setup. Includes rich MDX support. ", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/damassi-gatsby-starter-typescript-rebass-netlifycms-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/damassi-gatsby-starter-typescript-rebass-netlifycms-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/damassi-gatsby-starter-typescript-rebass-netlifycms-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/damassi-gatsby-starter-typescript-rebass-netlifycms.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/damassi-gatsby-starter-typescript-rebass-netlifycms.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/damassi-gatsby-starter-typescript-rebass-netlifycms-2x.jpg" + } + }, + "daniarlert-hugo-piercer-theme": { + "theme_key": "danielkvist-hugo-piercer-theme", + "file": "hugo-piercer-theme.md", + "name": "hugo-piercer-theme", + "title": "Piercer", + "github_username": "daniarlert", + "repo": "daniarlert/hugo-piercer-theme", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/daniarlert/hugo-piercer-theme", + "demo_url": "https://piercer.netlify.com/", + "stars": 27, + "forks": 19, + "open_issues": 1, + "last_commit": "2021-07-28T10:46:11Z", + "created_at": "2019-03-24T13:23:10Z", + "description": "Piercer is a very customizable, fast and simple Hugo theme designed under the mobile-first philosophy.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/danielkvist-hugo-piercer-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/danielkvist-hugo-piercer-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/danielkvist-hugo-piercer-theme-2x.jpg" + } + }, + "daniarlert-hugo-terrassa-theme": { + "theme_key": "danielkvist-hugo-terrassa-theme", + "file": "hugo-terrassa-theme.md", + "name": "hugo-terrassa-theme", + "title": "Terrassa", + "github_username": "daniarlert", + "repo": "daniarlert/hugo-terrassa-theme", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/daniarlert/hugo-terrassa-theme", + "demo_url": "https://terrassa.netlify.com/", + "stars": 67, + "forks": 78, + "open_issues": 7, + "last_commit": "2021-07-28T10:40:42Z", + "created_at": "2018-12-04T19:18:39Z", + "description": "Terrassa is a simple, fast and responsive theme for Hugo with a strong focus on accessibility.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/danielkvist-hugo-terrassa-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/danielkvist-hugo-terrassa-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/danielkvist-hugo-terrassa-theme-2x.jpg" } }, - "danielbayerlein-middleman-casper-master": { - "theme_key": "danielbayerlein-middleman-casper-master", + "danielbayerlein-middleman-casper": { + "theme_key": "danielbayerlein-middleman-casper", "file": "middleman-casper.md", "name": "middleman-casper", "title": "Middleman Casper", "github_username": "danielbayerlein", "repo": "danielbayerlein/middleman-casper", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/danielbayerlein/middleman-casper", "demo_url": "https://demo.ghost.io/", - "stars": 128, - "forks": 20, + "stars": 133, + "forks": 17, "open_issues": 3, "last_commit": "2018-01-07T13:04:19Z", "created_at": "2013-10-26T09:58:22Z", "description": "👻 Casper theme (Ghost) for Middleman-Blog", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/danielbayerlein-middleman-casper-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/danielbayerlein-middleman-casper-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/danielbayerlein-middleman-casper-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/danielbayerlein-middleman-casper.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/danielbayerlein-middleman-casper.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/danielbayerlein-middleman-casper-2x.jpg" } }, - "danielkellyio-awake-template-master": { - "theme_key": "danielkellyio-awake-template-master", + "danielkellyio-awake-template": { + "theme_key": "danielkellyio-awake-template", "file": "awake-blog-template-nuxt.md", "name": "awake-template", "title": "Awake Nuxt Blog", "github_username": "danielkellyio", "repo": "danielkellyio/awake-template", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/danielkellyio/awake-template", "demo_url": "https://awake-template.netlify.com/", - "stars": 136, - "forks": 89, - "open_issues": 2, + "stars": 198, + "forks": 126, + "open_issues": 26, "last_commit": "2020-12-11T12:58:57Z", "created_at": "2019-07-02T01:54:14Z", "description": null, - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/danielkellyio-awake-template-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/danielkellyio-awake-template-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/danielkellyio-awake-template-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/danielkellyio-awake-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/danielkellyio-awake-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/danielkellyio-awake-template-2x.jpg" } }, - "danielkvist-hugo-piercer-theme-master": { - "theme_key": "danielkvist-hugo-piercer-theme-master", + "danielkvist-hugo-piercer-theme": { + "theme_key": "danielkvist-hugo-piercer-theme", "file": "hugo-piercer-theme.md", "name": "hugo-piercer-theme", "title": "Piercer", "github_username": "danielkvist", "repo": "danielkvist/hugo-piercer-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/danielkvist/hugo-piercer-theme", "demo_url": "https://piercer.netlify.com/", - "stars": 22, - "forks": 12, + "stars": 25, + "forks": 17, "open_issues": 1, - "last_commit": "2019-09-10T15:33:06Z", + "last_commit": "2021-07-28T10:46:11Z", "created_at": "2019-03-24T13:23:10Z", "description": "Piercer is a very customizable, fast and simple Hugo theme designed under the mobile-first philosophy.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/danielkvist-hugo-piercer-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/danielkvist-hugo-piercer-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/danielkvist-hugo-piercer-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/danielkvist-hugo-piercer-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/danielkvist-hugo-piercer-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/danielkvist-hugo-piercer-theme-2x.jpg" } }, - "danielkvist-hugo-terrassa-theme-master": { - "theme_key": "danielkvist-hugo-terrassa-theme-master", + "danielkvist-hugo-terrassa-theme": { + "theme_key": "danielkvist-hugo-terrassa-theme", "file": "hugo-terrassa-theme.md", "name": "hugo-terrassa-theme", "title": "Terrassa", "github_username": "danielkvist", "repo": "danielkvist/hugo-terrassa-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/danielkvist/hugo-terrassa-theme", "demo_url": "https://terrassa.netlify.com/", - "stars": 59, - "forks": 72, - "open_issues": 1, - "last_commit": "2020-07-25T10:30:41Z", + "stars": 63, + "forks": 74, + "open_issues": 7, + "last_commit": "2021-07-28T10:40:42Z", "created_at": "2018-12-04T19:18:39Z", "description": "Terrassa is a simple, fast and responsive theme for Hugo with a strong focus on accessibility.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/danielkvist-hugo-terrassa-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/danielkvist-hugo-terrassa-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/danielkvist-hugo-terrassa-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/danielkvist-hugo-terrassa-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/danielkvist-hugo-terrassa-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/danielkvist-hugo-terrassa-theme-2x.jpg" } }, - "danilowoz-gatsby-advanced-blog-system-master": { - "theme_key": "danilowoz-gatsby-advanced-blog-system-master", + "danilowoz-gatsby-advanced-blog-system": { + "theme_key": "danilowoz-gatsby-advanced-blog-system", "file": "gatsby-advanced-blog-system.md", "name": "gatsby-advanced-blog-system", "title": "Gatsby Advanced Blog System", "github_username": "danilowoz", "repo": "danilowoz/gatsby-advanced-blog-system", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/danilowoz/gatsby-advanced-blog-system", "demo_url": "https://gatsby-advanced-blog-system.danilowoz.now.sh/blog", - "stars": 59, - "forks": 12, + "stars": 67, + "forks": 14, "open_issues": 0, - "last_commit": "2020-10-20T08:53:22Z", + "last_commit": "2022-02-14T09:34:12Z", "created_at": "2019-03-24T20:19:40Z", "description": "📰 This repository is a demo from the article about how to build our own blog using Gatsby.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/danilowoz-gatsby-advanced-blog-system-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/danilowoz-gatsby-advanced-blog-system-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/danilowoz-gatsby-advanced-blog-system-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/danilowoz-gatsby-advanced-blog-system.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/danilowoz-gatsby-advanced-blog-system.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/danilowoz-gatsby-advanced-blog-system-2x.jpg" } }, - "danshai-gatsbyv2-scientific-blog-machine-learning-master": { - "theme_key": "danshai-gatsbyv2-scientific-blog-machine-learning-master", + "danshai-gatsbyv2-scientific-blog-machine-learning": { + "theme_key": "danshai-gatsbyv2-scientific-blog-machine-learning", "file": "gatsby-scientific-blog-machine-learning.md", "name": "gatsbyv2-scientific-blog-machine-learning", "title": "Scientific Blog Machine Learning", "github_username": "DanShai", "repo": "DanShai/gatsbyv2-scientific-blog-machine-learning", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/DanShai/gatsbyv2-scientific-blog-machine-learning", "demo_url": "https://danshai.github.io/gatsbyv2-scientific-blog-machine-learning/", "stars": 6, @@ -5060,780 +6157,826 @@ "last_commit": "2018-11-20T11:18:15Z", "created_at": "2018-09-27T10:20:26Z", "description": "gatsby V2 scientific machine learning blog Starter", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/danshai-gatsbyv2-scientific-blog-machine-learning-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/danshai-gatsbyv2-scientific-blog-machine-learning-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/danshai-gatsbyv2-scientific-blog-machine-learning-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/danshai-gatsbyv2-scientific-blog-machine-learning.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/danshai-gatsbyv2-scientific-blog-machine-learning.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/danshai-gatsbyv2-scientific-blog-machine-learning-2x.jpg" } }, - "danurbanowicz-eleventy-netlify-boilerplate-master": { - "theme_key": "danurbanowicz-eleventy-netlify-boilerplate-master", + "danurbanowicz-eleventy-netlify-boilerplate": { + "theme_key": "danurbanowicz-eleventy-netlify-boilerplate", "file": "eleventy-netlify-boilerplate.md", "name": "eleventy-netlify-boilerplate", "title": "Eleventy NetlifyCMS Boilerplate", "github_username": "danurbanowicz", "repo": "danurbanowicz/eleventy-netlify-boilerplate", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/danurbanowicz/eleventy-netlify-boilerplate", "demo_url": "https://eleventy-netlify-boilerplate.netlify.com/", - "stars": 326, - "forks": 144, - "open_issues": 1, - "last_commit": "2020-12-09T10:21:53Z", + "stars": 474, + "forks": 184, + "open_issues": 0, + "last_commit": "2022-12-28T16:56:29Z", "created_at": "2018-07-24T07:16:25Z", "description": "A template for building a simple website with the Eleventy static site generator", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/danurbanowicz-eleventy-netlify-boilerplate-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/danurbanowicz-eleventy-netlify-boilerplate-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/danurbanowicz-eleventy-netlify-boilerplate-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/danurbanowicz-eleventy-netlify-boilerplate.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/danurbanowicz-eleventy-netlify-boilerplate.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/danurbanowicz-eleventy-netlify-boilerplate-2x.jpg" } }, - "darshanbaral-aafu-master": { - "theme_key": "darshanbaral-aafu-master", + "darshanbaral-aafu": { + "theme_key": "darshanbaral-aafu", "file": "hugo-aafu.md", "name": "aafu", "title": "Aafu", "github_username": "darshanbaral", "repo": "darshanbaral/aafu", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/darshanbaral/aafu", "demo_url": "https://themes.gohugo.io/theme/aafu/", - "stars": 21, - "forks": 27, - "open_issues": 5, - "last_commit": "2020-04-19T19:40:39Z", + "stars": 27, + "forks": 28, + "open_issues": 6, + "last_commit": "2021-03-12T06:48:25Z", "created_at": "2019-03-10T23:26:13Z", "description": "Portfolio theme with blog", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/darshanbaral-aafu-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/darshanbaral-aafu-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/darshanbaral-aafu-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/darshanbaral-aafu.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/darshanbaral-aafu.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/darshanbaral-aafu-2x.jpg" } }, - "darshanbaral-khata-master": { - "theme_key": "darshanbaral-khata-master", + "darshanbaral-khata": { + "theme_key": "darshanbaral-khata", "file": "hugo-khata.md", "name": "khata", "title": "Khata", "github_username": "darshanbaral", "repo": "darshanbaral/khata", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/darshanbaral/khata", "demo_url": "https://themes.gohugo.io/theme/khata/", - "stars": 3, - "forks": 0, + "stars": 2, + "forks": 1, "open_issues": 0, "last_commit": "2020-06-06T04:13:40Z", "created_at": "2019-07-02T02:28:29Z", "description": "Hugo theme for documentation.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/darshanbaral-khata-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/darshanbaral-khata-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/darshanbaral-khata-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/darshanbaral-khata.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/darshanbaral-khata.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/darshanbaral-khata-2x.jpg" } }, - "darshanbaral-kitab-master": { - "theme_key": "darshanbaral-kitab-master", + "darshanbaral-kitab": { + "theme_key": "darshanbaral-kitab", "file": "hugo-kitab.md", "name": "kitab", "title": "Kitab", "github_username": "darshanbaral", "repo": "darshanbaral/kitab", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/darshanbaral/kitab", "demo_url": "https://themes.gohugo.io/theme/kitab/", - "stars": 10, - "forks": 7, - "open_issues": 1, + "stars": 12, + "forks": 8, + "open_issues": 2, "last_commit": "2020-06-06T04:59:56Z", "created_at": "2019-05-19T01:32:59Z", "description": "A hugo theme for publishing books", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/darshanbaral-kitab-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/darshanbaral-kitab-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/darshanbaral-kitab-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/darshanbaral-kitab.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/darshanbaral-kitab.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/darshanbaral-kitab-2x.jpg" } }, - "darshanbaral-mero-master": { - "theme_key": "darshanbaral-mero-master", + "darshanbaral-mero": { + "theme_key": "darshanbaral-mero", "file": "hugo-mero-theme.md", "name": "mero", "title": "Mero", "github_username": "darshanbaral", "repo": "darshanbaral/mero", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/darshanbaral/mero", "demo_url": "https://themes.gohugo.io/theme/mero/", "stars": 10, - "forks": 9, + "forks": 12, "open_issues": 0, - "last_commit": "2019-06-20T04:09:41Z", + "last_commit": "2021-09-09T20:44:31Z", "created_at": "2019-03-03T03:55:20Z", "description": "Hugo theme for personal blogs", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/darshanbaral-mero-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/darshanbaral-mero-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/darshanbaral-mero-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/darshanbaral-mero.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/darshanbaral-mero.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/darshanbaral-mero-2x.jpg" } }, - "darshanbaral-sada-master": { - "theme_key": "darshanbaral-sada-master", + "darshanbaral-sada": { + "theme_key": "darshanbaral-sada", "file": "hugo-sada-theme.md", "name": "sada", "title": "Sada", "github_username": "darshanbaral", "repo": "darshanbaral/sada", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/darshanbaral/sada", "demo_url": "https://themes.gohugo.io/theme/sada/", - "stars": 13, - "forks": 9, + "stars": 17, + "forks": 13, "open_issues": 0, - "last_commit": "2019-11-03T02:06:19Z", + "last_commit": "2021-05-10T23:36:12Z", "created_at": "2018-12-16T23:03:20Z", - "description": "Simple hugo theme for resume created using Bootstrap 4", - "stale": true, + "description": "Simple hugo theme for resume created using Tailwind CSS", "images": { - "hires": "https://www.jamstackthemes.dev/capture/darshanbaral-sada-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/darshanbaral-sada-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/darshanbaral-sada-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/darshanbaral-sada.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/darshanbaral-sada.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/darshanbaral-sada-2x.jpg" } }, - "dashdashzako-hugo-journal-master": { - "theme_key": "dashdashzako-hugo-journal-master", + "dashdashzako-hugo-journal": { + "theme_key": "dashdashzako-hugo-journal", "file": "hugo-journal.md", "name": "hugo-journal", "title": "Journal", "github_username": "dashdashzako", "repo": "dashdashzako/hugo-journal", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/dashdashzako/hugo-journal", "demo_url": "https://dashdashzako.github.io/hugo-journal-demo/", - "stars": 64, - "forks": 40, - "open_issues": 4, - "last_commit": "2019-09-02T12:19:34Z", + "stars": 73, + "forks": 41, + "open_issues": 0, + "last_commit": "2021-04-02T09:33:27Z", "created_at": "2017-07-23T16:16:34Z", "description": "Minimalist theme for gohugo", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/dashdashzako-hugo-journal-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dashdashzako-hugo-journal-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dashdashzako-hugo-journal-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/dashdashzako-hugo-journal.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dashdashzako-hugo-journal.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dashdashzako-hugo-journal-2x.jpg" } }, - "dashdashzako-paperback-master": { - "theme_key": "dashdashzako-paperback-master", + "dashdashzako-paperback": { + "theme_key": "dashdashzako-paperback", "file": "hugo-paperback.md", "name": "paperback", "title": "Paperback", "github_username": "dashdashzako", "repo": "dashdashzako/paperback", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/dashdashzako/paperback", "demo_url": "https://dashdashzako.github.io/paperback-demo/", - "stars": 37, - "forks": 16, - "open_issues": 1, - "last_commit": "2019-09-02T11:34:57Z", + "stars": 39, + "forks": 18, + "open_issues": 0, + "last_commit": "2021-04-02T08:52:02Z", "created_at": "2016-08-09T13:58:20Z", "description": "Theme for Hugo static website engine", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/dashdashzako-paperback-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dashdashzako-paperback-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dashdashzako-paperback-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/dashdashzako-paperback.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dashdashzako-paperback.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dashdashzako-paperback-2x.jpg" } }, - "dashingcode-front-cover-master": { - "theme_key": "dashingcode-front-cover-master", + "dashingcode-front-cover": { + "theme_key": "dashingcode-front-cover", "file": "jekyll-front-cover.md", "name": "front-cover", "title": "front-cover", "github_username": "dashingcode", "repo": "dashingcode/front-cover", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/dashingcode/front-cover", "demo_url": "https://dashingcode.github.io/front-cover/", - "stars": 121, - "forks": 194, + "stars": 124, + "forks": 188, "open_issues": 10, "last_commit": "2016-05-26T20:24:51Z", "created_at": "2016-02-21T11:07:54Z", "description": "Front Cover jekyll theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/dashingcode-front-cover-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dashingcode-front-cover-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dashingcode-front-cover-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/dashingcode-front-cover.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dashingcode-front-cover.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dashingcode-front-cover-2x.jpg" } }, - "datocms-gatsby-portfolio-master": { - "theme_key": "datocms-gatsby-portfolio-master", + "datocms-gatsby-portfolio": { + "theme_key": "datocms-gatsby-portfolio", "file": "gatsby-portfolio.md", "name": "gatsby-portfolio", "title": "Gatsby Portfolio", "github_username": "datocms", "repo": "datocms/gatsby-portfolio", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/datocms/gatsby-portfolio", "demo_url": "https://cranky-edison-12166d.netlify.com", - "stars": 107, - "forks": 42, + "stars": 116, + "forks": 50, "open_issues": 0, "last_commit": "2020-10-19T14:52:43Z", "created_at": "2017-12-01T17:08:02Z", "description": "Sample DatoCMS website built with GatsbyJS", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/datocms-gatsby-portfolio-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/datocms-gatsby-portfolio-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/datocms-gatsby-portfolio-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/datocms-gatsby-portfolio.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/datocms-gatsby-portfolio.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/datocms-gatsby-portfolio-2x.jpg" } }, - "daviddarnes-alembic-master": { - "theme_key": "daviddarnes-alembic-master", + "daviddarnes-alembic": { + "theme_key": "daviddarnes-alembic", "file": "alembic.md", "name": "alembic", "title": "Alembic", "github_username": "daviddarnes", "repo": "daviddarnes/alembic", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/daviddarnes/alembic", "demo_url": "https://alembic.darn.es/", - "stars": 475, - "forks": 560, + "stars": 661, + "forks": 764, "open_issues": 6, - "last_commit": "2021-01-06T11:14:44Z", + "last_commit": "2021-06-14T18:21:20Z", "created_at": "2016-08-27T15:50:21Z", "description": "⚗️ A Jekyll boilerplate theme designed to be a starting point for any Jekyll website", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/daviddarnes-alembic-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/daviddarnes-alembic-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/daviddarnes-alembic-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/daviddarnes-alembic.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/daviddarnes-alembic.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/daviddarnes-alembic-2x.jpg" } }, - "daviddarnes-garth-master": { - "theme_key": "daviddarnes-garth-master", + "daviddarnes-garth": { + "theme_key": "daviddarnes-garth", "file": "garth.md", "name": "garth", "title": "Garth", "github_username": "daviddarnes", "repo": "daviddarnes/garth", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/daviddarnes/garth", "demo_url": "https://garth.darn.es", - "stars": 81, - "forks": 45, + "stars": 109, + "forks": 58, "open_issues": 1, "last_commit": "2020-11-22T18:59:58Z", "created_at": "2016-06-12T23:30:34Z", "description": "🥁 A really basic theme for Jekyll", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/daviddarnes-garth-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/daviddarnes-garth-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/daviddarnes-garth-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/daviddarnes-garth.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/daviddarnes-garth.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/daviddarnes-garth-2x.jpg" + } + }, + "davidebri-gesko": { + "theme_key": "p0wex-gesko", + "file": "Gesko.md", + "name": "Gesko", + "title": "Gesko", + "github_username": "DavideBri", + "repo": "DavideBri/Gesko", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/DavideBri/Gesko", + "demo_url": "https://p0wex.github.io/Gesko/", + "stars": 157, + "forks": 74, + "open_issues": 3, + "last_commit": "2022-10-02T16:50:25Z", + "created_at": "2021-05-03T10:42:54Z", + "description": "Gesko is a simple and minimalistic jekyll blogging theme.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/p0wex-gesko.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/p0wex-gesko.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/p0wex-gesko-2x.jpg" } }, - "davidhampgonsalves-hugo-black-and-light-theme-master": { - "theme_key": "davidhampgonsalves-hugo-black-and-light-theme-master", + "davidhampgonsalves-hugo-black-and-light-theme": { + "theme_key": "davidhampgonsalves-hugo-black-and-light-theme", "file": "hugo-black-and-light-theme.md", "name": "hugo-black-and-light-theme", "title": "Black & Light", "github_username": "davidhampgonsalves", "repo": "davidhampgonsalves/hugo-black-and-light-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/davidhampgonsalves/hugo-black-and-light-theme", "demo_url": "https://themes.gohugo.io//theme/black-and-light/", - "stars": 159, - "forks": 80, + "stars": 172, + "forks": 82, "open_issues": 2, "last_commit": "2020-06-13T13:18:32Z", "created_at": "2017-01-10T01:03:05Z", "description": null, - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/davidhampgonsalves-hugo-black-and-light-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/davidhampgonsalves-hugo-black-and-light-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/davidhampgonsalves-hugo-black-and-light-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/davidhampgonsalves-hugo-black-and-light-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/davidhampgonsalves-hugo-black-and-light-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/davidhampgonsalves-hugo-black-and-light-theme-2x.jpg" } }, - "davshoward-gatsby-starter-honey-master": { - "theme_key": "davshoward-gatsby-starter-honey-master", + "davshoward-gatsby-starter-honey": { + "theme_key": "davshoward-gatsby-starter-honey", "file": "gatsby-starter-honey.md", "name": "gatsby-starter-honey", "title": "Gatsby Starter Honey", "github_username": "davshoward", "repo": "davshoward/gatsby-starter-honey", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/davshoward/gatsby-starter-honey", "demo_url": "https://gatsbyhoney.davshoward.com/", - "stars": 5, + "stars": 6, "forks": 0, - "open_issues": 7, - "last_commit": "2020-05-04T22:10:04Z", + "open_issues": 17, + "last_commit": "2021-07-02T15:24:48Z", "created_at": "2019-05-28T14:44:20Z", "description": "A delicious baseline for Gatsby (v2).", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/davshoward-gatsby-starter-honey-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/davshoward-gatsby-starter-honey-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/davshoward-gatsby-starter-honey-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/davshoward-gatsby-starter-honey.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/davshoward-gatsby-starter-honey.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/davshoward-gatsby-starter-honey-2x.jpg" } }, - "dbtek-dbyll-master": { - "theme_key": "dbtek-dbyll-master", + "dbtek-dbyll": { + "theme_key": "dbtek-dbyll", "file": "jekyll-dbyll.md", "name": "dbyll", "title": "Dbyll", "github_username": "dbtek", "repo": "dbtek/dbyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/dbtek/dbyll", "demo_url": "https://dbtek.github.io/dbyll/", - "stars": 531, - "forks": 412, - "open_issues": 2, - "last_commit": "2017-11-21T05:08:30Z", + "stars": 555, + "forks": 428, + "open_issues": 6, + "last_commit": "2021-08-11T15:24:34Z", "created_at": "2013-11-14T15:01:59Z", "description": "Stylish, minimalistic theme for jekyll.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/dbtek-dbyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dbtek-dbyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dbtek-dbyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/dbtek-dbyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dbtek-dbyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dbtek-dbyll-2x.jpg" } }, - "dbtek-paper-master": { - "theme_key": "dbtek-paper-master", + "dbtek-paper": { + "theme_key": "dbtek-paper", "file": "jekyll-paper.md", "name": "paper", "title": "Paper", "github_username": "dbtek", "repo": "dbtek/paper", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/dbtek/paper", "demo_url": "https://dbtek.github.io/paper-demo/", - "stars": 50, - "forks": 61, - "open_issues": 3, + "stars": 55, + "forks": 70, + "open_issues": 4, "last_commit": "2017-02-18T20:57:34Z", "created_at": "2015-09-07T13:37:31Z", "description": "A gentle theme for Jekyll utilising material design.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/dbtek-paper-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dbtek-paper-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dbtek-paper-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/dbtek-paper.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dbtek-paper.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dbtek-paper-2x.jpg" } }, - "ddbullfrog-resumecard-gh-pages": { - "theme_key": "ddbullfrog-resumecard-gh-pages", + "ddbullfrog-resumecard": { + "theme_key": "ddbullfrog-resumecard", "file": "jekyll-resumecard.md", "name": "resumecard", "title": "resumecard", "github_username": "ddbullfrog", "repo": "ddbullfrog/resumecard", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/ddbullfrog/resumecard", "demo_url": "https://ddbullfrog.github.io/resumecard", - "stars": 222, - "forks": 233, + "stars": 233, + "forks": 238, "open_issues": 4, "last_commit": "2017-04-12T07:26:40Z", "created_at": "2015-06-01T22:00:02Z", "description": "You can see the live demo", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ddbullfrog-resumecard-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ddbullfrog-resumecard-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ddbullfrog-resumecard-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ddbullfrog-resumecard.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ddbullfrog-resumecard.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ddbullfrog-resumecard-2x.jpg" } }, - "de-souza-hugo-flex-master": { - "theme_key": "de-souza-hugo-flex-master", + "de-souza-hugo-flex": { + "theme_key": "de-souza-hugo-flex", "file": "hugo-flex.md", "name": "hugo-flex", "title": "Hugo Flex", "github_username": "de-souza", "repo": "de-souza/hugo-flex", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/de-souza/hugo-flex", - "demo_url": "https://themes.gohugo.io/theme/hugo-flex/", - "stars": 51, - "forks": 26, - "open_issues": 3, - "last_commit": "2020-03-22T21:10:54Z", + "demo_url": "https://de-souza.github.io/hugo-flex/", + "stars": 71, + "forks": 37, + "open_issues": 0, + "last_commit": "2023-01-23T13:00:04Z", "created_at": "2019-02-17T17:31:39Z", - "description": "A lightweight Hugo theme leveraging CSS Flexbox", - "stale": false, + "description": "A lightweight Hugo theme leveraging CSS Flexbox.", "images": { - "hires": "https://www.jamstackthemes.dev/capture/de-souza-hugo-flex-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/de-souza-hugo-flex-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/de-souza-hugo-flex-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/de-souza-hugo-flex.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/de-souza-hugo-flex.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/de-souza-hugo-flex-2x.jpg" } }, - "deamme-gatsby-starter-prismic-resume-master": { - "theme_key": "deamme-gatsby-starter-prismic-resume-master", + "deamme-gatsby-starter-prismic-resume": { + "theme_key": "deamme-gatsby-starter-prismic-resume", "file": "gatsby-starter-prismic-resume.md", "name": "gatsby-starter-prismic-resume", "title": "Gatsby Starter Prismic Resume", "github_username": "deamme", "repo": "deamme/gatsby-starter-prismic-resume", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/deamme/gatsby-starter-prismic-resume", "demo_url": "https://compassionate-morse-5204bf.netlify.com/", - "stars": 25, + "stars": 30, "forks": 14, "open_issues": 1, "last_commit": "2019-06-24T19:33:03Z", "created_at": "2019-03-15T23:07:16Z", "description": "Resume/CV page - Gatsby starter which uses Prismic as a headless CMS.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/deamme-gatsby-starter-prismic-resume-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/deamme-gatsby-starter-prismic-resume-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/deamme-gatsby-starter-prismic-resume-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/deamme-gatsby-starter-prismic-resume.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/deamme-gatsby-starter-prismic-resume.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/deamme-gatsby-starter-prismic-resume-2x.jpg" } }, - "deepidea-web-presentation-master": { - "theme_key": "deepidea-web-presentation-master", + "deepidea-web-presentation": { + "theme_key": "deepidea-web-presentation", "file": "jekyll-web-presentation-theme.md", "name": "web-presentation", "title": "Web-presentation", "github_username": "deepidea", "repo": "deepidea/web-presentation", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/deepidea/web-presentation", "demo_url": "https://deepidea.github.io/web-presentation/", - "stars": 133, - "forks": 100, + "stars": 168, + "forks": 111, "open_issues": 0, "last_commit": "2020-06-16T07:39:01Z", "created_at": "2017-10-15T05:35:15Z", "description": "Jekyll theme template to create web presentation", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/deepidea-web-presentation-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/deepidea-web-presentation-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/deepidea-web-presentation-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/deepidea-web-presentation.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/deepidea-web-presentation.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/deepidea-web-presentation-2x.jpg" } }, - "denjones-hexo-theme-chan-master": { - "theme_key": "denjones-hexo-theme-chan-master", + "denjones-hexo-theme-chan": { + "theme_key": "denjones-hexo-theme-chan", "file": "hexo-theme-chan.md", "name": "hexo-theme-chan", "title": "Chan", "github_username": "denjones", "repo": "denjones/hexo-theme-chan", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/denjones/hexo-theme-chan", "demo_url": "https://blog.sprabbit.com/hexo-theme-chan/", - "stars": 146, - "forks": 61, + "stars": 148, + "forks": 59, "open_issues": 6, "last_commit": "2016-10-09T13:08:13Z", "created_at": "2016-02-20T03:07:57Z", "description": "A super simple and elegant theme for hexo", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/denjones-hexo-theme-chan-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/denjones-hexo-theme-chan-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/denjones-hexo-theme-chan-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/denjones-hexo-theme-chan.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/denjones-hexo-theme-chan.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/denjones-hexo-theme-chan-2x.jpg" } }, - "denningk-gatsby-starter-typescript-jest-master": { - "theme_key": "denningk-gatsby-starter-typescript-jest-master", + "denningk-gatsby-starter-typescript-jest": { + "theme_key": "denningk-gatsby-starter-typescript-jest", "file": "gatsby-starter-typescript-jest.md", "name": "gatsby-starter-typescript-jest", "title": "Gatsby Typescript Jest", "github_username": "denningk", "repo": "denningk/gatsby-starter-typescript-jest", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/denningk/gatsby-starter-typescript-jest", "demo_url": "https://gatsby-starter-typescript-jest.netlify.com/", - "stars": 17, - "forks": 9, - "open_issues": 3, + "stars": 20, + "forks": 6, + "open_issues": 24, "last_commit": "2020-10-27T19:48:22Z", "created_at": "2019-06-22T14:09:18Z", "description": "The default Gatsby starter with Typescript and Jest", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/denningk-gatsby-starter-typescript-jest-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/denningk-gatsby-starter-typescript-jest-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/denningk-gatsby-starter-typescript-jest-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/denningk-gatsby-starter-typescript-jest.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/denningk-gatsby-starter-typescript-jest.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/denningk-gatsby-starter-typescript-jest-2x.jpg" } }, - "devcows-hugo-universal-theme-master": { - "theme_key": "devcows-hugo-universal-theme-master", + "devcows-hugo-universal-theme": { + "theme_key": "devcows-hugo-universal-theme", "file": "hugo-universal-theme.md", "name": "hugo-universal-theme", "title": "Hugo Universal", "github_username": "devcows", "repo": "devcows/hugo-universal-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/devcows/hugo-universal-theme", "demo_url": "https://themes.gohugo.io/theme/hugo-universal-theme/", - "stars": 470, - "forks": 355, - "open_issues": 61, - "last_commit": "2020-11-04T07:41:45Z", + "stars": 507, + "forks": 393, + "open_issues": 37, + "last_commit": "2021-09-27T05:29:46Z", "created_at": "2016-06-14T12:47:40Z", - "description": "Port of the Universal theme to Hugo", - "stale": false, + "description": "Universal theme for Hugo, it stands out with its clean design and elegant typography.", "images": { - "hires": "https://www.jamstackthemes.dev/capture/devcows-hugo-universal-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/devcows-hugo-universal-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/devcows-hugo-universal-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/devcows-hugo-universal-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/devcows-hugo-universal-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/devcows-hugo-universal-theme-2x.jpg" } }, - "devlocker-breakfast-master": { - "theme_key": "devlocker-breakfast-master", + "devlocker-breakfast": { + "theme_key": "devlocker-breakfast", "file": "breakfast.md", "name": "breakfast", "title": "Breakfast", "github_username": "devlocker", "repo": "devlocker/breakfast", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/devlocker/breakfast", "demo_url": "https://breakfast.devlocker.io/", - "stars": 100, - "forks": 10, + "stars": 99, + "forks": 11, "open_issues": 4, "last_commit": "2019-04-27T17:00:35Z", "created_at": "2016-06-23T05:55:56Z", "description": "Brunch.io with Rails", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/devlocker-breakfast-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/devlocker-breakfast-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/devlocker-breakfast-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/devlocker-breakfast.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/devlocker-breakfast.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/devlocker-breakfast-2x.jpg" } }, - "dfcommunity-hexo-web-nary-master": { - "theme_key": "dfcommunity-hexo-web-nary-master", + "dfcommunity-hexo-web-nary": { + "theme_key": "dfcommunity-hexo-web-nary", "file": "hexo-webnary-template.md", "name": "Hexo-Web-Nary", "title": "Web-Nary", "github_username": "DFCommunity", "repo": "DFCommunity/Hexo-Web-Nary", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/DFCommunity/Hexo-Web-Nary", "demo_url": "https://webnary.netlify.app", - "stars": 1, + "stars": 2, "forks": 1, - "open_issues": 1, + "open_issues": 0, "last_commit": "2020-12-09T10:50:31Z", "created_at": "2020-07-30T06:35:24Z", "description": "A Hexo Flat Modular Template for Blogging and Static Website Generation | Netlify Ready | Twitter Auto-Publish | In-build Forms ", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/dfcommunity-hexo-web-nary-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dfcommunity-hexo-web-nary-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dfcommunity-hexo-web-nary-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/dfcommunity-hexo-web-nary.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dfcommunity-hexo-web-nary.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dfcommunity-hexo-web-nary-2x.jpg" } }, - "dgraph-io-hugo-dgraph-theme-master": { - "theme_key": "dgraph-io-hugo-dgraph-theme-master", + "dgraph-io-hugo-dgraph-theme": { + "theme_key": "dgraph-io-hugo-dgraph-theme", "file": "hugo-dgraph-theme.md", "name": "hugo-dgraph-theme", "title": "Dgraph", "github_username": "dgraph-io", "repo": "dgraph-io/hugo-dgraph-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/dgraph-io/hugo-dgraph-theme", "demo_url": "https://blog.dgraph.io/", - "stars": 18, + "stars": 21, "forks": 9, "open_issues": 0, "last_commit": "2020-10-08T12:15:55Z", "created_at": "2016-07-25T08:45:30Z", "description": "Hugo theme used for our blog", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/dgraph-io-hugo-dgraph-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dgraph-io-hugo-dgraph-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dgraph-io-hugo-dgraph-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/dgraph-io-hugo-dgraph-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dgraph-io-hugo-dgraph-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dgraph-io-hugo-dgraph-theme-2x.jpg" } }, - "diezcami-arctic-fox-theme-master": { - "theme_key": "diezcami-arctic-fox-theme-master", + "dieghernan-chulapa": { + "theme_key": "dieghernan-chulapa", + "file": "chulapa.md", + "name": "chulapa", + "title": "Chulapa", + "github_username": "dieghernan", + "repo": "dieghernan/chulapa", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/dieghernan/chulapa", + "demo_url": "https://dieghernan.github.io/chulapa/", + "stars": 13, + "forks": 5, + "open_issues": 0, + "last_commit": "2023-01-23T09:16:33Z", + "created_at": "2020-04-09T19:42:56Z", + "description": "A full flexible Jekyll Theme for GitHub Pages", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/dieghernan-chulapa.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dieghernan-chulapa.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dieghernan-chulapa-2x.jpg" + } + }, + "diezcami-arctic-fox-theme": { + "theme_key": "diezcami-arctic-fox-theme", "file": "jekyll-arctic-fox.md", "name": "arctic-fox-theme", "title": "Arctic Fox", "github_username": "diezcami", "repo": "diezcami/arctic-fox-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/diezcami/arctic-fox-theme", "demo_url": "https://diezcami.github.io/arctic-fox-theme", - "stars": 71, - "forks": 61, + "stars": 73, + "forks": 64, "open_issues": 4, "last_commit": "2016-04-04T02:32:20Z", "created_at": "2015-05-27T12:30:56Z", "description": ":snowboarder: An even more lightweight theme for Jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/diezcami-arctic-fox-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/diezcami-arctic-fox-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/diezcami-arctic-fox-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/diezcami-arctic-fox-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/diezcami-arctic-fox-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/diezcami-arctic-fox-theme-2x.jpg" } }, - "diezcami-polar-bear-theme-master": { - "theme_key": "diezcami-polar-bear-theme-master", + "diezcami-polar-bear-theme": { + "theme_key": "diezcami-polar-bear-theme", "file": "jekyll-polar-bear-theme.md", "name": "polar-bear-theme", "title": "Polar Bear", "github_username": "diezcami", "repo": "diezcami/polar-bear-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/diezcami/polar-bear-theme", "demo_url": "https://diezcami.github.io/polar-bear-theme", - "stars": 49, - "forks": 54, + "stars": 50, + "forks": 53, "open_issues": 3, "last_commit": "2016-04-21T06:50:25Z", "created_at": "2015-05-25T11:00:22Z", "description": ":snowflake: A lightweight theme for Jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/diezcami-polar-bear-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/diezcami-polar-bear-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/diezcami-polar-bear-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/diezcami-polar-bear-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/diezcami-polar-bear-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/diezcami-polar-bear-theme-2x.jpg" } }, - "digital-roots-jekyll-2-column-theme-master": { - "theme_key": "digital-roots-jekyll-2-column-theme-master", + "digital-roots-jekyll-2-column-theme": { + "theme_key": "digital-roots-jekyll-2-column-theme", "file": "jekyll-two-column.md", "name": "Jekyll-2-Column-Theme", "title": "2 column Blog with Video", "github_username": "RobertEdwardes", "repo": "RobertEdwardes/Jekyll-2-Column-Theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/RobertEdwardes/Jekyll-2-Column-Theme", - "demo_url": "http://www.digitalroots.io/two-column/", + "demo_url": "https://www.digitalroots.io/two-column/", "stars": 0, "forks": 0, "open_issues": 0, "last_commit": "2017-01-24T13:37:46Z", "created_at": "2016-11-01T17:51:22Z", "description": "Basic Jekyll Theme with 2 Column", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/digital-roots-jekyll-2-column-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/digital-roots-jekyll-2-column-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/digital-roots-jekyll-2-column-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/digital-roots-jekyll-2-column-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/digital-roots-jekyll-2-column-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/digital-roots-jekyll-2-column-theme-2x.jpg" } }, - "digitalcraftsman-hugo-artists-theme-master": { - "theme_key": "digitalcraftsman-hugo-artists-theme-master", + "digitalcraftsman-hugo-artists-theme": { + "theme_key": "digitalcraftsman-hugo-artists-theme", "file": "hugo-artists-theme.md", "name": "hugo-artists-theme", "title": "Artists", "github_username": "digitalcraftsman", "repo": "digitalcraftsman/hugo-artists-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/digitalcraftsman/hugo-artists-theme", "demo_url": "https://themes.gohugo.io/theme/artists/", - "stars": 53, + "stars": 56, "forks": 42, "open_issues": 3, "last_commit": "2020-06-08T16:58:41Z", "created_at": "2015-06-16T17:22:06Z", "description": "Port of Travis Neilson's (DevTips) awesome Artists Theme to Hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/digitalcraftsman-hugo-artists-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/digitalcraftsman-hugo-artists-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/digitalcraftsman-hugo-artists-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/digitalcraftsman-hugo-artists-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/digitalcraftsman-hugo-artists-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/digitalcraftsman-hugo-artists-theme-2x.jpg" } }, - "digitalcraftsman-hugo-cactus-theme-master": { - "theme_key": "digitalcraftsman-hugo-cactus-theme-master", + "digitalcraftsman-hugo-cactus-theme": { + "theme_key": "digitalcraftsman-hugo-cactus-theme", "file": "hugo-cactus-theme.md", "name": "hugo-cactus-theme", "title": "Cactus", "github_username": "digitalcraftsman", "repo": "digitalcraftsman/hugo-cactus-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/digitalcraftsman/hugo-cactus-theme", "demo_url": "https://themes.gohugo.io/theme/cactus/", - "stars": 202, - "forks": 113, + "stars": 200, + "forks": 114, "open_issues": 11, "last_commit": "2020-07-28T14:41:06Z", "created_at": "2015-06-18T16:26:37Z", "description": "Port of Nick Balestra's Cactus theme to Hugo.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/digitalcraftsman-hugo-cactus-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/digitalcraftsman-hugo-cactus-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/digitalcraftsman-hugo-cactus-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/digitalcraftsman-hugo-cactus-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/digitalcraftsman-hugo-cactus-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/digitalcraftsman-hugo-cactus-theme-2x.jpg" } }, - "digitalcraftsman-hugo-creative-theme-master": { - "theme_key": "digitalcraftsman-hugo-creative-theme-master", + "digitalcraftsman-hugo-creative-theme": { + "theme_key": "digitalcraftsman-hugo-creative-theme", "file": "hugo-creative-theme.md", "name": "hugo-creative-theme", "title": "Creative", "github_username": "digitalcraftsman", "repo": "digitalcraftsman/hugo-creative-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/digitalcraftsman/hugo-creative-theme", "demo_url": "https://themes.gohugo.io/theme/creative/", "stars": 141, - "forks": 119, + "forks": 120, "open_issues": 20, - "last_commit": "2016-11-26T15:28:29Z", + "last_commit": "2021-07-08T14:10:29Z", "created_at": "2015-06-12T18:40:58Z", "description": "Port of Startbootstrap's Creative theme to Hugo", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/digitalcraftsman-hugo-creative-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/digitalcraftsman-hugo-creative-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/digitalcraftsman-hugo-creative-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/digitalcraftsman-hugo-creative-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/digitalcraftsman-hugo-creative-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/digitalcraftsman-hugo-creative-theme-2x.jpg" } }, - "digitalcraftsman-hugo-freelancer-theme-master": { - "theme_key": "digitalcraftsman-hugo-freelancer-theme-master", + "digitalcraftsman-hugo-freelancer-theme": { + "theme_key": "digitalcraftsman-hugo-freelancer-theme", "file": "hugo-freelancer-theme.md", "name": "hugo-freelancer-theme", "title": "Hugo Freelancer", "github_username": "digitalcraftsman", "repo": "digitalcraftsman/hugo-freelancer-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/digitalcraftsman/hugo-freelancer-theme", "demo_url": "https://themes.gohugo.io/theme/freelancer/", - "stars": 71, - "forks": 56, + "stars": 72, + "forks": 53, "open_issues": 13, - "last_commit": "2016-10-24T21:36:17Z", + "last_commit": "2021-07-08T14:11:55Z", "created_at": "2015-06-10T13:59:47Z", "description": "Port of Startbootstrap's Freelancer theme to Hugo", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/digitalcraftsman-hugo-freelancer-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/digitalcraftsman-hugo-freelancer-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/digitalcraftsman-hugo-freelancer-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/digitalcraftsman-hugo-freelancer-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/digitalcraftsman-hugo-freelancer-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/digitalcraftsman-hugo-freelancer-theme-2x.jpg" } }, - "digitalcraftsman-hugo-hikari-theme-master": { - "theme_key": "digitalcraftsman-hugo-hikari-theme-master", + "digitalcraftsman-hugo-hikari-theme": { + "theme_key": "digitalcraftsman-hugo-hikari-theme", "file": "hugo-hikari-theme.md", "name": "hugo-hikari-theme", "title": "Hikari", "github_username": "digitalcraftsman", "repo": "digitalcraftsman/hugo-hikari-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/digitalcraftsman/hugo-hikari-theme", "demo_url": "https://themes.gohugo.io/theme/hikari/", "stars": 11, @@ -5842,205 +6985,228 @@ "last_commit": "2020-06-08T17:05:12Z", "created_at": "2015-07-26T17:27:04Z", "description": "Port of Mathieu Mayer-Mazzoli's Hikari theme to Hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/digitalcraftsman-hugo-hikari-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/digitalcraftsman-hugo-hikari-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/digitalcraftsman-hugo-hikari-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/digitalcraftsman-hugo-hikari-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/digitalcraftsman-hugo-hikari-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/digitalcraftsman-hugo-hikari-theme-2x.jpg" } }, - "digitalcraftsman-hugo-icarus-theme-master": { - "theme_key": "digitalcraftsman-hugo-icarus-theme-master", + "digitalcraftsman-hugo-icarus-theme": { + "theme_key": "digitalcraftsman-hugo-icarus-theme", "file": "hugo-icarus.md", "name": "hugo-icarus-theme", "title": "Icarus", "github_username": "digitalcraftsman", "repo": "digitalcraftsman/hugo-icarus-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/digitalcraftsman/hugo-icarus-theme", "demo_url": "https://themes.gohugo.io/theme/hugo-icarus/", - "stars": 215, + "stars": 216, "forks": 139, "open_issues": 37, "last_commit": "2020-07-01T14:05:17Z", "created_at": "2015-10-02T18:57:45Z", "description": "Port of Ruipeng Zhang's Hexo theme Icarus to Hugo.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/digitalcraftsman-hugo-icarus-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/digitalcraftsman-hugo-icarus-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/digitalcraftsman-hugo-icarus-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/digitalcraftsman-hugo-icarus-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/digitalcraftsman-hugo-icarus-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/digitalcraftsman-hugo-icarus-theme-2x.jpg" } }, - "digitalcraftsman-hugo-type-theme-master": { - "theme_key": "digitalcraftsman-hugo-type-theme-master", + "digitalcraftsman-hugo-type-theme": { + "theme_key": "digitalcraftsman-hugo-type-theme", "file": "hugo-type-theme.md", "name": "hugo-type-theme", "title": "Hugo Type", "github_username": "digitalcraftsman", "repo": "digitalcraftsman/hugo-type-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/digitalcraftsman/hugo-type-theme", "demo_url": "https://themes.gohugo.io/theme/type/", "stars": 54, - "forks": 41, + "forks": 40, "open_issues": 0, "last_commit": "2020-06-08T16:46:43Z", "created_at": "2015-06-15T19:05:08Z", "description": "Port of Rohan Chandra's Type theme to Hugo.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/digitalcraftsman-hugo-type-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/digitalcraftsman-hugo-type-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/digitalcraftsman-hugo-type-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/digitalcraftsman-hugo-type-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/digitalcraftsman-hugo-type-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/digitalcraftsman-hugo-type-theme-2x.jpg" } }, - "digitalmindch-gridster-jekyll-theme-master": { - "theme_key": "digitalmindch-gridster-jekyll-theme-master", + "digitalmindch-gridster-jekyll-theme": { + "theme_key": "digitalmindch-gridster-jekyll-theme", "file": "jekyll-gridster.md", "name": "gridster-jekyll-theme", "title": "Gridster", "github_username": "DigitalMindCH", "repo": "DigitalMindCH/gridster-jekyll-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/DigitalMindCH/gridster-jekyll-theme", - "demo_url": "http://digitalmind.ch/themes/gridster-jekyll-theme/demo/", - "stars": 124, - "forks": 194, + "demo_url": "https://digitalmind.ch/themes/gridster-jekyll-theme/demo/", + "stars": 135, + "forks": 222, "open_issues": 7, "last_commit": "2015-09-18T09:17:22Z", "created_at": "2015-09-16T16:20:07Z", "description": "a jekyll theme in material design", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/digitalmindch-gridster-jekyll-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/digitalmindch-gridster-jekyll-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/digitalmindch-gridster-jekyll-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/digitalmindch-gridster-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/digitalmindch-gridster-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/digitalmindch-gridster-jekyll-theme-2x.jpg" } }, - "digitalmindch-twister-master": { - "theme_key": "digitalmindch-twister-master", + "digitalmindch-twister": { + "theme_key": "digitalmindch-twister", "file": "jekyll-twister.md", "name": "twister-jekyll-theme", "title": "Twister", "github_username": "DigitalMindCH", "repo": "DigitalMindCH/twister-jekyll-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/DigitalMindCH/twister-jekyll-theme", - "demo_url": "http://digitalmind.ch/themes/twister-jekyll-theme/demo/", + "demo_url": "https://digitalmind.ch/themes/twister-jekyll-theme/demo/", "stars": 61, + "forks": 63, + "open_issues": 12, + "last_commit": "2015-12-07T11:55:41Z", + "created_at": "2015-05-11T09:18:26Z", + "description": "a free multimedia jekyll theme", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/digitalmindch-twister.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/digitalmindch-twister.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/digitalmindch-twister-2x.jpg" + } + }, + "digitalmindch-twister-jekyll-theme": { + "theme_key": "digitalmindch-twister", + "file": "jekyll-twister.md", + "name": "twister-jekyll-theme", + "title": "Twister", + "github_username": "DigitalMindCH", + "repo": "DigitalMindCH/twister-jekyll-theme", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/DigitalMindCH/twister-jekyll-theme", + "demo_url": "https://digitalmind.ch/themes/twister-jekyll-theme/demo/", + "stars": 62, "forks": 61, "open_issues": 12, "last_commit": "2015-12-07T11:55:41Z", "created_at": "2015-05-11T09:18:26Z", "description": "a free multimedia jekyll theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/digitalmindch-twister-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/digitalmindch-twister-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/digitalmindch-twister-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/digitalmindch-twister.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/digitalmindch-twister.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/digitalmindch-twister-2x.jpg" } }, - "dikiaap-mangan-master": { - "theme_key": "dikiaap-mangan-master", + "dikiaap-mangan": { + "theme_key": "dikiaap-mangan", "file": "jekyll-mangan.md", "name": "mangan", "title": "Mangan", "github_username": "dikiaap", "repo": "dikiaap/mangan", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/dikiaap/mangan", "demo_url": "https://mangan.dikiaap.id", - "stars": 43, + "stars": 46, "forks": 31, "open_issues": 0, - "last_commit": "2020-03-16T19:58:14Z", + "last_commit": "2022-04-08T08:30:08Z", "created_at": "2015-07-03T08:13:56Z", "description": "Geek theme for Jekyll.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/dikiaap-mangan-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dikiaap-mangan-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dikiaap-mangan-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/dikiaap-mangan.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dikiaap-mangan.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dikiaap-mangan-2x.jpg" } }, - "dirkfabisch-mediator-master": { - "theme_key": "dirkfabisch-mediator-master", + "dirkfabisch-mediator": { + "theme_key": "dirkfabisch-mediator", "file": "jekyll-mediator.md", "name": "mediator", "title": "Mediator", "github_username": "dirkfabisch", "repo": "dirkfabisch/mediator", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/dirkfabisch/mediator", "demo_url": "https://blog.base68.com", - "stars": 780, - "forks": 745, + "stars": 799, + "forks": 803, "open_issues": 11, "last_commit": "2019-01-07T14:06:09Z", "created_at": "2014-08-30T22:43:16Z", "description": "a medium inspired jekyll theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/dirkfabisch-mediator-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dirkfabisch-mediator-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dirkfabisch-mediator-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/dirkfabisch-mediator.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dirkfabisch-mediator.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dirkfabisch-mediator-2x.jpg" } }, - "dirtyf-hylia-forestry-master": { - "theme_key": "dirtyf-hylia-forestry-master", + "dirtyf-hylia-forestry": { + "theme_key": "dirtyf-hylia-forestry", "file": "11ty-hylia-forestry.md", "name": "hylia-forestry", "title": "Eleventy Hylia Forestry", "github_username": "DirtyF", "repo": "DirtyF/hylia-forestry", - "branch": "master", + "branch": "forestry", + "default_branch": "forestry", "github_url": "https://github.com/DirtyF/hylia-forestry", "demo_url": "https://hylia-forestry.netlify.com", - "stars": 16, - "forks": 13, + "stars": 23, + "forks": 16, "open_issues": 0, - "last_commit": "2020-05-28T14:44:26Z", + "last_commit": "2020-11-03T09:03:51Z", "created_at": "2019-06-26T21:56:00Z", "description": "Hylia is a lightweight Eleventy starter kit to help you to create your own blog or personal website.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/dirtyf-hylia-forestry-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dirtyf-hylia-forestry-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dirtyf-hylia-forestry-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/dirtyf-hylia-forestry.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dirtyf-hylia-forestry.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dirtyf-hylia-forestry-2x.jpg" } }, - "diwao-hestia-pure-master": { - "theme_key": "diwao-hestia-pure-master", + "diwao-hestia-pure": { + "theme_key": "diwao-hestia-pure", "file": "hugo-hestia-pure-theme.md", "name": "hestia-pure", "title": "Hestia Pure", "github_username": "diwao", "repo": "diwao/hestia-pure", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/diwao/hestia-pure", "demo_url": "https://themes.gohugo.io/theme/hestia-pure/", - "stars": 22, + "stars": 24, "forks": 8, "open_issues": 2, "last_commit": "2018-03-22T07:17:27Z", "created_at": "2017-06-28T09:14:32Z", "description": "Hestia Pure is a Hugo theme based on Pure CSS.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/diwao-hestia-pure-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/diwao-hestia-pure-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/diwao-hestia-pure-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/diwao-hestia-pure.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/diwao-hestia-pure.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/diwao-hestia-pure-2x.jpg" } }, - "dldx-hpstr-hugo-theme-master": { - "theme_key": "dldx-hpstr-hugo-theme-master", + "dldx-hpstr-hugo-theme": { + "theme_key": "dldx-hpstr-hugo-theme", "file": "hugo-hpstr-theme.md", "name": "hpstr-hugo-theme", "title": "Hpstr", "github_username": "dldx", "repo": "dldx/hpstr-hugo-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/dldx/hpstr-hugo-theme", "demo_url": "https://themes.gohugo.io/theme/hpstr-hugo-theme/", "stars": 18, @@ -6049,1009 +7215,1102 @@ "last_commit": "2018-06-23T04:19:57Z", "created_at": "2016-09-20T06:39:12Z", "description": ":art: A Hugo theme based on the HPSTR Jekyll theme.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/dldx-hpstr-hugo-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dldx-hpstr-hugo-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dldx-hpstr-hugo-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/dldx-hpstr-hugo-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dldx-hpstr-hugo-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dldx-hpstr-hugo-theme-2x.jpg" + } + }, + "doktorbro-jekyll-noita": { + "theme_key": "penibelst-jekyll-noita", + "file": "jekyll-noita.md", + "name": "jekyll-noita", + "title": "Noita", + "github_username": "doktorbro", + "repo": "doktorbro/jekyll-noita", + "branch": "gh-pages", + "default_branch": "gh-pages", + "github_url": "https://github.com/doktorbro/jekyll-noita", + "demo_url": "https://noita.penibelst.de/", + "stars": 38, + "forks": 47, + "open_issues": 6, + "last_commit": "2019-05-05T12:56:31Z", + "created_at": "2014-04-16T20:52:20Z", + "description": "Noita is a Jekyll theme built with Foundation", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/penibelst-jekyll-noita.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/penibelst-jekyll-noita.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/penibelst-jekyll-noita-2x.jpg" } }, - "dominicabela-gatsby-starter-material-ui-master": { - "theme_key": "dominicabela-gatsby-starter-material-ui-master", + "dominicabela-gatsby-starter-material-ui": { + "theme_key": "dominicabela-gatsby-starter-material-ui", "file": "gatsby-starter-material-ui.md", "name": "gatsby-starter-material-ui", "title": "Gatsby Starter Material-ui", "github_username": "dominicabela", "repo": "dominicabela/gatsby-starter-material-ui", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/dominicabela/gatsby-starter-material-ui", "demo_url": "https://material-ui-starter.netlify.com/", - "stars": 25, - "forks": 9, - "open_issues": 0, + "stars": 28, + "forks": 10, + "open_issues": 1, "last_commit": "2020-01-19T03:21:06Z", "created_at": "2019-05-30T02:45:42Z", "description": "A gatsby starter with Material UI", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/dominicabela-gatsby-starter-material-ui-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dominicabela-gatsby-starter-material-ui-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dominicabela-gatsby-starter-material-ui-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/dominicabela-gatsby-starter-material-ui.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dominicabela-gatsby-starter-material-ui.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dominicabela-gatsby-starter-material-ui-2x.jpg" } }, - "dongchuan-yummy-jekyll-master": { - "theme_key": "dongchuan-yummy-jekyll-master", + "dongchuan-yummy-jekyll": { + "theme_key": "dongchuan-yummy-jekyll", "file": "jekyll-yummy-theme.md", "name": "Yummy-Jekyll", "title": "Yummy Theme", "github_username": "DONGChuan", "repo": "DONGChuan/Yummy-Jekyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/DONGChuan/Yummy-Jekyll", "demo_url": "https://dongchuan.github.io/", - "stars": 511, + "stars": 539, "forks": 381, - "open_issues": 17, + "open_issues": 15, "last_commit": "2018-09-18T10:58:00Z", "created_at": "2016-05-13T12:47:31Z", "description": "Yummy Jekyll Theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/dongchuan-yummy-jekyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dongchuan-yummy-jekyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dongchuan-yummy-jekyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/dongchuan-yummy-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dongchuan-yummy-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dongchuan-yummy-jekyll-2x.jpg" } }, - "dplesca-purehugo-master": { - "theme_key": "dplesca-purehugo-master", + "dplesca-purehugo": { + "theme_key": "dplesca-purehugo", "file": "hugo-purehugo.md", "name": "purehugo", "title": "Purehugo", "github_username": "dplesca", "repo": "dplesca/purehugo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/dplesca/purehugo", "demo_url": "https://dplesca.github.io/purehugo/", - "stars": 85, - "forks": 61, - "open_issues": 2, + "stars": 86, + "forks": 62, + "open_issues": 3, "last_commit": "2019-09-24T07:26:10Z", "created_at": "2014-06-01T18:10:47Z", "description": "Hugo theme based on purecss from Yahoo.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/dplesca-purehugo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dplesca-purehugo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dplesca-purehugo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/dplesca-purehugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dplesca-purehugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dplesca-purehugo-2x.jpg" } }, - "drassil-git-wiki-master": { - "theme_key": "drassil-git-wiki-master", + "drassil-git-wiki": { + "theme_key": "drassil-git-wiki", "file": "jekyll-git-wiki-for-documentation-theme.md", "name": "git-wiki", "title": "Git-Wiki", "github_username": "Drassil", "repo": "Drassil/git-wiki", - "branch": "master", + "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/Drassil/git-wiki", "demo_url": "https://drassil.github.io/git-wiki", - "stars": 14, - "forks": 32, - "open_issues": 0, - "last_commit": "2020-12-18T03:49:59Z", + "stars": 40, + "forks": 72, + "open_issues": 4, + "last_commit": "2022-05-05T07:13:06Z", "created_at": "2020-01-06T11:33:20Z", "description": "Demo and documentation for git-wiki-theme", "images": { - "hires": "https://www.jamstackthemes.dev/capture/drassil-git-wiki-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/drassil-git-wiki-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/drassil-git-wiki-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/drassil-git-wiki.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/drassil-git-wiki.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/drassil-git-wiki-2x.jpg" } }, - "drvy-minimal-block-master": { - "theme_key": "drvy-minimal-block-master", + "drvy-minimal-block": { + "theme_key": "drvy-minimal-block", "file": "jekyll-minimal-block.md", "name": "minimal-block", "title": "Minimal-block", "github_username": "drvy", "repo": "drvy/minimal-block", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/drvy/minimal-block", "demo_url": "https://blog.drvy.net/minimal-block/", - "stars": 39, - "forks": 27, + "stars": 42, + "forks": 28, "open_issues": 0, "last_commit": "2019-12-05T11:02:18Z", "created_at": "2015-01-02T19:29:31Z", "description": "A minimalistic, responsive and friendly Jekyllrb theme.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/drvy-minimal-block-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/drvy-minimal-block-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/drvy-minimal-block-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/drvy-minimal-block.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/drvy-minimal-block.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/drvy-minimal-block-2x.jpg" } }, - "dschau-gatsby-blog-starter-kit-master": { - "theme_key": "dschau-gatsby-blog-starter-kit-master", + "dschau-gatsby-blog-starter-kit": { + "theme_key": "dschau-gatsby-blog-starter-kit", "file": "gatsby-blog-starter-kit.md", "name": "gatsby-blog-starter-kit", "title": "Gatsby Blog Starter Kit", "github_username": "DSchau", "repo": "DSchau/gatsby-blog-starter-kit", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/DSchau/gatsby-blog-starter-kit", "demo_url": "https://gatsby-blog-starter-kit.netlify.com/", "stars": 130, "forks": 44, - "open_issues": 12, + "open_issues": 13, "last_commit": "2019-08-07T21:35:07Z", "created_at": "2017-07-13T13:19:51Z", "description": "A simple starter kit for a static blog created with Gatsby", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/dschau-gatsby-blog-starter-kit-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dschau-gatsby-blog-starter-kit-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dschau-gatsby-blog-starter-kit-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/dschau-gatsby-blog-starter-kit.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dschau-gatsby-blog-starter-kit.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dschau-gatsby-blog-starter-kit-2x.jpg" + } + }, + "dsk52-minimage": { + "theme_key": "d-kusk-minimage", + "file": "hugo-minimage.md", + "name": "minimage", + "title": "Minimage", + "github_username": "dsk52", + "repo": "dsk52/minimage", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/dsk52/minimage", + "demo_url": "https://themes.gohugo.io/theme/minimage/", + "stars": 18, + "forks": 11, + "open_issues": 3, + "last_commit": "2021-05-04T17:34:57Z", + "created_at": "2017-11-04T10:52:19Z", + "description": "Hugo's theme", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/d-kusk-minimage.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/d-kusk-minimage.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/d-kusk-minimage-2x.jpg" } }, - "durianstack-gatsby-tailwindcss-sass-starter-master": { - "theme_key": "durianstack-gatsby-tailwindcss-sass-starter-master", + "durianstack-gatsby-tailwindcss-sass-starter": { + "theme_key": "durianstack-gatsby-tailwindcss-sass-starter", "file": "gatsby-tailwindcss-sass-starter.md", "name": "gatsby-tailwindcss-sass-starter", "title": "Gatsby Tailwindcss Sass Starter", "github_username": "durianstack", "repo": "durianstack/gatsby-tailwindcss-sass-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/durianstack/gatsby-tailwindcss-sass-starter", "demo_url": "https://gatsby-tailwindcss-sass-starter-demo.netlify.com/", - "stars": 6, + "stars": 5, "forks": 3, "open_issues": 1, "last_commit": "2019-01-05T18:35:47Z", "created_at": "2019-01-02T07:24:27Z", "description": "Just another Gatsby Tailwind with SASS starter", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/durianstack-gatsby-tailwindcss-sass-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/durianstack-gatsby-tailwindcss-sass-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/durianstack-gatsby-tailwindcss-sass-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/durianstack-gatsby-tailwindcss-sass-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/durianstack-gatsby-tailwindcss-sass-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/durianstack-gatsby-tailwindcss-sass-starter-2x.jpg" } }, - "dwyfrequency-gatsby-ghub-master": { - "theme_key": "dwyfrequency-gatsby-ghub-master", + "dwyfrequency-gatsby-ghub": { + "theme_key": "dwyfrequency-gatsby-ghub", "file": "gatsby-ghub.md", "name": "gatsby-ghub", "title": "Gatsby Ghub", "github_username": "dwyfrequency", "repo": "dwyfrequency/gatsby-ghub", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/dwyfrequency/gatsby-ghub", "demo_url": "https://gatsby-ghub.netlify.com/", "stars": 25, - "forks": 4, - "open_issues": 0, + "forks": 5, + "open_issues": 18, "last_commit": "2019-08-07T19:55:36Z", "created_at": "2019-06-22T21:13:28Z", "description": null, - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/dwyfrequency-gatsby-ghub-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dwyfrequency-gatsby-ghub-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dwyfrequency-gatsby-ghub-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/dwyfrequency-gatsby-ghub.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dwyfrequency-gatsby-ghub.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dwyfrequency-gatsby-ghub-2x.jpg" } }, - "dyndna-lanyon-plus-master": { - "theme_key": "dyndna-lanyon-plus-master", + "dyndna-lanyon-plus": { + "theme_key": "dyndna-lanyon-plus", "file": "jekyll-lanyon-plus.md", "name": "lanyon-plus", "title": "lanyon-plus", "github_username": "dyndna", "repo": "dyndna/lanyon-plus", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/dyndna/lanyon-plus", "demo_url": "https://dyndna.github.io/lanyon-plus", - "stars": 73, - "forks": 72, + "stars": 72, + "forks": 74, "open_issues": 3, "last_commit": "2017-04-26T22:49:04Z", "created_at": "2016-02-26T22:29:05Z", "description": "Based on lanyon - A content-first, sliding sidebar theme for Jekyll. Demo at", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/dyndna-lanyon-plus-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dyndna-lanyon-plus-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dyndna-lanyon-plus-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/dyndna-lanyon-plus.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dyndna-lanyon-plus.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dyndna-lanyon-plus-2x.jpg" } }, - "dyutibarma-monochrome-master": { - "theme_key": "dyutibarma-monochrome-master", + "dyutibarma-monochrome": { + "theme_key": "dyutibarma-monochrome", "file": "jekyll-monochrome.md", "name": "monochrome", "title": "Monochrome", "github_username": "dyutibarma", "repo": "dyutibarma/monochrome", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/dyutibarma/monochrome", "demo_url": "https://dyutibarma.github.io/monochrome/", - "stars": 104, - "forks": 122, + "stars": 108, + "forks": 123, "open_issues": 4, "last_commit": "2018-08-07T05:50:42Z", "created_at": "2017-02-20T03:58:54Z", "description": "Minimal, responsive, SEO ready blogging template built for Jekyll. Demo - ", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/dyutibarma-monochrome-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dyutibarma-monochrome-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dyutibarma-monochrome-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/dyutibarma-monochrome.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dyutibarma-monochrome.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dyutibarma-monochrome-2x.jpg" } }, - "dzello-reveal-hugo-master": { - "theme_key": "dzello-reveal-hugo-master", + "dzello-reveal-hugo": { + "theme_key": "dzello-reveal-hugo", "file": "hugo-reveal.md", "name": "reveal-hugo", "title": "Reveal-Hugo", "github_username": "dzello", "repo": "dzello/reveal-hugo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/dzello/reveal-hugo", "demo_url": "https://reveal-hugo.dzello.com/#/", - "stars": 350, - "forks": 94, - "open_issues": 24, - "last_commit": "2020-11-03T21:44:05Z", + "stars": 549, + "forks": 139, + "open_issues": 31, + "last_commit": "2023-01-23T17:15:37Z", "created_at": "2018-04-26T22:21:56Z", "description": "📽️ Create rich HTML-based presentations with Hugo and Reveal.js", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/dzello-reveal-hugo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dzello-reveal-hugo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dzello-reveal-hugo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/dzello-reveal-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/dzello-reveal-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/dzello-reveal-hugo-2x.jpg" } }, - "edavidaja-docter-master": { - "theme_key": "edavidaja-docter-master", + "edavidaja-docter": { + "theme_key": "edavidaja-docter", "file": "hugo-docter-theme.md", "name": "docter", "title": "Docter", "github_username": "edavidaja", "repo": "edavidaja/docter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/edavidaja/docter", "demo_url": "https://edavidaja.gitlab.io/docter/", - "stars": 6, - "forks": 3, + "stars": 9, + "forks": 4, "open_issues": 1, "last_commit": "2020-05-02T15:34:05Z", "created_at": "2019-06-08T12:33:56Z", "description": "Hugo port of cfpb/docter", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/edavidaja-docter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/edavidaja-docter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/edavidaja-docter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/edavidaja-docter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/edavidaja-docter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/edavidaja-docter-2x.jpg" } }, - "eddiewebb-hugo-resume-master": { - "theme_key": "eddiewebb-hugo-resume-master", + "eddiewebb-hugo-resume": { + "theme_key": "eddiewebb-hugo-resume", "file": "hugo-resume-theme.md", "name": "hugo-resume", "title": "Resume", "github_username": "eddiewebb", "repo": "eddiewebb/hugo-resume", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/eddiewebb/hugo-resume", "demo_url": "https://themes.gohugo.io/theme/hugo-resume/", - "stars": 140, - "forks": 135, - "open_issues": 19, - "last_commit": "2020-10-20T22:20:58Z", + "stars": 160, + "forks": 154, + "open_issues": 26, + "last_commit": "2021-09-09T00:25:50Z", "created_at": "2018-02-12T22:23:50Z", "description": "A Hugo theme ported from startbootrap.com's resume template", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/eddiewebb-hugo-resume-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/eddiewebb-hugo-resume-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/eddiewebb-hugo-resume-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/eddiewebb-hugo-resume.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/eddiewebb-hugo-resume.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/eddiewebb-hugo-resume-2x.jpg" + } + }, + "ekwuno-jamstack-hackathon-starter": { + "theme_key": "sw-yx-jamstack-hackathon-starter", + "file": "jamstack-hackathon-starter.md", + "name": "jamstack-hackathon-starter", + "title": "Jamstack Hackathon Starter", + "github_username": "Ekwuno", + "repo": "Ekwuno/jamstack-hackathon-starter", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/Ekwuno/jamstack-hackathon-starter", + "demo_url": "https://jamstack-hackathon-starter.netlify.com/", + "stars": 144, + "forks": 42, + "open_issues": 3, + "last_commit": "2020-03-25T22:18:25Z", + "created_at": "2018-05-09T20:44:36Z", + "description": "Make Authenticated, Serverless, Dynamic Clientside JAMstack apps with Gatsby + Netlify Dev (Functions + Identity)", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/sw-yx-jamstack-hackathon-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sw-yx-jamstack-hackathon-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sw-yx-jamstack-hackathon-starter-2x.jpg" } }, - "eliasson-liquorice-master": { - "theme_key": "eliasson-liquorice-master", + "eliasson-liquorice": { + "theme_key": "eliasson-liquorice", "file": "hugo-liquorice.md", "name": "liquorice", "title": "Liquorice", "github_username": "eliasson", "repo": "eliasson/liquorice", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/eliasson/liquorice", "demo_url": "https://themes.gohugo.io/theme/liquorice/", - "stars": 44, + "stars": 47, "forks": 19, "open_issues": 3, "last_commit": "2020-06-22T11:54:11Z", "created_at": "2014-08-17T22:54:01Z", "description": "Liquorice is a small black and white theme for Hugo.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/eliasson-liquorice-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/eliasson-liquorice-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/eliasson-liquorice-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/eliasson-liquorice.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/eliasson-liquorice.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/eliasson-liquorice-2x.jpg" } }, - "eliottvincent-bay-master": { - "theme_key": "eliottvincent-bay-master", + "eliottvincent-bay": { + "theme_key": "eliottvincent-bay", "file": "jekyll-bay.md", "name": "bay", "title": "Bay", "github_username": "eliottvincent", "repo": "eliottvincent/bay", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/eliottvincent/bay", "demo_url": "https://eliottvincent.github.io/bay/", - "stars": 25, - "forks": 77, - "open_issues": 1, - "last_commit": "2020-12-21T18:54:01Z", + "stars": 101, + "forks": 271, + "open_issues": 7, + "last_commit": "2022-10-19T07:50:13Z", "created_at": "2019-10-24T08:21:45Z", "description": "🐟 A simple theme for Jekyll. Live at https://eliottvincent.github.io/bay/", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/eliottvincent-bay-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/eliottvincent-bay-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/eliottvincent-bay-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/eliottvincent-bay.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/eliottvincent-bay.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/eliottvincent-bay-2x.jpg" } }, - "ellekasai-resumecards-gh-pages": { - "theme_key": "ellekasai-resumecards-gh-pages", + "ellekasai-resumecards": { + "theme_key": "ellekasai-resumecards", "file": "jekyll-resumecards.md", "name": "resumecards", "title": "ResumeCards", "github_username": "ellekasai", "repo": "ellekasai/resumecards", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/ellekasai/resumecards", "demo_url": "https://ellekasai.github.io/resumecards/", - "stars": 704, - "forks": 228, + "stars": 726, + "forks": 236, "open_issues": 3, "last_commit": "2018-07-16T06:12:46Z", "created_at": "2014-12-28T20:41:56Z", "description": "[Unmaintained] A Markdown based resume generator. It looks great on mobile/desktop and can be saved as PDF.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ellekasai-resumecards-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ellekasai-resumecards-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ellekasai-resumecards-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ellekasai-resumecards.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ellekasai-resumecards.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ellekasai-resumecards-2x.jpg" } }, - "ellekasai-shiori-gh-pages": { - "theme_key": "ellekasai-shiori-gh-pages", + "ellekasai-shiori": { + "theme_key": "ellekasai-shiori", "file": "jekyll-shiori.md", "name": "shiori", "title": "Shiori", "github_username": "ellekasai", "repo": "ellekasai/shiori", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/ellekasai/shiori", "demo_url": "https://ellekasai.github.io/shiori/", - "stars": 301, - "forks": 129, + "stars": 313, + "forks": 132, "open_issues": 1, - "last_commit": "2017-05-25T17:16:36Z", + "last_commit": "2022-01-20T18:31:32Z", "created_at": "2014-09-07T05:49:29Z", "description": "[Unmaintained] A Bootstrap-based Jekyll Theme.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ellekasai-shiori-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ellekasai-shiori-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ellekasai-shiori-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ellekasai-shiori.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ellekasai-shiori.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ellekasai-shiori-2x.jpg" } }, - "elotroalex-ed-gh-pages": { - "theme_key": "elotroalex-ed-gh-pages", + "elotroalex-ed": { + "theme_key": "elotroalex-ed", "file": "jekyll-ed.md", "name": "ed", "title": "Ed", "github_username": "elotroalex", "repo": "elotroalex/ed", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/elotroalex/ed", "demo_url": "https://elotroalex.github.io/ed/", - "stars": 126, - "forks": 148, + "stars": 127, + "forks": 143, "open_issues": 8, - "last_commit": "2017-11-19T00:26:03Z", + "last_commit": "2021-08-31T19:57:21Z", "created_at": "2016-01-18T02:09:56Z", "description": "A jekyll theme for minimal editions", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/elotroalex-ed-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/elotroalex-ed-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/elotroalex-ed-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/elotroalex-ed.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/elotroalex-ed.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/elotroalex-ed-2x.jpg" } }, - "email2vimalraj-gatsby-starter-tech-blog-master": { - "theme_key": "email2vimalraj-gatsby-starter-tech-blog-master", + "email2vimalraj-gatsby-starter-tech-blog": { + "theme_key": "email2vimalraj-gatsby-starter-tech-blog", "file": "gatsby-starter-tech-blog.md", "name": "gatsby-starter-tech-blog", "title": "Gatsby Starter Tech Blog", "github_username": "email2vimalraj", "repo": "email2vimalraj/gatsby-starter-tech-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/email2vimalraj/gatsby-starter-tech-blog", "demo_url": "https://gatsby-starter-tech-blog.netlify.com/", - "stars": 12, + "stars": 13, "forks": 7, "open_issues": 0, "last_commit": "2019-04-13T03:53:43Z", "created_at": "2018-12-23T05:32:24Z", "description": "A Gatsby Starter Tech Blog template", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/email2vimalraj-gatsby-starter-tech-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/email2vimalraj-gatsby-starter-tech-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/email2vimalraj-gatsby-starter-tech-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/email2vimalraj-gatsby-starter-tech-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/email2vimalraj-gatsby-starter-tech-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/email2vimalraj-gatsby-starter-tech-blog-2x.jpg" } }, - "emasuriano-gatsby-starter-event-calendar-master": { - "theme_key": "emasuriano-gatsby-starter-event-calendar-master", + "emasuriano-gatsby-starter-event-calendar": { + "theme_key": "emasuriano-gatsby-starter-event-calendar", "file": "gatsby-starter-event-calendar.md", "name": "gatsby-starter-event-calendar", "title": "Gatsby Event Calendar", "github_username": "EmaSuriano", "repo": "EmaSuriano/gatsby-starter-event-calendar", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/EmaSuriano/gatsby-starter-event-calendar", "demo_url": "https://gatsby-starter-event-calendar.netlify.com/", - "stars": 59, - "forks": 16, - "open_issues": 13, - "last_commit": "2020-11-23T05:42:07Z", + "stars": 74, + "forks": 17, + "open_issues": 11, + "last_commit": "2022-12-01T22:16:06Z", "created_at": "2018-11-12T12:55:50Z", "description": "A customisable calendar event starter for Gatsby integrated with Google Spreadsheet.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/emasuriano-gatsby-starter-event-calendar-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/emasuriano-gatsby-starter-event-calendar-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/emasuriano-gatsby-starter-event-calendar-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/emasuriano-gatsby-starter-event-calendar.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/emasuriano-gatsby-starter-event-calendar.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/emasuriano-gatsby-starter-event-calendar-2x.jpg" } }, - "emasuriano-gatsby-starter-mate-master": { - "theme_key": "emasuriano-gatsby-starter-mate-master", + "emasuriano-gatsby-starter-mate": { + "theme_key": "emasuriano-gatsby-starter-mate", "file": "gatsby-starter-mate.md", "name": "gatsby-starter-mate", "title": "Gatsby Starter Mate", "github_username": "EmaSuriano", "repo": "EmaSuriano/gatsby-starter-mate", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/EmaSuriano/gatsby-starter-mate", "demo_url": "https://gatsby-starter-mate.netlify.com/", - "stars": 446, - "forks": 144, - "open_issues": 15, - "last_commit": "2020-11-23T05:49:19Z", + "stars": 529, + "forks": 162, + "open_issues": 10, + "last_commit": "2023-01-16T10:24:51Z", "created_at": "2018-08-31T12:10:46Z", "description": "An accessible and fast portfolio starter for Gatsby integrated with Contentful CMS.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/emasuriano-gatsby-starter-mate-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/emasuriano-gatsby-starter-mate-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/emasuriano-gatsby-starter-mate-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/emasuriano-gatsby-starter-mate.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/emasuriano-gatsby-starter-mate.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/emasuriano-gatsby-starter-mate-2x.jpg" } }, - "emielh-hallo-hugo-master": { - "theme_key": "emielh-hallo-hugo-master", + "emielh-hallo-hugo": { + "theme_key": "emielh-hallo-hugo", "file": "hallo-hugo.md", "name": "hallo-hugo", "title": "Hallo Hugo", "github_username": "EmielH", "repo": "EmielH/hallo-hugo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/EmielH/hallo-hugo", "demo_url": "https://themes.gohugo.io/theme/hallo-hugo/", - "stars": 74, - "forks": 39, - "open_issues": 1, - "last_commit": "2021-01-09T13:55:00Z", + "stars": 87, + "forks": 49, + "open_issues": 3, + "last_commit": "2021-09-18T07:41:43Z", "created_at": "2018-10-28T13:02:54Z", "description": "Hallo is a single-page Hugo theme to introduce yourself.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/emielh-hallo-hugo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/emielh-hallo-hugo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/emielh-hallo-hugo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/emielh-hallo-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/emielh-hallo-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/emielh-hallo-hugo-2x.jpg" } }, - "emielh-stip-hugo-master": { - "theme_key": "emielh-stip-hugo-master", + "emielh-stip-hugo": { + "theme_key": "emielh-stip-hugo", "file": "hugo-stip-theme.md", "name": "stip-hugo", "title": "Stip", "github_username": "EmielH", "repo": "EmielH/stip-hugo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/EmielH/stip-hugo", "demo_url": "https://themes.gohugo.io/theme/stip-hugo/", - "stars": 15, + "stars": 18, "forks": 15, "open_issues": 1, "last_commit": "2019-04-13T09:03:29Z", "created_at": "2019-03-31T18:25:34Z", "description": "Stip is a single-page Hugo theme to introduce yourself, based on Material Design's tap target design pattern.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/emielh-stip-hugo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/emielh-stip-hugo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/emielh-stip-hugo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/emielh-stip-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/emielh-stip-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/emielh-stip-hugo-2x.jpg" } }, - "emielh-tale-hugo-master": { - "theme_key": "emielh-tale-hugo-master", + "emielh-tale-hugo": { + "theme_key": "emielh-tale-hugo", "file": "hugo-tale.md", "name": "tale-hugo", "title": "Hugo Tale", "github_username": "EmielH", "repo": "EmielH/tale-hugo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/EmielH/tale-hugo", "demo_url": "https://themes.gohugo.io/theme/tale-hugo/", - "stars": 189, - "forks": 92, - "open_issues": 6, - "last_commit": "2020-10-25T20:26:06Z", + "stars": 214, + "forks": 103, + "open_issues": 5, + "last_commit": "2021-09-29T21:21:00Z", "created_at": "2018-07-28T14:12:03Z", "description": "A port of the Tale theme for Hugo. Tale is a minimal theme curated for storytellers.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/emielh-tale-hugo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/emielh-tale-hugo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/emielh-tale-hugo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/emielh-tale-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/emielh-tale-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/emielh-tale-hugo-2x.jpg" } }, - "emilbaehr-automatic-app-landing-page-master": { - "theme_key": "emilbaehr-automatic-app-landing-page-master", + "emilbaehr-automatic-app-landing-page": { + "theme_key": "emilbaehr-automatic-app-landing-page", "file": "automatic-app-landing-page.md", "name": "automatic-app-landing-page", "title": "Automatic", "github_username": "emilbaehr", "repo": "emilbaehr/automatic-app-landing-page", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/emilbaehr/automatic-app-landing-page", "demo_url": "https://emilbaehr.github.io/automatic-app-landing-page/", - "stars": 2300, - "forks": 935, - "open_issues": 17, - "last_commit": "2020-10-26T15:58:08Z", + "stars": 2866, + "forks": 1358, + "open_issues": 27, + "last_commit": "2021-06-14T13:00:05Z", "created_at": "2019-01-05T10:20:11Z", "description": "A Jekyll theme for automatically generating and deploying landing page sites for mobile apps.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/emilbaehr-automatic-app-landing-page-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/emilbaehr-automatic-app-landing-page-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/emilbaehr-automatic-app-landing-page-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/emilbaehr-automatic-app-landing-page.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/emilbaehr-automatic-app-landing-page.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/emilbaehr-automatic-app-landing-page-2x.jpg" } }, - "endymion1818-gatsby-starter-carraway-master": { - "theme_key": "endymion1818-gatsby-starter-carraway-master", + "endymion1818-gatsby-starter-carraway": { + "theme_key": "endymion1818-gatsby-starter-carraway", "file": "gatsby-starter-carraway.md", "name": "gatsby-starter-carraway", "title": "Gatsby Starter Carraway", "github_username": "endymion1818", "repo": "endymion1818/gatsby-starter-carraway", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/endymion1818/gatsby-starter-carraway", "demo_url": "https://gatsby-starter-carraway.netlify.com/", - "stars": 6, + "stars": 7, "forks": 0, - "open_issues": 0, - "last_commit": "2020-05-17T20:48:17Z", + "open_issues": 1, + "last_commit": "2021-05-17T09:01:35Z", "created_at": "2019-06-08T14:42:17Z", "description": "a Gatsby starter theme with Accessibility features, TypeScript, Jest, Cypress, some basic UI elements, and a CircleCI pipeline", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/endymion1818-gatsby-starter-carraway-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/endymion1818-gatsby-starter-carraway-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/endymion1818-gatsby-starter-carraway-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/endymion1818-gatsby-starter-carraway.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/endymion1818-gatsby-starter-carraway.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/endymion1818-gatsby-starter-carraway-2x.jpg" + } + }, + "epilocal-newsliner-gatsby": { + "theme_key": "epilocal-newsliner-gatsby", + "file": "newsliner-gatsby-ghost-starter.md", + "name": "newsliner-gatsby", + "title": "Newsliner Gatsby + Ghost Starter", + "github_username": "epilocal", + "repo": "epilocal/newsliner-gatsby", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/epilocal/newsliner-gatsby", + "demo_url": "https://newsliner-gatsby.epilocal.com/", + "stars": 14, + "forks": 9, + "open_issues": 1, + "last_commit": "2021-09-08T07:50:35Z", + "created_at": "2021-03-30T14:55:55Z", + "description": null, + "images": { + "hires": "https://www.jamstackthemes.dev/capture/epilocal-newsliner-gatsby.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/epilocal-newsliner-gatsby.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/epilocal-newsliner-gatsby-2x.jpg" } }, - "erayaydin-jekyll-bulma-master": { - "theme_key": "erayaydin-jekyll-bulma-master", + "erayaydin-jekyll-bulma": { + "theme_key": "erayaydin-jekyll-bulma", "file": "jekyll-bulma-theme.md", "name": "jekyll-bulma", "title": "Jekyll Bulma", "github_username": "erayaydin", "repo": "erayaydin/jekyll-bulma", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/erayaydin/jekyll-bulma", "demo_url": "https://erayaydin.github.io/jekyll-bulma/", "stars": 24, - "forks": 17, + "forks": 20, "open_issues": 4, "last_commit": "2017-12-12T15:30:35Z", "created_at": "2017-02-02T09:36:52Z", "description": "Jekyll Bulma Theme | Bulma.io Jekyll Template for Developers", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/erayaydin-jekyll-bulma-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/erayaydin-jekyll-bulma-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/erayaydin-jekyll-bulma-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/erayaydin-jekyll-bulma.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/erayaydin-jekyll-bulma.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/erayaydin-jekyll-bulma-2x.jpg" } }, - "esappear-hexo-theme-clover-master": { - "theme_key": "esappear-hexo-theme-clover-master", + "esappear-hexo-theme-clover": { + "theme_key": "esappear-hexo-theme-clover", "file": "hexo-theme-clover.md", "name": "hexo-theme-clover", "title": "Clover", "github_username": "esappear", "repo": "esappear/hexo-theme-clover", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/esappear/hexo-theme-clover", "demo_url": "https://clovertuan.github.io/", - "stars": 166, - "forks": 34, - "open_issues": 6, + "stars": 182, + "forks": 39, + "open_issues": 7, "last_commit": "2019-09-15T13:53:02Z", "created_at": "2018-10-05T13:57:23Z", "description": "Clover theme for Hexo.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/esappear-hexo-theme-clover-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/esappear-hexo-theme-clover-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/esappear-hexo-theme-clover-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/esappear-hexo-theme-clover.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/esappear-hexo-theme-clover.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/esappear-hexo-theme-clover-2x.jpg" } }, - "escapemanuele-gatsby-contentful-blog-portfolio-master": { - "theme_key": "escapemanuele-gatsby-contentful-blog-portfolio-master", + "escapemanuele-gatsby-contentful-blog-portfolio": { + "theme_key": "escapemanuele-gatsby-contentful-blog-portfolio", "file": "gatsby-contentful-blog-portfolio.md", "name": "gatsby-contentful-blog-portfolio", "title": "Gatsby Contentful Blog and Portfolio", "github_username": "escapemanuele", "repo": "escapemanuele/gatsby-contentful-blog-portfolio", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/escapemanuele/gatsby-contentful-blog-portfolio", "demo_url": "https://gatsby-contentful-portfolio-blog.netlify.com/", - "stars": 17, - "forks": 13, + "stars": 24, + "forks": 17, "open_issues": 0, "last_commit": "2020-08-06T12:39:49Z", "created_at": "2020-02-14T08:53:47Z", "description": "Gatsby Contentful starter for creating a portfolio website with a blog", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/escapemanuele-gatsby-contentful-blog-portfolio-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/escapemanuele-gatsby-contentful-blog-portfolio-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/escapemanuele-gatsby-contentful-blog-portfolio-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/escapemanuele-gatsby-contentful-blog-portfolio.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/escapemanuele-gatsby-contentful-blog-portfolio.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/escapemanuele-gatsby-contentful-blog-portfolio-2x.jpg" } }, - "eshlox-simplicity-master": { - "theme_key": "eshlox-simplicity-master", + "eshlox-simplicity": { + "theme_key": "eshlox-simplicity", "file": "hugo-simplicity-theme.md", "name": "simplicity", "title": "Simplicity", "github_username": "eshlox", "repo": "eshlox/simplicity", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/eshlox/simplicity", "demo_url": "https://themes.gohugo.io/theme/simplicity/", - "stars": 48, - "forks": 20, + "stars": 50, + "forks": 19, "open_issues": 7, "last_commit": "2020-12-10T11:26:38Z", "created_at": "2017-11-05T18:54:34Z", "description": "Hugo theme.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/eshlox-simplicity-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/eshlox-simplicity-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/eshlox-simplicity-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/eshlox-simplicity.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/eshlox-simplicity.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/eshlox-simplicity-2x.jpg" } }, - "essentialenemy-noir-master": { - "theme_key": "essentialenemy-noir-master", + "essentialenemy-noir": { + "theme_key": "essentialenemy-noir", "file": "noir.md", "name": "noir", "title": "Noir", "github_username": "essentialenemy", "repo": "essentialenemy/noir", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/essentialenemy/noir", "demo_url": "https://noir.essentialenemy.com", - "stars": 65, + "stars": 69, "forks": 24, - "open_issues": 2, + "open_issues": 7, "last_commit": "2020-08-14T07:29:50Z", "created_at": "2020-01-01T16:05:40Z", "description": "Noir is a modern, responsive and customizable theme for Jekyll with dark mode support.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/essentialenemy-noir-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/essentialenemy-noir-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/essentialenemy-noir-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/essentialenemy-noir.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/essentialenemy-noir.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/essentialenemy-noir-2x.jpg" } }, - "excentris-compass-master": { - "theme_key": "excentris-compass-master", + "excentris-compass": { + "theme_key": "excentris-compass", "file": "jekyll-compass.md", "name": "compass", "title": "Compass", "github_username": "excentris", "repo": "excentris/compass", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/excentris/compass", "demo_url": "https://excentris.github.io/compass/", - "stars": 170, - "forks": 324, + "stars": 182, + "forks": 335, "open_issues": 0, "last_commit": "2020-01-21T10:09:55Z", "created_at": "2015-01-03T21:56:41Z", "description": "The Jekyll theme for your personal landing page.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/excentris-compass-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/excentris-compass-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/excentris-compass-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/excentris-compass.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/excentris-compass.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/excentris-compass-2x.jpg" } }, - "exchangerate-api-rlstevenson-jekyll-theme-master": { - "theme_key": "exchangerate-api-rlstevenson-jekyll-theme-master", + "exchangerate-api-rlstevenson-jekyll-theme": { + "theme_key": "exchangerate-api-rlstevenson-jekyll-theme", "file": "jekyll-rlstevenson.md", "name": "rlstevenson-jekyll-theme", "title": "RLStevenson", "github_username": "ExchangeRate-API", "repo": "ExchangeRate-API/rlstevenson-jekyll-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ExchangeRate-API/rlstevenson-jekyll-theme", "demo_url": "https://www.exchangerate-api.com/rlstevenson/", "stars": 7, - "forks": 15, + "forks": 16, "open_issues": 1, "last_commit": "2016-10-13T09:09:27Z", "created_at": "2016-09-08T12:22:19Z", "description": "A Bootstrap clone of the popular Hyde theme for Jekyll. ", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/exchangerate-api-rlstevenson-jekyll-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/exchangerate-api-rlstevenson-jekyll-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/exchangerate-api-rlstevenson-jekyll-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/exchangerate-api-rlstevenson-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/exchangerate-api-rlstevenson-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/exchangerate-api-rlstevenson-jekyll-theme-2x.jpg" } }, - "exchangerate-api-strange-case-master": { - "theme_key": "exchangerate-api-strange-case-master", + "exchangerate-api-strange-case": { + "theme_key": "exchangerate-api-strange-case", "file": "hugo-strange-case.md", "name": "strange-case", "title": "Strange Case", "github_username": "ExchangeRate-API", "repo": "ExchangeRate-API/strange-case", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ExchangeRate-API/strange-case", "demo_url": "https://themes.gohugo.io/theme/strange-case/", - "stars": 24, - "forks": 25, - "open_issues": 2, - "last_commit": "2019-02-11T10:47:37Z", + "stars": 25, + "forks": 29, + "open_issues": 1, + "last_commit": "2021-03-04T12:57:49Z", "created_at": "2016-08-25T17:44:29Z", "description": "Strange Case is a Hugo theme for people who like the Hyde theme ported from Jekyll but prefer using Bootstrap.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/exchangerate-api-strange-case-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/exchangerate-api-strange-case-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/exchangerate-api-strange-case-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/exchangerate-api-strange-case.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/exchangerate-api-strange-case.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/exchangerate-api-strange-case-2x.jpg" } }, - "ezrasavard-ezora-jekyll-theme-master": { - "theme_key": "ezrasavard-ezora-jekyll-theme-master", + "ezrasavard-ezora-jekyll-theme": { + "theme_key": "ezrasavard-ezora-jekyll-theme", "file": "jekyll-ezora.md", "name": "ezora-jekyll-theme", "title": "Ezora", "github_username": "ezrasavard", "repo": "ezrasavard/ezora-jekyll-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ezrasavard/ezora-jekyll-theme", "demo_url": "https://ezrasavard.com/", "stars": 8, - "forks": 11, + "forks": 14, "open_issues": 0, "last_commit": "2020-09-08T17:01:17Z", "created_at": "2016-09-24T20:50:53Z", "description": "Ezora is a responsive Jekyll theme with a clean single column layout, nifty text overlays for images and a mobile friendly navigation bar.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ezrasavard-ezora-jekyll-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ezrasavard-ezora-jekyll-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ezrasavard-ezora-jekyll-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ezrasavard-ezora-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ezrasavard-ezora-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ezrasavard-ezora-jekyll-theme-2x.jpg" } }, - "fabe-gatsby-starter-deck-master": { - "theme_key": "fabe-gatsby-starter-deck-master", + "fabe-gatsby-starter-deck": { + "theme_key": "fabe-gatsby-starter-deck", "file": "gatsby-starter-deck.md", "name": "gatsby-starter-deck", "title": "Gatsby Starter Deck", "github_username": "fabe", "repo": "fabe/gatsby-starter-deck", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/fabe/gatsby-starter-deck", "demo_url": "https://gatsby-deck.netlify.com", - "stars": 523, - "forks": 86, + "stars": 522, + "forks": 84, "open_issues": 0, "last_commit": "2020-06-16T16:27:47Z", "created_at": "2017-11-23T23:22:27Z", "description": "🗣 Create presentations using Gatsby, React & Markdown.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/fabe-gatsby-starter-deck-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/fabe-gatsby-starter-deck-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/fabe-gatsby-starter-deck-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/fabe-gatsby-starter-deck.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/fabe-gatsby-starter-deck.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/fabe-gatsby-starter-deck-2x.jpg" } }, - "fabe-gatsby-universal-master": { - "theme_key": "fabe-gatsby-universal-master", + "fabe-gatsby-universal": { + "theme_key": "fabe-gatsby-universal", "file": "gatsby-universal.md", "name": "gatsby-universal", "title": "Gatsby Universal", "github_username": "fabe", "repo": "fabe/gatsby-universal", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/fabe/gatsby-universal", "demo_url": "https://gatsby-universal.netlify.com/", - "stars": 611, - "forks": 102, - "open_issues": 19, + "stars": 621, + "forks": 97, + "open_issues": 38, "last_commit": "2019-07-20T21:30:19Z", "created_at": "2018-06-20T23:34:15Z", "description": "🔮 An opinionated Gatsby v2 starter for state-of-the-art marketing sites.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/fabe-gatsby-universal-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/fabe-gatsby-universal-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/fabe-gatsby-universal-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/fabe-gatsby-universal.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/fabe-gatsby-universal.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/fabe-gatsby-universal-2x.jpg" } }, - "fabien0102-gatsby-starter-master": { - "theme_key": "fabien0102-gatsby-starter-master", + "fabien0102-gatsby-starter": { + "theme_key": "fabien0102-gatsby-starter", "file": "gatsby-starter.md", "name": "gatsby-starter", "title": "Gatsby Starter", "github_username": "fabien0102", "repo": "fabien0102/gatsby-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/fabien0102/gatsby-starter", "demo_url": "https://fabien0102-gatsby-starter.netlify.com/", - "stars": 383, - "forks": 105, - "open_issues": 27, - "last_commit": "2019-12-14T15:05:09Z", + "stars": 387, + "forks": 106, + "open_issues": 42, + "last_commit": "2022-02-28T08:54:57Z", "created_at": "2017-04-13T12:50:52Z", "description": "Gatsby 2.0 starter with typescript and many cools dev tools", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/fabien0102-gatsby-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/fabien0102-gatsby-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/fabien0102-gatsby-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/fabien0102-gatsby-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/fabien0102-gatsby-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/fabien0102-gatsby-starter-2x.jpg" } }, - "fareez-ahamed-millikyl-master": { - "theme_key": "fareez-ahamed-millikyl-master", + "fareez-ahamed-millikyl": { + "theme_key": "fareez-ahamed-millikyl", "file": "jekyll-millikyl.md", "name": "millikyl", "title": "Millikyl", "github_username": "fareez-ahamed", "repo": "fareez-ahamed/millikyl", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/fareez-ahamed/millikyl", "demo_url": "https://fareez-ahamed.github.io/millikyl/", "stars": 10, "forks": 12, - "open_issues": 2, + "open_issues": 1, "last_commit": "2016-01-19T07:43:40Z", "created_at": "2016-01-02T15:55:57Z", "description": "A Jekyll theme based on the super minimal Milligram CSS Framework", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/fareez-ahamed-millikyl-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/fareez-ahamed-millikyl-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/fareez-ahamed-millikyl-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/fareez-ahamed-millikyl.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/fareez-ahamed-millikyl.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/fareez-ahamed-millikyl-2x.jpg" } }, - "fastbyte01-keepit-master": { - "theme_key": "fastbyte01-keepit-master", + "fastbyte01-keepit": { + "theme_key": "fastbyte01-keepit", "file": "hugo-keepit.md", "name": "KeepIt", "title": "KeepIt", "github_username": "Fastbyte01", "repo": "Fastbyte01/KeepIt", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Fastbyte01/KeepIt", "demo_url": "https://suspicious-archimedes-ab369d.netlify.com/", - "stars": 142, - "forks": 58, - "open_issues": 5, - "last_commit": "2020-09-03T19:40:42Z", + "stars": 220, + "forks": 89, + "open_issues": 12, + "last_commit": "2022-03-16T16:03:40Z", "created_at": "2019-02-03T09:52:26Z", "description": "The most powerful minimal Hugo theme.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/fastbyte01-keepit-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/fastbyte01-keepit-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/fastbyte01-keepit-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/fastbyte01-keepit.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/fastbyte01-keepit.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/fastbyte01-keepit-2x.jpg" } }, - "felicianotech-hugo-theme-lean-launch-page-master": { - "theme_key": "felicianotech-hugo-theme-lean-launch-page-master", + "felicianotech-hugo-theme-lean-launch-page": { + "theme_key": "felicianotech-hugo-theme-lean-launch-page", "file": "hugo-theme-lean-launch-page.md", "name": "hugo-theme-lean-launch-page", "title": "Lean Launch Page", "github_username": "felicianotech", "repo": "felicianotech/hugo-theme-lean-launch-page", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/felicianotech/hugo-theme-lean-launch-page", "demo_url": "https://themes.gohugo.io/theme/hugo-theme-lean-launch-page/", - "stars": 19, + "stars": 24, "forks": 16, "open_issues": 6, - "last_commit": "2020-06-12T17:41:45Z", + "last_commit": "2021-06-15T21:00:23Z", "created_at": "2017-09-12T02:24:39Z", "description": "A theme for people creating pre-launch pages for a product or business. Allows you to have a landing page while collecting emails.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/felicianotech-hugo-theme-lean-launch-page-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/felicianotech-hugo-theme-lean-launch-page-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/felicianotech-hugo-theme-lean-launch-page-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/felicianotech-hugo-theme-lean-launch-page.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/felicianotech-hugo-theme-lean-launch-page.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/felicianotech-hugo-theme-lean-launch-page-2x.jpg" } }, - "ferrolho-jekyll-theme-libretto-gh-pages": { - "theme_key": "ferrolho-jekyll-theme-libretto-gh-pages", + "ferrolho-jekyll-theme-libretto": { + "theme_key": "ferrolho-jekyll-theme-libretto", "file": "jekyll-theme-libretto.md", "name": "jekyll-theme-libretto", "title": "Libretto", "github_username": "ferrolho", "repo": "ferrolho/jekyll-theme-libretto", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/ferrolho/jekyll-theme-libretto", "demo_url": "https://ferrolho.github.io/jekyll-theme-libretto/", - "stars": 52, - "forks": 58, - "open_issues": 2, + "stars": 55, + "forks": 60, + "open_issues": 3, "last_commit": "2016-09-18T13:04:25Z", "created_at": "2016-09-01T12:53:45Z", "description": ":scroll: Libretto is a Jekyll theme with classic styling and typographic details", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ferrolho-jekyll-theme-libretto-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ferrolho-jekyll-theme-libretto-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ferrolho-jekyll-theme-libretto-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ferrolho-jekyll-theme-libretto.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ferrolho-jekyll-theme-libretto.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ferrolho-jekyll-theme-libretto-2x.jpg" } }, - "fhavrlent-gatsby-contentful-typescript-starter-master": { - "theme_key": "fhavrlent-gatsby-contentful-typescript-starter-master", + "fhavrlent-gatsby-contentful-typescript-starter": { + "theme_key": "fhavrlent-gatsby-contentful-typescript-starter", "file": "gatsby-contentful-typescript-starter.md", "name": "gatsby-contentful-typescript-starter", "title": "Gatsby Contentful Typescript Starter", "github_username": "fhavrlent", "repo": "fhavrlent/gatsby-contentful-typescript-starter", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/fhavrlent/gatsby-contentful-typescript-starter", "demo_url": "https://happy-pare-dff451.netlify.com/", "stars": 12, "forks": 5, "open_issues": 0, - "last_commit": "2020-05-18T15:45:15Z", + "last_commit": "2021-09-21T18:12:10Z", "created_at": "2018-10-01T21:52:18Z", "description": "Gatsby.js starter with TypeScript and Contentful ", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/fhavrlent-gatsby-contentful-typescript-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/fhavrlent-gatsby-contentful-typescript-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/fhavrlent-gatsby-contentful-typescript-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/fhavrlent-gatsby-contentful-typescript-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/fhavrlent-gatsby-contentful-typescript-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/fhavrlent-gatsby-contentful-typescript-starter-2x.jpg" } }, - "fiatjaf-classless-hugo-master": { - "theme_key": "fiatjaf-classless-hugo-master", + "fiatjaf-classless-hugo": { + "theme_key": "fiatjaf-classless-hugo", "file": "hugo-classless-theme.md", "name": "classless-hugo", "title": "Classless", "github_username": "fiatjaf", "repo": "fiatjaf/classless-hugo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/fiatjaf/classless-hugo", "demo_url": "https://themes.gohugo.io/theme/classless-hugo/", "stars": 5, @@ -7060,228 +8319,481 @@ "last_commit": "2018-04-15T22:23:53Z", "created_at": "2018-04-10T04:11:51Z", "description": "The Classless templates and themes implemented in Hugo", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/fiatjaf-classless-hugo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/fiatjaf-classless-hugo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/fiatjaf-classless-hugo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/fiatjaf-classless-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/fiatjaf-classless-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/fiatjaf-classless-hugo-2x.jpg" } }, - "fncnt-vncnt-hugo-master": { - "theme_key": "fncnt-vncnt-hugo-master", - "file": "hugo-vncnt.md", - "name": "vncnt-hugo", - "title": "Vncnt-hugo", - "github_username": "fncnt", - "repo": "fncnt/vncnt-hugo", + "flotiq-flotiq-gatsby-blog-1": { + "theme_key": "flotiq-flotiq-gatsby-blog-1", + "file": "gatsby-flotiq-blog-1.md", + "name": "flotiq-gatsby-blog-1", + "title": "Flotiq Gatsby Blog 1 – Gradient", + "github_username": "flotiq", + "repo": "flotiq/flotiq-gatsby-blog-1", "branch": "master", - "github_url": "https://github.com/fncnt/vncnt-hugo", - "demo_url": "https://themes.gohugo.io/theme/vncnt-hugo/", - "stars": 38, - "forks": 18, - "open_issues": 1, - "last_commit": "2020-04-15T15:35:23Z", - "created_at": "2019-01-03T14:05:32Z", - "description": "a simple theme for hugo.", - "stale": false, + "default_branch": "master", + "github_url": "https://github.com/flotiq/flotiq-gatsby-blog-1", + "demo_url": "https://flotiqgatsbyblog1master.gatsbyjs.io/", + "stars": 13, + "forks": 0, + "open_issues": 0, + "last_commit": "2022-12-23T14:51:04Z", + "created_at": "2022-01-13T07:53:53Z", + "description": "Gatsby starter for creating a blog with Flotiq", "images": { - "hires": "https://www.jamstackthemes.dev/capture/fncnt-vncnt-hugo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/fncnt-vncnt-hugo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/fncnt-vncnt-hugo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/flotiq-flotiq-gatsby-blog-1.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/flotiq-flotiq-gatsby-blog-1.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-blog-1-2x.jpg" } }, - "fongandrew-hydeout-master": { - "theme_key": "fongandrew-hydeout-master", - "file": "hydeout.md", - "name": "hydeout", - "title": "Hydeout", - "github_username": "fongandrew", - "repo": "fongandrew/hydeout", + "flotiq-flotiq-gatsby-blog-2": { + "theme_key": "flotiq-flotiq-gatsby-blog-2", + "file": "gatsby-flotiq-blog-2.md", + "name": "flotiq-gatsby-blog-2", + "title": "Flotiq Gatsby Blog 2 – Modern", + "github_username": "flotiq", + "repo": "flotiq/flotiq-gatsby-blog-2", "branch": "master", - "github_url": "https://github.com/fongandrew/hydeout", - "demo_url": "https://fongandrew.github.io/hydeout/", - "stars": 430, - "forks": 639, - "open_issues": 14, - "last_commit": "2020-10-23T06:26:51Z", - "created_at": "2017-06-01T00:22:41Z", - "description": "A refreshed version of Hyde for Jekyll 3.x and 4.x", - "stale": false, + "default_branch": "master", + "github_url": "https://github.com/flotiq/flotiq-gatsby-blog-2", + "demo_url": "https://flotiqgatsbyblog2.gatsbyjs.io/", + "stars": 14, + "forks": 2, + "open_issues": 0, + "last_commit": "2022-12-23T16:17:27Z", + "created_at": "2022-02-16T05:34:48Z", + "description": "Flotiq starter for creating a blog with gatsby", "images": { - "hires": "https://www.jamstackthemes.dev/capture/fongandrew-hydeout-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/fongandrew-hydeout-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/fongandrew-hydeout-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/flotiq-flotiq-gatsby-blog-2.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/flotiq-flotiq-gatsby-blog-2.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-blog-2-2x.jpg" } }, - "forestryio-ubuild-jekyll-master": { - "theme_key": "forestryio-ubuild-jekyll-master", - "file": "ubuild-jekyll.md", - "name": "ubuild-jekyll", + "flotiq-flotiq-gatsby-event-1": { + "theme_key": "flotiq-flotiq-gatsby-event-1", + "file": "gatsby-flotiq-event-1.md", + "name": "flotiq-gatsby-event-1", + "title": "Flotiq Gatsby Event 1 – Monthly View Calendar", + "github_username": "flotiq", + "repo": "flotiq/flotiq-gatsby-event-1", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/flotiq/flotiq-gatsby-event-1", + "demo_url": "https://flotiqgatsbyevent1.gatsbyjs.io/", + "stars": 11, + "forks": 1, + "open_issues": 0, + "last_commit": "2022-12-23T15:18:54Z", + "created_at": "2022-02-16T10:30:34Z", + "description": null, + "images": { + "hires": "https://www.jamstackthemes.dev/capture/flotiq-flotiq-gatsby-event-1.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/flotiq-flotiq-gatsby-event-1.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-event-1-2x.jpg" + } + }, + "flotiq-flotiq-gatsby-event-2": { + "theme_key": "flotiq-flotiq-gatsby-event-2", + "file": "gatsby-flotiq-event-2.md", + "name": "flotiq-gatsby-event-2", + "title": "Flotiq Gatsby Event 2 – Weekly View Calendar", + "github_username": "flotiq", + "repo": "flotiq/flotiq-gatsby-event-2", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/flotiq/flotiq-gatsby-event-2", + "demo_url": "https://flotiqgatsbyevent2.gatsbyjs.io/", + "stars": 11, + "forks": 0, + "open_issues": 0, + "last_commit": "2022-12-23T15:33:14Z", + "created_at": "2022-02-03T23:50:26Z", + "description": null, + "images": { + "hires": "https://www.jamstackthemes.dev/capture/flotiq-flotiq-gatsby-event-2.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/flotiq-flotiq-gatsby-event-2.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-event-2-2x.jpg" + } + }, + "flotiq-flotiq-gatsby-portfolio-1": { + "theme_key": "flotiq-flotiq-gatsby-portfolio-1", + "file": "gatsby-flotiq-portfolio-1.md", + "name": "flotiq-gatsby-portfolio-1", + "title": "Flotiq Gatsby Portfolio 1 – Creator", + "github_username": "flotiq", + "repo": "flotiq/flotiq-gatsby-portfolio-1", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/flotiq/flotiq-gatsby-portfolio-1", + "demo_url": "https://flotiqgatsbyportfolio1.gatsbyjs.io/", + "stars": 13, + "forks": 2, + "open_issues": 0, + "last_commit": "2022-12-23T15:45:15Z", + "created_at": "2022-01-21T05:22:50Z", + "description": "Flotiq starter for creating a project portfolio with gatsby", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/flotiq-flotiq-gatsby-portfolio-1.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/flotiq-flotiq-gatsby-portfolio-1.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-portfolio-1-2x.jpg" + } + }, + "flotiq-flotiq-gatsby-portfolio-2": { + "theme_key": "flotiq-flotiq-gatsby-portfolio-2", + "file": "gatsby-flotiq-portfolio-2.md", + "name": "flotiq-gatsby-portfolio-2", + "title": "Flotiq Gatsby Portfolio 2 – Monochrome", + "github_username": "flotiq", + "repo": "flotiq/flotiq-gatsby-portfolio-2", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/flotiq/flotiq-gatsby-portfolio-2", + "demo_url": "https://flotiqgatsbyportfolio2.gatsbyjs.io/", + "stars": 13, + "forks": 3, + "open_issues": 0, + "last_commit": "2022-12-23T15:52:44Z", + "created_at": "2022-02-25T10:32:06Z", + "description": "A modern, clean design can be customized and applied for a wide range of purposes", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/flotiq-flotiq-gatsby-portfolio-2.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/flotiq-flotiq-gatsby-portfolio-2.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-portfolio-2-2x.jpg" + } + }, + "flotiq-flotiq-gatsby-recipe-1": { + "theme_key": "flotiq-flotiq-gatsby-recipe-1", + "file": "gatsby-flotiq-recipe-1.md", + "name": "flotiq-gatsby-recipe-1", + "title": "Flotiq Gatsby Recipe 1 – Black and White Classic", + "github_username": "flotiq", + "repo": "flotiq/flotiq-gatsby-recipe-1", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/flotiq/flotiq-gatsby-recipe-1", + "demo_url": "https://flotiqgatsbyrecipe1.gatsbyjs.io/", + "stars": 12, + "forks": 1, + "open_issues": 0, + "last_commit": "2022-12-23T16:01:48Z", + "created_at": "2022-03-01T21:55:56Z", + "description": "We introduce you to a recipe website with a modern and attractive layout.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/flotiq-flotiq-gatsby-recipe-1.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/flotiq-flotiq-gatsby-recipe-1.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-recipe-1-2x.jpg" + } + }, + "flotiq-flotiq-gatsby-recipe-2": { + "theme_key": "flotiq-flotiq-gatsby-recipe-2", + "file": "gatsby-flotiq-recipe-2.md", + "name": "flotiq-gatsby-recipe-2", + "title": "Flotiq Gatsby Recipe 2 – All you can eat", + "github_username": "flotiq", + "repo": "flotiq/flotiq-gatsby-recipe-2", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/flotiq/flotiq-gatsby-recipe-2", + "demo_url": "https://flotiqgatsbyrecipe2.gatsbyjs.io/", + "stars": 10, + "forks": 6, + "open_issues": 0, + "last_commit": "2022-12-23T16:08:46Z", + "created_at": "2022-01-28T14:28:38Z", + "description": null, + "images": { + "hires": "https://www.jamstackthemes.dev/capture/flotiq-flotiq-gatsby-recipe-2.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/flotiq-flotiq-gatsby-recipe-2.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-recipe-2-2x.jpg" + } + }, + "flotiq-flotiq-gatsby-shop-1": { + "theme_key": "flotiq-flotiq-gatsby-shop-1", + "file": "gatsby-flotiq-shop-1.md", + "name": "flotiq-gatsby-shop-1", + "title": "Flotiq Gatsby Shop 1 – Merch Store", + "github_username": "flotiq", + "repo": "flotiq/flotiq-gatsby-shop-1", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/flotiq/flotiq-gatsby-shop-1", + "demo_url": "https://flotiqgatsbyshop1.gatsbyjs.io/", + "stars": 17, + "forks": 4, + "open_issues": 2, + "last_commit": "2022-12-23T16:10:51Z", + "created_at": "2022-03-02T14:34:35Z", + "description": "Flotiq starter for creating a shop with gatsby", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/flotiq-flotiq-gatsby-shop-1.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/flotiq-flotiq-gatsby-shop-1.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-shop-1-2x.jpg" + } + }, + "flotiq-flotiq-gatsby-shop-2": { + "theme_key": "flotiq-flotiq-gatsby-shop-2", + "file": "gatsby-flotiq-shop-2.md", + "name": "flotiq-gatsby-shop-2", + "title": "Flotiq Gatsby Shop 2 – Green Shop", + "github_username": "flotiq", + "repo": "flotiq/flotiq-gatsby-shop-2", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/flotiq/flotiq-gatsby-shop-2", + "demo_url": "https://flotiqgatsbyshop2.gatsbyjs.io/", + "stars": 15, + "forks": 9, + "open_issues": 0, + "last_commit": "2022-12-23T16:14:19Z", + "created_at": "2022-02-09T09:14:29Z", + "description": null, + "images": { + "hires": "https://www.jamstackthemes.dev/capture/flotiq-flotiq-gatsby-shop-2.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/flotiq-flotiq-gatsby-shop-2.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-shop-2-2x.jpg" + } + }, + "fncnt-vncnt-hugo": { + "theme_key": "fncnt-vncnt-hugo", + "file": "hugo-vncnt.md", + "name": "vncnt-hugo", + "title": "Vncnt-hugo", + "github_username": "fncnt", + "repo": "fncnt/vncnt-hugo", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/fncnt/vncnt-hugo", + "demo_url": "https://themes.gohugo.io/theme/vncnt-hugo/", + "stars": 41, + "forks": 23, + "open_issues": 1, + "last_commit": "2021-05-20T10:33:12Z", + "created_at": "2019-01-03T14:05:32Z", + "description": "a simple theme for hugo.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/fncnt-vncnt-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/fncnt-vncnt-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/fncnt-vncnt-hugo-2x.jpg" + } + }, + "fongandrew-hydeout": { + "theme_key": "fongandrew-hydeout", + "file": "hydeout.md", + "name": "hydeout", + "title": "Hydeout", + "github_username": "fongandrew", + "repo": "fongandrew/hydeout", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/fongandrew/hydeout", + "demo_url": "https://fongandrew.github.io/hydeout/", + "stars": 548, + "forks": 724, + "open_issues": 17, + "last_commit": "2021-02-02T18:44:30Z", + "created_at": "2017-06-01T00:22:41Z", + "description": "A refreshed version of Hyde for Jekyll 3.x and 4.x", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/fongandrew-hydeout.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/fongandrew-hydeout.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/fongandrew-hydeout-2x.jpg" + } + }, + "forestryio-ubuild-jekyll": { + "theme_key": "forestryio-ubuild-jekyll", + "file": "ubuild-jekyll.md", + "name": "ubuild-jekyll", "title": "Ubuild Jekyll", "github_username": "forestryio", "repo": "forestryio/ubuild-jekyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/forestryio/ubuild-jekyll", "demo_url": "https://forestryio.github.io/ubuild-jekyll/", - "stars": 204, - "forks": 277, - "open_issues": 0, - "last_commit": "2020-09-21T10:55:42Z", + "stars": 271, + "forks": 310, + "open_issues": 1, + "last_commit": "2021-07-13T10:33:43Z", "created_at": "2018-06-20T13:05:57Z", "description": "A Jekyll theme designed to work with Forestry Blocks", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/forestryio-ubuild-jekyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/forestryio-ubuild-jekyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/forestryio-ubuild-jekyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/forestryio-ubuild-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/forestryio-ubuild-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/forestryio-ubuild-jekyll-2x.jpg" + } + }, + "forever-jekyll-forever-jekyll": { + "theme_key": "forever-jekyll-forever-jekyll", + "file": "forever-jekyll.md", + "name": "forever-jekyll", + "title": "Forever Jekyll", + "github_username": "forever-jekyll", + "repo": "forever-jekyll/forever-jekyll", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/forever-jekyll/forever-jekyll", + "demo_url": "https://forever-jekyll.github.io/", + "stars": 57, + "forks": 108, + "open_issues": 9, + "last_commit": "2022-05-05T18:35:39Z", + "created_at": "2021-06-24T20:03:46Z", + "description": "A simple, elegant & full featured Jekyll theme.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/forever-jekyll-forever-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/forever-jekyll-forever-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/forever-jekyll-forever-jekyll-2x.jpg" } }, - "formspree-blogophonic-hugo-master": { - "theme_key": "formspree-blogophonic-hugo-master", + "formspree-blogophonic-hugo": { + "theme_key": "formspree-blogophonic-hugo", "file": "blogophonic-hugo.md", "name": "blogophonic-hugo", "title": "Blogophonic for Hugo", "github_username": "formspree", "repo": "formspree/blogophonic-hugo", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/formspree/blogophonic-hugo", "demo_url": "https://blogophonic-hugo.netlify.com/", - "stars": 65, - "forks": 20, - "open_issues": 3, - "last_commit": "2021-01-04T17:52:15Z", + "stars": 157, + "forks": 39, + "open_issues": 6, + "last_commit": "2021-01-11T20:15:20Z", "created_at": "2019-04-10T19:54:55Z", "description": "Blogophonic – a Hugo blog theme by Formspree", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/formspree-blogophonic-hugo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/formspree-blogophonic-hugo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/formspree-blogophonic-hugo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/formspree-blogophonic-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/formspree-blogophonic-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/formspree-blogophonic-hugo-2x.jpg" } }, - "foxandgeese-tiny-agency-master": { - "theme_key": "foxandgeese-tiny-agency-master", + "foxandgeese-tiny-agency": { + "theme_key": "foxandgeese-tiny-agency", "file": "gatsby-tiny-agency.md", "name": "tiny-agency", "title": "Tiny Agency", "github_username": "foxandgeese", "repo": "foxandgeese/tiny-agency", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/foxandgeese/tiny-agency", "demo_url": "https://foxandgeese.github.io/tiny-agency/", - "stars": 17, - "forks": 6, + "stars": 20, + "forks": 8, "open_issues": 0, - "last_commit": "2021-01-08T19:07:57Z", + "last_commit": "2023-01-15T23:42:56Z", "created_at": "2019-02-08T20:22:56Z", "description": "Simple Gatsby.js starter that uses material design and that's perfect for tiny agencies.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/foxandgeese-tiny-agency-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/foxandgeese-tiny-agency-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/foxandgeese-tiny-agency-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/foxandgeese-tiny-agency.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/foxandgeese-tiny-agency.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/foxandgeese-tiny-agency-2x.jpg" } }, - "frankievalentine-gatsby-craftcms-barebones-master": { - "theme_key": "frankievalentine-gatsby-craftcms-barebones-master", + "frankievalentine-gatsby-craftcms-barebones": { + "theme_key": "frankievalentine-gatsby-craftcms-barebones", "file": "gatsby-craftcms-barebones.md", "name": "gatsby-craftcms-barebones", "title": "Gatsby Craftcms Barebones", "github_username": "frankievalentine", "repo": "frankievalentine/gatsby-craftcms-barebones", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/frankievalentine/gatsby-craftcms-barebones", "demo_url": "https://gatsby-craftcms-barebones.netlify.com/", "stars": 11, - "forks": 3, + "forks": 2, "open_issues": 0, "last_commit": "2019-11-16T04:33:13Z", "created_at": "2019-01-19T01:04:45Z", "description": "Barebones starter for a Headless Craft CMS & Gatsby configuration.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/frankievalentine-gatsby-craftcms-barebones-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/frankievalentine-gatsby-craftcms-barebones-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/frankievalentine-gatsby-craftcms-barebones-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/frankievalentine-gatsby-craftcms-barebones.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/frankievalentine-gatsby-craftcms-barebones.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/frankievalentine-gatsby-craftcms-barebones-2x.jpg" } }, - "friedger-gatsby-starter-blockstack-master": { - "theme_key": "friedger-gatsby-starter-blockstack-master", + "friedger-gatsby-starter-blockstack": { + "theme_key": "friedger-gatsby-starter-blockstack", "file": "gatsby-starter-blockstack.md", "name": "gatsby-starter-blockstack", "title": "Gatsby Starter Blockstack", "github_username": "friedger", "repo": "friedger/gatsby-starter-blockstack", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/friedger/gatsby-starter-blockstack", "demo_url": "https://gatsby-starter-blockstack.openintents.org/", - "stars": 4, - "forks": 3, + "stars": 5, + "forks": 4, "open_issues": 0, "last_commit": "2019-05-25T10:25:30Z", "created_at": "2019-05-13T09:17:28Z", "description": "Make decentralized apps with Gatsby + Blockstack", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/friedger-gatsby-starter-blockstack-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/friedger-gatsby-starter-blockstack-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/friedger-gatsby-starter-blockstack-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/friedger-gatsby-starter-blockstack.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/friedger-gatsby-starter-blockstack.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/friedger-gatsby-starter-blockstack-2x.jpg" } }, - "friendlyuser-vuepress-theme-cool-starter-master": { - "theme_key": "friendlyuser-vuepress-theme-cool-starter-master", + "friendlyuser-vuepress-theme-cool-starter": { + "theme_key": "friendlyuser-vuepress-theme-cool-starter", "file": "vuepress-theme-cool-starter.md", "name": "vuepress-theme-cool-starter", "title": "Cool Starter", "github_username": "FriendlyUser", "repo": "FriendlyUser/vuepress-theme-cool-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/FriendlyUser/vuepress-theme-cool-starter", "demo_url": "https://friendlyuser.github.io/vuepress-theme-cool-starter/#disclaimer", - "stars": 60, - "forks": 25, - "open_issues": 0, - "last_commit": "2021-01-05T01:57:19Z", + "stars": 74, + "forks": 37, + "open_issues": 20, + "last_commit": "2022-09-17T16:00:49Z", "created_at": "2018-11-12T21:46:46Z", "description": "Starter project for vuepress theme cool", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/friendlyuser-vuepress-theme-cool-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/friendlyuser-vuepress-theme-cool-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/friendlyuser-vuepress-theme-cool-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/friendlyuser-vuepress-theme-cool-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/friendlyuser-vuepress-theme-cool-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/friendlyuser-vuepress-theme-cool-starter-2x.jpg" } }, - "frjo-hugo-theme-zen-master": { - "theme_key": "frjo-hugo-theme-zen-master", + "frjo-hugo-theme-zen": { + "theme_key": "frjo-hugo-theme-zen", "file": "hugo-theme-zen.md", "name": "hugo-theme-zen", "title": "Zen", "github_username": "frjo", "repo": "frjo/hugo-theme-zen", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/frjo/hugo-theme-zen", "demo_url": "https://themes.gohugo.io/theme/hugo-theme-zen/", - "stars": 105, - "forks": 41, - "open_issues": 1, - "last_commit": "2020-12-03T09:35:37Z", + "stars": 142, + "forks": 50, + "open_issues": 0, + "last_commit": "2021-09-29T07:08:07Z", "created_at": "2017-03-09T13:05:40Z", "description": "A fast and clean Hugo theme with css-grid and Hugo pipes support.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/frjo-hugo-theme-zen-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/frjo-hugo-theme-zen-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/frjo-hugo-theme-zen-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/frjo-hugo-theme-zen.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/frjo-hugo-theme-zen.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/frjo-hugo-theme-zen-2x.jpg" } }, - "frnki-gatsby-typescript-starter-blog-master": { - "theme_key": "frnki-gatsby-typescript-starter-blog-master", + "frnki-gatsby-typescript-starter-blog": { + "theme_key": "frnki-gatsby-typescript-starter-blog", "file": "gatsby-typescript-starter-blog.md", "name": "gatsby-typescript-starter-blog", "title": "Gatsby Typescript Starter Blog", "github_username": "frnki", "repo": "frnki/gatsby-typescript-starter-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/frnki/gatsby-typescript-starter-blog", "demo_url": "https://gatsby-typescript-starter-blog.netlify.com/", "stars": 10, @@ -7290,182 +8802,228 @@ "last_commit": "2018-12-23T09:05:37Z", "created_at": "2018-12-16T12:12:14Z", "description": "A starter blog for TypeScript-based Gatsby projects with minimal settings.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/frnki-gatsby-typescript-starter-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/frnki-gatsby-typescript-starter-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/frnki-gatsby-typescript-starter-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/frnki-gatsby-typescript-starter-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/frnki-gatsby-typescript-starter-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/frnki-gatsby-typescript-starter-blog-2x.jpg" } }, - "fromendworld-loffer-master": { - "theme_key": "fromendworld-loffer-master", + "fromendworld-loffer": { + "theme_key": "fromendworld-loffer", "file": "jekyll-theme-LOFFER.md", "name": "LOFFER", "title": "LOFFER", "github_username": "FromEndWorld", "repo": "FromEndWorld/LOFFER", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/FromEndWorld/LOFFER", "demo_url": "https://fromendworld.github.io/LOFFER/", - "stars": 266, - "forks": 366, - "open_issues": 3, - "last_commit": "2020-11-09T04:08:06Z", + "stars": 343, + "forks": 399, + "open_issues": 7, + "last_commit": "2021-02-28T20:18:49Z", "created_at": "2019-06-02T06:42:58Z", "description": "博客主题 A Jekyll theme with Chinese UI and document ", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/fromendworld-loffer-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/fromendworld-loffer-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/fromendworld-loffer-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/fromendworld-loffer.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/fromendworld-loffer.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/fromendworld-loffer-2x.jpg" } }, - "fullit-fullit.github.io-master": { - "theme_key": "fullit-fullit.github.io-master", + "fullit-fullit.github.io": { + "theme_key": "fullit-fullit.github.io", "file": "jekyll-fullit-theme.md", "name": "fullit.github.io", "title": "FullIt theme", "github_username": "fullit", "repo": "fullit/fullit.github.io", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/fullit/fullit.github.io", "demo_url": "https://fullit.github.io", - "stars": 11, - "forks": 31, - "open_issues": 0, + "stars": 18, + "forks": 47, + "open_issues": 1, "last_commit": "2020-12-15T18:55:27Z", "created_at": "2017-03-23T11:59:12Z", "description": null, - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/fullit-fullit.github.io-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/fullit-fullit.github.io-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/fullit-fullit.github.io-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/fullit-fullit.github.io.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/fullit-fullit.github.io.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/fullit-fullit.github.io-2x.jpg" } }, - "funkydan2-alpha-church-master": { - "theme_key": "funkydan2-alpha-church-master", + "funkydan2-alpha-church": { + "theme_key": "funkydan2-alpha-church", "file": "hugo-alpha-church.md", "name": "alpha-church", "title": "Alpha Church", "github_username": "funkydan2", "repo": "funkydan2/alpha-church", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/funkydan2/alpha-church", "demo_url": "https://themes.gohugo.io/theme/alpha-church/", - "stars": 35, - "forks": 44, - "open_issues": 3, - "last_commit": "2020-11-28T01:22:16Z", + "stars": 46, + "forks": 41, + "open_issues": 5, + "last_commit": "2021-09-04T21:50:48Z", "created_at": "2018-04-30T04:03:34Z", "description": "Hugo theme for churches based on a html5up theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/funkydan2-alpha-church-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/funkydan2-alpha-church-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/funkydan2-alpha-church-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/funkydan2-alpha-church.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/funkydan2-alpha-church.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/funkydan2-alpha-church-2x.jpg" } }, - "g1eny0ung-hugo-theme-dream-master": { - "theme_key": "g1eny0ung-hugo-theme-dream-master", + "g1eny0ung-hugo-theme-dream": { + "theme_key": "g1eny0ung-hugo-theme-dream", "file": "hugo-theme-dream.md", "name": "hugo-theme-dream", "title": "Dream", "github_username": "g1eny0ung", "repo": "g1eny0ung/hugo-theme-dream", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/g1eny0ung/hugo-theme-dream", "demo_url": "https://themes.gohugo.io//theme/hugo-theme-dream/", - "stars": 150, - "forks": 70, - "open_issues": 1, - "last_commit": "2021-01-03T16:53:22Z", + "stars": 220, + "forks": 105, + "open_issues": 8, + "last_commit": "2021-09-07T14:50:08Z", "created_at": "2017-10-06T07:19:22Z", "description": "🌱 Hugo theme named Dream.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/g1eny0ung-hugo-theme-dream-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/g1eny0ung-hugo-theme-dream-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/g1eny0ung-hugo-theme-dream-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/g1eny0ung-hugo-theme-dream.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/g1eny0ung-hugo-theme-dream.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/g1eny0ung-hugo-theme-dream-2x.jpg" + } + }, + "gabriel-chen-nice_blog": { + "theme_key": "itisbenjamin-nice_blog", + "file": "jekyll-nice-blog.md", + "name": "Nice_Blog", + "title": "Nice Blog", + "github_username": "Gabriel-Chen", + "repo": "Gabriel-Chen/Nice_Blog", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/Gabriel-Chen/Nice_Blog", + "demo_url": "https://itisbenjamin.github.io/Nice_Blog", + "stars": 84, + "forks": 58, + "open_issues": 4, + "last_commit": "2018-06-27T16:48:06Z", + "created_at": "2016-03-29T12:52:40Z", + "description": "A Simple Jakyll Blog Theme.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/itisbenjamin-nice_blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/itisbenjamin-nice_blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/itisbenjamin-nice_blog-2x.jpg" } }, - "gallenhu-hexo-theme-daily-master": { - "theme_key": "gallenhu-hexo-theme-daily-master", + "gallenhu-hexo-theme-daily": { + "theme_key": "gallenhu-hexo-theme-daily", "file": "hexo-theme-Daily.md", "name": "hexo-theme-Daily", "title": "Daily", "github_username": "GallenHu", "repo": "GallenHu/hexo-theme-Daily", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/GallenHu/hexo-theme-Daily", "demo_url": "https://hinpc.github.io/Daily/", - "stars": 247, - "forks": 45, + "stars": 246, + "forks": 44, "open_issues": 0, - "last_commit": "2020-11-19T01:43:49Z", + "last_commit": "2021-03-21T10:55:08Z", "created_at": "2016-07-26T06:13:14Z", "description": "A simple theme for Hexo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/gallenhu-hexo-theme-daily-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gallenhu-hexo-theme-daily-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gallenhu-hexo-theme-daily-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gallenhu-hexo-theme-daily.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gallenhu-hexo-theme-daily.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gallenhu-hexo-theme-daily-2x.jpg" + } + }, + "ganevdev-gatsby-starter-blog-grommet": { + "theme_key": "ganevru-gatsby-starter-blog-grommet", + "file": "gatsby-starter-blog-grommet.md", + "name": "gatsby-starter-blog-grommet", + "title": "Gatsby Blog Grommet", + "github_username": "ganevdev", + "repo": "ganevdev/gatsby-starter-blog-grommet", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/ganevdev/gatsby-starter-blog-grommet", + "demo_url": "https://gatsby-starter-blog-grommet.netlify.com/", + "stars": 20, + "forks": 7, + "open_issues": 4, + "last_commit": "2019-03-21T02:18:39Z", + "created_at": "2018-09-21T19:19:22Z", + "description": "A Gatsby v2 starter based on Grommet v2 UI. Demo:", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/ganevru-gatsby-starter-blog-grommet.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ganevru-gatsby-starter-blog-grommet.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ganevru-gatsby-starter-blog-grommet-2x.jpg" } }, - "ganevru-gatsby-starter-blog-grommet-master": { - "theme_key": "ganevru-gatsby-starter-blog-grommet-master", + "ganevru-gatsby-starter-blog-grommet": { + "theme_key": "ganevru-gatsby-starter-blog-grommet", "file": "gatsby-starter-blog-grommet.md", "name": "gatsby-starter-blog-grommet", "title": "Gatsby Blog Grommet", "github_username": "Ganevru", "repo": "Ganevru/gatsby-starter-blog-grommet", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Ganevru/gatsby-starter-blog-grommet", "demo_url": "https://gatsby-starter-blog-grommet.netlify.com/", - "stars": 20, + "stars": 22, "forks": 7, "open_issues": 4, "last_commit": "2019-03-21T02:18:39Z", "created_at": "2018-09-21T19:19:22Z", "description": "A Gatsby v2 starter based on Grommet v2 UI. Demo:", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ganevru-gatsby-starter-blog-grommet-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ganevru-gatsby-starter-blog-grommet-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ganevru-gatsby-starter-blog-grommet-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ganevru-gatsby-starter-blog-grommet.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ganevru-gatsby-starter-blog-grommet.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ganevru-gatsby-starter-blog-grommet-2x.jpg" } }, - "gaohaoyang-gaohaoyang.github.io-master": { - "theme_key": "gaohaoyang-gaohaoyang.github.io-master", + "gaohaoyang-gaohaoyang.github.io": { + "theme_key": "gaohaoyang-gaohaoyang.github.io", "file": "jekyll-cool-concise-high-end.md", "name": "gaohaoyang.github.io", "title": "Cool Concise High-end", "github_username": "Gaohaoyang", "repo": "Gaohaoyang/gaohaoyang.github.io", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Gaohaoyang/gaohaoyang.github.io", "demo_url": "https://gaohaoyang.github.io/", - "stars": 1650, - "forks": 1967, - "open_issues": 52, - "last_commit": "2020-08-17T08:26:44Z", + "stars": 1780, + "forks": 2017, + "open_issues": 53, + "last_commit": "2022-10-26T07:53:58Z", "created_at": "2015-02-10T06:24:40Z", "description": "blog & blog theme🤘", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/gaohaoyang-gaohaoyang.github.io-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gaohaoyang-gaohaoyang.github.io-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gaohaoyang-gaohaoyang.github.io-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gaohaoyang-gaohaoyang.github.io.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gaohaoyang-gaohaoyang.github.io.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gaohaoyang-gaohaoyang.github.io-2x.jpg" } }, - "garvincasimir-hugo-h5bp-simple-master": { - "theme_key": "garvincasimir-hugo-h5bp-simple-master", + "garvincasimir-hugo-h5bp-simple": { + "theme_key": "garvincasimir-hugo-h5bp-simple", "file": "hugo-h5bp-simple.md", "name": "hugo-h5bp-simple", "title": "Hugo H5bp Simple", "github_username": "garvincasimir", "repo": "garvincasimir/hugo-h5bp-simple", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/garvincasimir/hugo-h5bp-simple", "demo_url": "https://themes.gohugo.io/theme/hugo-h5bp/", "stars": 4, @@ -7474,527 +9032,918 @@ "last_commit": "2019-08-17T23:16:06Z", "created_at": "2015-07-24T20:42:48Z", "description": "Simple responsive them for Go Hugo", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/garvincasimir-hugo-h5bp-simple-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/garvincasimir-hugo-h5bp-simple-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/garvincasimir-hugo-h5bp-simple-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/garvincasimir-hugo-h5bp-simple.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/garvincasimir-hugo-h5bp-simple.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/garvincasimir-hugo-h5bp-simple-2x.jpg" } }, - "gatsbycentral-gatsby-starter-wordpress-master": { - "theme_key": "gatsbycentral-gatsby-starter-wordpress-master", + "gatsbycentral-gatsby-starter-wordpress": { + "theme_key": "gatsbycentral-gatsby-starter-wordpress", "file": "gatsby-starter-wordpress.md", "name": "gatsby-starter-wordpress", "title": "Gatsby Starter Wordpress", "github_username": "GatsbyCentral", "repo": "GatsbyCentral/gatsby-starter-wordpress", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/GatsbyCentral/gatsby-starter-wordpress", "demo_url": "https://gatsby-starter-wordpress.netlify.com/", - "stars": 375, - "forks": 133, - "open_issues": 16, - "last_commit": "2020-07-01T10:35:02Z", + "stars": 395, + "forks": 139, + "open_issues": 8, + "last_commit": "2021-04-02T10:22:52Z", "created_at": "2018-02-03T21:55:52Z", - "description": "A GatsbyJS starter template that leverages the WordPress API, ACF and more", - "stale": false, + "description": "LOOKING FOR MAINTAINER - - - A GatsbyJS starter template that leverages the WordPress API, ACF and more", "images": { - "hires": "https://www.jamstackthemes.dev/capture/gatsbycentral-gatsby-starter-wordpress-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gatsbycentral-gatsby-starter-wordpress-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gatsbycentral-gatsby-starter-wordpress-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gatsbycentral-gatsby-starter-wordpress.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gatsbycentral-gatsby-starter-wordpress.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gatsbycentral-gatsby-starter-wordpress-2x.jpg" } }, - "gatsbycentral-gatsby-v2-starter-casper-master": { - "theme_key": "gatsbycentral-gatsby-v2-starter-casper-master", + "gatsbycentral-gatsby-v2-starter-casper": { + "theme_key": "gatsbycentral-gatsby-v2-starter-casper", "file": "gatsby-v2-starter-casper.md", "name": "gatsby-v2-starter-casper", "title": "Gatsby V2 Starter Casper", "github_username": "GatsbyCentral", "repo": "GatsbyCentral/gatsby-v2-starter-casper", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/GatsbyCentral/gatsby-v2-starter-casper", "demo_url": "https://gatsby-starter-v2-casper.netlify.com/", - "stars": 30, - "forks": 13, + "stars": 31, + "forks": 12, "open_issues": 3, "last_commit": "2018-10-19T13:02:42Z", "created_at": "2018-10-19T10:22:22Z", "description": "The Casper theme v1.4 ported to Gatsby v2", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/gatsbycentral-gatsby-v2-starter-casper-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gatsbycentral-gatsby-v2-starter-casper-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gatsbycentral-gatsby-v2-starter-casper-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gatsbycentral-gatsby-v2-starter-casper.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gatsbycentral-gatsby-v2-starter-casper.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gatsbycentral-gatsby-v2-starter-casper-2x.jpg" } }, - "gatsbycentral-gatsby-v2-starter-lumen-master": { - "theme_key": "gatsbycentral-gatsby-v2-starter-lumen-master", + "gatsbycentral-gatsby-v2-starter-lumen": { + "theme_key": "gatsbycentral-gatsby-v2-starter-lumen", "file": "gatsby-v2-starter-lumen.md", "name": "gatsby-v2-starter-lumen", "title": "Gatsby V2 Starter Lumen", "github_username": "GatsbyCentral", "repo": "GatsbyCentral/gatsby-v2-starter-lumen", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/GatsbyCentral/gatsby-v2-starter-lumen", "demo_url": "https://lumen-v2.netlify.com/", - "stars": 109, - "forks": 35, - "open_issues": 3, + "stars": 122, + "forks": 32, + "open_issues": 4, "last_commit": "2019-07-02T15:09:22Z", "created_at": "2018-03-30T12:45:33Z", "description": "A minimal, lightweight and mobile-first starter for creating blazing-fast static blogs", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/gatsbycentral-gatsby-v2-starter-lumen-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gatsbycentral-gatsby-v2-starter-lumen-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gatsbycentral-gatsby-v2-starter-lumen-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gatsbycentral-gatsby-v2-starter-lumen.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gatsbycentral-gatsby-v2-starter-lumen.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gatsbycentral-gatsby-v2-starter-lumen-2x.jpg" } }, - "gatsbyjs-gatsby-starter-blog-master": { - "theme_key": "gatsbyjs-gatsby-starter-blog-master", + "gatsbyjs-gatsby-starter-blog": { + "theme_key": "gatsbyjs-gatsby-starter-blog", "file": "gatsby-starter-blog.md", "name": "gatsby-starter-blog", "title": "Gatsby Starter Blog", "github_username": "gatsbyjs", "repo": "gatsbyjs/gatsby-starter-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/gatsbyjs/gatsby-starter-blog", "demo_url": "https://gatsby-starter-blog-demo.netlify.com/", - "stars": 2855, - "forks": 1327, + "stars": 3248, + "forks": 1643, "open_issues": 18, - "last_commit": "2020-12-17T15:22:42Z", + "last_commit": "2022-04-04T07:17:13Z", "created_at": "2015-07-22T00:07:37Z", "description": "Gatsby starter for creating a blog", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/gatsbyjs-gatsby-starter-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gatsbyjs-gatsby-starter-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gatsbyjs-gatsby-starter-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gatsbyjs-gatsby-starter-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gatsbyjs-gatsby-starter-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gatsbyjs-gatsby-starter-blog-2x.jpg" } }, - "gatsbyjs-gatsby-starter-default-master": { - "theme_key": "gatsbyjs-gatsby-starter-default-master", + "gatsbyjs-gatsby-starter-default": { + "theme_key": "gatsbyjs-gatsby-starter-default", "file": "gatsby-starter-default.md", "name": "gatsby-starter-default", "title": "Gatsby Starter Default", "github_username": "gatsbyjs", "repo": "gatsbyjs/gatsby-starter-default", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/gatsbyjs/gatsby-starter-default", "demo_url": "https://gatsby-starter-default-demo.netlify.com/", - "stars": 1099, - "forks": 784, + "stars": 1307, + "forks": 930, "open_issues": 6, - "last_commit": "2021-01-09T03:47:12Z", + "last_commit": "2022-04-04T07:17:15Z", "created_at": "2015-07-21T00:52:53Z", "description": "The default Gatsby starter", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/gatsbyjs-gatsby-starter-default-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gatsbyjs-gatsby-starter-default-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gatsbyjs-gatsby-starter-default-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gatsbyjs-gatsby-starter-default.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gatsbyjs-gatsby-starter-default.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gatsbyjs-gatsby-starter-default-2x.jpg" } }, - "gchauras-much-worse-jekyll-theme-gh-pages": { - "theme_key": "gchauras-much-worse-jekyll-theme-gh-pages", + "gchauras-much-worse-jekyll-theme": { + "theme_key": "gchauras-much-worse-jekyll-theme", "file": "jekyll-much-worse.md", "name": "much-worse-jekyll-theme", "title": "Much-Worse", "github_username": "gchauras", "repo": "gchauras/much-worse-jekyll-theme", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/gchauras/much-worse-jekyll-theme", - "demo_url": "http://gchauras.github.io/much-worse-jekyll-theme/", - "stars": 37, - "forks": 49, + "demo_url": "https://gchauras.github.io/much-worse-jekyll-theme/", + "stars": 41, + "forks": 53, "open_issues": 1, "last_commit": "2017-02-14T12:19:26Z", "created_at": "2016-02-08T11:55:38Z", "description": "Template for jekyll base website and blog", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/gchauras-much-worse-jekyll-theme-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gchauras-much-worse-jekyll-theme-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gchauras-much-worse-jekyll-theme-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gchauras-much-worse-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gchauras-much-worse-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gchauras-much-worse-jekyll-theme-2x.jpg" } }, - "gcushen-hugo-academic-master": { - "theme_key": "gcushen-hugo-academic-master", + "gcushen-hugo-academic": { + "theme_key": "gcushen-hugo-academic", "file": "hugo-academic.md", "name": "wowchemy-hugo-modules", "title": "Academic", "github_username": "wowchemy", "repo": "wowchemy/wowchemy-hugo-modules", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/wowchemy/wowchemy-hugo-modules", "demo_url": "https://academic-demo.netlify.com/", - "stars": 5302, - "forks": 2343, - "open_issues": 46, - "last_commit": "2021-01-10T17:23:17Z", + "stars": 5404, + "forks": 2376, + "open_issues": 54, + "last_commit": "2021-02-22T22:36:15Z", "created_at": "2016-04-26T22:09:15Z", "description": "📝 The website builder for Hugo. Build and deploy a beautiful website in minutes!", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/gcushen-hugo-academic-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gcushen-hugo-academic-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gcushen-hugo-academic-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gcushen-hugo-academic.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gcushen-hugo-academic.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gcushen-hugo-academic-2x.jpg" + } + }, + "gdg-managua-jekyll-mdl": { + "theme_key": "gdg-managua-jekyll-mdl", + "file": "jekyll-mdl.md", + "name": "jekyll-mdl", + "title": "Jekyll Material Design Lite", + "github_username": "gdgmanagua", + "repo": "gdgmanagua/jekyll-mdl", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/gdgmanagua/jekyll-mdl", + "demo_url": "https://www.gdgmanagua.org/jekyll-mdl", + "stars": 227, + "forks": 155, + "open_issues": 4, + "last_commit": "2019-03-04T18:01:07Z", + "created_at": "2015-07-11T17:08:43Z", + "description": "A Jekyll theme based in Google Material Design Lite library.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/gdg-managua-jekyll-mdl.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gdg-managua-jekyll-mdl.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gdg-managua-jekyll-mdl-2x.jpg" } }, - "gdg-managua-jekyll-mdl-master": { - "theme_key": "gdg-managua-jekyll-mdl-master", + "gdgmanagua-jekyll-mdl": { + "theme_key": "gdg-managua-jekyll-mdl", "file": "jekyll-mdl.md", "name": "jekyll-mdl", "title": "Jekyll Material Design Lite", "github_username": "gdgmanagua", "repo": "gdgmanagua/jekyll-mdl", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/gdgmanagua/jekyll-mdl", - "demo_url": "http://www.gdgmanagua.org/jekyll-mdl", + "demo_url": "https://www.gdgmanagua.org/jekyll-mdl", "stars": 228, - "forks": 153, - "open_issues": 3, + "forks": 165, + "open_issues": 4, "last_commit": "2019-03-04T18:01:07Z", "created_at": "2015-07-11T17:08:43Z", "description": "A Jekyll theme based in Google Material Design Lite library.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/gdg-managua-jekyll-mdl-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gdg-managua-jekyll-mdl-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gdg-managua-jekyll-mdl-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gdg-managua-jekyll-mdl.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gdg-managua-jekyll-mdl.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gdg-managua-jekyll-mdl-2x.jpg" } }, - "gdgtoulouse-devfest-theme-hugo-master": { - "theme_key": "gdgtoulouse-devfest-theme-hugo-master", + "gdgtoulouse-devfest-theme-hugo": { + "theme_key": "gdgtoulouse-devfest-theme-hugo", "file": "devfest-toulouse-theme.md", "name": "devfest-theme-hugo", "title": "Devfest Toulouse Theme", "github_username": "GDGToulouse", "repo": "GDGToulouse/devfest-theme-hugo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/GDGToulouse/devfest-theme-hugo", "demo_url": "https://2019.devfesttoulouse.fr/", - "stars": 58, - "forks": 39, - "open_issues": 2, - "last_commit": "2020-12-11T08:43:06Z", + "stars": 74, + "forks": 60, + "open_issues": 7, + "last_commit": "2022-04-15T06:57:15Z", "created_at": "2019-01-10T21:22:23Z", "description": "A theme for a conference website. Created for DevFest Toulouse 2019", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/gdgtoulouse-devfest-theme-hugo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gdgtoulouse-devfest-theme-hugo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gdgtoulouse-devfest-theme-hugo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gdgtoulouse-devfest-theme-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gdgtoulouse-devfest-theme-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gdgtoulouse-devfest-theme-hugo-2x.jpg" + } + }, + "gehtmaguad-gatsby-starter-haezl": { + "theme_key": "haezl-gatsby-starter-haezl", + "file": "gatsby-starter-haezl.md", + "name": "gatsby-starter-haezl", + "title": "Gatsby Starter Haezl", + "github_username": "gehtmaguad", + "repo": "gehtmaguad/gatsby-starter-haezl", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/gehtmaguad/gatsby-starter-haezl", + "demo_url": "https://gatsby-starter.haezl.at/", + "stars": 15, + "forks": 6, + "open_issues": 3, + "last_commit": "2019-05-12T18:59:42Z", + "created_at": "2019-04-09T19:16:46Z", + "description": "A lightweight, mobile first blog starter with infinite scroll and Material-UI design for Gatsby.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/haezl-gatsby-starter-haezl.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/haezl-gatsby-starter-haezl.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/haezl-gatsby-starter-haezl-2x.jpg" } }, - "geocine-gatsby-starter-devto-master": { - "theme_key": "geocine-gatsby-starter-devto-master", + "geocine-gatsby-starter-devto": { + "theme_key": "geocine-gatsby-starter-devto", "file": "gatsby-starter-devto.md", "name": "gatsby-starter-devto", "title": "Gatsby Starter Devto", "github_username": "geocine", "repo": "geocine/gatsby-starter-devto", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/geocine/gatsby-starter-devto", "demo_url": "https://gatsby-starter-devto.netlify.com/", "stars": 13, - "forks": 2, - "open_issues": 1, + "forks": 3, + "open_issues": 3, "last_commit": "2019-05-05T02:36:26Z", "created_at": "2019-03-27T13:44:31Z", "description": "A GatsbyJS starter template that leverages the Dev.to API", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/geocine-gatsby-starter-devto-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/geocine-gatsby-starter-devto-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/geocine-gatsby-starter-devto-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/geocine-gatsby-starter-devto.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/geocine-gatsby-starter-devto.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/geocine-gatsby-starter-devto-2x.jpg" } }, - "geocine-gatsby-starter-organization-master": { - "theme_key": "geocine-gatsby-starter-organization-master", + "geocine-gatsby-starter-organization": { + "theme_key": "geocine-gatsby-starter-organization", "file": "gatsby-starter-organization.md", "name": "gatsby-starter-organization", "title": "Gatsby Starter Organization", "github_username": "geocine", "repo": "geocine/gatsby-starter-organization", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/geocine/gatsby-starter-organization", "demo_url": "https://gatsby-starter-organization.netlify.com/", - "stars": 1, + "stars": 3, "forks": 5, - "open_issues": 8, + "open_issues": 24, "last_commit": "2019-08-12T15:23:33Z", "created_at": "2019-08-12T10:41:34Z", "description": "A Gatsby starter template that uses @geocine/gatsby-theme-organization", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/geocine-gatsby-starter-organization-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/geocine-gatsby-starter-organization-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/geocine-gatsby-starter-organization-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/geocine-gatsby-starter-organization.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/geocine-gatsby-starter-organization.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/geocine-gatsby-starter-organization-2x.jpg" } }, - "geschke-hugo-tikva-master": { - "theme_key": "geschke-hugo-tikva-master", + "geschke-hugo-tikva": { + "theme_key": "geschke-hugo-tikva", "file": "hugo-tikva-theme.md", "name": "hugo-tikva", "title": "Tikva", "github_username": "geschke", "repo": "geschke/hugo-tikva", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/geschke/hugo-tikva", "demo_url": "https://themes.gohugo.io/theme/hugo-tikva/", - "stars": 6, - "forks": 7, + "stars": 7, + "forks": 8, "open_issues": 2, "last_commit": "2020-12-20T19:35:28Z", "created_at": "2018-11-06T12:57:01Z", "description": "Tikva is a minimalistic Hugo theme, based on Bootstrap v4 CSS framework.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/geschke-hugo-tikva-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/geschke-hugo-tikva-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/geschke-hugo-tikva-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/geschke-hugo-tikva.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/geschke-hugo-tikva.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/geschke-hugo-tikva-2x.jpg" } }, - "gesquive-slate-master": { - "theme_key": "gesquive-slate-master", + "gesquive-slate": { + "theme_key": "gesquive-slate", "file": "hugo-slate-theme.md", "name": "slate", "title": "Slate", "github_username": "gesquive", "repo": "gesquive/slate", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/gesquive/slate", "demo_url": "https://gesquive.github.io/hugo-slate-demo/", - "stars": 100, - "forks": 44, - "open_issues": 10, - "last_commit": "2017-07-10T21:17:34Z", + "stars": 141, + "forks": 66, + "open_issues": 12, + "last_commit": "2021-07-02T03:24:02Z", "created_at": "2017-05-18T22:56:52Z", "description": "a single-page speed-dial theme for Hugo", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/gesquive-slate-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gesquive-slate-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gesquive-slate-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gesquive-slate.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gesquive-slate.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gesquive-slate-2x.jpg" + } + }, + "gethugothemes-andromeda-light": { + "theme_key": "gethugothemes-andromeda-light", + "file": "hugo-andromeda.md", + "name": "andromeda-light", + "title": "Andromeda Light", + "github_username": "gethugothemes", + "repo": "gethugothemes/andromeda-light", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/gethugothemes/andromeda-light", + "demo_url": "https://demo.gethugothemes.com/andromeda-light/site/", + "stars": 31, + "forks": 30, + "open_issues": 0, + "last_commit": "2022-02-15T03:55:22Z", + "created_at": "2021-08-09T10:25:21Z", + "description": " Andromeda-light is a clean and modern Hugo SAAS Software theme. It perfectly fits any kind of SAAS Software. It is fully responsive, Superfast and powered by Bootstrap.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/gethugothemes-andromeda-light.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gethugothemes-andromeda-light.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gethugothemes-andromeda-light-2x.jpg" + } + }, + "gethugothemes-apollo-hugo": { + "theme_key": "gethugothemes-apollo-hugo", + "file": "hugo-apollo.md", + "name": "apollo-hugo", + "title": "Apollo", + "github_username": "gethugothemes", + "repo": "gethugothemes/apollo-hugo", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/gethugothemes/apollo-hugo", + "demo_url": "https://demo.gethugothemes.com/apollo/site/", + "stars": 6, + "forks": 4, + "open_issues": 0, + "last_commit": "2022-02-07T06:11:41Z", + "created_at": "2021-02-06T06:55:25Z", + "description": "Apollo is minimal Hugo blog theme. This theme can showcase your blog in a smooth way. This theme is also 100% mobile responsive.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/gethugothemes-apollo-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gethugothemes-apollo-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gethugothemes-apollo-hugo-2x.jpg" + } + }, + "gethugothemes-bookworm-light": { + "theme_key": "gethugothemes-bookworm-light", + "file": "hugo-bookworm.md", + "name": "bookworm-light", + "title": "Bookworm Light", + "github_username": "gethugothemes", + "repo": "gethugothemes/bookworm-light", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/gethugothemes/bookworm-light", + "demo_url": "https://demo.gethugothemes.com/bookworm/site/", + "stars": 55, + "forks": 34, + "open_issues": 1, + "last_commit": "2022-02-15T03:57:31Z", + "created_at": "2021-02-07T03:55:28Z", + "description": "Bookworm is a clean and modern Hugo blog theme focused on high speed and support multiple authors.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/gethugothemes-bookworm-light.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gethugothemes-bookworm-light.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gethugothemes-bookworm-light-2x.jpg" + } + }, + "gethugothemes-geeky-hugo": { + "theme_key": "gethugothemes-geeky-hugo", + "file": "hugo-geeky.md", + "name": "geeky-hugo", + "title": "Geeky Hugo", + "github_username": "gethugothemes", + "repo": "gethugothemes/geeky-hugo", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/gethugothemes/geeky-hugo", + "demo_url": "https://demo.gethugothemes.com/geeky/", + "stars": 21, + "forks": 9, + "open_issues": 0, + "last_commit": "2021-12-04T05:07:30Z", + "created_at": "2021-08-18T06:46:42Z", + "description": "Geeky is a Personal Hugo blog theme focused on high speed. Geeky is fully responsive, Superfast, and powered by Bootstrap v5.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/gethugothemes-geeky-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gethugothemes-geeky-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gethugothemes-geeky-hugo-2x.jpg" + } + }, + "gethugothemes-infinity-hugo": { + "theme_key": "themefisher-infinity-hugo", + "file": "hugo-infinity.md", + "name": "infinity-hugo", + "title": "Infinity", + "github_username": "gethugothemes", + "repo": "gethugothemes/infinity-hugo", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/gethugothemes/infinity-hugo", + "demo_url": "https://demo.gethugothemes.com/infinity/site/", + "stars": 36, + "forks": 51, + "open_issues": 0, + "last_commit": "2022-02-15T04:02:23Z", + "created_at": "2018-07-04T11:01:47Z", + "description": "Infinity is a responsive, modern and clean free construction theme powered by Bootstrap4 and Hugo. This minimal template is packed with a countdown timer, contact form, about section where you can write a little bit about yourself and also feature section.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/themefisher-infinity-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-infinity-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-infinity-hugo-2x.jpg" + } + }, + "gethugothemes-influencer-hugo": { + "theme_key": "gethugothemes-influencer-hugo", + "file": "hugo-influencer.md", + "name": "influencer-hugo", + "title": "Influencer Hugo", + "github_username": "gethugothemes", + "repo": "gethugothemes/influencer-hugo", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/gethugothemes/influencer-hugo", + "demo_url": "https://demo.gethugothemes.com/influencer/site/", + "stars": 63, + "forks": 60, + "open_issues": 0, + "last_commit": "2022-02-15T04:04:36Z", + "created_at": "2019-11-24T07:05:34Z", + "description": "Influencer is a Hugo theme for book authors and writers. It has also Snipcart supports for order books and payments.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/gethugothemes-influencer-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gethugothemes-influencer-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gethugothemes-influencer-hugo-2x.jpg" + } + }, + "gethugothemes-liva-hugo": { + "theme_key": "gethugothemes-liva-hugo", + "file": "hugo-liva.md", + "name": "liva-hugo", + "title": "Liva Hugo", + "github_username": "gethugothemes", + "repo": "gethugothemes/liva-hugo", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/gethugothemes/liva-hugo", + "demo_url": "https://demo.gethugothemes.com/liva/site/", + "stars": 169, + "forks": 174, + "open_issues": 0, + "last_commit": "2022-02-15T04:20:18Z", + "created_at": "2019-10-30T05:03:31Z", + "description": "Liva is a personal blog template powered by Hugo. ", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/gethugothemes-liva-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gethugothemes-liva-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gethugothemes-liva-hugo-2x.jpg" + } + }, + "gethugothemes-navigator-hugo": { + "theme_key": "gethugothemes-navigator-hugo", + "file": "hugo-navigator.md", + "name": "navigator-hugo", + "title": "Navigator Hugo", + "github_username": "gethugothemes", + "repo": "gethugothemes/navigator-hugo", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/gethugothemes/navigator-hugo", + "demo_url": "https://demo.gethugothemes.com/navigator/site/", + "stars": 126, + "forks": 133, + "open_issues": 0, + "last_commit": "2022-02-15T04:22:29Z", + "created_at": "2018-07-08T10:28:35Z", + "description": "Navigator Business theme powered by Hugo. It also could be used for a personal portfolio.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/gethugothemes-navigator-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gethugothemes-navigator-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gethugothemes-navigator-hugo-2x.jpg" + } + }, + "gethugothemes-northendlab-light": { + "theme_key": "gethugothemes-northendlab-light", + "file": "hugo-northendlab.md", + "name": "northendlab-light", + "title": "Northendlab Light", + "github_username": "gethugothemes", + "repo": "gethugothemes/northendlab-light", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/gethugothemes/northendlab-light", + "demo_url": "https://demo.gethugothemes.com/northendlab-light/", + "stars": 87, + "forks": 154, + "open_issues": 0, + "last_commit": "2022-02-15T04:23:33Z", + "created_at": "2019-11-14T10:30:50Z", + "description": "Northendlab is a minimal personal blog theme powered by Hugo. It has a Premium version on our gethugothemes site.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/gethugothemes-northendlab-light.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gethugothemes-northendlab-light.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gethugothemes-northendlab-light-2x.jpg" + } + }, + "gethugothemes-omega-hugo": { + "theme_key": "gethugothemes-omega-hugo", + "file": "hugo-omega.md", + "name": "omega-hugo", + "title": "Omega", + "github_username": "gethugothemes", + "repo": "gethugothemes/omega-hugo", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/gethugothemes/omega-hugo", + "demo_url": "https://demo.gethugothemes.com/omega/site/", + "stars": 19, + "forks": 51, + "open_issues": 0, + "last_commit": "2022-02-15T04:24:30Z", + "created_at": "2020-11-23T05:55:45Z", + "description": "Omega is a landing page business theme powered by Hugo.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/gethugothemes-omega-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gethugothemes-omega-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gethugothemes-omega-hugo-2x.jpg" + } + }, + "gethugothemes-persian-hugo": { + "theme_key": "gethugothemes-persian-hugo", + "file": "hugo-persian.md", + "name": "persian-hugo", + "title": "Persian Hugo", + "github_username": "gethugothemes", + "repo": "gethugothemes/persian-hugo", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/gethugothemes/persian-hugo", + "demo_url": "https://demo.gethugothemes.com/persian/site/", + "stars": 27, + "forks": 110, + "open_issues": 0, + "last_commit": "2022-02-15T04:26:31Z", + "created_at": "2020-06-15T05:14:11Z", + "description": "Persian is a box design personal blog theme based on Bootstrap and powered by Hugo. It is very responsive and perfectly fits on any sized screen device. ", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/gethugothemes-persian-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gethugothemes-persian-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gethugothemes-persian-hugo-2x.jpg" + } + }, + "gethugothemes-restaurant-hugo": { + "theme_key": "gethugothemes-restaurant-hugo", + "file": "hugo-restaurant.md", + "name": "restaurant-hugo", + "title": "Restaurant", + "github_username": "gethugothemes", + "repo": "gethugothemes/restaurant-hugo", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/gethugothemes/restaurant-hugo", + "demo_url": "https://demo.gethugothemes.com/restaurant/site/", + "stars": 36, + "forks": 50, + "open_issues": 0, + "last_commit": "2022-02-15T04:36:55Z", + "created_at": "2019-03-17T09:52:58Z", + "description": "The restaurant is a creative and responsive restaurant website theme in Hugo environment. It is very well decorated theme which will make your website building easier.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/gethugothemes-restaurant-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gethugothemes-restaurant-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gethugothemes-restaurant-hugo-2x.jpg" + } + }, + "gethugothemes-techfeed-hugo": { + "theme_key": "gethugothemes-techfeed-hugo", + "file": "hugo-techfeed.md", + "name": "techfeed-hugo", + "title": "Techfeed Hugo", + "github_username": "gethugothemes", + "repo": "gethugothemes/techfeed-hugo", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/gethugothemes/techfeed-hugo", + "demo_url": "https://demo.gethugothemes.com/techfeed/site/", + "stars": 11, + "forks": 13, + "open_issues": 0, + "last_commit": "2022-02-07T07:02:50Z", + "created_at": "2021-08-03T11:15:25Z", + "description": "TechFeed is a personal blog theme powered by Hugo. We have created this theme based on Bootstrap 5. It gives a Responsive, Fast, and Smooth experience to the user. ", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/gethugothemes-techfeed-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gethugothemes-techfeed-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gethugothemes-techfeed-hugo-2x.jpg" + } + }, + "gethugothemes-touchy-hugo": { + "theme_key": "gethugothemes-touchy-hugo", + "file": "hugo-touchy.md", + "name": "touchy-hugo", + "title": "Touchy", + "github_username": "gethugothemes", + "repo": "gethugothemes/touchy-hugo", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/gethugothemes/touchy-hugo", + "demo_url": "https://demo.gethugothemes.com/touchy/site/", + "stars": 2, + "forks": 6, + "open_issues": 0, + "last_commit": "2022-02-15T04:38:12Z", + "created_at": "2021-01-06T10:05:54Z", + "description": "Touchy is a minimal personal blog template powered by Hugo. This theme is 100% mobile responsive.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/gethugothemes-touchy-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gethugothemes-touchy-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gethugothemes-touchy-hugo-2x.jpg" } }, - "gherciu-gatsby-all-in-master": { - "theme_key": "gherciu-gatsby-all-in-master", + "gherciu-gatsby-all-in": { + "theme_key": "gherciu-gatsby-all-in", "file": "gatsby-all-in.md", "name": "gatsby-all-in", "title": "Gatsby All In", "github_username": "Gherciu", "repo": "Gherciu/gatsby-all-in", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Gherciu/gatsby-all-in", "demo_url": "https://gatsby-all-in.netlify.com/", - "stars": 146, - "forks": 11, + "stars": 152, + "forks": 15, "open_issues": 14, "last_commit": "2020-01-25T18:19:00Z", "created_at": "2019-07-07T08:54:29Z", "description": " 🗃⚛️A GatsbyJs starter that includes the most popular js libraries, already pre-configured and ready for use.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/gherciu-gatsby-all-in-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gherciu-gatsby-all-in-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gherciu-gatsby-all-in-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gherciu-gatsby-all-in.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gherciu-gatsby-all-in.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gherciu-gatsby-all-in-2x.jpg" } }, - "gildasio-clyell-gh-pages": { - "theme_key": "gildasio-clyell-gh-pages", + "gildasio-clyell": { + "theme_key": "gildasio-clyell", "file": "jekyll-clyell-theme.md", "name": "clyell", "title": "Clyell", "github_username": "gildasio", "repo": "gildasio/clyell", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/gildasio/clyell", "demo_url": "https://gildasio.github.io/clyell/", - "stars": 35, - "forks": 31, + "stars": 43, + "forks": 39, "open_issues": 2, "last_commit": "2017-06-17T12:37:00Z", "created_at": "2017-06-16T03:14:11Z", "description": "My site jekyll theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/gildasio-clyell-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gildasio-clyell-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gildasio-clyell-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gildasio-clyell.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gildasio-clyell.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gildasio-clyell-2x.jpg" + } + }, + "gildasio-darcli": { + "theme_key": "gjuniioor-darcli", + "file": "jekyll-darcli.md", + "name": "darcli", + "title": "Darcli", + "github_username": "gildasio", + "repo": "gildasio/darcli", + "branch": "gh-pages", + "default_branch": "gh-pages", + "github_url": "https://github.com/gildasio/darcli", + "demo_url": "https://gjuniioor.github.io/darcli/", + "stars": 59, + "forks": 41, + "open_issues": 3, + "last_commit": "2016-07-31T13:57:59Z", + "created_at": "2016-05-02T19:32:17Z", + "description": "A dark + cli jekyll theme", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/gjuniioor-darcli.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gjuniioor-darcli.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gjuniioor-darcli-2x.jpg" } }, - "gillkyle-gatsby-starter-landing-page-master": { - "theme_key": "gillkyle-gatsby-starter-landing-page-master", + "gillkyle-gatsby-starter-landing-page": { + "theme_key": "gillkyle-gatsby-starter-landing-page", "file": "gatsby-starter-landing-page.md", "name": "gatsby-starter-landing-page", "title": "Gatsby Starter Landing Page", "github_username": "gillkyle", "repo": "gillkyle/gatsby-starter-landing-page", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/gillkyle/gatsby-starter-landing-page", "demo_url": "https://gatsby-starter-landing-page.netlify.com/", - "stars": 103, - "forks": 26, - "open_issues": 10, + "stars": 133, + "forks": 44, + "open_issues": 31, "last_commit": "2020-04-21T19:19:31Z", "created_at": "2019-03-19T18:05:37Z", "description": "🖱 A simple, minimal Gatsby starter for quick and easy landing pages", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/gillkyle-gatsby-starter-landing-page-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gillkyle-gatsby-starter-landing-page-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gillkyle-gatsby-starter-landing-page-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gillkyle-gatsby-starter-landing-page.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gillkyle-gatsby-starter-landing-page.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gillkyle-gatsby-starter-landing-page-2x.jpg" } }, - "gilsondev-pelican-clean-blog-master": { - "theme_key": "gilsondev-pelican-clean-blog-master", + "gilsondev-pelican-clean-blog": { + "theme_key": "gilsondev-pelican-clean-blog", "file": "pelican-clean-blog.md", "name": "pelican-clean-blog", "title": "Pelican Clean Blog", "github_username": "gilsondev", "repo": "gilsondev/pelican-clean-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/gilsondev/pelican-clean-blog", "demo_url": "https://gilsondev.github.io/pelican-clean-blog/", - "stars": 142, - "forks": 87, - "open_issues": 9, + "stars": 150, + "forks": 91, + "open_issues": 12, "last_commit": "2020-07-30T13:59:57Z", "created_at": "2014-12-10T16:01:04Z", "description": "Theme based in Clean Blog layout to pelican blogs", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/gilsondev-pelican-clean-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gilsondev-pelican-clean-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gilsondev-pelican-clean-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gilsondev-pelican-clean-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gilsondev-pelican-clean-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gilsondev-pelican-clean-blog-2x.jpg" } }, - "gizak-nofancy-master": { - "theme_key": "gizak-nofancy-master", + "gizak-nofancy": { + "theme_key": "gizak-nofancy", "file": "hugo-nofancy.md", "name": "nofancy", "title": "Nofancy", "github_username": "gizak", "repo": "gizak/nofancy", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/gizak/nofancy", "demo_url": "https://themes.gohugo.io/theme/nofancy/", - "stars": 58, + "stars": 59, "forks": 30, "open_issues": 3, "last_commit": "2018-03-25T21:42:27Z", "created_at": "2015-01-08T23:10:17Z", "description": "A Hugo blog theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/gizak-nofancy-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gizak-nofancy-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gizak-nofancy-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gizak-nofancy.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gizak-nofancy.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gizak-nofancy-2x.jpg" } }, - "gjuniioor-darcli-gh-pages": { - "theme_key": "gjuniioor-darcli-gh-pages", + "gjuniioor-darcli": { + "theme_key": "gjuniioor-darcli", "file": "jekyll-darcli.md", "name": "darcli", "title": "Darcli", "github_username": "gildasio", "repo": "gildasio/darcli", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/gildasio/darcli", "demo_url": "https://gjuniioor.github.io/darcli/", - "stars": 56, + "stars": 57, "forks": 37, "open_issues": 3, "last_commit": "2016-07-31T13:57:59Z", "created_at": "2016-05-02T19:32:17Z", "description": "A dark + cli jekyll theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/gjuniioor-darcli-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gjuniioor-darcli-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gjuniioor-darcli-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gjuniioor-darcli.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gjuniioor-darcli.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gjuniioor-darcli-2x.jpg" } }, - "gkmngrgn-hugo-alageek-theme-master": { - "theme_key": "gkmngrgn-hugo-alageek-theme-master", + "gkmngrgn-hugo-alageek-theme": { + "theme_key": "gkmngrgn-hugo-alageek-theme", "file": "hugo-alageek.md", "name": "hugo-alageek-theme", "title": "AlaGeek", "github_username": "gkmngrgn", "repo": "gkmngrgn/hugo-alageek-theme", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/gkmngrgn/hugo-alageek-theme", "demo_url": "https://gokmengorgen.net/", - "stars": 38, - "forks": 18, - "open_issues": 5, - "last_commit": "2020-03-28T16:24:52Z", + "stars": 59, + "forks": 21, + "open_issues": 1, + "last_commit": "2022-10-02T16:22:48Z", "created_at": "2018-09-08T19:32:11Z", - "description": "alaGeek is an enhanced version of the Cocoa theme featuring a customizable homepage with different sections including the latest posts, syntax highlighting and MathJax support and much more.", - "stale": false, + "description": "A Cocoa Enhanced based theme. It's rewritten with Bootstrap 5.", "images": { - "hires": "https://www.jamstackthemes.dev/capture/gkmngrgn-hugo-alageek-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gkmngrgn-hugo-alageek-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gkmngrgn-hugo-alageek-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gkmngrgn-hugo-alageek-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gkmngrgn-hugo-alageek-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gkmngrgn-hugo-alageek-theme-2x.jpg" } }, - "gmlunesa-gatsby-starter-personal-portfolio-main": { - "theme_key": "gmlunesa-gatsby-starter-personal-portfolio-main", - "file": "gatsby-starter-personal-portfolio", + "gmlunesa-gatsby-starter-personal-portfolio": { + "theme_key": "gmlunesa-gatsby-starter-personal-portfolio", + "file": "gatsby-starter-personal-portfolio.md", "name": "gatsby-starter-personal-portfolio", "title": "Gatsby Personal Portfolio", "github_username": "gmlunesa", "repo": "gmlunesa/gatsby-starter-personal-portfolio", "branch": "main", + "default_branch": "main", "github_url": "https://github.com/gmlunesa/gatsby-starter-personal-portfolio", "demo_url": "https://gatsby-starter-personal-portfolio.vercel.app/", - "stars": 26, + "stars": 33, "forks": 9, "open_issues": 0, "last_commit": "2020-11-04T12:49:03Z", "created_at": "2020-10-27T20:46:18Z", "description": "A clean and easy to use GatsbyJS starter.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/gmlunesa-gatsby-starter-personal-portfolio-main.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gmlunesa-gatsby-starter-personal-portfolio-main.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gmlunesa-gatsby-starter-personal-portfolio-main-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gmlunesa-gatsby-starter-personal-portfolio.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gmlunesa-gatsby-starter-personal-portfolio.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gmlunesa-gatsby-starter-personal-portfolio-2x.jpg" } }, - "gomah-bluise-master": { - "theme_key": "gomah-bluise-master", + "gomah-bluise": { + "theme_key": "gomah-bluise", "file": "bluise-nuxt-cms.md", "name": "bluise", "title": "Nuxt Tailwind Netlify CMS Starter", "github_username": "Gomah", "repo": "Gomah/bluise", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Gomah/bluise", "demo_url": "https://bluise.netlify.com", - "stars": 55, - "forks": 23, - "open_issues": 5, - "last_commit": "2020-12-05T10:23:38Z", + "stars": 136, + "forks": 111, + "open_issues": 12, + "last_commit": "2022-02-25T02:03:17Z", "created_at": "2019-12-10T03:21:44Z", "description": "🍄 Bluise - A Nuxt.js & Netlify CMS boilerplate.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/gomah-bluise-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gomah-bluise-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gomah-bluise-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gomah-bluise.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gomah-bluise.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gomah-bluise-2x.jpg" } }, - "gonapps-org-hugo-apps-theme-master": { - "theme_key": "gonapps-org-hugo-apps-theme-master", + "gonapps-org-hugo-apps-theme": { + "theme_key": "gonapps-org-hugo-apps-theme", "file": "hugo-apps-theme.md", "name": "hugo-apps-theme", "title": "Hugo Apps Theme", "github_username": "gonnux", "repo": "gonnux/hugo-apps-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/gonnux/hugo-apps-theme", "demo_url": "https://themes.gohugo.io/theme/hugo-apps-theme/", "stars": 10, @@ -8003,228 +9952,320 @@ "last_commit": "2020-03-08T19:33:11Z", "created_at": "2018-10-28T08:09:14Z", "description": "Hugo Apps Theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/gonapps-org-hugo-apps-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gonapps-org-hugo-apps-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gonapps-org-hugo-apps-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gonapps-org-hugo-apps-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gonapps-org-hugo-apps-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gonapps-org-hugo-apps-theme-2x.jpg" + } + }, + "gonnux-hugo-apps-theme": { + "theme_key": "gonapps-org-hugo-apps-theme", + "file": "hugo-apps-theme.md", + "name": "hugo-apps-theme", + "title": "Hugo Apps Theme", + "github_username": "gonnux", + "repo": "gonnux/hugo-apps-theme", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/gonnux/hugo-apps-theme", + "demo_url": "https://themes.gohugo.io/theme/hugo-apps-theme/", + "stars": 11, + "forks": 9, + "open_issues": 0, + "last_commit": "2020-03-08T19:33:11Z", + "created_at": "2018-10-28T08:09:14Z", + "description": "Hugo Apps Theme", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/gonapps-org-hugo-apps-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gonapps-org-hugo-apps-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gonapps-org-hugo-apps-theme-2x.jpg" } }, - "goodroot-hugo-classic-master": { - "theme_key": "goodroot-hugo-classic-master", + "goodroot-hugo-classic": { + "theme_key": "goodroot-hugo-classic", "file": "hugo-classic-theme.md", "name": "hugo-classic", "title": "Hugo-Classic", "github_username": "goodroot", "repo": "goodroot/hugo-classic", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/goodroot/hugo-classic", "demo_url": "https://goodroot.ca/", - "stars": 79, - "forks": 46, - "open_issues": 0, - "last_commit": "2020-12-13T03:01:18Z", + "stars": 118, + "forks": 56, + "open_issues": 1, + "last_commit": "2021-09-15T01:57:58Z", "created_at": "2017-07-13T02:02:26Z", "description": "A simple and text-centric theme for Hugo.io", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/goodroot-hugo-classic-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/goodroot-hugo-classic-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/goodroot-hugo-classic-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/goodroot-hugo-classic.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/goodroot-hugo-classic.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/goodroot-hugo-classic-2x.jpg" } }, - "graphcms-gatsby-graphcms-tailwindcss-example-master": { - "theme_key": "graphcms-gatsby-graphcms-tailwindcss-example-master", + "graphcms-gatsby-graphcms-tailwindcss-example": { + "theme_key": "graphcms-gatsby-graphcms-tailwindcss-example", "file": "gatsby-graphcms-tailwindcss-example.md", "name": "gatsby-graphcms-tailwindcss-example", "title": "Gatsby Graphcms Tailwindcss Example", "github_username": "GraphCMS", "repo": "GraphCMS/gatsby-graphcms-tailwindcss-example", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/GraphCMS/gatsby-graphcms-tailwindcss-example", "demo_url": "https://graphcms.github.io/gatsby-graphcms-tailwindcss-example/", - "stars": 10, + "stars": 13, "forks": 4, "open_issues": 1, "last_commit": "2019-02-08T20:16:33Z", "created_at": "2018-09-19T13:00:05Z", "description": null, - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/graphcms-gatsby-graphcms-tailwindcss-example-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/graphcms-gatsby-graphcms-tailwindcss-example-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/graphcms-gatsby-graphcms-tailwindcss-example-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/graphcms-gatsby-graphcms-tailwindcss-example.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/graphcms-gatsby-graphcms-tailwindcss-example.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/graphcms-gatsby-graphcms-tailwindcss-example-2x.jpg" + } + }, + "graphcms-gatsby-starter-graphcms-blog": { + "theme_key": "graphcms-gatsby-starter-graphcms-blog", + "file": "graphcms-blog.md", + "name": "gatsby-starter-graphcms-blog", + "title": "GraphCMS Blog", + "github_username": "GraphCMS", + "repo": "GraphCMS/gatsby-starter-graphcms-blog", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/GraphCMS/gatsby-starter-graphcms-blog", + "demo_url": "https://blog.withheadlesscms.com/", + "stars": 44, + "forks": 20, + "open_issues": 14, + "last_commit": "2022-04-12T11:46:59Z", + "created_at": "2020-07-28T09:54:17Z", + "description": "Gatsby starter for creating a basic blog with GraphCMS", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/graphcms-gatsby-starter-graphcms-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/graphcms-gatsby-starter-graphcms-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/graphcms-gatsby-starter-graphcms-blog-2x.jpg" + } + }, + "graphcms-graphcms-commerce-starter": { + "theme_key": "graphcms-graphcms-commerce-starter", + "file": "graphcms-commerce.md", + "name": "graphcms-commerce-starter", + "title": "GraphCMS eCommerce Storefront", + "github_username": "GraphCMS", + "repo": "GraphCMS/graphcms-commerce-starter", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/GraphCMS/graphcms-commerce-starter", + "demo_url": "https://commerce.withheadlesscms.com/", + "stars": 98, + "forks": 37, + "open_issues": 5, + "last_commit": "2022-04-12T11:47:28Z", + "created_at": "2021-01-28T15:24:09Z", + "description": null, + "images": { + "hires": "https://www.jamstackthemes.dev/capture/graphcms-graphcms-commerce-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/graphcms-graphcms-commerce-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/graphcms-graphcms-commerce-starter-2x.jpg" + } + }, + "graphcms-reference-marketing-website": { + "theme_key": "graphcms-reference-marketing-website", + "file": "graphcms-marketing-website.md", + "name": "reference-marketing-website", + "title": "GraphCMS Marketing Website", + "github_username": "GraphCMS", + "repo": "GraphCMS/reference-marketing-website", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/GraphCMS/reference-marketing-website", + "demo_url": "https://marketing-websites.withheadlesscms.com/", + "stars": 71, + "forks": 25, + "open_issues": 3, + "last_commit": "2022-04-12T12:26:40Z", + "created_at": "2020-05-26T10:38:33Z", + "description": "Next.js starter for creating a SaaS Marketing Website with GraphCMS ⚡️", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/graphcms-reference-marketing-website.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/graphcms-reference-marketing-website.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/graphcms-reference-marketing-website-2x.jpg" } }, - "greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog-master": { - "theme_key": "greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog-master", + "greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog": { + "theme_key": "greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog", "file": "gatsby-starter-ggt-material-ui-blog.md", "name": "gatsby-starter-ggt-material-ui-blog", "title": "Gatsby Ggt Material-ui Blog", "github_username": "avatar-kaleb", "repo": "avatar-kaleb/gatsby-starter-ggt-material-ui-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/avatar-kaleb/gatsby-starter-ggt-material-ui-blog", "demo_url": "https://gatsby-theme-ggt-material-ui-blog.netlify.com/", "stars": 2, - "forks": 4, - "open_issues": 7, + "forks": 5, + "open_issues": 8, "last_commit": "2020-03-14T14:50:56Z", "created_at": "2019-04-26T11:47:18Z", "description": "Gatsby starter that uses a Material-ui blog theme - letting you set up an blog with minimal effort!", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog-2x.jpg" } }, - "greglobinski-gatsby-starter-hero-blog-master": { - "theme_key": "greglobinski-gatsby-starter-hero-blog-master", + "greglobinski-gatsby-starter-hero-blog": { + "theme_key": "greglobinski-gatsby-starter-hero-blog", "file": "gatsby-starter-hero-blog.md", "name": "gatsby-starter-hero-blog", "title": "Gatsby Starter Hero Blog", "github_username": "greglobinski", "repo": "greglobinski/gatsby-starter-hero-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/greglobinski/gatsby-starter-hero-blog", "demo_url": "https://gatsby-starter-hero-blog.greglobinski.com/", - "stars": 498, - "forks": 210, - "open_issues": 36, + "stars": 511, + "forks": 214, + "open_issues": 44, "last_commit": "2019-02-08T09:05:51Z", "created_at": "2018-05-10T07:46:20Z", "description": "A ready to use, easy to customize, fully equipped GatsbyJS starter with a 'Hero' section on the home page.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/greglobinski-gatsby-starter-hero-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/greglobinski-gatsby-starter-hero-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/greglobinski-gatsby-starter-hero-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/greglobinski-gatsby-starter-hero-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/greglobinski-gatsby-starter-hero-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/greglobinski-gatsby-starter-hero-blog-2x.jpg" } }, - "gridsome-gridsome-starter-blog-master": { - "theme_key": "gridsome-gridsome-starter-blog-master", + "gridsome-gridsome-starter-blog": { + "theme_key": "gridsome-gridsome-starter-blog", "file": "gridsome-starter-blog.md", "name": "gridsome-starter-blog", "title": "Gridsome Starter Blog", "github_username": "gridsome", "repo": "gridsome/gridsome-starter-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/gridsome/gridsome-starter-blog", "demo_url": "https://gridsome-starter-blog.netlify.com/", - "stars": 346, - "forks": 201, - "open_issues": 26, + "stars": 384, + "forks": 219, + "open_issues": 27, "last_commit": "2019-09-30T19:23:45Z", "created_at": "2019-02-26T13:28:03Z", "description": "A simple, hackable & minimalistic starter for Gridsome that uses Markdown for content.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/gridsome-gridsome-starter-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gridsome-gridsome-starter-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gridsome-gridsome-starter-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gridsome-gridsome-starter-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gridsome-gridsome-starter-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gridsome-gridsome-starter-blog-2x.jpg" } }, - "gristlabs-mkdocs-windmill-master": { - "theme_key": "gristlabs-mkdocs-windmill-master", + "gristlabs-mkdocs-windmill": { + "theme_key": "gristlabs-mkdocs-windmill", "file": "mkdocs-windmill.md", "name": "mkdocs-windmill", "title": "MkDocs Windmill", "github_username": "gristlabs", "repo": "gristlabs/mkdocs-windmill", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/gristlabs/mkdocs-windmill", "demo_url": "https://gristlabs.github.io/mkdocs-windmill/", - "stars": 61, - "forks": 49, - "open_issues": 17, - "last_commit": "2020-01-27T22:12:26Z", + "stars": 87, + "forks": 61, + "open_issues": 24, + "last_commit": "2022-03-11T19:50:40Z", "created_at": "2017-05-15T03:51:22Z", "description": "Outstanding mkdocs theme with a focus on navigation and usability", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/gristlabs-mkdocs-windmill-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gristlabs-mkdocs-windmill-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gristlabs-mkdocs-windmill-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gristlabs-mkdocs-windmill.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gristlabs-mkdocs-windmill.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gristlabs-mkdocs-windmill-2x.jpg" } }, - "grrinchas-aliquam-master": { - "theme_key": "grrinchas-aliquam-master", + "grrinchas-aliquam": { + "theme_key": "grrinchas-aliquam", "file": "jekyll-aliquam.md", "name": "aliquam", "title": "Aliquam", "github_username": "grrinchas", "repo": "grrinchas/aliquam", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/grrinchas/aliquam", "demo_url": "https://grrinchas.github.io/", - "stars": 20, - "forks": 59, + "stars": 21, + "forks": 57, "open_issues": 2, "last_commit": "2017-06-27T11:08:25Z", "created_at": "2016-05-23T18:34:40Z", "description": "Jekyll theme ", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/grrinchas-aliquam-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/grrinchas-aliquam-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/grrinchas-aliquam-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/grrinchas-aliquam.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/grrinchas-aliquam.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/grrinchas-aliquam-2x.jpg" } }, - "guangmean-niello-master": { - "theme_key": "guangmean-niello-master", + "guangmean-niello": { + "theme_key": "guangmean-niello", "file": "hugo-niello-theme.md", "name": "Niello", "title": "Niello", "github_username": "guangmean", "repo": "guangmean/Niello", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/guangmean/Niello", "demo_url": "https://themes.gohugo.io/theme/Niello/", - "stars": 7, - "forks": 5, + "stars": 9, + "forks": 8, "open_issues": 2, "last_commit": "2019-10-29T09:04:47Z", "created_at": "2019-01-03T09:47:08Z", "description": "A Dark Theme for Hugo", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/guangmean-niello-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/guangmean-niello-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/guangmean-niello-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/guangmean-niello.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/guangmean-niello.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/guangmean-niello-2x.jpg" } }, - "gundamew-hugo-bingo-master": { - "theme_key": "gundamew-hugo-bingo-master", + "gundamew-hugo-bingo": { + "theme_key": "gundamew-hugo-bingo", "file": "hugo-bingo-theme.md", "name": "hugo-bingo", "title": "Bingo", "github_username": "gundamew", "repo": "gundamew/hugo-bingo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/gundamew/hugo-bingo", "demo_url": "https://themes.gohugo.io/theme/hugo-bingo/", - "stars": 9, - "forks": 9, + "stars": 11, + "forks": 10, "open_issues": 0, - "last_commit": "2019-08-20T02:38:17Z", + "last_commit": "2021-06-21T09:37:53Z", "created_at": "2018-07-01T07:40:12Z", "description": "Nothing but texts.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/gundamew-hugo-bingo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gundamew-hugo-bingo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gundamew-hugo-bingo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gundamew-hugo-bingo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gundamew-hugo-bingo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gundamew-hugo-bingo-2x.jpg" } }, - "guovz-pithy-master": { - "theme_key": "guovz-pithy-master", + "guovz-pithy": { + "theme_key": "guovz-pithy", "file": "jekyll-guovz-pithy.md", "name": "jekyll-pithy", "title": "Guovz Pithy", "github_username": "jaylinwang", "repo": "jaylinwang/jekyll-pithy", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jaylinwang/jekyll-pithy", "demo_url": "https://www.guovz.com", "stars": 61, @@ -8233,160 +10274,160 @@ "last_commit": "2015-11-21T02:50:21Z", "created_at": "2015-08-30T09:57:59Z", "description": "a jekyll theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/guovz-pithy-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/guovz-pithy-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/guovz-pithy-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/guovz-pithy.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/guovz-pithy.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/guovz-pithy-2x.jpg" } }, - "gurusabarish-hugo-profile-master": { - "theme_key": "gurusabarish-hugo-profile-master", + "gurusabarish-hugo-profile": { + "theme_key": "gurusabarish-hugo-profile", "file": "hugo-profile.md", "name": "hugo-profile", "title": "Hugo-profile", "github_username": "gurusabarish", "repo": "gurusabarish/hugo-profile", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/gurusabarish/hugo-profile", "demo_url": "https://hugo-profile.netlify.app", - "stars": 11, - "forks": 6, - "open_issues": 0, - "last_commit": "2020-12-26T06:29:50Z", + "stars": 298, + "forks": 172, + "open_issues": 6, + "last_commit": "2023-01-22T07:06:56Z", "created_at": "2020-08-16T07:19:04Z", - "description": "The fastest Hugo theme for personal portfolio.", - "stale": false, + "description": "A highly customizable and mobile first Hugo template for personal portfolio and blog.", "images": { - "hires": "https://www.jamstackthemes.dev/capture/gurusabarish-hugo-profile-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gurusabarish-hugo-profile-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gurusabarish-hugo-profile-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gurusabarish-hugo-profile.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gurusabarish-hugo-profile.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gurusabarish-hugo-profile-2x.jpg" } }, - "gustavoquinalha-jekyll-help-center-theme-master": { - "theme_key": "gustavoquinalha-jekyll-help-center-theme-master", + "gustavoquinalha-jekyll-help-center-theme": { + "theme_key": "gustavoquinalha-jekyll-help-center-theme", "file": "jekyll-theme-help-center.md", "name": "jekyll-help-center-theme", "title": "Jekyll Help Center Theme", "github_username": "gustavoquinalha", "repo": "gustavoquinalha/jekyll-help-center-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/gustavoquinalha/jekyll-help-center-theme", "demo_url": "https://quinalha.me/jekyll-help-center-theme/", - "stars": 123, - "forks": 60, - "open_issues": 4, + "stars": 153, + "forks": 87, + "open_issues": 7, "last_commit": "2019-07-04T00:26:23Z", "created_at": "2017-12-12T15:50:55Z", "description": "Simple and responsive Jekyll theme for help center.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/gustavoquinalha-jekyll-help-center-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gustavoquinalha-jekyll-help-center-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gustavoquinalha-jekyll-help-center-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gustavoquinalha-jekyll-help-center-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gustavoquinalha-jekyll-help-center-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gustavoquinalha-jekyll-help-center-theme-2x.jpg" } }, - "gyorb-hugo-dusk-master": { - "theme_key": "gyorb-hugo-dusk-master", + "gyorb-hugo-dusk": { + "theme_key": "gyorb-hugo-dusk", "file": "hugo-dusk.md", "name": "hugo-dusk", "title": "Hugo-dusk", "github_username": "gyorb", "repo": "gyorb/hugo-dusk", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/gyorb/hugo-dusk", "demo_url": "https://themes.gohugo.io/theme/hugo-dusk/", - "stars": 42, - "forks": 35, + "stars": 49, + "forks": 36, "open_issues": 4, "last_commit": "2020-01-19T19:58:31Z", "created_at": "2017-04-22T11:43:42Z", "description": "Simple, minimalistic dark theme for Hugo.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/gyorb-hugo-dusk-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gyorb-hugo-dusk-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gyorb-hugo-dusk-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/gyorb-hugo-dusk.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gyorb-hugo-dusk.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gyorb-hugo-dusk-2x.jpg" } }, - "h-enk-doks-master": { - "theme_key": "h-enk-doks-master", + "h-enk-doks": { + "theme_key": "h-enk-doks", "file": "hugo-doks.md", "name": "doks", "title": "Doks", "github_username": "h-enk", "repo": "h-enk/doks", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/h-enk/doks", "demo_url": "https://doks.netlify.app", - "stars": 51, - "forks": 9, - "open_issues": 1, - "last_commit": "2021-01-10T22:34:46Z", + "stars": 1395, + "forks": 300, + "open_issues": 35, + "last_commit": "2022-11-28T08:35:21Z", "created_at": "2020-04-15T13:37:31Z", "description": "Hugo theme helping you build modern documentation websites.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/h-enk-doks-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/h-enk-doks-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/h-enk-doks-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/h-enk-doks.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/h-enk-doks.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/h-enk-doks-2x.jpg" } }, - "h01000110-windows-95-master": { - "theme_key": "h01000110-windows-95-master", + "h01000110-windows-95": { + "theme_key": "h01000110-windows-95", "file": "jekyll-windows-95-theme.md", "name": "windows-95", "title": "Windows 95", "github_username": "h01000110", "repo": "h01000110/windows-95", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/h01000110/windows-95", "demo_url": "https://h01000110.github.io/windows-95/", - "stars": 297, - "forks": 110, - "open_issues": 11, + "stars": 378, + "forks": 142, + "open_issues": 12, "last_commit": "2017-09-17T23:47:47Z", "created_at": "2017-09-17T15:21:03Z", "description": "Jekyll Theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/h01000110-windows-95-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/h01000110-windows-95-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/h01000110-windows-95-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/h01000110-windows-95.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/h01000110-windows-95.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/h01000110-windows-95-2x.jpg" } }, - "hadisinaee-avicenna-develop": { - "theme_key": "hadisinaee-avicenna-develop", + "hadisinaee-avicenna": { + "theme_key": "hadisinaee-avicenna", "file": "hugo-avicenna.md", "name": "avicenna", "title": "Avicenna", "github_username": "hadisinaee", "repo": "hadisinaee/avicenna", - "branch": "develop", + "branch": "master", + "default_branch": "master", "github_url": "https://github.com/hadisinaee/avicenna", "demo_url": "https://themes.gohugo.io/theme/avicenna/", - "stars": 67, - "forks": 32, - "open_issues": 16, - "last_commit": "2019-10-12T17:15:19Z", + "stars": 88, + "forks": 41, + "open_issues": 8, + "last_commit": "2021-08-02T00:38:40Z", "created_at": "2019-06-29T12:33:47Z", - "description": "a minimal academic page for hugo", - "stale": true, + "description": "a minimal academic page for Hugo", "images": { - "hires": "https://www.jamstackthemes.dev/capture/hadisinaee-avicenna-develop.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hadisinaee-avicenna-develop.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hadisinaee-avicenna-develop-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/hadisinaee-avicenna.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hadisinaee-avicenna.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hadisinaee-avicenna-2x.jpg" } }, - "haezl-gatsby-starter-haezl-master": { - "theme_key": "haezl-gatsby-starter-haezl-master", + "haezl-gatsby-starter-haezl": { + "theme_key": "haezl-gatsby-starter-haezl", "file": "gatsby-starter-haezl.md", "name": "gatsby-starter-haezl", "title": "Gatsby Starter Haezl", - "github_username": "haezl", - "repo": "haezl/gatsby-starter-haezl", + "github_username": "gehtmaguad", + "repo": "gehtmaguad/gatsby-starter-haezl", "branch": "master", - "github_url": "https://github.com/haezl/gatsby-starter-haezl", + "default_branch": "master", + "github_url": "https://github.com/gehtmaguad/gatsby-starter-haezl", "demo_url": "https://gatsby-starter.haezl.at/", "stars": 15, "forks": 7, @@ -8394,136 +10435,159 @@ "last_commit": "2019-05-12T18:59:42Z", "created_at": "2019-04-09T19:16:46Z", "description": "A lightweight, mobile first blog starter with infinite scroll and Material-UI design for Gatsby.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/haezl-gatsby-starter-haezl-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/haezl-gatsby-starter-haezl-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/haezl-gatsby-starter-haezl-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/haezl-gatsby-starter-haezl.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/haezl-gatsby-starter-haezl.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/haezl-gatsby-starter-haezl-2x.jpg" } }, - "hagnerd-gatsby-starter-blog-mdx-master": { - "theme_key": "hagnerd-gatsby-starter-blog-mdx-master", + "hagnerd-gatsby-starter-blog-mdx": { + "theme_key": "hagnerd-gatsby-starter-blog-mdx", "file": "gatsby-starter-blog-mdx.md", "name": "gatsby-starter-blog-mdx", "title": "Gatsby Starter Blog Mdx", "github_username": "hagnerd", "repo": "hagnerd/gatsby-starter-blog-mdx", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/hagnerd/gatsby-starter-blog-mdx", "demo_url": "https://gatsby-starter-blog-mdx-demo.netlify.com/", - "stars": 67, - "forks": 41, - "open_issues": 2, + "stars": 66, + "forks": 48, + "open_issues": 15, "last_commit": "2020-01-25T21:14:09Z", "created_at": "2019-01-03T15:16:26Z", "description": "Live Demo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/hagnerd-gatsby-starter-blog-mdx-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hagnerd-gatsby-starter-blog-mdx-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hagnerd-gatsby-starter-blog-mdx-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/hagnerd-gatsby-starter-blog-mdx.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hagnerd-gatsby-starter-blog-mdx.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hagnerd-gatsby-starter-blog-mdx-2x.jpg" } }, - "halogenica-beautifulhugo-master": { - "theme_key": "halogenica-beautifulhugo-master", + "halogenica-beautifulhugo": { + "theme_key": "halogenica-beautifulhugo", "file": "hugo-beautifulhugo.md", "name": "beautifulhugo", "title": "Beautiful Hugo", "github_username": "halogenica", "repo": "halogenica/beautifulhugo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/halogenica/beautifulhugo", "demo_url": "https://themes.gohugo.io/theme/beautifulhugo/", - "stars": 782, - "forks": 434, - "open_issues": 98, + "stars": 859, + "forks": 479, + "open_issues": 136, "last_commit": "2021-01-06T08:01:52Z", "created_at": "2016-03-08T10:44:16Z", "description": "Theme for the Hugo static website generator", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/halogenica-beautifulhugo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/halogenica-beautifulhugo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/halogenica-beautifulhugo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/halogenica-beautifulhugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/halogenica-beautifulhugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/halogenica-beautifulhugo-2x.jpg" + } + }, + "hankchizljaw-hylia": { + "theme_key": "andybelldesign-hylia", + "file": "11ty-hylia.md", + "name": "hylia", + "title": "Eleventy Hylia", + "github_username": "hankchizljaw", + "repo": "hankchizljaw/hylia", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/hankchizljaw/hylia", + "demo_url": "https://hylia.website/", + "stars": 887, + "forks": 218, + "open_issues": 34, + "last_commit": "2021-10-15T19:09:18Z", + "created_at": "2019-06-11T20:15:02Z", + "description": "Hylia is a lightweight Eleventy starter kit to help you to create your own blog or personal website.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/andybelldesign-hylia.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/andybelldesign-hylia.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/andybelldesign-hylia-2x.jpg" } }, - "harshil1712-gatsby-starter-googlesheets-master": { - "theme_key": "harshil1712-gatsby-starter-googlesheets-master", + "harshil1712-gatsby-starter-googlesheets": { + "theme_key": "harshil1712-gatsby-starter-googlesheets", "file": "gatsby-starter-googlesheets.md", "name": "gatsby-starter-googlesheets", "title": "Gatsby Starter Googlesheets", "github_username": "harshil1712", "repo": "harshil1712/gatsby-starter-googlesheets", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/harshil1712/gatsby-starter-googlesheets", "demo_url": "https://harshil1712.github.io/gatsby-starter-googlesheets/", - "stars": 12, - "forks": 2, + "stars": 17, + "forks": 4, "open_issues": 6, "last_commit": "2020-07-06T17:17:40Z", "created_at": "2019-05-22T10:09:13Z", "description": "A gatsby starter using Google Sheets ", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/harshil1712-gatsby-starter-googlesheets-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/harshil1712-gatsby-starter-googlesheets-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/harshil1712-gatsby-starter-googlesheets-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/harshil1712-gatsby-starter-googlesheets.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/harshil1712-gatsby-starter-googlesheets.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/harshil1712-gatsby-starter-googlesheets-2x.jpg" } }, - "hasura-gatsby-gitbook-starter-master": { - "theme_key": "hasura-gatsby-gitbook-starter-master", + "hasura-gatsby-gitbook-starter": { + "theme_key": "hasura-gatsby-gitbook-starter", "file": "gatsby-gitbook-starter.md", "name": "gatsby-gitbook-starter", "title": "Gatsby Gitbook Starter", "github_username": "hasura", "repo": "hasura/gatsby-gitbook-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/hasura/gatsby-gitbook-starter", "demo_url": "https://learn.hasura.io/graphql/react/introduction", - "stars": 660, - "forks": 217, - "open_issues": 19, - "last_commit": "2020-12-04T08:28:55Z", + "stars": 949, + "forks": 367, + "open_issues": 41, + "last_commit": "2022-10-20T07:40:32Z", "created_at": "2019-05-04T14:09:01Z", "description": "Generate GitBook style modern docs/tutorial websites using Gatsby + MDX", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/hasura-gatsby-gitbook-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hasura-gatsby-gitbook-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hasura-gatsby-gitbook-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/hasura-gatsby-gitbook-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hasura-gatsby-gitbook-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hasura-gatsby-gitbook-starter-2x.jpg" } }, - "hauke96-hugo-theme-hamburg-master": { - "theme_key": "hauke96-hugo-theme-hamburg-master", + "hauke96-hugo-theme-hamburg": { + "theme_key": "hauke96-hugo-theme-hamburg", "file": "hugo-theme-hamburg.md", "name": "hugo-theme-hamburg", "title": "Hamburg", "github_username": "hauke96", "repo": "hauke96/hugo-theme-hamburg", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/hauke96/hugo-theme-hamburg", "demo_url": "https://themes.gohugo.io/theme/hugo-theme-hamburg/", - "stars": 10, + "stars": 11, "forks": 10, "open_issues": 6, - "last_commit": "2020-05-18T09:17:52Z", + "last_commit": "2021-08-08T21:05:28Z", "created_at": "2018-08-24T23:12:19Z", "description": "Simple and clean blog theme for hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/hauke96-hugo-theme-hamburg-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hauke96-hugo-theme-hamburg-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hauke96-hugo-theme-hamburg-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/hauke96-hugo-theme-hamburg.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hauke96-hugo-theme-hamburg.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hauke96-hugo-theme-hamburg-2x.jpg" } }, - "hdcdstr8fwd-foundation-theme-master": { - "theme_key": "hdcdstr8fwd-foundation-theme-master", + "hdcdstr8fwd-foundation-theme": { + "theme_key": "hdcdstr8fwd-foundation-theme", "file": "hugo-foundation-theme.md", "name": "foundation-theme", "title": "Hugof", "github_username": "hdcdstr8fwd", "repo": "hdcdstr8fwd/foundation-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/hdcdstr8fwd/foundation-theme", "demo_url": "https://themes.gohugo.io/theme/foundation-theme/", "stars": 12, @@ -8532,964 +10596,1263 @@ "last_commit": "2019-04-27T17:28:34Z", "created_at": "2016-12-11T17:15:15Z", "description": "Core theme files for Hugo Foundation.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/hdcdstr8fwd-foundation-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hdcdstr8fwd-foundation-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hdcdstr8fwd-foundation-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/hdcdstr8fwd-foundation-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hdcdstr8fwd-foundation-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hdcdstr8fwd-foundation-theme-2x.jpg" } }, - "heiswayi-textlog-gh-pages": { - "theme_key": "heiswayi-textlog-gh-pages", + "heiswayi-textlog": { + "theme_key": "heiswayi-textlog", "file": "jekyll-textlog.md", "name": "textlog", "title": "TextLog", "github_username": "heiswayi", "repo": "heiswayi/textlog", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/heiswayi/textlog", "demo_url": "https://heiswayi.github.io/textlog/", - "stars": 127, - "forks": 42, - "open_issues": 4, - "last_commit": "2019-05-28T08:14:22Z", + "stars": 148, + "forks": 51, + "open_issues": 1, + "last_commit": "2022-11-25T01:20:16Z", "created_at": "2017-01-15T08:19:03Z", "description": "Minimalist, lefty-style Jekyll theme designed for documentation based blog.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/heiswayi-textlog-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/heiswayi-textlog-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/heiswayi-textlog-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/heiswayi-textlog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/heiswayi-textlog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/heiswayi-textlog-2x.jpg" } }, - "heiswayi-the-plain-master": { - "theme_key": "heiswayi-the-plain-master", + "heiswayi-the-plain": { + "theme_key": "heiswayi-the-plain", "file": "jekyll-the-plain.md", "name": "the-plain", "title": "The Plain", "github_username": "heiswayi", "repo": "heiswayi/the-plain", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/heiswayi/the-plain", "demo_url": "https://heiswayi.github.io/the-plain/", - "stars": 448, - "forks": 313, + "stars": 501, + "forks": 323, "open_issues": 2, - "last_commit": "2019-08-24T02:48:14Z", + "last_commit": "2021-10-18T07:09:19Z", "created_at": "2015-09-08T16:09:41Z", "description": "A minimalist Jekyll theme, ideally designed for your personal blog use.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/heiswayi-the-plain-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/heiswayi-the-plain-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/heiswayi-the-plain-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/heiswayi-the-plain.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/heiswayi-the-plain.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/heiswayi-the-plain-2x.jpg" } }, - "heiswayi-thinkspace-master": { - "theme_key": "heiswayi-thinkspace-master", + "heiswayi-thinkspace": { + "theme_key": "heiswayi-thinkspace", "file": "jekyll-thinkspace.md", "name": "thinkspace", "title": "Thinkspace", "github_username": "heiswayi", "repo": "heiswayi/thinkspace", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/heiswayi/thinkspace", "demo_url": "https://heiswayi.github.io/thinkspace/", - "stars": 443, - "forks": 326, - "open_issues": 4, + "stars": 540, + "forks": 367, + "open_issues": 3, "last_commit": "2020-11-06T17:56:57Z", "created_at": "2016-06-11T09:31:31Z", "description": "Just another minimalist Jekyll theme which designed for technical writing blog.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/heiswayi-thinkspace-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/heiswayi-thinkspace-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/heiswayi-thinkspace-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/heiswayi-thinkspace.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/heiswayi-thinkspace.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/heiswayi-thinkspace-2x.jpg" } }, - "heliumjk-heliumjk.github.io-master": { - "theme_key": "heliumjk-heliumjk.github.io-master", + "heliumjk-heliumjk.github.io": { + "theme_key": "heliumjk-heliumjk.github.io", "file": "jekyll-helium-theme.md", "name": "heliumjk.github.io", "title": "Helium Jekyll", "github_username": "heliumjk", "repo": "heliumjk/heliumjk.github.io", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/heliumjk/heliumjk.github.io", "demo_url": "https://heliumjk.github.io/", - "stars": 82, - "forks": 120, + "stars": 97, + "forks": 138, "open_issues": 0, - "last_commit": "2020-12-15T18:45:58Z", + "last_commit": "2021-07-17T21:06:09Z", "created_at": "2017-10-07T14:59:13Z", "description": "Bootstrap 4 responsive Jekyll Theme.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/heliumjk-heliumjk.github.io-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/heliumjk-heliumjk.github.io-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/heliumjk-heliumjk.github.io-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/heliumjk-heliumjk.github.io.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/heliumjk-heliumjk.github.io.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/heliumjk-heliumjk.github.io-2x.jpg" } }, - "hellocosmin-gridsome-starter-bleda-master": { - "theme_key": "hellocosmin-gridsome-starter-bleda-master", + "hellocosmin-gridsome-starter-bleda": { + "theme_key": "hellocosmin-gridsome-starter-bleda", "file": "bleda.md", "name": "gridsome-starter-bleda", "title": "Gridsome Bleda", "github_username": "cossssmin", "repo": "cossssmin/gridsome-starter-bleda", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/cossssmin/gridsome-starter-bleda", "demo_url": "https://gridsome-starter-bleda.netlify.com/", - "stars": 173, - "forks": 59, + "stars": 177, + "forks": 62, "open_issues": 1, "last_commit": "2020-10-20T12:29:54Z", "created_at": "2019-03-04T14:14:31Z", "description": "Gridsome blog starter, built with Tailwind CSS", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/hellocosmin-gridsome-starter-bleda-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hellocosmin-gridsome-starter-bleda-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hellocosmin-gridsome-starter-bleda-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/hellocosmin-gridsome-starter-bleda.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hellocosmin-gridsome-starter-bleda.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hellocosmin-gridsome-starter-bleda-2x.jpg" } }, - "hemangsk-devjournal-master": { - "theme_key": "hemangsk-devjournal-master", + "hemangsk-devjournal": { + "theme_key": "hemangsk-devjournal", "file": "jekyll-devjournal.md", "name": "DevJournal", "title": "DevJournal", "github_username": "hemangsk", "repo": "hemangsk/DevJournal", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/hemangsk/DevJournal", "demo_url": "https://hemangsk.github.io/DevJournal", "stars": 101, - "forks": 90, + "forks": 91, "open_issues": 1, "last_commit": "2018-06-25T16:43:24Z", "created_at": "2016-05-13T08:22:12Z", "description": "Jekyll theme for developers! :computer:", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/hemangsk-devjournal-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hemangsk-devjournal-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hemangsk-devjournal-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/hemangsk-devjournal.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hemangsk-devjournal.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hemangsk-devjournal-2x.jpg" } }, - "hemangsk-gravity-master": { - "theme_key": "hemangsk-gravity-master", + "hemangsk-gravity": { + "theme_key": "hemangsk-gravity", "file": "jekyll-gravity.md", "name": "Gravity", "title": "Gravity", "github_username": "hemangsk", "repo": "hemangsk/Gravity", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/hemangsk/Gravity", "demo_url": "https://hemangsk.github.io/Gravity", - "stars": 433, - "forks": 261, + "stars": 453, + "forks": 258, "open_issues": 2, "last_commit": "2018-04-29T21:40:06Z", "created_at": "2016-03-30T20:26:09Z", "description": "Minimal is the new cool. ", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/hemangsk-gravity-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hemangsk-gravity-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hemangsk-gravity-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/hemangsk-gravity.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hemangsk-gravity.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hemangsk-gravity-2x.jpg" } }, - "hemangsk-safarnama-master": { - "theme_key": "hemangsk-safarnama-master", + "hemangsk-safarnama": { + "theme_key": "hemangsk-safarnama", "file": "jekyll-safarnama.md", "name": "safarnama", "title": "Safarnama", "github_username": "hemangsk", "repo": "hemangsk/safarnama", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/hemangsk/safarnama", "demo_url": "https://hemangsk.github.io/safarnama", - "stars": 5, - "forks": 10, + "stars": 6, + "forks": 9, "open_issues": 0, "last_commit": "2016-06-06T03:35:44Z", "created_at": "2016-05-21T11:02:17Z", "description": "Blogging for the free flying spirits :snowflake: :sunny: :thought_balloon:", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/hemangsk-safarnama-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hemangsk-safarnama-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hemangsk-safarnama-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/hemangsk-safarnama.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hemangsk-safarnama.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hemangsk-safarnama-2x.jpg" } }, - "henryhuang-hexo-theme-aloha-master": { - "theme_key": "henryhuang-hexo-theme-aloha-master", + "henryhuang-hexo-theme-aloha": { + "theme_key": "henryhuang-hexo-theme-aloha", "file": "hexo-theme-aloha.md", "name": "hexo-theme-aloha", "title": "Aloha", "github_username": "henryhuang", "repo": "henryhuang/hexo-theme-aloha", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/henryhuang/hexo-theme-aloha", "demo_url": "https://huangyijie.com/", - "stars": 66, - "forks": 26, + "stars": 68, + "forks": 24, "open_issues": 4, "last_commit": "2019-10-06T12:43:46Z", "created_at": "2016-08-27T16:11:12Z", "description": "A hexo theme, use semantic ui.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/henryhuang-hexo-theme-aloha-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/henryhuang-hexo-theme-aloha-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/henryhuang-hexo-theme-aloha-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/henryhuang-hexo-theme-aloha.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/henryhuang-hexo-theme-aloha.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/henryhuang-hexo-theme-aloha-2x.jpg" } }, - "henrythemes-jekyll-book-theme-master": { - "theme_key": "henrythemes-jekyll-book-theme-master", + "henrythemes-jekyll-book-theme": { + "theme_key": "henrythemes-jekyll-book-theme", "file": "jekyll-drjekyll-classics-book.md", "name": "jekyll-book-theme", "title": "Dr Jekyll's Classics Book", "github_username": "henrythemes", "repo": "henrythemes/jekyll-book-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/henrythemes/jekyll-book-theme", "demo_url": "https://henrythemes.github.io/jekyll-book-theme/", "stars": 26, - "forks": 5, + "forks": 9, "open_issues": 1, "last_commit": "2016-02-13T16:07:11Z", "created_at": "2015-07-16T17:50:43Z", "description": "jekyll starter theme for classic books (ex. Strange Case of Dr. Jekyll and Mr. Hyde by Robert Louis Stevenson)", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/henrythemes-jekyll-book-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/henrythemes-jekyll-book-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/henrythemes-jekyll-book-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/henrythemes-jekyll-book-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/henrythemes-jekyll-book-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/henrythemes-jekyll-book-theme-2x.jpg" } }, - "henrythemes-jekyll-bootstrap-theme-master": { - "theme_key": "henrythemes-jekyll-bootstrap-theme-master", + "henrythemes-jekyll-bootstrap-theme": { + "theme_key": "henrythemes-jekyll-bootstrap-theme", "file": "jekyll-drjekyll-bootstrap.md", "name": "jekyll-bootstrap-theme", "title": "Dr Jekyll's Bootstrap", "github_username": "henrythemes", "repo": "henrythemes/jekyll-bootstrap-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/henrythemes/jekyll-bootstrap-theme", "demo_url": "https://henrythemes.github.io/jekyll-bootstrap-theme/", - "stars": 54, - "forks": 81, + "stars": 55, + "forks": 91, "open_issues": 1, "last_commit": "2020-10-15T08:01:41Z", "created_at": "2015-01-30T17:48:11Z", "description": "jekyll starter theme w/ bootstrap (sass version)", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/henrythemes-jekyll-bootstrap-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/henrythemes-jekyll-bootstrap-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/henrythemes-jekyll-bootstrap-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/henrythemes-jekyll-bootstrap-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/henrythemes-jekyll-bootstrap-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/henrythemes-jekyll-bootstrap-theme-2x.jpg" } }, - "henrythemes-jekyll-minimal-theme-master": { - "theme_key": "henrythemes-jekyll-minimal-theme-master", + "henrythemes-jekyll-minimal-theme": { + "theme_key": "henrythemes-jekyll-minimal-theme", "file": "jekyll-drjekyll-minimal.md", "name": "jekyll-minimal-theme", "title": "Dr Jekyll's Minimal", "github_username": "henrythemes", "repo": "henrythemes/jekyll-minimal-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/henrythemes/jekyll-minimal-theme", "demo_url": "https://henrythemes.github.io/jekyll-minimal-theme/", - "stars": 92, - "forks": 69, + "stars": 95, + "forks": 68, "open_issues": 0, "last_commit": "2016-11-15T08:24:00Z", "created_at": "2015-02-01T09:36:30Z", "description": "jekyll minimal theme (for blog posts with archive and feed)", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/henrythemes-jekyll-minimal-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/henrythemes-jekyll-minimal-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/henrythemes-jekyll-minimal-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/henrythemes-jekyll-minimal-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/henrythemes-jekyll-minimal-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/henrythemes-jekyll-minimal-theme-2x.jpg" + } + }, + "henrythemes-jekyll-starter-theme": { + "theme_key": "planetjekyll-jekyll-starter-theme", + "file": "jekyll-planetjekyll-starter.md", + "name": "jekyll-starter-theme", + "title": "Planet Jekyll's Starter (Minimal)", + "github_username": "henrythemes", + "repo": "henrythemes/jekyll-starter-theme", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/henrythemes/jekyll-starter-theme", + "demo_url": "https://planetjekyll.github.io/jekyll-starter-theme/", + "stars": 30, + "forks": 64, + "open_issues": 0, + "last_commit": "2017-01-11T05:35:17Z", + "created_at": "2015-08-08T14:36:05Z", + "description": "jekyll starter theme - minimial", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/planetjekyll-jekyll-starter-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/planetjekyll-jekyll-starter-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/planetjekyll-jekyll-starter-theme-2x.jpg" } }, - "himali-patel-myclicks-master": { - "theme_key": "himali-patel-myclicks-master", + "himali-patel-myclicks": { + "theme_key": "himali-patel-myclicks", "file": "gatsby-myclicks.md", "name": "MyClicks", "title": "MyClicks", "github_username": "himali-patel", "repo": "himali-patel/MyClicks", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/himali-patel/MyClicks", "demo_url": "https://myclicks.netlify.com", - "stars": 7, + "stars": 6, "forks": 9, - "open_issues": 9, + "open_issues": 27, "last_commit": "2019-07-27T06:53:08Z", "created_at": "2019-03-14T09:23:14Z", "description": "Portfolio with gatsby and contentful", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/himali-patel-myclicks-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/himali-patel-myclicks-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/himali-patel-myclicks-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/himali-patel-myclicks.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/himali-patel-myclicks.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/himali-patel-myclicks-2x.jpg" } }, - "histaff-website-static-master": { - "theme_key": "histaff-website-static-master", + "histaff-website-static": { + "theme_key": "histaff-website-static", "file": "gatsby-website-static.md", "name": "website-static", "title": "Website Static", "github_username": "histaff", "repo": "histaff/website-static", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/histaff/website-static", "demo_url": "https://histaff.io/", - "stars": 84, - "forks": 43, - "open_issues": 0, + "stars": 100, + "forks": 46, + "open_issues": 18, "last_commit": "2020-12-19T20:52:32Z", "created_at": "2019-06-04T16:34:12Z", "description": null, - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/histaff-website-static-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/histaff-website-static-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/histaff-website-static-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/histaff-website-static.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/histaff-website-static.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/histaff-website-static-2x.jpg" } }, - "hmfaysal-hmfaysal-omega-theme-gh-pages": { - "theme_key": "hmfaysal-hmfaysal-omega-theme-gh-pages", + "hmfaysal-hmfaysal-omega-theme": { + "theme_key": "hmfaysal-hmfaysal-omega-theme", "file": "jekyll-hmfaysal-omega-theme.md", "name": "hmfaysal-omega-theme", "title": "HMFAYSAL OMEGA Theme", "github_username": "hmfaysal", "repo": "hmfaysal/hmfaysal-omega-theme", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/hmfaysal/hmfaysal-omega-theme", "demo_url": "https://hmfaysal.github.io/hmfaysal-omega-theme/", - "stars": 324, - "forks": 431, + "stars": 325, + "forks": 429, "open_issues": 6, "last_commit": "2016-08-31T02:03:41Z", "created_at": "2014-01-12T20:13:02Z", "description": "HMFAYSAL OMEGA is a minimalist, beautiful, responsive theme for Jekyll designed for writers who want their content to take front and center.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/hmfaysal-hmfaysal-omega-theme-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hmfaysal-hmfaysal-omega-theme-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hmfaysal-hmfaysal-omega-theme-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/hmfaysal-hmfaysal-omega-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hmfaysal-hmfaysal-omega-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hmfaysal-hmfaysal-omega-theme-2x.jpg" } }, - "hmfaysal-jekyll-hmfaysal-theme-master": { - "theme_key": "hmfaysal-jekyll-hmfaysal-theme-master", + "hmfaysal-jekyll-hmfaysal-theme": { + "theme_key": "hmfaysal-jekyll-hmfaysal-theme", "file": "jekyll-hmfaysal-theme.md", "name": "Jekyll-HMFAYSAL-Theme", "title": "HMFAYSAL Theme", "github_username": "hmfaysal", "repo": "hmfaysal/Jekyll-HMFAYSAL-Theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/hmfaysal/Jekyll-HMFAYSAL-Theme", "demo_url": "https://hmfaysal.github.io/Jekyll-HMFAYSAL-Theme/", - "stars": 11, - "forks": 13, + "stars": 12, + "forks": 14, "open_issues": 0, "last_commit": "2013-12-16T22:16:10Z", "created_at": "2013-12-13T19:21:10Z", "description": "A Bold Theme for Jekyll. See demo at", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/hmfaysal-jekyll-hmfaysal-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hmfaysal-jekyll-hmfaysal-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hmfaysal-jekyll-hmfaysal-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/hmfaysal-jekyll-hmfaysal-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hmfaysal-jekyll-hmfaysal-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hmfaysal-jekyll-hmfaysal-theme-2x.jpg" } }, - "hmfaysal-notepad-gh-pages": { - "theme_key": "hmfaysal-notepad-gh-pages", + "hmfaysal-notepad": { + "theme_key": "hmfaysal-notepad", "file": "jekyll-hmfaysal-notepad-theme.md", "name": "Notepad", "title": "HMFAYSAL Notepad Theme", "github_username": "hmfaysal", "repo": "hmfaysal/Notepad", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/hmfaysal/Notepad", - "demo_url": "http://www.hossainmohdfaysal.com/Notepad/", + "demo_url": "https://www.hossainmohdfaysal.com/Notepad/", "stars": 261, - "forks": 335, + "forks": 323, "open_issues": 25, "last_commit": "2014-08-29T17:16:38Z", "created_at": "2014-07-18T16:57:01Z", "description": "Notepad is a Jekyll theme which is very simple, clean and beautiful", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/hmfaysal-notepad-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hmfaysal-notepad-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hmfaysal-notepad-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/hmfaysal-notepad.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hmfaysal-notepad.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hmfaysal-notepad-2x.jpg" } }, - "hoffli-saigon-jekyll-theme-master": { - "theme_key": "hoffli-saigon-jekyll-theme-master", + "hoffli-saigon-jekyll-theme": { + "theme_key": "hoffli-saigon-jekyll-theme", "file": "jekyll-saigon.md", "name": "saigon-jekyll-theme", "title": "Saigon", "github_username": "hoffli", "repo": "hoffli/saigon-jekyll-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/hoffli/saigon-jekyll-theme", - "demo_url": "http://www.18a-saigon.com/", - "stars": 25, - "forks": 39, + "demo_url": "https://www.18a-saigon.com/", + "stars": 27, + "forks": 41, "open_issues": 1, "last_commit": "2016-02-11T08:54:00Z", "created_at": "2016-02-11T08:16:51Z", "description": "Jekyll mansonry theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/hoffli-saigon-jekyll-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hoffli-saigon-jekyll-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hoffli-saigon-jekyll-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/hoffli-saigon-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hoffli-saigon-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hoffli-saigon-jekyll-theme-2x.jpg" + } + }, + "holger1411-11straps": { + "theme_key": "holger1411-11straps", + "file": "11straps.md", + "name": "11straps", + "title": "11straps", + "github_username": "holger1411", + "repo": "holger1411/11straps", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/holger1411/11straps", + "demo_url": "https://11straps-demo.netlify.app/", + "stars": 91, + "forks": 18, + "open_issues": 6, + "last_commit": "2022-08-18T11:56:51Z", + "created_at": "2020-10-30T08:31:23Z", + "description": "11straps is a static website boilerplate. It combines Eleventy with Bootstrap 5. 🎉 ", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/holger1411-11straps.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/holger1411-11straps.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/holger1411-11straps-2x.jpg" + } + }, + "holger1411-brook-dev": { + "theme_key": "holger1411-brook-dev", + "file": "brook.md", + "name": "brook-dev", + "title": "Brook", + "github_username": "holger1411", + "repo": "holger1411/brook-dev", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/holger1411/brook-dev", + "demo_url": "https://brooks-html-template.netlify.app/", + "stars": 7, + "forks": 0, + "open_issues": 6, + "last_commit": "2022-09-23T07:09:48Z", + "created_at": "2022-09-21T06:41:42Z", + "description": null, + "images": { + "hires": "https://www.jamstackthemes.dev/capture/holger1411-brook-dev.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/holger1411-brook-dev.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/holger1411-brook-dev-2x.jpg" } }, - "holman-left-gh-pages": { - "theme_key": "holman-left-gh-pages", + "holman-left": { + "theme_key": "holman-left", "file": "jekyll-left-theme.md", "name": "left", "title": "Left", "github_username": "holman", "repo": "holman/left", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/holman/left", "demo_url": "https://zachholman.com/left/", - "stars": 526, - "forks": 502, + "stars": 533, + "forks": 493, "open_issues": 0, "last_commit": "2016-05-25T07:11:48Z", "created_at": "2012-12-12T00:18:54Z", "description": "Left is a clean, whitespace-happy layout for Jekyll.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/holman-left-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/holman-left-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/holman-left-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/holman-left.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/holman-left.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/holman-left-2x.jpg" } }, - "htdvisser-hugo-base16-theme-master": { - "theme_key": "htdvisser-hugo-base16-theme-master", + "htdvisser-hugo-base16-theme": { + "theme_key": "htdvisser-hugo-base16-theme", "file": "hugo-base16-theme.md", "name": "hugo-base16-theme", "title": "Base16", "github_username": "htdvisser", "repo": "htdvisser/hugo-base16-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/htdvisser/hugo-base16-theme", "demo_url": "https://themes.gohugo.io/theme/base16/", - "stars": 91, - "forks": 53, + "stars": 106, + "forks": 56, "open_issues": 4, - "last_commit": "2020-12-19T15:49:50Z", + "last_commit": "2021-04-24T14:54:29Z", "created_at": "2015-12-09T16:01:53Z", "description": "Hugo theme with base16 eighties colorscheme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/htdvisser-hugo-base16-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/htdvisser-hugo-base16-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/htdvisser-hugo-base16-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/htdvisser-hugo-base16-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/htdvisser-hugo-base16-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/htdvisser-hugo-base16-theme-2x.jpg" } }, - "htr3n-hyde-hyde-master": { - "theme_key": "htr3n-hyde-hyde-master", + "htr3n-hyde-hyde": { + "theme_key": "htr3n-hyde-hyde", "file": "hyde-hyde.md", "name": "hyde-hyde", "title": "Hyde Hyde", "github_username": "htr3n", "repo": "htr3n/hyde-hyde", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/htr3n/hyde-hyde", "demo_url": "https://themes.gohugo.io/theme/hyde-hyde/", - "stars": 215, - "forks": 193, + "stars": 226, + "forks": 209, "open_issues": 17, - "last_commit": "2020-11-22T23:30:32Z", + "last_commit": "2021-04-19T06:10:05Z", "created_at": "2018-01-20T06:37:20Z", "description": "A cool theme inspired by spf13's Hyde theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/htr3n-hyde-hyde-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/htr3n-hyde-hyde-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/htr3n-hyde-hyde-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/htr3n-hyde-hyde.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/htr3n-hyde-hyde.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/htr3n-hyde-hyde-2x.jpg" + } + }, + "hugo-sid-hugo-blog-awesome": { + "theme_key": "hugo-sid-hugo-blog-awesome", + "file": "hugo-blog-awesome.md", + "name": "hugo-blog-awesome", + "title": "Hugo blog awesome", + "github_username": "hugo-sid", + "repo": "hugo-sid/hugo-blog-awesome", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/hugo-sid/hugo-blog-awesome", + "demo_url": "https://hugo-blog-awesome.netlify.app/", + "stars": 39, + "forks": 20, + "open_issues": 0, + "last_commit": "2023-04-01T15:59:03Z", + "created_at": "2023-02-14T05:18:30Z", + "description": "Fast, minimal blog with dark mode support.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/hugo-sid-hugo-blog-awesome.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hugo-sid-hugo-blog-awesome.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hugo-sid-hugo-blog-awesome-2x.jpg" } }, - "hugocarreira-jekyll-materializecss-gh-pages": { - "theme_key": "hugocarreira-jekyll-materializecss-gh-pages", + "hugocarreira-jekyll-materializecss": { + "theme_key": "hugocarreira-jekyll-materializecss", "file": "jekyll-materialize-hg.md", "name": "jekyll-materializecss", "title": "MaterializeHG Theme", "github_username": "hugocarreira", "repo": "hugocarreira/jekyll-materializecss", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/hugocarreira/jekyll-materializecss", "demo_url": "https://hugocarreira.github.io/jekyll-materializecss", - "stars": 21, + "stars": 23, "forks": 12, "open_issues": 0, "last_commit": "2016-12-29T16:05:55Z", "created_at": "2016-05-31T04:15:04Z", "description": "a simple theme for Jekyll using Materializecss", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/hugocarreira-jekyll-materializecss-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hugocarreira-jekyll-materializecss-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hugocarreira-jekyll-materializecss-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/hugocarreira-jekyll-materializecss.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hugocarreira-jekyll-materializecss.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hugocarreira-jekyll-materializecss-2x.jpg" } }, - "hugocarreira-jekyll-vision-casper-theme-gh-pages": { - "theme_key": "hugocarreira-jekyll-vision-casper-theme-gh-pages", + "hugocarreira-jekyll-vision-casper-theme": { + "theme_key": "hugocarreira-jekyll-vision-casper-theme", "file": "jekyll-vision-casper-theme.md", "name": "jekyll-vision-casper-theme", "title": "Jekyll Vision Casper Theme", "github_username": "hugocarreira", "repo": "hugocarreira/jekyll-vision-casper-theme", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/hugocarreira/jekyll-vision-casper-theme", "demo_url": "https://hugocarreira.github.io/jekyll-vision-casper-theme/", "stars": 7, - "forks": 12, + "forks": 13, "open_issues": 5, "last_commit": "2017-03-06T16:49:14Z", "created_at": "2016-11-26T05:26:16Z", "description": ":construction: work in progress - only my simple vision of casper theme adapted to jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/hugocarreira-jekyll-vision-casper-theme-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hugocarreira-jekyll-vision-casper-theme-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hugocarreira-jekyll-vision-casper-theme-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/hugocarreira-jekyll-vision-casper-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hugocarreira-jekyll-vision-casper-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hugocarreira-jekyll-vision-casper-theme-2x.jpg" } }, - "hugoferreira-papyrus-theme-master": { - "theme_key": "hugoferreira-papyrus-theme-master", + "hugoferreira-papyrus-theme": { + "theme_key": "hugoferreira-papyrus-theme", "file": "jekyll-papyrus-theme.md", "name": "papyrus-theme", "title": "Papyrus", "github_username": "hugoferreira", "repo": "hugoferreira/papyrus-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/hugoferreira/papyrus-theme", "demo_url": "https://hugosereno.eu", - "stars": 94, - "forks": 47, - "open_issues": 8, + "stars": 108, + "forks": 54, + "open_issues": 9, "last_commit": "2016-12-05T17:02:18Z", "created_at": "2016-11-05T22:24:58Z", "description": "Papyrus Jekyll Theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/hugoferreira-papyrus-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hugoferreira-papyrus-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hugoferreira-papyrus-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/hugoferreira-papyrus-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/hugoferreira-papyrus-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/hugoferreira-papyrus-theme-2x.jpg" } }, - "humrochagf-colordrop-master": { - "theme_key": "humrochagf-colordrop-master", + "humrochagf-colordrop": { + "theme_key": "humrochagf-colordrop", "file": "hugo-colordrop.md", "name": "colordrop", "title": "ColorDrop", "github_username": "humrochagf", "repo": "humrochagf/colordrop", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/humrochagf/colordrop", "demo_url": "https://humberto.io/", - "stars": 9, - "forks": 3, + "stars": 18, + "forks": 7, "open_issues": 2, - "last_commit": "2020-10-30T14:55:05Z", + "last_commit": "2022-12-09T13:59:06Z", "created_at": "2019-07-24T01:14:27Z", "description": "Customizable, monochromatic and minimalist hugo theme for personal blogs", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/humrochagf-colordrop-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/humrochagf-colordrop-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/humrochagf-colordrop-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/humrochagf-colordrop.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/humrochagf-colordrop.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/humrochagf-colordrop-2x.jpg" } }, - "huweihuang-hexo-theme-huweihuang-master": { - "theme_key": "huweihuang-hexo-theme-huweihuang-master", + "huweihuang-hexo-theme-huweihuang": { + "theme_key": "huweihuang-hexo-theme-huweihuang", "file": "hexo-theme-huweihuang.md", "name": "hexo-theme-huweihuang", "title": "HuWeihuang", "github_username": "huweihuang", "repo": "huweihuang/hexo-theme-huweihuang", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/huweihuang/hexo-theme-huweihuang", "demo_url": "https://www.huweihuang.com/", - "stars": 264, - "forks": 111, - "open_issues": 32, - "last_commit": "2019-08-17T03:43:34Z", + "stars": 281, + "forks": 109, + "open_issues": 29, + "last_commit": "2021-03-18T11:55:45Z", "created_at": "2017-10-22T03:07:50Z", "description": " Ported theme of Hux Blog by YuHsuan, Modified by Hu Weihuang", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/huweihuang-hexo-theme-huweihuang-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/huweihuang-hexo-theme-huweihuang-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/huweihuang-hexo-theme-huweihuang-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/huweihuang-hexo-theme-huweihuang.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/huweihuang-hexo-theme-huweihuang.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/huweihuang-hexo-theme-huweihuang-2x.jpg" } }, - "huyb1991-hugo-lamp-master": { - "theme_key": "huyb1991-hugo-lamp-master", + "huyb1991-hugo-lamp": { + "theme_key": "huyb1991-hugo-lamp", "file": "hugo-lamp.md", "name": "hugo-lamp", "title": "Hugo Lamp", "github_username": "huyb1991", "repo": "huyb1991/hugo-lamp", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/huyb1991/hugo-lamp", "demo_url": "https://themes.gohugo.io/theme/hugo-lamp/", - "stars": 54, - "forks": 29, - "open_issues": 4, + "stars": 53, + "forks": 30, + "open_issues": 12, "last_commit": "2020-07-16T07:50:24Z", "created_at": "2018-05-28T08:10:44Z", "description": "A light Hugo AMP responsive theme for blogger ⚡.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/huyb1991-hugo-lamp-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/huyb1991-hugo-lamp-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/huyb1991-hugo-lamp-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/huyb1991-hugo-lamp.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/huyb1991-hugo-lamp.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/huyb1991-hugo-lamp-2x.jpg" } }, - "huyingjie-hexo-theme-a-rsnippet-master": { - "theme_key": "huyingjie-hexo-theme-a-rsnippet-master", + "huyingjie-hexo-theme-a-rsnippet": { + "theme_key": "huyingjie-hexo-theme-a-rsnippet", "file": "hexo-theme-A-RSnippet.md", "name": "hexo-theme-A-RSnippet", "title": "A-RSnippet", "github_username": "huyingjie", "repo": "huyingjie/hexo-theme-A-RSnippet", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/huyingjie/hexo-theme-A-RSnippet", "demo_url": "https://arsnippet.yingjiehu.com/", - "stars": 69, - "forks": 24, + "stars": 68, + "forks": 22, "open_issues": 5, "last_commit": "2018-01-30T20:20:14Z", "created_at": "2018-01-21T18:18:25Z", "description": "🦀 A Responsive Theme for Hexo 🦀 ", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/huyingjie-hexo-theme-a-rsnippet-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/huyingjie-hexo-theme-a-rsnippet-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/huyingjie-hexo-theme-a-rsnippet-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/huyingjie-hexo-theme-a-rsnippet.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/huyingjie-hexo-theme-a-rsnippet.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/huyingjie-hexo-theme-a-rsnippet-2x.jpg" } }, - "icyris-hugo-theme-yuki-master": { - "theme_key": "icyris-hugo-theme-yuki-master", - "file": "hugo-theme-yuki.md", - "name": "hugo-theme-yuki", - "title": "Yuki", - "github_username": "iCyris", - "repo": "iCyris/hugo-theme-yuki", + "huynguyez-alway5.github.io": { + "theme_key": "minhhuy150894-minhhuy150894.github.io", + "file": "jekyll-HPSTRversion2.md", + "name": "alway5.github.io", + "title": "HPSTR Version 2 - Vietnamese", + "github_username": "huynguyez", + "repo": "huynguyez/alway5.github.io", "branch": "master", - "github_url": "https://github.com/iCyris/hugo-theme-yuki", - "demo_url": "https://themes.gohugo.io/theme/hugo-theme-yuki/", - "stars": 17, - "forks": 9, + "default_branch": "master", + "github_url": "https://github.com/huynguyez/alway5.github.io", + "demo_url": "https://minhhuy150894.github.io", + "stars": 18, + "forks": 40, "open_issues": 0, - "last_commit": "2019-12-15T09:43:11Z", - "created_at": "2019-01-03T17:03:23Z", - "description": "❄️ She is as pure as the snow", - "stale": true, + "last_commit": "2018-02-07T04:55:13Z", + "created_at": "2015-05-11T13:24:51Z", + "description": null, "images": { - "hires": "https://www.jamstackthemes.dev/capture/icyris-hugo-theme-yuki-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/icyris-hugo-theme-yuki-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/icyris-hugo-theme-yuki-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/minhhuy150894-minhhuy150894.github.io.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/minhhuy150894-minhhuy150894.github.io.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/minhhuy150894-minhhuy150894.github.io-2x.jpg" } }, - "ifedyukin-mekyll-master": { - "theme_key": "ifedyukin-mekyll-master", - "file": "jekyll-mekyll-theme.md", - "name": "Mekyll", - "title": "Mekyll", - "github_username": "ifedyukin", - "repo": "ifedyukin/Mekyll", + "hydecorp-hydejack": { + "theme_key": "qwtel-hydejack", + "file": "jekyll-hydejack-theme.md", + "name": "hydejack", + "title": "Hydejack", + "github_username": "hydecorp", + "repo": "hydecorp/hydejack", "branch": "master", - "github_url": "https://github.com/ifedyukin/Mekyll", - "demo_url": "https://ifedyukin.github.io/Mekyll", - "stars": 14, - "forks": 28, - "open_issues": 3, - "last_commit": "2018-10-02T16:15:11Z", - "created_at": "2017-03-27T10:27:29Z", - "description": "Medium style theme for Jekyll", - "stale": true, + "default_branch": "master", + "github_url": "https://github.com/hydecorp/hydejack", + "demo_url": "https://qwtel.com/hydejack/", + "stars": 1121, + "forks": 715, + "open_issues": 30, + "last_commit": "2022-02-07T04:23:49Z", + "created_at": "2016-02-26T12:45:54Z", + "description": "A boutique Jekyll theme for hackers, nerds, and academics", "images": { - "hires": "https://www.jamstackthemes.dev/capture/ifedyukin-mekyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ifedyukin-mekyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ifedyukin-mekyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/qwtel-hydejack.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/qwtel-hydejack.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/qwtel-hydejack-2x.jpg" } }, - "ijsucceed-onepress-master": { - "theme_key": "ijsucceed-onepress-master", - "file": "hugo-onepress.md", - "name": "onepress", - "title": "Onepress", - "github_username": "ijsucceed", - "repo": "ijsucceed/onepress", + "hygraph-gatsby-graphcms-tailwindcss-example": { + "theme_key": "graphcms-gatsby-graphcms-tailwindcss-example", + "file": "gatsby-graphcms-tailwindcss-example.md", + "name": "gatsby-graphcms-tailwindcss-example", + "title": "Gatsby Graphcms Tailwindcss Example", + "github_username": "hygraph", + "repo": "hygraph/gatsby-graphcms-tailwindcss-example", "branch": "master", - "github_url": "https://github.com/ijsucceed/onepress", - "demo_url": "https://themes.gohugo.io/theme/onepress/", - "stars": 19, - "forks": 4, + "default_branch": "master", + "github_url": "https://github.com/hygraph/gatsby-graphcms-tailwindcss-example", + "demo_url": "https://graphcms.github.io/gatsby-graphcms-tailwindcss-example/", + "stars": 14, + "forks": 4, + "open_issues": 1, + "last_commit": "2019-02-08T20:16:33Z", + "created_at": "2018-09-19T13:00:05Z", + "description": null, + "images": { + "hires": "https://www.jamstackthemes.dev/capture/graphcms-gatsby-graphcms-tailwindcss-example.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/graphcms-gatsby-graphcms-tailwindcss-example.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/graphcms-gatsby-graphcms-tailwindcss-example-2x.jpg" + } + }, + "hygraph-gatsby-starter-hygraph-blog": { + "theme_key": "graphcms-gatsby-starter-graphcms-blog", + "file": "graphcms-blog.md", + "name": "gatsby-starter-hygraph-blog", + "title": "GraphCMS Blog", + "github_username": "hygraph", + "repo": "hygraph/gatsby-starter-hygraph-blog", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/hygraph/gatsby-starter-hygraph-blog", + "demo_url": "https://blog.withheadlesscms.com/", + "stars": 66, + "forks": 26, + "open_issues": 15, + "last_commit": "2022-12-14T18:03:58Z", + "created_at": "2020-07-28T09:54:17Z", + "description": "Gatsby starter for creating a basic blog with Hygraph", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/graphcms-gatsby-starter-graphcms-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/graphcms-gatsby-starter-graphcms-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/graphcms-gatsby-starter-graphcms-blog-2x.jpg" + } + }, + "hygraph-hygraph-commerce-starter": { + "theme_key": "graphcms-graphcms-commerce-starter", + "file": "graphcms-commerce.md", + "name": "hygraph-commerce-starter", + "title": "GraphCMS eCommerce Storefront", + "github_username": "hygraph", + "repo": "hygraph/hygraph-commerce-starter", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/hygraph/hygraph-commerce-starter", + "demo_url": "https://commerce.withheadlesscms.com/", + "stars": 141, + "forks": 56, + "open_issues": 7, + "last_commit": "2022-09-20T11:01:26Z", + "created_at": "2021-01-28T15:24:09Z", + "description": null, + "images": { + "hires": "https://www.jamstackthemes.dev/capture/graphcms-graphcms-commerce-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/graphcms-graphcms-commerce-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/graphcms-graphcms-commerce-starter-2x.jpg" + } + }, + "hygraph-reference-marketing-website": { + "theme_key": "graphcms-reference-marketing-website", + "file": "graphcms-marketing-website.md", + "name": "reference-marketing-website", + "title": "GraphCMS Marketing Website", + "github_username": "hygraph", + "repo": "hygraph/reference-marketing-website", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/hygraph/reference-marketing-website", + "demo_url": "https://marketing-websites.withheadlesscms.com/", + "stars": 100, + "forks": 39, + "open_issues": 15, + "last_commit": "2022-09-02T17:41:06Z", + "created_at": "2020-05-26T10:38:33Z", + "description": "Next.js starter for creating a SaaS Marketing Website with Hygraph ⚡️", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/graphcms-reference-marketing-website.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/graphcms-reference-marketing-website.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/graphcms-reference-marketing-website-2x.jpg" + } + }, + "icyris-hugo-theme-yuki": { + "theme_key": "icyris-hugo-theme-yuki", + "file": "hugo-theme-yuki.md", + "name": "hugo-theme-yuki", + "title": "Yuki", + "github_username": "iCyris", + "repo": "iCyris/hugo-theme-yuki", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/iCyris/hugo-theme-yuki", + "demo_url": "https://themes.gohugo.io/theme/hugo-theme-yuki/", + "stars": 20, + "forks": 10, + "open_issues": 0, + "last_commit": "2019-12-15T09:43:11Z", + "created_at": "2019-01-03T17:03:23Z", + "description": "❄️ She is as pure as the snow", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/icyris-hugo-theme-yuki.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/icyris-hugo-theme-yuki.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/icyris-hugo-theme-yuki-2x.jpg" + } + }, + "ifedyukin-mekyll": { + "theme_key": "ifedyukin-mekyll", + "file": "jekyll-mekyll-theme.md", + "name": "Mekyll", + "title": "Mekyll", + "github_username": "ifedyukin", + "repo": "ifedyukin/Mekyll", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/ifedyukin/Mekyll", + "demo_url": "https://ifedyukin.github.io/Mekyll", + "stars": 17, + "forks": 24, + "open_issues": 0, + "last_commit": "2018-10-02T16:15:11Z", + "created_at": "2017-03-27T10:27:29Z", + "description": "Medium style theme for Jekyll", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/ifedyukin-mekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ifedyukin-mekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ifedyukin-mekyll-2x.jpg" + } + }, + "ijjk-notion-blog": { + "theme_key": "ijjk-notion-blog", + "file": "notion-blog.md", + "name": "notion-blog", + "title": "Notion Blog", + "github_username": "ijjk", + "repo": "ijjk/notion-blog", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/ijjk/notion-blog", + "demo_url": "https://github.com/ijjk/notion-blog", + "stars": 2951, + "forks": 371, + "open_issues": 18, + "last_commit": "2021-10-20T05:15:10Z", + "created_at": "2020-01-04T23:19:10Z", + "description": "A Next.js site using new SSG support with a Notion backed blog", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/ijjk-notion-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ijjk-notion-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ijjk-notion-blog-2x.jpg" + } + }, + "ijsucceed-onepress": { + "theme_key": "ijsucceed-onepress", + "file": "hugo-onepress.md", + "name": "onepress", + "title": "Onepress", + "github_username": "ijsucceed", + "repo": "ijsucceed/onepress", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/ijsucceed/onepress", + "demo_url": "https://themes.gohugo.io/theme/onepress/", + "stars": 20, + "forks": 6, "open_issues": 2, "last_commit": "2019-02-07T14:47:46Z", "created_at": "2018-12-19T14:27:31Z", "description": "A simple, clean, and responsive \"Hugo - Static Site Generator\" theme for bloggers", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ijsucceed-onepress-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ijsucceed-onepress-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ijsucceed-onepress-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ijsucceed-onepress.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ijsucceed-onepress.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ijsucceed-onepress-2x.jpg" } }, - "imedadel-gatsby-london-master": { - "theme_key": "imedadel-gatsby-london-master", + "imedadel-gatsby-london": { + "theme_key": "imedadel-gatsby-london", "file": "gatsby-london.md", "name": "gatsby-london", "title": "Gatsby London", "github_username": "ImedAdel", "repo": "ImedAdel/gatsby-london", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ImedAdel/gatsby-london", "demo_url": "https://gatsby-london.netlify.com/", - "stars": 128, - "forks": 56, - "open_issues": 6, + "stars": 158, + "forks": 71, + "open_issues": 19, "last_commit": "2019-11-20T20:47:09Z", "created_at": "2019-05-18T14:17:26Z", "description": "A free, open source, image-concentric starter for GatsbyJS", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/imedadel-gatsby-london-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/imedadel-gatsby-london-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/imedadel-gatsby-london-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/imedadel-gatsby-london.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/imedadel-gatsby-london.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/imedadel-gatsby-london-2x.jpg" } }, - "inded-jekyll_modern-blog-gh-pages": { - "theme_key": "inded-jekyll_modern-blog-gh-pages", + "inded-jekyll_modern-blog": { + "theme_key": "inded-jekyll_modern-blog", "file": "modern-blog.md", "name": "Jekyll_modern-blog", "title": "Modern Blog", "github_username": "inded", "repo": "inded/Jekyll_modern-blog", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/inded/Jekyll_modern-blog", "demo_url": "https://inded.xyz/Jekyll_modern-blog/", - "stars": 234, - "forks": 278, - "open_issues": 9, + "stars": 249, + "forks": 312, + "open_issues": 11, "last_commit": "2017-06-26T18:07:42Z", "created_at": "2015-07-11T17:47:40Z", "description": "A Modern, Clean, Jekyll Blog Layout based from codedrops", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/inded-jekyll_modern-blog-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/inded-jekyll_modern-blog-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/inded-jekyll_modern-blog-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/inded-jekyll_modern-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/inded-jekyll_modern-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/inded-jekyll_modern-blog-2x.jpg" } }, - "insidiousmind-material-bliss-jekyll-theme-master": { - "theme_key": "insidiousmind-material-bliss-jekyll-theme-master", + "insidiousmind-material-bliss-jekyll-theme": { + "theme_key": "insidiousmind-material-bliss-jekyll-theme", "file": "jekyll-materialbliss.md", "name": "material-bliss-jekyll-theme", "title": "Material Bliss", "github_username": "insipx", "repo": "insipx/material-bliss-jekyll-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/insipx/material-bliss-jekyll-theme", "demo_url": "https://code.liquidthink.net", - "stars": 67, - "forks": 40, + "stars": 68, + "forks": 39, + "open_issues": 5, + "last_commit": "2018-06-08T20:42:27Z", + "created_at": "2016-12-29T03:27:05Z", + "description": "A Material Theme for Jekyll created with React, Redux, and React-Router transpiled with Webpack", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/insidiousmind-material-bliss-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/insidiousmind-material-bliss-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/insidiousmind-material-bliss-jekyll-theme-2x.jpg" + } + }, + "insipx-material-bliss-jekyll-theme": { + "theme_key": "insidiousmind-material-bliss-jekyll-theme", + "file": "jekyll-materialbliss.md", + "name": "material-bliss-jekyll-theme", + "title": "Material Bliss", + "github_username": "insipx", + "repo": "insipx/material-bliss-jekyll-theme", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/insipx/material-bliss-jekyll-theme", + "demo_url": "https://code.liquidthink.net", + "stars": 70, + "forks": 44, "open_issues": 5, "last_commit": "2018-06-08T20:42:27Z", "created_at": "2016-12-29T03:27:05Z", "description": "A Material Theme for Jekyll created with React, Redux, and React-Router transpiled with Webpack", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/insidiousmind-material-bliss-jekyll-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/insidiousmind-material-bliss-jekyll-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/insidiousmind-material-bliss-jekyll-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/insidiousmind-material-bliss-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/insidiousmind-material-bliss-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/insidiousmind-material-bliss-jekyll-theme-2x.jpg" } }, - "issydennis-gatsby-snipcart-master": { - "theme_key": "issydennis-gatsby-snipcart-master", + "issydennis-gatsby-snipcart": { + "theme_key": "issydennis-gatsby-snipcart", "file": "gatsby-snipcart.md", "name": "gatsby-snipcart", "title": "Gatsby Snipcart", "github_username": "issydennis", "repo": "issydennis/gatsby-snipcart", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/issydennis/gatsby-snipcart", "demo_url": "https://gatsby-snipcart-starter.netlify.com/", - "stars": 14, - "forks": 17, + "stars": 16, + "forks": 19, "open_issues": 4, "last_commit": "2019-07-22T08:31:23Z", "created_at": "2019-06-19T12:59:10Z", "description": "Gatsby and Snipcart Starter", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/issydennis-gatsby-snipcart-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/issydennis-gatsby-snipcart-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/issydennis-gatsby-snipcart-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/issydennis-gatsby-snipcart.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/issydennis-gatsby-snipcart.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/issydennis-gatsby-snipcart-2x.jpg" } }, - "it-gro-hugo-theme-w3css-basic-master": { - "theme_key": "it-gro-hugo-theme-w3css-basic-master", + "it-gro-hugo-theme-w3css-basic": { + "theme_key": "it-gro-hugo-theme-w3css-basic", "file": "hugo-theme-w3css-basic.md", "name": "hugo-theme-w3css-basic", "title": "W3.CSS Basic", "github_username": "it-gro", "repo": "it-gro/hugo-theme-w3css-basic", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/it-gro/hugo-theme-w3css-basic", "demo_url": "https://it-gro.github.io/hugo-theme-w3css-basic.github.io/", - "stars": 39, - "forks": 20, + "stars": 51, + "forks": 25, "open_issues": 7, - "last_commit": "2019-08-23T06:54:11Z", + "last_commit": "2021-09-05T11:04:42Z", "created_at": "2017-11-08T13:26:44Z", "description": null, - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/it-gro-hugo-theme-w3css-basic-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/it-gro-hugo-theme-w3css-basic-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/it-gro-hugo-theme-w3css-basic-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/it-gro-hugo-theme-w3css-basic.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/it-gro-hugo-theme-w3css-basic.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/it-gro-hugo-theme-w3css-basic-2x.jpg" } }, - "itisbenjamin-nice_blog-master": { - "theme_key": "itisbenjamin-nice_blog-master", + "itisbenjamin-nice_blog": { + "theme_key": "itisbenjamin-nice_blog", "file": "jekyll-nice-blog.md", "name": "Nice_Blog", "title": "Nice Blog", "github_username": "Gabriel-Chen", "repo": "Gabriel-Chen/Nice_Blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Gabriel-Chen/Nice_Blog", "demo_url": "https://itisbenjamin.github.io/Nice_Blog", "stars": 81, - "forks": 54, + "forks": 56, "open_issues": 4, "last_commit": "2018-06-27T16:48:06Z", "created_at": "2016-03-29T12:52:40Z", "description": "A Simple Jakyll Blog Theme.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/itisbenjamin-nice_blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/itisbenjamin-nice_blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/itisbenjamin-nice_blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/itisbenjamin-nice_blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/itisbenjamin-nice_blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/itisbenjamin-nice_blog-2x.jpg" } }, - "itsmeaga1n-minimal-categorized-master": { - "theme_key": "itsmeaga1n-minimal-categorized-master", + "itsmeaga1n-minimal-categorized": { + "theme_key": "itsmeaga1n-minimal-categorized", "file": "minimal-categorized.md", "name": "minimal-categorized", "title": "minimal-categorized", "github_username": "ItsMeaga1n", "repo": "ItsMeaga1n/minimal-categorized", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ItsMeaga1n/minimal-categorized", "demo_url": "https://itsmeaga1n.github.io/minimal-categorized/", - "stars": 0, - "forks": 0, + "stars": 11, + "forks": 13, "open_issues": 0, "last_commit": "2021-01-29T23:05:35Z", "created_at": "2020-09-11T22:55:17Z", "description": "Jekyll minimal-categorized theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/itsmeaga1n-minimal-categorized-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/itsmeaga1n-minimal-categorized-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/itsmeaga1n-minimal-categorized-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/itsmeaga1n-minimal-categorized.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/itsmeaga1n-minimal-categorized.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/itsmeaga1n-minimal-categorized-2x.jpg" } }, - "itsnwa-darkfolio-master": { - "theme_key": "itsnwa-darkfolio-master", + "itsnwa-darkfolio": { + "theme_key": "itsnwa-darkfolio", "file": "darkfolio.md", "name": "darkfolio", "title": "Darkfolio", "github_username": "itsnwa", "repo": "itsnwa/darkfolio", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/itsnwa/darkfolio", "demo_url": "https://darkfolio.netlify.com/", - "stars": 16, - "forks": 10, - "open_issues": 8, - "last_commit": "2020-04-05T07:52:41Z", + "stars": 19, + "forks": 11, + "open_issues": 18, + "last_commit": "2021-04-21T15:44:02Z", "created_at": "2019-08-14T09:55:03Z", "description": "Gridsome portfolio theme (Forestry ready)", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/itsnwa-darkfolio-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/itsnwa-darkfolio-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/itsnwa-darkfolio-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/itsnwa-darkfolio.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/itsnwa-darkfolio.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/itsnwa-darkfolio-2x.jpg" } }, - "itsnwa-gridsome-forestry-starter-master": { - "theme_key": "itsnwa-gridsome-forestry-starter-master", + "itsnwa-gridsome-forestry-starter": { + "theme_key": "itsnwa-gridsome-forestry-starter", "file": "gridsome-forestry-starter.md", "name": "gridsome-forestry-starter", "title": "Gridsome Forestry Starter", "github_username": "itsnwa", "repo": "itsnwa/gridsome-forestry-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/itsnwa/gridsome-forestry-starter", "demo_url": "https://gridsome-forestry.netlify.com", - "stars": 121, - "forks": 68, - "open_issues": 10, - "last_commit": "2020-08-31T08:02:59Z", + "stars": 138, + "forks": 90, + "open_issues": 15, + "last_commit": "2022-02-19T13:04:10Z", "created_at": "2019-01-03T21:54:32Z", "description": "Gridsome starter kit with Forestry (CMS)", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/itsnwa-gridsome-forestry-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/itsnwa-gridsome-forestry-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/itsnwa-gridsome-forestry-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/itsnwa-gridsome-forestry-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/itsnwa-gridsome-forestry-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/itsnwa-gridsome-forestry-starter-2x.jpg" + } + }, + "itspatrq-minimal-categorized": { + "theme_key": "itsmeaga1n-minimal-categorized", + "file": "minimal-categorized.md", + "name": "minimal-categorized", + "title": "minimal-categorized", + "github_username": "ItsPatrq", + "repo": "ItsPatrq/minimal-categorized", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/ItsPatrq/minimal-categorized", + "demo_url": "https://itsmeaga1n.github.io/minimal-categorized/", + "stars": 12, + "forks": 17, + "open_issues": 0, + "last_commit": "2022-02-07T22:49:00Z", + "created_at": "2020-09-11T22:55:17Z", + "description": "Jekyll minimal-categorized theme", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/itsmeaga1n-minimal-categorized.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/itsmeaga1n-minimal-categorized.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/itsmeaga1n-minimal-categorized-2x.jpg" } }, - "itsrifat-rifyll-master": { - "theme_key": "itsrifat-rifyll-master", + "itsrifat-rifyll": { + "theme_key": "itsrifat-rifyll", "file": "jekyll-rifyll.md", "name": "rifyll", "title": "Rifyll", "github_username": "itsrifat", "repo": "itsrifat/rifyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/itsrifat/rifyll", "demo_url": "https://itsrifat.github.io/rifyll/", - "stars": 15, - "forks": 26, + "stars": 17, + "forks": 29, "open_issues": 1, "last_commit": "2017-01-03T23:20:01Z", "created_at": "2015-01-01T21:38:31Z", "description": "A simple blog template for jekyll based on twitter bootstrap 3 ", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/itsrifat-rifyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/itsrifat-rifyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/itsrifat-rifyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/itsrifat-rifyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/itsrifat-rifyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/itsrifat-rifyll-2x.jpg" } }, - "ivanchou-hugo-theme-vec-master": { - "theme_key": "ivanchou-hugo-theme-vec-master", + "ivanchou-hugo-theme-vec": { + "theme_key": "ivanchou-hugo-theme-vec", "file": "hugo-theme-vec.md", "name": "hugo-theme-vec", "title": "Vec", "github_username": "IvanChou", "repo": "IvanChou/hugo-theme-vec", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/IvanChou/hugo-theme-vec", "demo_url": "https://themes.gohugo.io/theme/hugo-theme-vec/", "stars": 36, @@ -9498,480 +11861,642 @@ "last_commit": "2019-01-10T12:52:57Z", "created_at": "2016-09-08T14:50:26Z", "description": "Vec is a minimal, clean and beautiful theme for Hugo.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ivanchou-hugo-theme-vec-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ivanchou-hugo-theme-vec-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ivanchou-hugo-theme-vec-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ivanchou-hugo-theme-vec.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ivanchou-hugo-theme-vec.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ivanchou-hugo-theme-vec-2x.jpg" } }, - "iwiedenm-jekyll-theme-massively-src-master": { - "theme_key": "iwiedenm-jekyll-theme-massively-src-master", + "iwiedenm-jekyll-theme-massively-src": { + "theme_key": "iwiedenm-jekyll-theme-massively-src", "file": "jekyll-massively-theme.md", "name": "jekyll-theme-massively", "title": "Jekyll Massively", "github_username": "jekyllup", "repo": "jekyllup/jekyll-theme-massively", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jekyllup/jekyll-theme-massively", "demo_url": "https://iwiedenm.github.io/jekyll-theme-massively/", - "stars": 181, - "forks": 330, + "stars": 182, + "forks": 333, "open_issues": 19, "last_commit": "2019-12-10T05:32:17Z", "created_at": "2017-11-13T02:43:40Z", "description": "Preview ", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/iwiedenm-jekyll-theme-massively-src-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/iwiedenm-jekyll-theme-massively-src-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/iwiedenm-jekyll-theme-massively-src-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/iwiedenm-jekyll-theme-massively-src.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/iwiedenm-jekyll-theme-massively-src.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/iwiedenm-jekyll-theme-massively-src-2x.jpg" } }, - "iwilsonq-gatsby-starter-reasonml-master": { - "theme_key": "iwilsonq-gatsby-starter-reasonml-master", + "iwilsonq-gatsby-starter-reasonml": { + "theme_key": "iwilsonq-gatsby-starter-reasonml", "file": "gatsby-starter-reasonml.md", "name": "gatsby-starter-reasonml", "title": "Gatsby Starter Reasonml", "github_username": "iwilsonq", "repo": "iwilsonq/gatsby-starter-reasonml", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/iwilsonq/gatsby-starter-reasonml", "demo_url": "https://hopeful-keller-943d65.netlify.com/", - "stars": 38, - "forks": 5, - "open_issues": 12, + "stars": 39, + "forks": 4, + "open_issues": 30, "last_commit": "2019-12-14T23:02:11Z", "created_at": "2018-10-22T08:55:17Z", "description": "Gatsby starter to create static sites using type-safe ReasonML", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/iwilsonq-gatsby-starter-reasonml-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/iwilsonq-gatsby-starter-reasonml-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/iwilsonq-gatsby-starter-reasonml-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/iwilsonq-gatsby-starter-reasonml.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/iwilsonq-gatsby-starter-reasonml.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/iwilsonq-gatsby-starter-reasonml-2x.jpg" + } + }, + "ixartz-astro-boilerplate": { + "theme_key": "ixartz-astro-boilerplate", + "file": "astro-react-boilerplate.md", + "name": "Astro-boilerplate", + "title": "Astro React Boilerplate with TypeScript and Tailwind CSS", + "github_username": "ixartz", + "repo": "ixartz/Astro-boilerplate", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/ixartz/Astro-boilerplate", + "demo_url": "https://creativedesignsguru.com/demo/astro-boilerplate/", + "stars": 260, + "forks": 92, + "open_issues": 1, + "last_commit": "2022-08-10T18:31:45Z", + "created_at": "2022-05-03T15:17:26Z", + "description": "🚀 Astro boilerplate with responsive blog and portfolio template using TypeScript and React styled with Tailwind CSS ⚡️ Made with developer experience first: TypeScript + ESLint + Prettier + Husky + Lint-Staged + Commitlint + VSCode", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/ixartz-astro-boilerplate.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ixartz-astro-boilerplate.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ixartz-astro-boilerplate-2x.jpg" } }, - "ixartz-eleventy-starter-boilerplate-master": { - "theme_key": "ixartz-eleventy-starter-boilerplate-master", + "ixartz-eleventy-starter-boilerplate": { + "theme_key": "ixartz-eleventy-starter-boilerplate", "file": "11ty-starter-boilerplate.md", "name": "Eleventy-Starter-Boilerplate", "title": "Eleventy Starter Boilerplate", "github_username": "ixartz", "repo": "ixartz/Eleventy-Starter-Boilerplate", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ixartz/Eleventy-Starter-Boilerplate", "demo_url": "https://creativedesignsguru.com/demo/Eleventy-Starter-Boilerplate/eleventy-starter-boilerplate-presentation/", - "stars": 104, - "forks": 27, + "stars": 247, + "forks": 53, "open_issues": 0, - "last_commit": "2020-12-31T20:01:16Z", + "last_commit": "2021-05-26T20:09:08Z", "created_at": "2020-06-12T18:33:08Z", - "description": "🚀 Eleventy Starter is production-ready with SEO-friendly for quickly starting a blog. ⚡ Built with Eleventy, ESLint, Prettier, Webpack, PostCSS, Tailwind CSS and Netlify CMS (optional).", - "stale": false, + "description": "🚀 Eleventy Starter is production-ready with SEO-friendly for quickly starting a blog. ⚡ Built with Eleventy, ESLint, Prettier, Webpack 5, PostCSS, Tailwind CSS 2 and Netlify CMS (optional).", "images": { - "hires": "https://www.jamstackthemes.dev/capture/ixartz-eleventy-starter-boilerplate-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ixartz-eleventy-starter-boilerplate-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ixartz-eleventy-starter-boilerplate-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ixartz-eleventy-starter-boilerplate.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ixartz-eleventy-starter-boilerplate.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ixartz-eleventy-starter-boilerplate-2x.jpg" } }, - "ixartz-next-js-blog-boilerplate-master": { - "theme_key": "ixartz-next-js-blog-boilerplate-master", + "ixartz-next-js-blog-boilerplate": { + "theme_key": "ixartz-next-js-blog-boilerplate", "file": "nextjs-starter.md", "name": "Next-js-Blog-Boilerplate", "title": "Nextjs Starter Blog", "github_username": "ixartz", "repo": "ixartz/Next-js-Blog-Boilerplate", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ixartz/Next-js-Blog-Boilerplate", "demo_url": "https://creativedesignsguru.com/demo/Nextjs-Blog-Boilerplate/", - "stars": 87, - "forks": 15, + "stars": 509, + "forks": 129, "open_issues": 0, - "last_commit": "2021-01-04T20:13:40Z", + "last_commit": "2022-11-29T21:27:04Z", "created_at": "2020-07-25T13:09:25Z", - "description": "🚀 Nextjs Blog Boilerplate is starter code for your blog based on Next framework. ⚡️ Made with Nextjs, TypeScript, ESLint, Prettier, PostCSS, Tailwind CSS.", - "stale": false, + "description": "🚀 Nextjs Blog Boilerplate is starter code for your blog based on Next framework. ⚡️ Made with Nextjs 12, TypeScript, ESLint, Prettier, PostCSS, Tailwind CSS 3.", "images": { - "hires": "https://www.jamstackthemes.dev/capture/ixartz-next-js-blog-boilerplate-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ixartz-next-js-blog-boilerplate-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ixartz-next-js-blog-boilerplate-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ixartz-next-js-blog-boilerplate.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ixartz-next-js-blog-boilerplate.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ixartz-next-js-blog-boilerplate-2x.jpg" } }, - "ixartz-next-js-boilerplate-master": { - "theme_key": "ixartz-next-js-boilerplate-master", + "ixartz-next-js-boilerplate": { + "theme_key": "ixartz-next-js-boilerplate", "file": "nextjs-tailwind-css-typescript-starter.md", "name": "Next-js-Boilerplate", "title": "Nextjs Tailwind CSS TypeScript Starter", "github_username": "ixartz", "repo": "ixartz/Next-js-Boilerplate", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/ixartz/Next-js-Boilerplate", "demo_url": "https://creativedesignsguru.com/demo/Nextjs-Boilerplate/", - "stars": 25, - "forks": 4, - "open_issues": 0, - "last_commit": "2021-01-04T20:02:26Z", + "stars": 3194, + "forks": 684, + "open_issues": 3, + "last_commit": "2023-01-19T21:41:37Z", "created_at": "2020-07-22T19:47:35Z", - "description": "🚀 Boilerplate and Starter for Next.js 10+, Tailwind CSS 2.0 and TypeScript ⚡️ Made with developer experience first: Next.js, TypeScript, ESLint, Prettier, PostCSS, Tailwind CSS.", - "stale": false, + "description": "🚀🎉📚 Boilerplate and Starter for Next.js 13+, Tailwind CSS 3.2 and TypeScript ⚡️ Made with developer experience first: Next.js + TypeScript + ESLint + Prettier + Husky + Lint-Staged + Jest + Testing Library + Cypress + Commitlint + VSCode + Netlify + PostCSS + Tailwind CSS", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/ixartz-next-js-boilerplate.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ixartz-next-js-boilerplate.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ixartz-next-js-boilerplate-2x.jpg" + } + }, + "ixartz-next-js-landing-page-starter-template": { + "theme_key": "ixartz-next-js-landing-page-starter-template", + "file": "nextjs-landing-page-template.md", + "name": "Next-JS-Landing-Page-Starter-Template", + "title": "Next JS Landing Page Template with Tailwind CSS", + "github_username": "ixartz", + "repo": "ixartz/Next-JS-Landing-Page-Starter-Template", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/ixartz/Next-JS-Landing-Page-Starter-Template", + "demo_url": "https://creativedesignsguru.com/demo/nextjs-landing-page/", + "stars": 1000, + "forks": 327, + "open_issues": 0, + "last_commit": "2022-11-29T21:27:38Z", + "created_at": "2021-03-30T17:30:06Z", + "description": "🚀 Free NextJS Landing Page Template written in Tailwind CSS 3 and TypeScript ⚡️ Made with developer experience first: Next.js 12 + TypeScript + ESLint + Prettier + Husky + Lint-Staged + VSCode + Netlify + PostCSS + Tailwind CSS", "images": { - "hires": "https://www.jamstackthemes.dev/capture/ixartz-next-js-boilerplate-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ixartz-next-js-boilerplate-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ixartz-next-js-boilerplate-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ixartz-next-js-landing-page-starter-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ixartz-next-js-landing-page-starter-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ixartz-next-js-landing-page-starter-template-2x.jpg" } }, - "jack614-jalpc-a-gh-pages": { - "theme_key": "jack614-jalpc-a-gh-pages", + "jack614-jalpc-a": { + "theme_key": "jack614-jalpc-a", "file": "jekyll-Jalpc-A.md", "name": "Jalpc-A", "title": "Jalpc-A", "github_username": "jarrekk", "repo": "jarrekk/Jalpc-A", "branch": "gh-pages", - "url": "https://github.com/jarrekk/Jalpc-A", - "stars": 32, - "forks": 23, + "default_branch": "gh-pages", + "github_url": "https://github.com/jarrekk/Jalpc-A", + "demo_url": "https://ww7.jack003.com/", + "stars": 31, + "forks": 25, "open_issues": 1, "last_commit": "2020-07-06T06:30:04Z", "created_at": "2016-06-22T05:25:06Z", "description": "🍅Jalpc-A -- Jekyll Theme(blog written by Angularjs)", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jack614-jalpc-a-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jack614-jalpc-a-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jack614-jalpc-a-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jack614-jalpc-a.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jack614-jalpc-a.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jack614-jalpc-a-2x.jpg" } }, - "jackbravo-gatsby-starter-i18n-blog-master": { - "theme_key": "jackbravo-gatsby-starter-i18n-blog-master", + "jackbravo-gatsby-starter-i18n-blog": { + "theme_key": "jackbravo-gatsby-starter-i18n-blog", "file": "gatsby-starter-i18n-blog.md", "name": "gatsby-starter-i18n-blog", "title": "Gatsby Starter i18n Blog", "github_username": "jackbravo", "repo": "jackbravo/gatsby-starter-i18n-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jackbravo/gatsby-starter-i18n-blog", "demo_url": "https://jackbravo.github.io/gatsby-starter-i18n-blog/", - "stars": 17, - "forks": 5, - "open_issues": 7, + "stars": 20, + "forks": 4, + "open_issues": 21, "last_commit": "2020-08-10T20:58:58Z", "created_at": "2018-10-29T05:31:55Z", "description": "Gatsby starter for creating a i18n blog. https://jackbravo.github.io/gatsby-starter-i18n-blog/", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jackbravo-gatsby-starter-i18n-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jackbravo-gatsby-starter-i18n-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jackbravo-gatsby-starter-i18n-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jackbravo-gatsby-starter-i18n-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jackbravo-gatsby-starter-i18n-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jackbravo-gatsby-starter-i18n-blog-2x.jpg" } }, - "jacobsun-edidor-master": { - "theme_key": "jacobsun-edidor-master", + "jacobsun-edidor": { + "theme_key": "jacobsun-edidor", "file": "hugo-edidor-theme.md", "name": "edidor", "title": "Edidor", "github_username": "jacobsun", "repo": "jacobsun/edidor", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jacobsun/edidor", "demo_url": "https://themes.gohugo.io/theme/edidor/", "stars": 28, - "forks": 9, + "forks": 10, "open_issues": 9, "last_commit": "2019-07-13T15:28:18Z", "created_at": "2019-05-08T12:49:36Z", "description": "A hugo theme that looks like an editor with a builtin style generator, INFINITE COLOR MODE from a market perspective. 😂", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jacobsun-edidor-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jacobsun-edidor-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jacobsun-edidor-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jacobsun-edidor.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jacobsun-edidor.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jacobsun-edidor-2x.jpg" } }, - "jacobtomlinson-carte-noire-gh-pages": { - "theme_key": "jacobtomlinson-carte-noire-gh-pages", + "jacobtomlinson-carte-noire": { + "theme_key": "jacobtomlinson-carte-noire", "file": "jekyll-carte-noire.md", "name": "carte-noire", "title": "Carte Noire", "github_username": "jacobtomlinson", "repo": "jacobtomlinson/carte-noire", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/jacobtomlinson/carte-noire", "demo_url": "https://carte-noire.jacobtomlinson.co.uk/", - "stars": 281, - "forks": 227, + "stars": 300, + "forks": 231, "open_issues": 12, "last_commit": "2019-09-23T08:51:37Z", "created_at": "2015-03-20T22:12:17Z", "description": "A simple jekyll theme for blogging", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jacobtomlinson-carte-noire-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jacobtomlinson-carte-noire-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jacobtomlinson-carte-noire-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jacobtomlinson-carte-noire.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jacobtomlinson-carte-noire.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jacobtomlinson-carte-noire-2x.jpg" } }, - "jaden-twentyfourteen-master": { - "theme_key": "jaden-twentyfourteen-master", + "jaden-twentyfourteen": { + "theme_key": "jaden-twentyfourteen", "file": "hugo-twentyfourteen.md", "name": "twentyfourteen", "title": "Twenty Fourteen", "github_username": "jaden", "repo": "jaden/twentyfourteen", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jaden/twentyfourteen", "demo_url": "https://themes.gohugo.io/theme/twentyfourteen/", - "stars": 21, - "forks": 12, + "stars": 22, + "forks": 13, "open_issues": 0, "last_commit": "2019-11-30T22:12:18Z", "created_at": "2015-01-09T15:46:15Z", "description": "A Hugo theme based on the Wordpress Twenty Fourteen theme.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jaden-twentyfourteen-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jaden-twentyfourteen-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jaden-twentyfourteen-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jaden-twentyfourteen.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jaden-twentyfourteen.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jaden-twentyfourteen-2x.jpg" } }, - "jaehee0113-console-master": { - "theme_key": "jaehee0113-console-master", + "jaehee0113-console": { + "theme_key": "jaehee0113-console", "file": "jekyll-console.md", "name": "console", "title": "Console", "github_username": "jaehee0113", "repo": "jaehee0113/console", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jaehee0113/console", "demo_url": "https://jaehee0113.github.io/console", - "stars": 23, - "forks": 33, + "stars": 24, + "forks": 32, "open_issues": 4, "last_commit": "2017-07-22T11:39:28Z", "created_at": "2017-01-25T06:26:30Z", "description": "simple yet powerful theme that will make your website look stylish", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jaehee0113-console-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jaehee0113-console-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jaehee0113-console-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jaehee0113-console.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jaehee0113-console.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jaehee0113-console-2x.jpg" } }, - "jaeyeophan-gatsby-starter-bee-master": { - "theme_key": "jaeyeophan-gatsby-starter-bee-master", + "jaeyeophan-gatsby-starter-bee": { + "theme_key": "jaeyeophan-gatsby-starter-bee", "file": "gatsby-starter-bee.md", "name": "gatsby-starter-bee", "title": "Gatsby Starter Bee", "github_username": "JaeYeopHan", "repo": "JaeYeopHan/gatsby-starter-bee", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/JaeYeopHan/gatsby-starter-bee", "demo_url": "https://gatsby-starter-bee.netlify.com/", - "stars": 390, - "forks": 162, - "open_issues": 11, - "last_commit": "2020-12-24T06:26:45Z", + "stars": 624, + "forks": 218, + "open_issues": 32, + "last_commit": "2022-05-15T14:46:02Z", "created_at": "2019-02-03T14:27:33Z", "description": "🐝Full Package | Simple | Fresh UI | Blog Template :: Let's start to blogging with gatsby-starter-bee!", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jaeyeophan-gatsby-starter-bee-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jaeyeophan-gatsby-starter-bee-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jaeyeophan-gatsby-starter-bee-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jaeyeophan-gatsby-starter-bee.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jaeyeophan-gatsby-starter-bee.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jaeyeophan-gatsby-starter-bee-2x.jpg" } }, - "jake-101-bael-template-master": { - "theme_key": "jake-101-bael-template-master", + "jake-101-bael-template": { + "theme_key": "jake-101-bael-template", "file": "bael-theme.md", "name": "bael-template", "title": "Bael Theme", "github_username": "jake-101", "repo": "jake-101/bael-template", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jake-101/bael-template", "demo_url": "https://bael-theme.jake101.com/", - "stars": 184, - "forks": 36, - "open_issues": 5, + "stars": 203, + "forks": 47, + "open_issues": 30, "last_commit": "2020-09-13T03:17:03Z", "created_at": "2018-06-19T09:17:38Z", "description": "Brutalist Blog theme for Netlify CMS", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jake-101-bael-template-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jake-101-bael-template-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jake-101-bael-template-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jake-101-bael-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jake-101-bael-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jake-101-bael-template-2x.jpg" } }, - "jameshamann-jekyll-material-theme-master": { - "theme_key": "jameshamann-jekyll-material-theme-master", + "jameshamann-jekyll-material-theme": { + "theme_key": "jameshamann-jekyll-material-theme", "file": "jekyll-material-theme.md", "name": "jekyll-material-theme", "title": "Jekyll Material Theme", "github_username": "jameshamann", "repo": "jameshamann/jekyll-material-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jameshamann/jekyll-material-theme", "demo_url": "https://jameshamann.com", - "stars": 161, - "forks": 237, - "open_issues": 2, + "stars": 167, + "forks": 224, + "open_issues": 4, "last_commit": "2018-07-31T09:08:15Z", "created_at": "2017-11-27T21:19:23Z", "description": "A Jekyll Theme based on Material Design using Materialize.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jameshamann-jekyll-material-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jameshamann-jekyll-material-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jameshamann-jekyll-material-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jameshamann-jekyll-material-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jameshamann-jekyll-material-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jameshamann-jekyll-material-theme-2x.jpg" } }, - "jamigibbs-phantom-master": { - "theme_key": "jamigibbs-phantom-master", + "jamigibbs-phantom": { + "theme_key": "jamigibbs-phantom", "file": "jekyll-phantom.md", "name": "phantom", "title": "Phantom", "github_username": "jamigibbs", "repo": "jamigibbs/phantom", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jamigibbs/phantom", "demo_url": "https://jamigibbs.com", - "stars": 196, - "forks": 177, - "open_issues": 6, + "stars": 269, + "forks": 304, + "open_issues": 9, "last_commit": "2020-01-04T21:05:45Z", "created_at": "2016-02-21T18:15:37Z", "description": "A minimalist, responsive portfolio theme for Jekyll with Bootstrap", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jamigibbs-phantom-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jamigibbs-phantom-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jamigibbs-phantom-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jamigibbs-phantom.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jamigibbs-phantom.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jamigibbs-phantom-2x.jpg" } }, - "janczizikow-sleek-master": { - "theme_key": "janczizikow-sleek-master", + "janczizikow-sleek": { + "theme_key": "janczizikow-sleek", "file": "sleek.md", "name": "sleek", "title": "Sleek", "github_username": "janczizikow", "repo": "janczizikow/sleek", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/janczizikow/sleek", "demo_url": "https://janczizikow.github.io/sleek/", - "stars": 317, - "forks": 542, - "open_issues": 21, + "stars": 384, + "forks": 580, + "open_issues": 18, "last_commit": "2020-05-11T17:47:32Z", "created_at": "2017-11-19T09:46:18Z", "description": " :chart_with_upwards_trend: Sleek is a modern Jekyll theme focused on speed performance & SEO best practices", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/janczizikow-sleek-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/janczizikow-sleek-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/janczizikow-sleek-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/janczizikow-sleek.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/janczizikow-sleek.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/janczizikow-sleek-2x.jpg" } }, - "jannikbuschke-gatsby-antd-docs-master": { - "theme_key": "jannikbuschke-gatsby-antd-docs-master", + "jannikbuschke-gatsby-antd-docs": { + "theme_key": "jannikbuschke-gatsby-antd-docs", "file": "gatsby-antd-docs.md", "name": "gatsby-antd-docs", "title": "Gatsby Antd Docs", "github_username": "jannikbuschke", "repo": "jannikbuschke/gatsby-antd-docs", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jannikbuschke/gatsby-antd-docs", "demo_url": "https://www.jannikbuschke.de/gatsby-antd-docs/", - "stars": 54, - "forks": 12, - "open_issues": 8, - "last_commit": "2020-08-28T12:47:18Z", + "stars": 67, + "forks": 18, + "open_issues": 21, + "last_commit": "2021-10-22T13:34:02Z", "created_at": "2019-04-10T22:25:31Z", "description": "A gatsby starter for a technical documentation website", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jannikbuschke-gatsby-antd-docs-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jannikbuschke-gatsby-antd-docs-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jannikbuschke-gatsby-antd-docs-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jannikbuschke-gatsby-antd-docs.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jannikbuschke-gatsby-antd-docs.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jannikbuschke-gatsby-antd-docs-2x.jpg" + } + }, + "janraasch-hugo-scroll": { + "theme_key": "janraasch-hugo-scroll", + "file": "hugo-theme-scroll.md", + "name": "hugo-scroll", + "title": "Scroll", + "github_username": "janraasch", + "repo": "janraasch/hugo-scroll", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/janraasch/hugo-scroll", + "demo_url": "https://janraasch.github.io/hugo-scroll/", + "stars": 177, + "forks": 120, + "open_issues": 6, + "last_commit": "2022-12-27T16:41:34Z", + "created_at": "2020-07-07T08:37:56Z", + "description": "📜 A Hugo theme for pretty, quick and simple single-page websites.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/janraasch-hugo-scroll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/janraasch-hugo-scroll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/janraasch-hugo-scroll-2x.jpg" } }, - "jarrekk-jalpc-master": { - "theme_key": "jarrekk-jalpc-master", + "jarrekk-jalpc": { + "theme_key": "jarrekk-jalpc", "file": "jekyll-Jalpc-theme.md", "name": "Jalpc", "title": "Jalpc", "github_username": "jarrekk", "repo": "jarrekk/Jalpc", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jarrekk/Jalpc", "demo_url": "https://jarrekk.github.io/Jalpc/", - "stars": 850, - "forks": 1075, - "open_issues": 34, - "last_commit": "2019-07-10T05:49:41Z", + "stars": 965, + "forks": 1095, + "open_issues": 41, + "last_commit": "2021-10-11T14:05:02Z", "created_at": "2016-05-29T08:02:13Z", "description": "🍎Jalpc -- A flexible Jekyll theme, 3 steps to build your website. ", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jarrekk-jalpc-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jarrekk-jalpc-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jarrekk-jalpc-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jarrekk-jalpc.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jarrekk-jalpc.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jarrekk-jalpc-2x.jpg" } }, - "jasoncostello-slate-gh-pages": { - "theme_key": "jasoncostello-slate-gh-pages", + "jarrekk-jalpc-a": { + "theme_key": "jack614-jalpc-a", + "file": "jekyll-Jalpc-A.md", + "name": "Jalpc-A", + "title": "Jalpc-A", + "github_username": "jarrekk", + "repo": "jarrekk/Jalpc-A", + "branch": "gh-pages", + "default_branch": "gh-pages", + "github_url": "https://github.com/jarrekk/Jalpc-A", + "demo_url": "https://ww7.jack003.com/", + "stars": 32, + "forks": 25, + "open_issues": 1, + "last_commit": "2020-07-06T06:30:04Z", + "created_at": "2016-06-22T05:25:06Z", + "description": "🍅Jalpc-A -- Jekyll Theme(blog written by Angularjs)", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/jack614-jalpc-a.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jack614-jalpc-a.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jack614-jalpc-a-2x.jpg" + } + }, + "jasoncostello-slate": { + "theme_key": "jasoncostello-slate", "file": "jekyll-slate.md", "name": "slate", "title": "Slate", "github_username": "jasoncostello", "repo": "jasoncostello/slate", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/jasoncostello/slate", "demo_url": "https://jasoncostello.github.io/slate/", - "stars": 153, - "forks": 124, - "open_issues": 2, + "stars": 156, + "forks": 130, + "open_issues": 1, "last_commit": "2017-02-28T07:01:39Z", "created_at": "2012-06-08T23:00:07Z", "description": "Slate is theme for your GitHub Pages or Jekyll site. http://jasoncostello.github.io/slate", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jasoncostello-slate-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jasoncostello-slate-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jasoncostello-slate-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jasoncostello-slate.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jasoncostello-slate.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jasoncostello-slate-2x.jpg" + } + }, + "jaydanurwin-gatsby-starter-material-business-markdown": { + "theme_key": "anoun-gatsby-starter-material-business-markdown", + "file": "gatsby-starter-material-business-markdown.md", + "name": "gatsby-starter-material-business-markdown", + "title": "Gatsby Material Business Markdown", + "github_username": "jaydanurwin", + "repo": "jaydanurwin/gatsby-starter-material-business-markdown", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/jaydanurwin/gatsby-starter-material-business-markdown", + "demo_url": "https://gatsby-starter-material-business-markdown.netlify.com/", + "stars": 11, + "forks": 7, + "open_issues": 3, + "last_commit": "2021-01-11T23:19:14Z", + "created_at": "2019-05-02T16:21:45Z", + "description": "View Live Demo:", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/anoun-gatsby-starter-material-business-markdown.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/anoun-gatsby-starter-material-business-markdown.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/anoun-gatsby-starter-material-business-markdown-2x.jpg" + } + }, + "jaylinwang-jekyll-pithy": { + "theme_key": "guovz-pithy", + "file": "jekyll-guovz-pithy.md", + "name": "jekyll-pithy", + "title": "Guovz Pithy", + "github_username": "jaylinwang", + "repo": "jaylinwang/jekyll-pithy", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/jaylinwang/jekyll-pithy", + "demo_url": "https://www.guovz.com", + "stars": 61, + "forks": 33, + "open_issues": 2, + "last_commit": "2015-11-21T02:50:21Z", + "created_at": "2015-08-30T09:57:59Z", + "description": "a jekyll theme", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/guovz-pithy.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/guovz-pithy.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/guovz-pithy-2x.jpg" + } + }, + "jaymehta20-nextjs-blog-page": { + "theme_key": "jaymehta20-nextjs-blog-page", + "file": "blog-nextjs-template.md", + "name": "nextjs-blog-page", + "title": "Minimal Blog | NextJS", + "github_username": "jaymehta20", + "repo": "jaymehta20/nextjs-blog-page", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/jaymehta20/nextjs-blog-page", + "demo_url": "https://nextjs-blog-page.vercel.app/", + "stars": 1, + "forks": 0, + "open_issues": 0, + "last_commit": "2022-06-16T09:38:27Z", + "created_at": "2021-04-22T13:40:16Z", + "description": "A simple blog site created with NextJs", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/jaymehta20-nextjs-blog-page.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jaymehta20-nextjs-blog-page.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jaymehta20-nextjs-blog-page-2x.jpg" } }, - "jbub-ghostwriter-master": { - "theme_key": "jbub-ghostwriter-master", + "jbub-ghostwriter": { + "theme_key": "jbub-ghostwriter", "file": "hugo-ghostwriter.md", "name": "ghostwriter", "title": "Ghostwriter", "github_username": "jbub", "repo": "jbub/ghostwriter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jbub/ghostwriter", "demo_url": "https://themes.gohugo.io/theme/ghostwriter/", - "stars": 146, - "forks": 137, - "open_issues": 7, - "last_commit": "2020-12-14T18:25:26Z", + "stars": 159, + "forks": 147, + "open_issues": 11, + "last_commit": "2021-06-08T09:36:15Z", "created_at": "2015-04-26T09:57:24Z", "description": "A port of ghostwriter theme to Hugo.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jbub-ghostwriter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jbub-ghostwriter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jbub-ghostwriter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jbub-ghostwriter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jbub-ghostwriter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jbub-ghostwriter-2x.jpg" } }, - "jdh8-sweet-16-master": { - "theme_key": "jdh8-sweet-16-master", + "jdh8-sweet-16": { + "theme_key": "jdh8-sweet-16", "file": "jekyll-sweet-16-theme.md", "name": "sweet-16", "title": "Sweet 16", "github_username": "jdh8", "repo": "jdh8/sweet-16", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jdh8/sweet-16", "demo_url": "https://jdh8.github.io", "stars": 9, @@ -9980,729 +12505,1148 @@ "last_commit": "2019-08-04T08:43:59Z", "created_at": "2017-02-08T20:32:46Z", "description": "Wordpress 2016 theme in Jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jdh8-sweet-16-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jdh8-sweet-16-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jdh8-sweet-16-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jdh8-sweet-16.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jdh8-sweet-16.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jdh8-sweet-16-2x.jpg" } }, - "jeblister-bulma-master": { - "theme_key": "jeblister-bulma-master", + "jeblister-bulma": { + "theme_key": "jeblister-bulma", "file": "hugo-bulma-theme.md", "name": "bulma", "title": "Hugo Bulma", "github_username": "jeblister", "repo": "jeblister/bulma", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jeblister/bulma", "demo_url": "https://themes.gohugo.io/theme/bulma/", - "stars": 35, - "forks": 10, + "stars": 36, + "forks": 15, "open_issues": 9, "last_commit": "2019-04-15T19:45:47Z", "created_at": "2017-04-03T18:38:58Z", "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!.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jeblister-bulma-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jeblister-bulma-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jeblister-bulma-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jeblister-bulma.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jeblister-bulma.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jeblister-bulma-2x.jpg" } }, - "jeblister-kube-master": { - "theme_key": "jeblister-kube-master", + "jeblister-kube": { + "theme_key": "jeblister-kube", "file": "hugo-kube-theme.md", "name": "kube", "title": "Kube Hugo", "github_username": "jeblister", "repo": "jeblister/kube", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jeblister/kube", "demo_url": "https://kube.elemnts.net/", - "stars": 347, - "forks": 103, - "open_issues": 11, - "last_commit": "2019-03-08T20:47:18Z", + "stars": 375, + "forks": 101, + "open_issues": 9, + "last_commit": "2022-10-06T09:35:21Z", "created_at": "2017-04-13T09:32:56Z", "description": "Kube is a professional and a responsive Hugo theme for developers and designers that offers a documentation section mixed with a landing page and a blog.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jeblister-kube-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jeblister-kube-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jeblister-kube-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jeblister-kube.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jeblister-kube.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jeblister-kube-2x.jpg" } }, - "jeffreytse-jekyll-theme-yat-master": { - "theme_key": "jeffreytse-jekyll-theme-yat-master", + "jeffreytse-jekyll-theme-yat": { + "theme_key": "jeffreytse-jekyll-theme-yat", "file": "jekyll-theme-yat.md", "name": "jekyll-theme-yat", "title": "Yet Another Theme (YAT)", "github_username": "jeffreytse", "repo": "jeffreytse/jekyll-theme-yat", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jeffreytse/jekyll-theme-yat", "demo_url": "https://jeffreytse.github.io/jekyll-theme-yat/", - "stars": 77, - "forks": 51, - "open_issues": 8, - "last_commit": "2021-01-08T04:25:32Z", + "stars": 608, + "forks": 530, + "open_issues": 41, + "last_commit": "2022-08-28T15:01:27Z", "created_at": "2019-12-12T04:16:29Z", "description": "🎨 Yet another theme for elegant writers with modern flat style and beautiful night/dark mode.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jeffreytse-jekyll-theme-yat-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jeffreytse-jekyll-theme-yat-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jeffreytse-jekyll-theme-yat-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jeffreytse-jekyll-theme-yat.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jeffreytse-jekyll-theme-yat.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jeffreytse-jekyll-theme-yat-2x.jpg" + } + }, + "jekyll-garden-jekyll-garden.github.io": { + "theme_key": "jekyll-garden-jekyll-garden.github.io", + "file": "jekyll-garden.md", + "name": "jekyll-garden.github.io", + "title": "Jekyll Garden", + "github_username": "Jekyll-Garden", + "repo": "Jekyll-Garden/jekyll-garden.github.io", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/Jekyll-Garden/jekyll-garden.github.io", + "demo_url": "https://jekyll-garden.github.io/", + "stars": 208, + "forks": 47, + "open_issues": 11, + "last_commit": "2022-12-16T07:00:30Z", + "created_at": "2021-07-30T02:35:06Z", + "description": "A Digital Garden Theme for Jekyll. Jekyll Garden lets you create a static HTML version of your markdown notes and publish via Github pages. Made for Obsidian users!", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/jekyll-garden-jekyll-garden.github.io.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jekyll-garden-jekyll-garden.github.io.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jekyll-garden-jekyll-garden.github.io-2x.jpg" + } + }, + "jekyll-one-j1-template-starter": { + "theme_key": "jekyll-one-j1-template-starter", + "file": "jekyll-j1-template.md", + "name": "j1-template-starter", + "title": "J1 Template Starter", + "github_username": "jekyll-one", + "repo": "jekyll-one/j1-template-starter", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/jekyll-one/j1-template-starter", + "demo_url": "https://j1-template-starter.netlify.app/", + "stars": 7, + "forks": 10, + "open_issues": 0, + "last_commit": "2022-04-24T17:54:50Z", + "created_at": "2021-04-22T13:59:39Z", + "description": "J1 Starter Template", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/jekyll-one-j1-template-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jekyll-one-j1-template-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jekyll-one-j1-template-starter-2x.jpg" + } + }, + "jekyller-jasper": { + "theme_key": "biomadeira-jasper", + "file": "jekyll-jasper.md", + "name": "jasper", + "title": "Jasper", + "github_username": "jekyller", + "repo": "jekyller/jasper", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/jekyller/jasper", + "demo_url": "https://biomadeira.github.io/jasper/", + "stars": 543, + "forks": 300, + "open_issues": 10, + "last_commit": "2020-05-15T08:32:48Z", + "created_at": "2015-03-25T13:16:07Z", + "description": "Full-featured Jekyll port of Ghost's default theme Casper 👻", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/biomadeira-jasper.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/biomadeira-jasper.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/biomadeira-jasper-2x.jpg" } }, - "jekyller-jasper2-master": { - "theme_key": "jekyller-jasper2-master", + "jekyller-jasper2": { + "theme_key": "jekyller-jasper2", "file": "jasper2.md", "name": "jasper2", "title": "Jasper2", "github_username": "jekyller", "repo": "jekyller/jasper2", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jekyller/jasper2", "demo_url": "https://jekyller.github.io/jasper2/", - "stars": 612, - "forks": 581, - "open_issues": 39, - "last_commit": "2020-05-14T15:31:49Z", + "stars": 638, + "forks": 609, + "open_issues": 11, + "last_commit": "2021-05-14T11:04:15Z", "created_at": "2017-11-17T15:53:38Z", "description": "Full-featured Jekyll port of Ghost's default theme Casper v2 👻", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jekyller-jasper2-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jekyller-jasper2-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jekyller-jasper2-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jekyller-jasper2.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jekyller-jasper2.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jekyller-jasper2-2x.jpg" } }, - "jekyller-online-cv-master": { - "theme_key": "jekyller-online-cv-master", + "jekyller-online-cv": { + "theme_key": "jekyller-online-cv", "file": "jekyll-panelcvagain-theme.md", "name": "online-cv", "title": "Panel CV - V2", "github_username": "jekyller", "repo": "jekyller/online-cv", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jekyller/online-cv", "demo_url": "https://jekyller.github.io/online-cv/", - "stars": 27, - "forks": 76, - "open_issues": 6, + "stars": 31, + "forks": 75, + "open_issues": 19, "last_commit": "2017-08-25T09:42:55Z", "created_at": "2017-08-25T08:50:55Z", "description": "Panel CV: style win8 for designer (or engineer)", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jekyller-online-cv-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jekyller-online-cv-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jekyller-online-cv-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jekyller-online-cv.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jekyller-online-cv.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jekyller-online-cv-2x.jpg" } }, - "jekyller-panelcv-master": { - "theme_key": "jekyller-panelcv-master", + "jekyller-panelcv": { + "theme_key": "jekyller-panelcv", "file": "jekyll-panelcv-theme.md", "name": "PanelCV", "title": "Panel CV", "github_username": "jekyller", "repo": "jekyller/PanelCV", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jekyller/PanelCV", "demo_url": "https://jekyller.github.io/PanelCV/", - "stars": 146, - "forks": 366, - "open_issues": 8, + "stars": 171, + "forks": 408, + "open_issues": 21, "last_commit": "2017-09-07T14:27:25Z", "created_at": "2017-07-30T09:09:24Z", "description": "Panel CV for designers (or engineers) :)", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jekyller-panelcv-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jekyller-panelcv-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jekyller-panelcv-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jekyller-panelcv.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jekyller-panelcv.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jekyller-panelcv-2x.jpg" + } + }, + "jekyller-popuptweets": { + "theme_key": "junlulocky-popuptweets", + "file": "jekyll-popuptweets-theme.md", + "name": "PopupTweets", + "title": "Popup Tweets", + "github_username": "jekyller", + "repo": "jekyller/PopupTweets", + "branch": "gh-pages", + "default_branch": "gh-pages", + "github_url": "https://github.com/jekyller/PopupTweets", + "demo_url": "https://jekyller.github.io/PopupTweets/", + "stars": 11, + "forks": 7, + "open_issues": 0, + "last_commit": "2017-07-28T14:21:43Z", + "created_at": "2017-07-16T02:24:14Z", + "description": "Popup tweets plugin for your personal website (Linkedin, facebook message box liked features)", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/junlulocky-popuptweets.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/junlulocky-popuptweets.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/junlulocky-popuptweets-2x.jpg" + } + }, + "jekyller-sustain": { + "theme_key": "biomadeira-sustain", + "file": "jekyll-sustain.md", + "name": "sustain", + "title": "Sustain", + "github_username": "jekyller", + "repo": "jekyller/sustain", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/jekyller/sustain", + "demo_url": "https://jekyller.github.io/sustain/", + "stars": 266, + "forks": 306, + "open_issues": 4, + "last_commit": "2021-05-14T09:09:19Z", + "created_at": "2015-10-27T22:42:43Z", + "description": "🎹 Personal blog powered by Jekyll", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/biomadeira-sustain.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/biomadeira-sustain.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/biomadeira-sustain-2x.jpg" + } + }, + "jekyller-vitae": { + "theme_key": "biomadeira-vitae", + "file": "jekyll-vitae.md", + "name": "vitae", + "title": "Vitae", + "github_username": "jekyller", + "repo": "jekyller/vitae", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/jekyller/vitae", + "demo_url": "https://jekyller.github.io/vitae/", + "stars": 199, + "forks": 225, + "open_issues": 1, + "last_commit": "2021-05-14T09:08:40Z", + "created_at": "2015-10-24T19:05:41Z", + "description": "👨‍💼 Personal resume powered by Jekyll", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/biomadeira-vitae.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/biomadeira-vitae.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/biomadeira-vitae-2x.jpg" + } + }, + "jekyllt-jasper": { + "theme_key": "biomadeira-jasper", + "file": "jekyll-jasper.md", + "name": "jasper", + "title": "Jasper", + "github_username": "jekyllt", + "repo": "jekyllt/jasper", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/jekyllt/jasper", + "demo_url": "https://biomadeira.github.io/jasper/", + "stars": 549, + "forks": 301, + "open_issues": 9, + "last_commit": "2021-09-28T08:50:29Z", + "created_at": "2015-03-25T13:16:07Z", + "description": "Full-featured Jekyll port of Ghost's default theme Casper 👻", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/biomadeira-jasper.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/biomadeira-jasper.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/biomadeira-jasper-2x.jpg" + } + }, + "jekyllt-jasper2": { + "theme_key": "jekyller-jasper2", + "file": "jasper2.md", + "name": "jasper2", + "title": "Jasper2", + "github_username": "jekyllt", + "repo": "jekyllt/jasper2", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/jekyllt/jasper2", + "demo_url": "https://jekyller.github.io/jasper2/", + "stars": 652, + "forks": 618, + "open_issues": 12, + "last_commit": "2021-05-26T22:33:45Z", + "created_at": "2017-11-17T15:53:38Z", + "description": "Full-featured Jekyll port of Ghost's default theme Casper v2 👻", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/jekyller-jasper2.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jekyller-jasper2.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jekyller-jasper2-2x.jpg" + } + }, + "jekyllt-sustain": { + "theme_key": "biomadeira-sustain", + "file": "jekyll-sustain.md", + "name": "sustain", + "title": "Sustain", + "github_username": "jekyllt", + "repo": "jekyllt/sustain", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/jekyllt/sustain", + "demo_url": "https://jekyller.github.io/sustain/", + "stars": 270, + "forks": 302, + "open_issues": 4, + "last_commit": "2021-05-26T23:01:29Z", + "created_at": "2015-10-27T22:42:43Z", + "description": "🎹 Personal blog powered by Jekyll", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/biomadeira-sustain.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/biomadeira-sustain.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/biomadeira-sustain-2x.jpg" + } + }, + "jekyllt-vitae": { + "theme_key": "biomadeira-vitae", + "file": "jekyll-vitae.md", + "name": "vitae", + "title": "Vitae", + "github_username": "jekyllt", + "repo": "jekyllt/vitae", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/jekyllt/vitae", + "demo_url": "https://jekyller.github.io/vitae/", + "stars": 207, + "forks": 226, + "open_issues": 1, + "last_commit": "2021-05-26T22:32:16Z", + "created_at": "2015-10-24T19:05:41Z", + "description": "👨‍💼 Personal resume powered by Jekyll", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/biomadeira-vitae.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/biomadeira-vitae.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/biomadeira-vitae-2x.jpg" + } + }, + "jekyllup-jekyll-theme-massively": { + "theme_key": "iwiedenm-jekyll-theme-massively-src", + "file": "jekyll-massively-theme.md", + "name": "jekyll-theme-massively", + "title": "Jekyll Massively", + "github_username": "jekyllup", + "repo": "jekyllup/jekyll-theme-massively", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/jekyllup/jekyll-theme-massively", + "demo_url": "https://iwiedenm.github.io/jekyll-theme-massively/", + "stars": 212, + "forks": 357, + "open_issues": 24, + "last_commit": "2019-12-10T05:32:17Z", + "created_at": "2017-11-13T02:43:40Z", + "description": "Preview ", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/iwiedenm-jekyll-theme-massively-src.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/iwiedenm-jekyll-theme-massively-src.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/iwiedenm-jekyll-theme-massively-src-2x.jpg" } }, - "jekynewage-jekynewage.github.io-master": { - "theme_key": "jekynewage-jekynewage.github.io-master", + "jekynewage-jekynewage.github.io": { + "theme_key": "jekynewage-jekynewage.github.io", "file": "jekyll-new-age.md", "name": "jekynewage.github.io", "title": "New Age", "github_username": "jekynewage", "repo": "jekynewage/jekynewage.github.io", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jekynewage/jekynewage.github.io", "demo_url": "https://jekynewage.github.io", - "stars": 104, - "forks": 108, + "stars": 112, + "forks": 112, "open_issues": 3, - "last_commit": "2020-12-15T18:41:26Z", + "last_commit": "2021-07-17T21:09:25Z", "created_at": "2016-10-25T05:15:39Z", "description": "Start Boostrap New Age Theme for Jekyll", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jekynewage-jekynewage.github.io-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jekynewage-jekynewage.github.io-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jekynewage-jekynewage.github.io-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jekynewage-jekynewage.github.io.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jekynewage-jekynewage.github.io.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jekynewage-jekynewage.github.io-2x.jpg" } }, - "jeromelachaud-freelancer-theme-master": { - "theme_key": "jeromelachaud-freelancer-theme-master", + "jeromelachaud-freelancer-theme": { + "theme_key": "jeromelachaud-freelancer-theme", "file": "freelancer-theme.md", "name": "freelancer-theme", "title": "Freelancer", "github_username": "jeromelachaud", "repo": "jeromelachaud/freelancer-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jeromelachaud/freelancer-theme", "demo_url": "https://jeromelachaud.com/freelancer-theme/", - "stars": 1113, - "forks": 1377, + "stars": 1305, + "forks": 1800, "open_issues": 11, - "last_commit": "2020-06-17T08:27:29Z", + "last_commit": "2022-09-06T05:20:23Z", "created_at": "2014-07-19T15:13:08Z", "description": "Jekyll theme based on Freelancer Start Bootstrap theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jeromelachaud-freelancer-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jeromelachaud-freelancer-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jeromelachaud-freelancer-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jeromelachaud-freelancer-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jeromelachaud-freelancer-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jeromelachaud-freelancer-theme-2x.jpg" } }, - "jeromelachaud-grayscale-theme-master": { - "theme_key": "jeromelachaud-grayscale-theme-master", + "jeromelachaud-grayscale-theme": { + "theme_key": "jeromelachaud-grayscale-theme", "file": "grayscale-theme.md", "name": "grayscale-theme", "title": "Grayscale", "github_username": "jeromelachaud", "repo": "jeromelachaud/grayscale-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jeromelachaud/grayscale-theme", "demo_url": "https://jeromelachaud.com/grayscale-theme/", - "stars": 267, - "forks": 445, + "stars": 286, + "forks": 474, "open_issues": 3, - "last_commit": "2016-05-27T10:16:21Z", + "last_commit": "2022-12-13T09:41:28Z", "created_at": "2015-02-02T14:45:08Z", "description": "Jekyll theme based on Grayscale Start Bootstrap theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jeromelachaud-grayscale-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jeromelachaud-grayscale-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jeromelachaud-grayscale-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jeromelachaud-grayscale-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jeromelachaud-grayscale-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jeromelachaud-grayscale-theme-2x.jpg" } }, - "jerryc127-hexo-theme-butterfly-master": { - "theme_key": "jerryc127-hexo-theme-butterfly-master", + "jerryc127-hexo-theme-butterfly": { + "theme_key": "jerryc127-hexo-theme-butterfly", "file": "hexo-theme-butterfly.md", "name": "hexo-theme-butterfly", "title": "Butterfly", "github_username": "jerryc127", "repo": "jerryc127/hexo-theme-butterfly", - "branch": "master", + "branch": "dev", + "default_branch": "dev", "github_url": "https://github.com/jerryc127/hexo-theme-butterfly", "demo_url": "https://jerryc.me/", - "stars": 1852, - "forks": 456, - "open_issues": 2, - "last_commit": "2020-12-31T08:04:14Z", + "stars": 4878, + "forks": 974, + "open_issues": 5, + "last_commit": "2023-01-18T12:27:31Z", "created_at": "2019-06-04T13:38:41Z", "description": " 🦋 A Hexo Theme: Butterfly", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jerryc127-hexo-theme-butterfly-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jerryc127-hexo-theme-butterfly-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jerryc127-hexo-theme-butterfly-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jerryc127-hexo-theme-butterfly.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jerryc127-hexo-theme-butterfly.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jerryc127-hexo-theme-butterfly-2x.jpg" } }, - "jesselau76-hugo-w3-simple-master": { - "theme_key": "jesselau76-hugo-w3-simple-master", + "jesselau76-hugo-w3-simple": { + "theme_key": "jesselau76-hugo-w3-simple", "file": "hugo-w3-simple.md", "name": "hugo-w3-simple", "title": "Hugo W3 Simple", "github_username": "jesselau76", "repo": "jesselau76/hugo-w3-simple", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jesselau76/hugo-w3-simple", "demo_url": "https://themes.gohugo.io/theme/hugo-w3-simple/", "stars": 19, - "forks": 16, - "open_issues": 12, + "forks": 15, + "open_issues": 13, "last_commit": "2019-12-01T02:56:10Z", "created_at": "2018-11-05T23:20:12Z", "description": "Hugo Theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jesselau76-hugo-w3-simple-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jesselau76-hugo-w3-simple-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jesselau76-hugo-w3-simple-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jesselau76-hugo-w3-simple.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jesselau76-hugo-w3-simple.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jesselau76-hugo-w3-simple-2x.jpg" + } + }, + "jitinnair1-gradfolio": { + "theme_key": "jitinnair1-gradfolio", + "file": "gradfolio.md", + "name": "gradfolio", + "title": "Gradfolio", + "github_username": "jitinnair1", + "repo": "jitinnair1/gradfolio", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/jitinnair1/gradfolio", + "demo_url": "https://jitinnair1.github.io/gradfolio/", + "stars": 135, + "forks": 69, + "open_issues": 0, + "last_commit": "2022-12-08T15:27:08Z", + "created_at": "2020-03-18T21:33:43Z", + "description": "responsive, dark-mode ready Jekyll theme designed for use as a personal website and portfolio", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/jitinnair1-gradfolio.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jitinnair1-gradfolio.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jitinnair1-gradfolio-2x.jpg" } }, - "jjcav84-mdbreact-gatsby-starter-gh-pages": { - "theme_key": "jjcav84-mdbreact-gatsby-starter-gh-pages", + "jjcav84-mdbreact-gatsby-starter": { + "theme_key": "jjcav84-mdbreact-gatsby-starter", "file": "gatsby-mdbreact-starter.md", "name": "mdbreact-gatsby-starter", "title": "Gatsyb Mdb React", "github_username": "jjcav84", "repo": "jjcav84/mdbreact-gatsby-starter", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/jjcav84/mdbreact-gatsby-starter", "demo_url": "https://gatsbystartermdb.netlify.com/", "stars": 3, "forks": 1, - "open_issues": 28, + "open_issues": 46, "last_commit": "2020-01-09T09:13:03Z", "created_at": "2019-05-04T23:51:02Z", "description": "This is the single page web application starter that I built with MDBootstrap, React, and Gatsby", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jjcav84-mdbreact-gatsby-starter-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jjcav84-mdbreact-gatsby-starter-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jjcav84-mdbreact-gatsby-starter-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jjcav84-mdbreact-gatsby-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jjcav84-mdbreact-gatsby-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jjcav84-mdbreact-gatsby-starter-2x.jpg" + } + }, + "jkytoela-next-startd": { + "theme_key": "jkytoela-next-startd", + "file": "next-startd.md", + "name": "next-startd", + "title": "Next.js landing page template for SaaS products", + "github_username": "jkytoela", + "repo": "jkytoela/next-startd", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/jkytoela/next-startd", + "demo_url": "https://next-startd.vercel.app/", + "stars": 532, + "forks": 80, + "open_issues": 6, + "last_commit": "2021-03-02T07:47:46Z", + "created_at": "2021-02-24T21:59:32Z", + "description": "⚡ Free Next.js landing page template for SaaS products, online services and more.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/jkytoela-next-startd.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jkytoela-next-startd.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jkytoela-next-startd-2x.jpg" + } + }, + "jmau111-gatsby-juma": { + "theme_key": "jmau111-gatsby-juma", + "file": "gatsby-juma.md", + "name": "gatsby-juma", + "title": "Juma", + "github_username": "jmau111", + "repo": "jmau111/gatsby-juma", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/jmau111/gatsby-juma", + "demo_url": "https://demos.julien-maury.dev/gatsby-juma/", + "stars": 9, + "forks": 3, + "open_issues": 0, + "last_commit": "2023-01-17T19:51:24Z", + "created_at": "2021-12-07T08:10:15Z", + "description": " A very minimalist blue theme built with Typescript and Gatsby.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/jmau111-gatsby-juma.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jmau111-gatsby-juma.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jmau111-gatsby-juma-2x.jpg" } }, - "jmschrack-dark-portfolio-template-11ty-dev": { - "theme_key": "jmschrack-dark-portfolio-template-11ty-dev", + "jmau111-gatsby-nes": { + "theme_key": "jmau111-gatsby-nes", + "file": "gatsby-nes.md", + "name": "gatsby-nes", + "title": "Nes", + "github_username": "jmau111", + "repo": "jmau111/gatsby-nes", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/jmau111/gatsby-nes", + "demo_url": "https://demos.julien-maury.dev/gatsby-nes/", + "stars": 18, + "forks": 10, + "open_issues": 0, + "last_commit": "2023-01-17T19:58:27Z", + "created_at": "2022-04-13T14:50:57Z", + "description": "A theme built with Typescript, Gatsby, and NES.css", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/jmau111-gatsby-nes.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jmau111-gatsby-nes.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jmau111-gatsby-nes-2x.jpg" + } + }, + "jmau111-hugo-theme-ava": { + "theme_key": "jmau111-hugo-theme-ava", + "file": "hugo-ava.md", + "name": "hugo-theme-ava", + "title": "Ava", + "github_username": "jmau111", + "repo": "jmau111/hugo-theme-ava", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/jmau111/hugo-theme-ava", + "demo_url": "https://demos.julien-maury.dev/hugo-theme-ava/", + "stars": 9, + "forks": 2, + "open_issues": 0, + "last_commit": "2023-01-16T18:09:48Z", + "created_at": "2021-08-08T19:25:30Z", + "description": "Ava is a light theme for your blog with essential features you might dig in.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/jmau111-hugo-theme-ava.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jmau111-hugo-theme-ava.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jmau111-hugo-theme-ava-2x.jpg" + } + }, + "jmschrack-dark-portfolio-template-11ty": { + "theme_key": "jmschrack-dark-portfolio-template-11ty", "file": "Dark-Portfolio-Template-11ty.md", "name": "Dark-Portfolio-Template-11ty", "title": "Dark Porfolio Theme for 11ty", "github_username": "jmschrack", "repo": "jmschrack/Dark-Portfolio-Template-11ty", "branch": "dev", + "default_branch": "dev", "github_url": "https://github.com/jmschrack/Dark-Portfolio-Template-11ty", "demo_url": "https://jmschrack.github.io/Dark-Portfolio-Template-11ty/", - "stars": 8, - "forks": 6, - "open_issues": 0, + "stars": 21, + "forks": 10, + "open_issues": 1, "last_commit": "2020-03-23T04:13:32Z", "created_at": "2020-03-17T18:12:36Z", "description": "Converted the W3C \"Dark Portfolio Template\" to 11ty", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jmschrack-dark-portfolio-template-11ty-dev.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jmschrack-dark-portfolio-template-11ty-dev.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jmschrack-dark-portfolio-template-11ty-dev-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jmschrack-dark-portfolio-template-11ty.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jmschrack-dark-portfolio-template-11ty.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jmschrack-dark-portfolio-template-11ty-2x.jpg" } }, - "jnjosh-internet-weblog-master": { - "theme_key": "jnjosh-internet-weblog-master", + "jnjosh-internet-weblog": { + "theme_key": "jnjosh-internet-weblog", "file": "hugo-internet-webblog.md", "name": "internet-weblog", "title": "Internet Weblog", "github_username": "jnjosh", "repo": "jnjosh/internet-weblog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jnjosh/internet-weblog", "demo_url": "https://themes.gohugo.io/theme/internet-weblog/", - "stars": 32, - "forks": 23, + "stars": 31, + "forks": 20, "open_issues": 0, "last_commit": "2019-12-02T20:37:24Z", "created_at": "2016-02-20T05:44:23Z", "description": "internet weblog theme for Hugo", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jnjosh-internet-weblog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jnjosh-internet-weblog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jnjosh-internet-weblog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jnjosh-internet-weblog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jnjosh-internet-weblog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jnjosh-internet-weblog-2x.jpg" } }, - "johncoene-marat-master": { - "theme_key": "johncoene-marat-master", + "johncoene-marat": { + "theme_key": "johncoene-marat", "file": "jekyll-marat-theme.md", "name": "marat", "title": "Marat", "github_username": "JohnCoene", "repo": "JohnCoene/marat", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/JohnCoene/marat", "demo_url": "https://marat.john-coene.com", - "stars": 39, - "forks": 23, - "open_issues": 1, + "stars": 53, + "forks": 37, + "open_issues": 3, "last_commit": "2018-06-17T17:57:29Z", "created_at": "2017-06-19T05:38:37Z", "description": "📜 Jekyll theme inspired by L'Ami du peuple", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/johncoene-marat-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/johncoene-marat-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/johncoene-marat-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/johncoene-marat.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/johncoene-marat.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/johncoene-marat-2x.jpg" } }, - "johnotander-pixyll-master": { - "theme_key": "johnotander-pixyll-master", + "johnotander-pixyll": { + "theme_key": "johnotander-pixyll", "file": "jekyll-pixyll.md", "name": "pixyll", "title": "Jekyll Pixyll", - "github_username": "johno", - "repo": "johno/pixyll", + "github_username": "johnotander", + "repo": "johnotander/pixyll", "branch": "master", - "github_url": "https://github.com/johno/pixyll", - "demo_url": "http://pixyll.com", - "stars": 1924, - "forks": 1379, - "open_issues": 36, + "default_branch": "master", + "github_url": "https://github.com/johnotander/pixyll", + "demo_url": "https://pixyll.com", + "stars": 0, + "forks": 0, + "open_issues": 0, "last_commit": "2020-05-22T15:47:36Z", - "created_at": "2014-01-04T22:52:55Z", - "description": "A simple, beautiful Jekyll theme that's mobile first", - "stale": false, + "created_at": "2021-02-20T16:57:15Z", + "description": "Receive SMS Online for Free", "images": { - "hires": "https://www.jamstackthemes.dev/capture/johnotander-pixyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/johnotander-pixyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/johnotander-pixyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/johnotander-pixyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/johnotander-pixyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/johnotander-pixyll-2x.jpg" } }, - "josephdyer-skeleventy-master": { - "theme_key": "josephdyer-skeleventy-master", + "josephdyer-skeleventy": { + "theme_key": "josephdyer-skeleventy", "file": "skeleventy.md", "name": "skeleventy", "title": "Skeleventy", "github_username": "josephdyer", "repo": "josephdyer/skeleventy", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/josephdyer/skeleventy", "demo_url": "https://skeleventy.netlify.com/", - "stars": 286, - "forks": 67, - "open_issues": 6, - "last_commit": "2020-08-26T21:41:31Z", + "stars": 371, + "forks": 89, + "open_issues": 1, + "last_commit": "2021-02-19T20:13:46Z", "created_at": "2019-02-11T15:07:16Z", "description": "A skeleton boilerplate built with Eleventy.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/josephdyer-skeleventy-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/josephdyer-skeleventy-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/josephdyer-skeleventy-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/josephdyer-skeleventy.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/josephdyer-skeleventy.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/josephdyer-skeleventy-2x.jpg" } }, - "josephhutch-aether-master": { - "theme_key": "josephhutch-aether-master", + "josephhutch-aether": { + "theme_key": "josephhutch-aether", "file": "aether.md", "name": "aether", "title": "Aether", "github_username": "josephhutch", "repo": "josephhutch/aether", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/josephhutch/aether", "demo_url": "https://themes.gohugo.io/theme/aether/", - "stars": 135, - "forks": 70, - "open_issues": 9, - "last_commit": "2020-10-22T18:45:32Z", + "stars": 138, + "forks": 67, + "open_issues": 11, + "last_commit": "2021-08-20T00:54:29Z", "created_at": "2018-03-15T15:52:42Z", "description": "A responsive and clean Hugo theme for blogs", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/josephhutch-aether-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/josephhutch-aether-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/josephhutch-aether-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/josephhutch-aether.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/josephhutch-aether.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/josephhutch-aether-2x.jpg" } }, - "joshgerdes-jekyll-uno-master": { - "theme_key": "joshgerdes-jekyll-uno-master", + "joshgerdes-jekyll-uno": { + "theme_key": "joshgerdes-jekyll-uno", "file": "jekyll-uno.md", "name": "jekyll-uno", "title": "Jekyll-Uno", "github_username": "joshgerdes", "repo": "joshgerdes/jekyll-uno", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/joshgerdes/jekyll-uno", "demo_url": "https://joshgerdes.com/jekyll-uno/", - "stars": 552, - "forks": 552, - "open_issues": 7, + "stars": 599, + "forks": 578, + "open_issues": 8, "last_commit": "2020-11-23T18:57:36Z", "created_at": "2016-01-10T03:59:53Z", "description": "Jekyll-Uno - a minimal, responsive theme for Jekyll based on Uno for Ghost", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/joshgerdes-jekyll-uno-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/joshgerdes-jekyll-uno-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/joshgerdes-jekyll-uno-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/joshgerdes-jekyll-uno.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/joshgerdes-jekyll-uno.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/joshgerdes-jekyll-uno-2x.jpg" } }, - "joshuaavalon-jekyll-avalon-master": { - "theme_key": "joshuaavalon-jekyll-avalon-master", + "joshuaavalon-jekyll-avalon": { + "theme_key": "joshuaavalon-jekyll-avalon", "file": "jekyll-Avalon.md", "name": "Jekyll-Avalon", "title": "Jekyll Avalon", "github_username": "joshuaavalon", "repo": "joshuaavalon/Jekyll-Avalon", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/joshuaavalon/Jekyll-Avalon", "demo_url": "https://joshuaavalon.github.io/Jekyll-Avalon/", - "stars": 14, + "stars": 16, "forks": 18, "open_issues": 0, "last_commit": "2016-12-30T05:54:10Z", "created_at": "2016-11-03T03:54:30Z", "description": "Materialize Jekyll theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/joshuaavalon-jekyll-avalon-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/joshuaavalon-jekyll-avalon-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/joshuaavalon-jekyll-avalon-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/joshuaavalon-jekyll-avalon.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/joshuaavalon-jekyll-avalon.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/joshuaavalon-jekyll-avalon-2x.jpg" + } + }, + "jota-ele-ene-just-me": { + "theme_key": "jota-ele-ene-just-me", + "file": "just-me.md", + "name": "just-me", + "title": "Just me!", + "github_username": "jota-ele-ene", + "repo": "jota-ele-ene/just-me", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/jota-ele-ene/just-me", + "demo_url": "https://jota-ele-ene.github.io/just-me-starter/", + "stars": 5, + "forks": 11, + "open_issues": 1, + "last_commit": "2022-11-25T10:27:33Z", + "created_at": "2022-01-19T21:53:23Z", + "description": "A minimal and fancy theme for Hugo to create Personal Pages.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/jota-ele-ene-just-me.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jota-ele-ene-just-me.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jota-ele-ene-just-me-2x.jpg" } }, - "joway-hugo-theme-yinyang-master": { - "theme_key": "joway-hugo-theme-yinyang-master", + "joway-hugo-theme-yinyang": { + "theme_key": "joway-hugo-theme-yinyang", "file": "hugo-theme-yinyang.md", "name": "hugo-theme-yinyang", "title": "Yinyang", "github_username": "joway", "repo": "joway/hugo-theme-yinyang", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/joway/hugo-theme-yinyang", "demo_url": "https://blog.joway.io/", - "stars": 205, - "forks": 74, - "open_issues": 4, - "last_commit": "2020-11-15T10:44:06Z", + "stars": 397, + "forks": 134, + "open_issues": 1, + "last_commit": "2022-04-28T05:51:19Z", "created_at": "2018-11-08T15:41:32Z", "description": "A black-white theme for Hugo.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/joway-hugo-theme-yinyang-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/joway-hugo-theme-yinyang-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/joway-hugo-theme-yinyang-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/joway-hugo-theme-yinyang.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/joway-hugo-theme-yinyang.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/joway-hugo-theme-yinyang-2x.jpg" } }, - "joytou-joytou.github.io-master": { - "theme_key": "joytou-joytou.github.io-master", + "joytou-joytou.github.io": { + "theme_key": "joytou-joytou.github.io", "file": "jekyll-JOYTOU-theme.md", "name": "joytou.github.io", "title": "JOYTOU", "github_username": "joytou", "repo": "joytou/joytou.github.io", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/joytou/joytou.github.io", "demo_url": "https://joytou.github.io/", "stars": 9, - "forks": 20, + "forks": 21, "open_issues": 3, "last_commit": "2020-02-05T12:56:48Z", "created_at": "2017-08-03T13:26:48Z", "description": "JOYTOU is a BootStrap blog template developed by Joytou Wu.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/joytou-joytou.github.io-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/joytou-joytou.github.io-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/joytou-joytou.github.io-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/joytou-joytou.github.io.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/joytou-joytou.github.io.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/joytou-joytou.github.io-2x.jpg" + } + }, + "jpanther-congo": { + "theme_key": "jpanther-congo", + "file": "hugo-congo.md", + "name": "congo", + "title": "Congo", + "github_username": "jpanther", + "repo": "jpanther/congo", + "branch": "dev", + "default_branch": "dev", + "github_url": "https://github.com/jpanther/congo", + "demo_url": "https://jpanther.github.io/congo/", + "stars": 586, + "forks": 181, + "open_issues": 3, + "last_commit": "2023-01-22T21:49:09Z", + "created_at": "2021-08-11T05:29:45Z", + "description": "A powerful, lightweight theme for Hugo built with Tailwind CSS.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/jpanther-congo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jpanther-congo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jpanther-congo-2x.jpg" + } + }, + "jpanther-lynx": { + "theme_key": "jpanther-lynx", + "file": "hugo-lynx.md", + "name": "lynx", + "title": "Lynx", + "github_username": "jpanther", + "repo": "jpanther/lynx", + "branch": "dev", + "default_branch": "dev", + "github_url": "https://github.com/jpanther/lynx", + "demo_url": "https://jpanther.github.io/lynx/", + "stars": 138, + "forks": 43, + "open_issues": 0, + "last_commit": "2023-01-17T23:03:13Z", + "created_at": "2021-10-31T03:26:52Z", + "description": "A simple links theme for Hugo built with Tailwind CSS.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/jpanther-lynx.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jpanther-lynx.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jpanther-lynx-2x.jpg" } }, - "jpescador-hugo-future-imperfect-master": { - "theme_key": "jpescador-hugo-future-imperfect-master", + "jpescador-hugo-future-imperfect": { + "theme_key": "jpescador-hugo-future-imperfect", "file": "hugo-future-imperfect.md", "name": "hugo-future-imperfect", "title": "Hugo Future Imperfect", "github_username": "jpescador", "repo": "jpescador/hugo-future-imperfect", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jpescador/hugo-future-imperfect", "demo_url": "https://themes.gohugo.io/theme/future-imperfect/", - "stars": 303, - "forks": 229, + "stars": 308, + "forks": 233, "open_issues": 42, "last_commit": "2018-02-27T14:39:14Z", "created_at": "2016-03-21T00:52:47Z", "description": "A ported theme with some extras for the Hugo static website engine", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jpescador-hugo-future-imperfect-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jpescador-hugo-future-imperfect-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jpescador-hugo-future-imperfect-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jpescador-hugo-future-imperfect.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jpescador-hugo-future-imperfect.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jpescador-hugo-future-imperfect-2x.jpg" } }, - "jrutheiser-hugo-lithium-theme-master": { - "theme_key": "jrutheiser-hugo-lithium-theme-master", + "jrutheiser-hugo-lithium-theme": { + "theme_key": "jrutheiser-hugo-lithium-theme", "file": "hugo-lithium-theme.md", "name": "hugo-lithium-theme", "title": "Lithium", "github_username": "jrutheiser", "repo": "jrutheiser/hugo-lithium-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jrutheiser/hugo-lithium-theme", "demo_url": "https://themes.gohugo.io/theme/hugo-lithium-theme/", - "stars": 93, - "forks": 119, + "stars": 114, + "forks": 134, "open_issues": 8, "last_commit": "2019-08-25T19:49:30Z", "created_at": "2016-05-06T02:29:31Z", "description": "Lithium - A simple responsive Hugo theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jrutheiser-hugo-lithium-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jrutheiser-hugo-lithium-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jrutheiser-hugo-lithium-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jrutheiser-hugo-lithium-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jrutheiser-hugo-lithium-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jrutheiser-hugo-lithium-theme-2x.jpg" } }, - "jsappme-gridsome-shopify-starter-master": { - "theme_key": "jsappme-gridsome-shopify-starter-master", + "jsappme-gridsome-shopify-starter": { + "theme_key": "jsappme-gridsome-shopify-starter", "file": "gridsome-shopify.md", "name": "gridsome-shopify-starter", "title": "Gridsome Tailwind CSS Shopify Starter", "github_username": "jsappme", "repo": "jsappme/gridsome-shopify-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jsappme/gridsome-shopify-starter", "demo_url": "https://gridsome-shopify.netlify.app/", - "stars": 21, - "forks": 8, - "open_issues": 5, + "stars": 32, + "forks": 13, + "open_issues": 13, "last_commit": "2020-07-24T13:52:23Z", "created_at": "2020-06-16T19:25:47Z", "description": "Ecommerce Headless PWA Gridsome Shopify Starter using TailwindCSS", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jsappme-gridsome-shopify-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jsappme-gridsome-shopify-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jsappme-gridsome-shopify-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jsappme-gridsome-shopify-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jsappme-gridsome-shopify-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jsappme-gridsome-shopify-starter-2x.jpg" } }, - "jsnjack-hugo-changelog-theme-master": { - "theme_key": "jsnjack-hugo-changelog-theme-master", + "jsnjack-hugo-changelog-theme": { + "theme_key": "jsnjack-hugo-changelog-theme", "file": "hugo-changelog-theme.md", "name": "hugo-changelog-theme", "title": "Changelog", "github_username": "jsnjack", "repo": "jsnjack/hugo-changelog-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jsnjack/hugo-changelog-theme", "demo_url": "https://themes.gohugo.io/theme/hugo-changelog-theme/", - "stars": 82, - "forks": 20, + "stars": 98, + "forks": 25, "open_issues": 2, "last_commit": "2021-01-04T22:55:28Z", "created_at": "2018-09-02T19:35:09Z", "description": "A Hugo changelog theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jsnjack-hugo-changelog-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jsnjack-hugo-changelog-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jsnjack-hugo-changelog-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jsnjack-hugo-changelog-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jsnjack-hugo-changelog-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jsnjack-hugo-changelog-theme-2x.jpg" } }, - "jsnjack-kraiklyn-master": { - "theme_key": "jsnjack-kraiklyn-master", + "jsnjack-kraiklyn": { + "theme_key": "jsnjack-kraiklyn", "file": "hugo-kraiklyn-theme.md", "name": "kraiklyn", "title": "Kraiklyn", "github_username": "jsnjack", "repo": "jsnjack/kraiklyn", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jsnjack/kraiklyn", "demo_url": "https://themes.gohugo.io/theme/kraiklyn/", - "stars": 47, - "forks": 28, - "open_issues": 2, - "last_commit": "2020-04-23T14:23:47Z", + "stars": 51, + "forks": 31, + "open_issues": 1, + "last_commit": "2021-08-02T12:06:27Z", "created_at": "2018-01-28T19:59:39Z", "description": "A Hugo theme for one page documentation", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jsnjack-kraiklyn-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jsnjack-kraiklyn-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jsnjack-kraiklyn-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jsnjack-kraiklyn.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jsnjack-kraiklyn.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jsnjack-kraiklyn-2x.jpg" } }, - "jugglerx-gatsby-serif-theme-master": { - "theme_key": "jugglerx-gatsby-serif-theme-master", + "jugglerx-gatsby-serif-theme": { + "theme_key": "jugglerx-gatsby-serif-theme", "file": "gatsby-serif-theme.md", "name": "gatsby-serif-theme", "title": "Gatsby Serif Theme", "github_username": "zerostaticthemes", "repo": "zerostaticthemes/gatsby-serif-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/zerostaticthemes/gatsby-serif-theme", "demo_url": "https://gatsby-serif.netlify.com/", - "stars": 143, - "forks": 56, + "stars": 148, + "forks": 54, "open_issues": 1, "last_commit": "2020-09-05T05:50:16Z", "created_at": "2018-12-12T04:58:52Z", "description": "Serif is a beautiful small business theme for Gatsby.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jugglerx-gatsby-serif-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jugglerx-gatsby-serif-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jugglerx-gatsby-serif-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jugglerx-gatsby-serif-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jugglerx-gatsby-serif-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jugglerx-gatsby-serif-theme-2x.jpg" } }, - "jugglerx-hugo-hero-theme-master": { - "theme_key": "jugglerx-hugo-hero-theme-master", + "jugglerx-hugo-hero-theme": { + "theme_key": "jugglerx-hugo-hero-theme", "file": "hugo-hero-theme.md", "name": "hugo-hero-theme", "title": "Hero", "github_username": "zerostaticthemes", "repo": "zerostaticthemes/hugo-hero-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/zerostaticthemes/hugo-hero-theme", "demo_url": "https://hugo-hero.netlify.com/", - "stars": 117, - "forks": 110, - "open_issues": 7, + "stars": 122, + "forks": 116, + "open_issues": 10, "last_commit": "2021-01-08T01:13:34Z", "created_at": "2018-12-05T23:22:47Z", "description": "A modern business theme for Hugo. ", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jugglerx-hugo-hero-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jugglerx-hugo-hero-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jugglerx-hugo-hero-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jugglerx-hugo-hero-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jugglerx-hugo-hero-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jugglerx-hugo-hero-theme-2x.jpg" } }, - "jugglerx-hugo-whisper-theme-master": { - "theme_key": "jugglerx-hugo-whisper-theme-master", + "jugglerx-hugo-whisper-theme": { + "theme_key": "jugglerx-hugo-whisper-theme", "file": "hugo-whisper-theme.md", "name": "hugo-whisper-theme", "title": "Whisper", "github_username": "zerostaticthemes", "repo": "zerostaticthemes/hugo-whisper-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/zerostaticthemes/hugo-whisper-theme", "demo_url": "https://hugo-whisper.netlify.com/", - "stars": 158, - "forks": 79, + "stars": 160, + "forks": 81, "open_issues": 2, "last_commit": "2020-09-06T03:11:35Z", "created_at": "2019-02-17T06:32:03Z", "description": "Whisper is a minimal documentation theme for Hugo.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jugglerx-hugo-whisper-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jugglerx-hugo-whisper-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jugglerx-hugo-whisper-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jugglerx-hugo-whisper-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jugglerx-hugo-whisper-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jugglerx-hugo-whisper-theme-2x.jpg" } }, - "jugglerx-jekyll-serif-theme-master": { - "theme_key": "jugglerx-jekyll-serif-theme-master", - "file": "jekyll-serif.md", - "name": "jekyll-serif-theme", - "title": "Jekyll Serif", - "github_username": "zerostaticthemes", - "repo": "zerostaticthemes/jekyll-serif-theme", - "branch": "master", - "github_url": "https://github.com/zerostaticthemes/jekyll-serif-theme", - "demo_url": "https://jekyll-serif-theme.netlify.com/", - "stars": 187, - "forks": 206, - "open_issues": 3, - "last_commit": "2020-11-08T01:24:51Z", - "created_at": "2018-12-09T07:20:46Z", - "description": "Serif is a beautiful business theme for Jekyll.", - "stale": false - }, - "juhi-trivedi-cape-master": { - "theme_key": "juhi-trivedi-cape-master", + "juhi-trivedi-cape": { + "theme_key": "juhi-trivedi-cape", "file": "gatsby-cape.md", "name": "cape", "title": "Cape", "github_username": "juhitrivedi", "repo": "juhitrivedi/cape", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/juhitrivedi/cape", "demo_url": "https://cape.netlify.com/", "stars": 22, @@ -10711,44 +13655,67 @@ "last_commit": "2020-03-05T09:06:58Z", "created_at": "2019-03-01T13:09:55Z", "description": null, - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/juhi-trivedi-cape-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/juhi-trivedi-cape-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/juhi-trivedi-cape-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/juhi-trivedi-cape.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/juhi-trivedi-cape.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/juhi-trivedi-cape-2x.jpg" + } + }, + "juhitrivedi-cape": { + "theme_key": "juhi-trivedi-cape", + "file": "gatsby-cape.md", + "name": "cape", + "title": "Cape", + "github_username": "juhitrivedi", + "repo": "juhitrivedi/cape", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/juhitrivedi/cape", + "demo_url": "https://cape.netlify.com/", + "stars": 23, + "forks": 10, + "open_issues": 27, + "last_commit": "2020-03-05T09:06:58Z", + "created_at": "2019-03-01T13:09:55Z", + "description": null, + "images": { + "hires": "https://www.jamstackthemes.dev/capture/juhi-trivedi-cape.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/juhi-trivedi-cape.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/juhi-trivedi-cape-2x.jpg" } }, - "jumpalottahigh-gatsby-starter-blog-jumpalottahigh-master": { - "theme_key": "jumpalottahigh-gatsby-starter-blog-jumpalottahigh-master", + "jumpalottahigh-gatsby-starter-blog-jumpalottahigh": { + "theme_key": "jumpalottahigh-gatsby-starter-blog-jumpalottahigh", "file": "gatsby-starter-blog-jumpalottahigh.md", "name": "gatsby-starter-blog-jumpalottahigh", "title": "Gatsby Blog Jumpalottahigh", "github_username": "jumpalottahigh", "repo": "jumpalottahigh/gatsby-starter-blog-jumpalottahigh", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jumpalottahigh/gatsby-starter-blog-jumpalottahigh", "demo_url": "https://gatsby-starter-blog-jumpalottahigh.netlify.com/", - "stars": 3, + "stars": 4, "forks": 0, "open_issues": 0, "last_commit": "2019-01-28T21:21:52Z", "created_at": "2018-06-02T18:38:14Z", "description": "Gatsby v2 blog starter with SEO, search, filter, reading progress, mobile menu fab", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jumpalottahigh-gatsby-starter-blog-jumpalottahigh-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jumpalottahigh-gatsby-starter-blog-jumpalottahigh-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jumpalottahigh-gatsby-starter-blog-jumpalottahigh-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jumpalottahigh-gatsby-starter-blog-jumpalottahigh.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jumpalottahigh-gatsby-starter-blog-jumpalottahigh.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jumpalottahigh-gatsby-starter-blog-jumpalottahigh-2x.jpg" } }, - "junlulocky-popuptweets-gh-pages": { - "theme_key": "junlulocky-popuptweets-gh-pages", + "junlulocky-popuptweets": { + "theme_key": "junlulocky-popuptweets", "file": "jekyll-popuptweets-theme.md", "name": "PopupTweets", "title": "Popup Tweets", "github_username": "jekyller", "repo": "jekyller/PopupTweets", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/jekyller/PopupTweets", "demo_url": "https://jekyller.github.io/PopupTweets/", "stars": 9, @@ -10757,274 +13724,389 @@ "last_commit": "2017-07-28T14:21:43Z", "created_at": "2017-07-16T02:24:14Z", "description": "Popup tweets plugin for your personal website (Linkedin, facebook message box liked features)", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/junlulocky-popuptweets-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/junlulocky-popuptweets-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/junlulocky-popuptweets-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/junlulocky-popuptweets.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/junlulocky-popuptweets.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/junlulocky-popuptweets-2x.jpg" + } + }, + "just-the-docs-just-the-docs": { + "theme_key": "pmarsceill-just-the-docs", + "file": "just-the-docs.md", + "name": "just-the-docs", + "title": "Just The Docs", + "github_username": "just-the-docs", + "repo": "just-the-docs/just-the-docs", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/just-the-docs/just-the-docs", + "demo_url": "https://pmarsceill.github.io/just-the-docs/", + "stars": 4207, + "forks": 2602, + "open_issues": 132, + "last_commit": "2022-03-10T20:55:27Z", + "created_at": "2017-11-08T16:22:28Z", + "description": "A modern, high customizable, responsive Jekyll theme for documention with built-in search.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/pmarsceill-just-the-docs.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pmarsceill-just-the-docs.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pmarsceill-just-the-docs-2x.jpg" } }, - "justinformentin-gatsby-v2-tutorial-starter-master": { - "theme_key": "justinformentin-gatsby-v2-tutorial-starter-master", + "justgoodthemes-blogbox-jekyll-theme": { + "theme_key": "justgoodthemes-blogbox-jekyll-theme", + "file": "blogbox-jekyll-theme.md", + "name": "BlogBox-Jekyll-Theme", + "title": "BlogBox Jekyll Theme", + "github_username": "JustGoodThemes", + "repo": "JustGoodThemes/BlogBox-Jekyll-Theme", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/JustGoodThemes/BlogBox-Jekyll-Theme", + "demo_url": "https://blogbox.netlify.app/", + "stars": 3, + "forks": 4, + "open_issues": 2, + "last_commit": "2022-12-30T14:07:03Z", + "created_at": "2021-07-31T18:13:48Z", + "description": "BlogBox is a minimal, clean and responsive Jekyll theme.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/justgoodthemes-blogbox-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/justgoodthemes-blogbox-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/justgoodthemes-blogbox-jekyll-theme-2x.jpg" + } + }, + "justgoodthemes-scriptor-jekyll-theme": { + "theme_key": "justgoodthemes-scriptor-jekyll-theme", + "file": "scriptor-jekyll-theme.md", + "name": "Scriptor-Jekyll-Theme", + "title": "Scriptor Jekyll Theme", + "github_username": "JustGoodThemes", + "repo": "JustGoodThemes/Scriptor-Jekyll-Theme", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/JustGoodThemes/Scriptor-Jekyll-Theme", + "demo_url": "https://scriptor-jekyll.netlify.app/", + "stars": 101, + "forks": 119, + "open_issues": 0, + "last_commit": "2022-07-19T09:56:44Z", + "created_at": "2019-02-02T20:36:53Z", + "description": "Scriptor is a minimal, clean, modern and responsive Jekyll theme for writers.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/justgoodthemes-scriptor-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/justgoodthemes-scriptor-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/justgoodthemes-scriptor-jekyll-theme-2x.jpg" + } + }, + "justinformentin-gatsby-v2-tutorial-starter": { + "theme_key": "justinformentin-gatsby-v2-tutorial-starter", "file": "gatsby-v2-tutorial-starter.md", "name": "gatsby-v2-tutorial-starter", "title": "Gatsby V2 Tutorial Starter", "github_username": "justinformentin", "repo": "justinformentin/gatsby-v2-tutorial-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/justinformentin/gatsby-v2-tutorial-starter", "demo_url": "https://gatsby-tutorial-starter.netlify.com", - "stars": 136, - "forks": 58, - "open_issues": 14, + "stars": 138, + "forks": 59, + "open_issues": 35, "last_commit": "2019-09-07T18:07:09Z", "created_at": "2018-10-28T04:45:46Z", "description": "Gatsby V2 Starter - product of step by step tutorial", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/justinformentin-gatsby-v2-tutorial-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/justinformentin-gatsby-v2-tutorial-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/justinformentin-gatsby-v2-tutorial-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/justinformentin-gatsby-v2-tutorial-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/justinformentin-gatsby-v2-tutorial-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/justinformentin-gatsby-v2-tutorial-starter-2x.jpg" } }, - "jweslley-hugo-conference-master": { - "theme_key": "jweslley-hugo-conference-master", + "jweslley-hugo-conference": { + "theme_key": "jweslley-hugo-conference", "file": "hugo-conference-theme.md", "name": "hugo-conference", "title": "Hugo Conference", "github_username": "jweslley", "repo": "jweslley/hugo-conference", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/jweslley/hugo-conference", "demo_url": "https://themes.gohugo.io/theme/hugo-conference/", - "stars": 28, - "forks": 21, + "stars": 30, + "forks": 26, "open_issues": 2, "last_commit": "2019-01-16T10:50:31Z", "created_at": "2017-10-29T12:19:33Z", "description": "The easiest way to create websites for conference/events", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jweslley-hugo-conference-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jweslley-hugo-conference-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jweslley-hugo-conference-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jweslley-hugo-conference.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jweslley-hugo-conference.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jweslley-hugo-conference-2x.jpg" } }, - "jwillmer-jekylldecent-gh-pages": { - "theme_key": "jwillmer-jekylldecent-gh-pages", + "jwillmer-jekylldecent": { + "theme_key": "jwillmer-jekylldecent", "file": "jekyll-Decent.md", "name": "jekyllDecent", "title": "jekyllDecent", "github_username": "jwillmer", "repo": "jwillmer/jekyllDecent", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/jwillmer/jekyllDecent", "demo_url": "https://jwillmer.github.io/jekyllDecent/", - "stars": 113, - "forks": 108, - "open_issues": 8, - "last_commit": "2020-10-26T08:38:59Z", + "stars": 127, + "forks": 122, + "open_issues": 10, + "last_commit": "2022-10-30T12:44:14Z", "created_at": "2016-05-22T19:37:47Z", "description": "Blog Template for Jekyll", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/jwillmer-jekylldecent-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jwillmer-jekylldecent-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jwillmer-jekylldecent-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/jwillmer-jekylldecent.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jwillmer-jekylldecent.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jwillmer-jekylldecent-2x.jpg" + } + }, + "kaapiandcode-hugo-goa": { + "theme_key": "shenoybr-hugo-goa", + "file": "hugo-goa.md", + "name": "hugo-goa", + "title": "Goa", + "github_username": "kaapiandcode", + "repo": "kaapiandcode/hugo-goa", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/kaapiandcode/hugo-goa", + "demo_url": "https://shenoybr.github.io/hugo-goa-demo/", + "stars": 217, + "forks": 109, + "open_issues": 15, + "last_commit": "2021-09-29T18:21:32Z", + "created_at": "2016-10-08T02:59:24Z", + "description": "Simple Minimalistic Theme for Hugo", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/shenoybr-hugo-goa.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/shenoybr-hugo-goa.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/shenoybr-hugo-goa-2x.jpg" } }, - "kakawait-hugo-tranquilpeak-theme-master": { - "theme_key": "kakawait-hugo-tranquilpeak-theme-master", + "kakawait-hugo-tranquilpeak-theme": { + "theme_key": "kakawait-hugo-tranquilpeak-theme", "file": "hugo-tranquilpeak-theme.md", "name": "hugo-tranquilpeak-theme", "title": "Hugo Tranquilpeak", "github_username": "kakawait", "repo": "kakawait/hugo-tranquilpeak-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/kakawait/hugo-tranquilpeak-theme", "demo_url": "https://tranquilpeak.kakawait.com/", - "stars": 671, - "forks": 399, - "open_issues": 124, - "last_commit": "2020-05-29T21:53:34Z", + "stars": 858, + "forks": 513, + "open_issues": 103, + "last_commit": "2022-08-21T07:01:34Z", "created_at": "2016-03-30T19:55:05Z", "description": "A gorgeous responsive theme for Hugo blog framework", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/kakawait-hugo-tranquilpeak-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kakawait-hugo-tranquilpeak-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kakawait-hugo-tranquilpeak-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/kakawait-hugo-tranquilpeak-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kakawait-hugo-tranquilpeak-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kakawait-hugo-tranquilpeak-theme-2x.jpg" } }, - "kamikat-jekyll-theme-kagami-master": { - "theme_key": "kamikat-jekyll-theme-kagami-master", + "kamikat-jekyll-theme-kagami": { + "theme_key": "kamikat-jekyll-theme-kagami", "file": "jekyll-kagami.md", "name": "jekyll-theme-kagami", "title": "Kagami", "github_username": "kamikat", "repo": "kamikat/jekyll-theme-kagami", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/kamikat/jekyll-theme-kagami", "demo_url": "https://banana.moe/jekyll-theme-kagami/about.html", - "stars": 128, - "forks": 41, - "open_issues": 3, - "last_commit": "2018-12-18T16:40:00Z", + "stars": 144, + "forks": 48, + "open_issues": 2, + "last_commit": "2021-08-04T15:25:55Z", "created_at": "2017-03-07T03:59:23Z", "description": "Simple and clean Jekyll theme compatible with GitHub Pages.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/kamikat-jekyll-theme-kagami-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kamikat-jekyll-theme-kagami-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kamikat-jekyll-theme-kagami-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/kamikat-jekyll-theme-kagami.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kamikat-jekyll-theme-kagami.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kamikat-jekyll-theme-kagami-2x.jpg" } }, - "karloespiritu-blackdoc-master": { - "theme_key": "karloespiritu-blackdoc-master", + "karloespiritu-blackdoc": { + "theme_key": "karloespiritu-blackdoc", "file": "jekyll-blackdoc.md", "name": "BlackDoc", "title": "BlackDoc", "github_username": "karloespiritu", "repo": "karloespiritu/BlackDoc", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/karloespiritu/BlackDoc", "demo_url": "https://karloespiritu.com/blackdoc", - "stars": 114, - "forks": 104, + "stars": 118, + "forks": 106, "open_issues": 7, "last_commit": "2018-02-15T18:15:58Z", "created_at": "2015-05-22T00:34:37Z", "description": "A two-column Jekyll theme for websites that require a master-detail layout for viewing of content", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/karloespiritu-blackdoc-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/karloespiritu-blackdoc-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/karloespiritu-blackdoc-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/karloespiritu-blackdoc.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/karloespiritu-blackdoc.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/karloespiritu-blackdoc-2x.jpg" } }, - "kausalflow-connectome-master": { - "theme_key": "kausalflow-connectome-master", + "kausalflow-connectome": { + "theme_key": "kausalflow-connectome", "file": "hugo-connectome.md", "name": "connectome", "title": "Hugo Connectome Theme", "github_username": "kausalflow", "repo": "kausalflow/connectome", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/kausalflow/connectome", "demo_url": "https://hugo-connectome.kausalflow.com", - "stars": 3, - "forks": 1, + "stars": 25, + "forks": 8, "open_issues": 0, - "last_commit": "2021-01-10T22:26:12Z", + "last_commit": "2023-01-05T20:36:35Z", "created_at": "2020-09-27T16:55:53Z", "description": "A Hugo theme with backlinks for online communities", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/kausalflow-connectome-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kausalflow-connectome-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kausalflow-connectome-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/kausalflow-connectome.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kausalflow-connectome.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kausalflow-connectome-2x.jpg" } }, - "kaushalmodi-hugo-bare-min-theme-master": { - "theme_key": "kaushalmodi-hugo-bare-min-theme-master", + "kaushalmodi-hugo-bare-min-theme": { + "theme_key": "kaushalmodi-hugo-bare-min-theme", "file": "hugo-bare-min-theme.md", "name": "hugo-bare-min-theme", "title": "Bare Min", "github_username": "kaushalmodi", "repo": "kaushalmodi/hugo-bare-min-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/kaushalmodi/hugo-bare-min-theme", "demo_url": "https://hugo-bare-min.netlify.com/", - "stars": 57, - "forks": 12, + "stars": 76, + "forks": 17, "open_issues": 1, - "last_commit": "2020-02-10T17:42:52Z", + "last_commit": "2022-05-31T21:33:29Z", "created_at": "2018-01-29T21:33:59Z", "description": "A bare minimum theme for Hugo (https://gohugo.io) to help develop and debug Hugo sites -- https://hugo-bare-min.netlify.com/,", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/kaushalmodi-hugo-bare-min-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kaushalmodi-hugo-bare-min-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kaushalmodi-hugo-bare-min-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/kaushalmodi-hugo-bare-min-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kaushalmodi-hugo-bare-min-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kaushalmodi-hugo-bare-min-theme-2x.jpg" } }, - "kazumasato-siera-master": { - "theme_key": "kazumasato-siera-master", + "kazumasato-siera": { + "theme_key": "kazumasato-siera", "file": "jekyll-siera.md", "name": "Siera", "title": "Siera", "github_username": "nryotaro", "repo": "nryotaro/Siera", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/nryotaro/Siera", "demo_url": "https://ranceworks.com/", - "stars": 31, + "stars": 32, "forks": 54, "open_issues": 1, "last_commit": "2016-01-01T00:40:04Z", "created_at": "2015-11-14T07:47:20Z", "description": "jekyll theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/kazumasato-siera-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kazumasato-siera-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kazumasato-siera-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/kazumasato-siera.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kazumasato-siera.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kazumasato-siera-2x.jpg" } }, - "kc0bfv-autophugo-master": { - "theme_key": "kc0bfv-autophugo-master", + "kc0bfv-autophugo": { + "theme_key": "kc0bfv-autophugo", "file": "hugo-theme-autophugo.md", "name": "autophugo", "title": "AutoPhugo", "github_username": "kc0bfv", "repo": "kc0bfv/autophugo", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/kc0bfv/autophugo", "demo_url": "https://kc0bfv.github.io/autophugo", - "stars": 18, - "forks": 19, - "open_issues": 2, - "last_commit": "2021-01-10T23:46:02Z", + "stars": 69, + "forks": 45, + "open_issues": 5, + "last_commit": "2022-10-29T21:16:19Z", "created_at": "2020-03-14T22:46:57Z", "description": "AutoPhugo [ˌɔtoʊˈfjuːgəʊ] is a gallery/photoblog theme for Hugo that's a little more automatic than Phugo.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/kc0bfv-autophugo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kc0bfv-autophugo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kc0bfv-autophugo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/kc0bfv-autophugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kc0bfv-autophugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kc0bfv-autophugo-2x.jpg" } }, - "kc0bfv-ticky_tacky_dark-master": { - "theme_key": "kc0bfv-ticky_tacky_dark-master", + "kc0bfv-ticky_tacky_dark": { + "theme_key": "kc0bfv-ticky_tacky_dark", "file": "hugo-theme-tickytackydark.md", "name": "ticky_tacky_dark", "title": "Ticky Tacky Dark", "github_username": "kc0bfv", "repo": "kc0bfv/ticky_tacky_dark", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/kc0bfv/ticky_tacky_dark", "demo_url": "https://kc0bfv.github.io/ticky_tacky_dark/", - "stars": 2, - "forks": 4, - "open_issues": 1, - "last_commit": "2020-08-02T22:35:36Z", + "stars": 6, + "forks": 7, + "open_issues": 0, + "last_commit": "2022-11-11T22:18:05Z", "created_at": "2019-12-10T21:20:14Z", "description": "A multi-page Hugo theme, in dark colors, where the list page displays a set of image buttons linking to your sub-pages.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/kc0bfv-ticky_tacky_dark-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kc0bfv-ticky_tacky_dark-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kc0bfv-ticky_tacky_dark-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/kc0bfv-ticky_tacky_dark.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kc0bfv-ticky_tacky_dark.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kc0bfv-ticky_tacky_dark-2x.jpg" + } + }, + "kdevo-osprey-delight": { + "theme_key": "kdevo-osprey-delight", + "file": "hugo-osprey_delight.md", + "name": "osprey-delight", + "title": "Osprey Delight", + "github_username": "kdevo", + "repo": "kdevo/osprey-delight", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/kdevo/osprey-delight", + "demo_url": "https://hugo-mods.github.io/", + "stars": 55, + "forks": 24, + "open_issues": 0, + "last_commit": "2022-05-01T09:55:40Z", + "created_at": "2019-11-23T13:03:41Z", + "description": "Osprey Delight is the free-minded artist's choice for a clutter-free and blazingly fast single-page portfolio.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/kdevo-osprey-delight.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kdevo-osprey-delight.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kdevo-osprey-delight-2x.jpg" } }, - "kdheepak-pelican-smoothie-master": { - "theme_key": "kdheepak-pelican-smoothie-master", + "kdheepak-pelican-smoothie": { + "theme_key": "kdheepak-pelican-smoothie", "file": "pelican-smoothie.md", "name": "pelican-smoothie", "title": "Smoothie", "github_username": "kdheepak", "repo": "kdheepak/pelican-smoothie", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/kdheepak/pelican-smoothie", "demo_url": "https://kdheepak.com/", "stars": 8, @@ -11033,1996 +14115,2390 @@ "last_commit": "2016-10-11T05:45:20Z", "created_at": "2015-08-02T16:41:36Z", "description": "Pelican-Smoothie - A Bootstrap theme for the static site generator Pelican", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/kdheepak-pelican-smoothie-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kdheepak-pelican-smoothie-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kdheepak-pelican-smoothie-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/kdheepak-pelican-smoothie.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kdheepak-pelican-smoothie.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kdheepak-pelican-smoothie-2x.jpg" } }, - "keichi-vienna-master": { - "theme_key": "keichi-vienna-master", + "keichi-vienna": { + "theme_key": "keichi-vienna", "file": "hugo-vienna-theme.md", "name": "vienna", "title": "Vienna", "github_username": "keichi", "repo": "keichi/vienna", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/keichi/vienna", "demo_url": "https://themes.gohugo.io/theme/vienna/", - "stars": 41, - "forks": 44, + "stars": 42, + "forks": 43, "open_issues": 6, "last_commit": "2020-04-02T03:56:56Z", "created_at": "2015-02-03T06:30:25Z", "description": "Simple and clean blog theme for hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/keichi-vienna-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/keichi-vienna-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/keichi-vienna-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/keichi-vienna.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/keichi-vienna.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/keichi-vienna-2x.jpg" } }, - "kejunmao-jekyll-theme-mdui-master": { - "theme_key": "kejunmao-jekyll-theme-mdui-master", + "kejunmao-jekyll-theme-mdui": { + "theme_key": "kejunmao-jekyll-theme-mdui", "file": "jekyll-mdui-theme.md", "name": "jekyll-theme-mdui", "title": "jekyll-theme-mdui", "github_username": "KeJunMao", "repo": "KeJunMao/jekyll-theme-mdui", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/KeJunMao/jekyll-theme-mdui", "demo_url": "https://blog.kejun.space/", - "stars": 142, - "forks": 67, - "open_issues": 4, - "last_commit": "2020-08-12T01:46:59Z", + "stars": 150, + "forks": 74, + "open_issues": 7, + "last_commit": "2021-02-10T13:50:17Z", "created_at": "2017-05-24T03:00:15Z", "description": "🍷A Jekyll theme based on MDUI", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/kejunmao-jekyll-theme-mdui-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kejunmao-jekyll-theme-mdui-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kejunmao-jekyll-theme-mdui-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/kejunmao-jekyll-theme-mdui.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kejunmao-jekyll-theme-mdui.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kejunmao-jekyll-theme-mdui-2x.jpg" } }, - "kendallstrautman-brevifolia-gatsby-forestry-master": { - "theme_key": "kendallstrautman-brevifolia-gatsby-forestry-master", + "kendallstrautman-brevifolia-gatsby-forestry": { + "theme_key": "kendallstrautman-brevifolia-gatsby-forestry", "file": "gatsby-brevifolia-forestry.md", "name": "brevifolia-gatsby-forestry", "title": "Gatsby Brevifolia Forestry", "github_username": "kendallstrautman", "repo": "kendallstrautman/brevifolia-gatsby-forestry", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/kendallstrautman/brevifolia-gatsby-forestry", "demo_url": "https://brevifolia-gatsby-forestry.netlify.com/", - "stars": 49, - "forks": 17, - "open_issues": 2, + "stars": 54, + "forks": 18, + "open_issues": 19, "last_commit": "2020-07-13T20:53:52Z", "created_at": "2019-07-08T20:57:37Z", "description": "A simple starter blog built with Gatsby & Forestry", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/kendallstrautman-brevifolia-gatsby-forestry-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kendallstrautman-brevifolia-gatsby-forestry-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kendallstrautman-brevifolia-gatsby-forestry-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/kendallstrautman-brevifolia-gatsby-forestry.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kendallstrautman-brevifolia-gatsby-forestry.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kendallstrautman-brevifolia-gatsby-forestry-2x.jpg" } }, - "kendallstrautman-brevifolia-gridsome-forestry-master": { - "theme_key": "kendallstrautman-brevifolia-gridsome-forestry-master", + "kendallstrautman-brevifolia-gridsome-forestry": { + "theme_key": "kendallstrautman-brevifolia-gridsome-forestry", "file": "brevifolia-gridsome-forestry.md", "name": "brevifolia-gridsome-forestry", "title": "Brevifolia Gridsome Forestry", "github_username": "kendallstrautman", "repo": "kendallstrautman/brevifolia-gridsome-forestry", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/kendallstrautman/brevifolia-gridsome-forestry", "demo_url": "https://brevifolia-gridsome-forestry.netlify.com/", - "stars": 22, + "stars": 24, "forks": 14, - "open_issues": 9, + "open_issues": 24, "last_commit": "2020-08-31T14:57:48Z", "created_at": "2019-08-12T23:36:29Z", "description": "A simple starter blog built with Gridsome & Forestry", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/kendallstrautman-brevifolia-gridsome-forestry-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kendallstrautman-brevifolia-gridsome-forestry-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kendallstrautman-brevifolia-gridsome-forestry-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/kendallstrautman-brevifolia-gridsome-forestry.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kendallstrautman-brevifolia-gridsome-forestry.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kendallstrautman-brevifolia-gridsome-forestry-2x.jpg" } }, - "kentico-gatsby-starter-kentico-cloud-master": { - "theme_key": "kentico-gatsby-starter-kentico-cloud-master", - "file": "gatsby-starter-kentico-cloud.md", + "kentico-gatsby-starter-kontent": { + "theme_key": "kentico-gatsby-starter-kontent", + "file": "gatsby-starter-kontent.md", "name": "gatsby-starter-kontent", "title": "Gatsby Starter Kentico Kontent", "github_username": "Kentico", "repo": "Kentico/gatsby-starter-kontent", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Kentico/gatsby-starter-kontent", - "demo_url": "https://gatsby-starter-kentico-cloud.netlify.com/", - "stars": 13, - "forks": 20, + "demo_url": "https://gatsby-starter-kontent.netlify.app", + "stars": 14, + "forks": 24, "open_issues": 12, - "last_commit": "2020-05-18T11:22:31Z", + "last_commit": "2022-03-09T15:47:46Z", "created_at": "2018-08-17T10:25:38Z", - "description": "Gatsby starter site with Kentico Kontent.", - "stale": false, + "description": "Gatsby starter site with Kontent by Kentico.", "images": { - "hires": "https://www.jamstackthemes.dev/capture/kentico-gatsby-starter-kentico-cloud-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kentico-gatsby-starter-kentico-cloud-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kentico-gatsby-starter-kentico-cloud-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/kentico-gatsby-starter-kontent.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kentico-gatsby-starter-kontent.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kentico-gatsby-starter-kontent-2x.jpg" } }, - "kentico-gatsby-starter-kontent-lumen-master": { - "theme_key": "kentico-gatsby-starter-kontent-lumen-master", + "kentico-gatsby-starter-kontent-lumen": { + "theme_key": "kentico-gatsby-starter-kontent-lumen", "file": "gatsby-kontent-lumen.md", "name": "gatsby-starter-kontent-lumen", "title": "Gatsby Kontent Lumen", "github_username": "Kentico", "repo": "Kentico/gatsby-starter-kontent-lumen", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Kentico/gatsby-starter-kontent-lumen", "demo_url": "https://gatsby-starter-kontent-lumen.netlify.app/", - "stars": 33, - "forks": 12, - "open_issues": 0, - "last_commit": "2020-11-03T12:27:34Z", + "stars": 69, + "forks": 21, + "open_issues": 7, + "last_commit": "2022-08-19T14:59:49Z", "created_at": "2020-02-25T08:43:55Z", - "description": "Lumen is a minimal, lightweight and mobile-first starter for creating blogs using Gatsby and Kentico Kontent.", - "stale": false, + "description": "Lumen is a minimal, lightweight, and mobile-first starter for creating blogs using Gatsby and Kontent.ai.", "images": { - "hires": "https://www.jamstackthemes.dev/capture/kentico-gatsby-starter-kontent-lumen-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kentico-gatsby-starter-kontent-lumen-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kentico-gatsby-starter-kontent-lumen-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/kentico-gatsby-starter-kontent-lumen.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kentico-gatsby-starter-kontent-lumen.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kentico-gatsby-starter-kontent-lumen-2x.jpg" } }, - "kentico-gatsby-starter-kontent-master": { - "theme_key": "kentico-gatsby-starter-kontent-master", - "file": "gatsby-starter-kontent.md", - "name": "gatsby-starter-kontent", - "title": "Gatsby Starter Kentico Kontent", - "github_username": "Kentico", - "repo": "Kentico/gatsby-starter-kontent", - "branch": "master", - "github_url": "https://github.com/Kentico/gatsby-starter-kontent", - "demo_url": "https://gatsby-starter-kontent.netlify.app", - "stars": 13, - "forks": 20, - "open_issues": 12, - "last_commit": "2020-05-18T11:22:31Z", - "created_at": "2018-08-17T10:25:38Z", - "description": "Gatsby starter site with Kentico Kontent.", - "stale": false, - "images": { - "hires": "https://www.jamstackthemes.dev/capture/kentico-gatsby-starter-kontent-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kentico-gatsby-starter-kontent-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kentico-gatsby-starter-kontent-master-2x.jpg" - } - }, - "kentico-kontent-boilerplate-statiq-net-master": { - "theme_key": "kentico-kontent-boilerplate-statiq-net-master", + "kentico-kontent-boilerplate-statiq-net": { + "theme_key": "kentico-kontent-boilerplate-statiq-net", "file": "statiq-kontent-boilerplate.md", "name": "kontent-boilerplate-statiq-net", "title": "Statiq Kontent Boilerplate Kontent", "github_username": "Kentico", "repo": "Kentico/kontent-boilerplate-statiq-net", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/Kentico/kontent-boilerplate-statiq-net", "demo_url": "https://kentico.github.io/kontent-boilerplate-statiq-net", - "stars": 4, - "forks": 1, - "open_issues": 0, - "last_commit": "2020-12-10T09:59:59Z", + "stars": 10, + "forks": 2, + "open_issues": 1, + "last_commit": "2022-02-03T13:56:36Z", "created_at": "2020-11-18T18:26:57Z", "description": "Boilerplate utilizing Statiq and Kentico Kontent to provide a starting point in the Jamstack world for .NET developers.", "images": { - "hires": "https://www.jamstackthemes.dev/capture/kentico-kontent-boilerplate-statiq-net-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kentico-kontent-boilerplate-statiq-net-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kentico-kontent-boilerplate-statiq-net-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/kentico-kontent-boilerplate-statiq-net.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kentico-kontent-boilerplate-statiq-net.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kentico-kontent-boilerplate-statiq-net-2x.jpg" } }, - "kentico-kontent-jekyll-blog-master": { - "theme_key": "kentico-kontent-jekyll-blog-master", + "kentico-kontent-jekyll-blog": { + "theme_key": "kentico-kontent-jekyll-blog", "file": "jekyll-kontent-blog.md", "name": "kontent-jekyll-blog", "title": "Jekyll Kontent Blog", "github_username": "Kentico", "repo": "Kentico/kontent-jekyll-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Kentico/kontent-jekyll-blog", "demo_url": "https://kentico.github.io/kontent-jekyll-blog/", "stars": 0, - "forks": 1, - "open_issues": 4, - "last_commit": "2020-06-05T09:21:50Z", + "forks": 2, + "open_issues": 6, + "last_commit": "2022-10-19T13:17:07Z", "created_at": "2018-12-14T15:28:08Z", "description": "Sample blog website built in Jekyll static site generator, using headless CMS Kentico Kontent as a content repository and kontent-jekyll plugin for content and data import.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/kentico-kontent-jekyll-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kentico-kontent-jekyll-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kentico-kontent-jekyll-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/kentico-kontent-jekyll-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kentico-kontent-jekyll-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kentico-kontent-jekyll-blog-2x.jpg" } }, - "kentico-kontent-sample-dancing-goat-gridsome-master": { - "theme_key": "kentico-kontent-sample-dancing-goat-gridsome-master", + "kentico-kontent-sample-dancing-goat-gridsome": { + "theme_key": "kentico-kontent-sample-dancing-goat-gridsome", "file": "gridsome-kontent-dancing-goat.md", "name": "kontent-sample-dancing-goat-gridsome", "title": "Gridsome Kontent Dancing Goat", "github_username": "Kentico", "repo": "Kentico/kontent-sample-dancing-goat-gridsome", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Kentico/kontent-sample-dancing-goat-gridsome", "demo_url": "https://kontent-sample-dancing-goat-gridsome.netlify.app/", - "stars": 2, - "forks": 1, - "open_issues": 5, - "last_commit": "2020-04-01T19:46:29Z", + "stars": 3, + "forks": 3, + "open_issues": 20, + "last_commit": "2022-12-08T10:04:45Z", "created_at": "2019-11-01T22:12:22Z", "description": "Dancing Goat Sample site built on Gridsome", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/kentico-kontent-sample-dancing-goat-gridsome-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kentico-kontent-sample-dancing-goat-gridsome-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kentico-kontent-sample-dancing-goat-gridsome-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/kentico-kontent-sample-dancing-goat-gridsome.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kentico-kontent-sample-dancing-goat-gridsome.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kentico-kontent-sample-dancing-goat-gridsome-2x.jpg" } }, - "kentico-statiq-starter-kontent-lumen-master": { - "theme_key": "kentico-statiq-starter-kontent-lumen-master", + "kentico-statiq-starter-kontent-lumen": { + "theme_key": "kentico-statiq-starter-kontent-lumen", "file": "statiq-starter-kontent-lumen.md", "name": "statiq-starter-kontent-lumen", "title": "Statiq Starter Kontent Lumen", "github_username": "Kentico", "repo": "Kentico/statiq-starter-kontent-lumen", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Kentico/statiq-starter-kontent-lumen", "demo_url": "https://kentico.github.io/statiq-starter-kontent-lumen/", - "stars": 5, - "forks": 3, - "open_issues": 2, - "last_commit": "2020-12-11T09:36:44Z", + "stars": 22, + "forks": 7, + "open_issues": 4, + "last_commit": "2022-10-25T08:11:15Z", "created_at": "2020-10-09T07:32:02Z", - "description": "Lumen is a minimal, lightweight, and mobile-first starter for creating blogs using Statiq and Kentico Kontent.", - "stale": false, + "description": "Lumen is a minimal, lightweight, and mobile-first starter for creating blogs using Statiq and Kontent by Kentico.", "images": { - "hires": "https://www.jamstackthemes.dev/capture/kentico-statiq-starter-kontent-lumen-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kentico-statiq-starter-kontent-lumen-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kentico-statiq-starter-kontent-lumen-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/kentico-statiq-starter-kontent-lumen.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kentico-statiq-starter-kontent-lumen.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kentico-statiq-starter-kontent-lumen-2x.jpg" } }, - "kevit-devaid-jekyll-theme-master": { - "theme_key": "kevit-devaid-jekyll-theme-master", + "kevit-devaid-jekyll-theme": { + "theme_key": "kevit-devaid-jekyll-theme", "file": "jekyll-devaid.md", "name": "devaid-jekyll-theme", "title": "devAid", "github_username": "kevit", "repo": "kevit/devaid-jekyll-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/kevit/devaid-jekyll-theme", "demo_url": "https://themes.3rdwavemedia.com/demo/devaid/", - "stars": 41, - "forks": 24, + "stars": 40, + "forks": 26, "open_issues": 3, "last_commit": "2019-03-20T11:46:46Z", "created_at": "2015-04-16T15:01:33Z", "description": "DevAid theme for Jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/kevit-devaid-jekyll-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kevit-devaid-jekyll-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kevit-devaid-jekyll-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/kevit-devaid-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kevit-devaid-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kevit-devaid-jekyll-theme-2x.jpg" } }, - "kimnagui-gatsby-starter-nagui-master": { - "theme_key": "kimnagui-gatsby-starter-nagui-master", + "kimnagui-gatsby-starter-nagui": { + "theme_key": "kimnagui-gatsby-starter-nagui", "file": "gatsby-starter-nagui.md", "name": "gatsby-starter-nagui", "title": "Gatsby Nagui", "github_username": "kimnagui", "repo": "kimnagui/gatsby-starter-nagui", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/kimnagui/gatsby-starter-nagui", "demo_url": "https://demo.nagui.me/", "stars": 12, "forks": 6, - "open_issues": 11, + "open_issues": 22, "last_commit": "2020-01-28T00:34:22Z", "created_at": "2019-07-15T06:31:10Z", "description": "Gatsbyjs Starter", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/kimnagui-gatsby-starter-nagui-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kimnagui-gatsby-starter-nagui-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kimnagui-gatsby-starter-nagui-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/kimnagui-gatsby-starter-nagui.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kimnagui-gatsby-starter-nagui.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kimnagui-gatsby-starter-nagui-2x.jpg" } }, - "kingfelix-emerald-master": { - "theme_key": "kingfelix-emerald-master", + "kingfelix-emerald": { + "theme_key": "kingfelix-emerald", "file": "jekyll-emerald.md", "name": "emerald", "title": "Emerald", "github_username": "KingFelix", "repo": "KingFelix/emerald", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/KingFelix/emerald", "demo_url": "https://www.jacoporabolini.com/emerald/", - "stars": 183, - "forks": 703, - "open_issues": 3, + "stars": 187, + "forks": 711, + "open_issues": 4, "last_commit": "2019-10-23T07:27:27Z", "created_at": "2015-03-17T10:26:55Z", "description": "A minimal and mobile-first blog theme for Jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/kingfelix-emerald-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kingfelix-emerald-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kingfelix-emerald-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/kingfelix-emerald.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kingfelix-emerald.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kingfelix-emerald-2x.jpg" } }, - "kippt-jekyll-incorporated-master": { - "theme_key": "kippt-jekyll-incorporated-master", + "kippt-jekyll-incorporated": { + "theme_key": "kippt-jekyll-incorporated", "file": "jekyll-incorporated.md", "name": "jekyll-incorporated", "title": "Incorporated", "github_username": "kippt", "repo": "kippt/jekyll-incorporated", "branch": "master", - "url": "https://github.com/kippt/jekyll-incorporated", + "default_branch": "master", + "github_url": "https://github.com/kippt/jekyll-incorporated", + "demo_url": "https://blog.sendtoinc.com/", "stars": 1074, - "forks": 377, + "forks": 381, "open_issues": 21, "last_commit": "2014-02-26T00:01:30Z", "created_at": "2013-10-09T21:57:31Z", "description": "Modern Jekyll based blog for companies", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/kippt-jekyll-incorporated-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kippt-jekyll-incorporated-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kippt-jekyll-incorporated-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/kippt-jekyll-incorporated.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kippt-jekyll-incorporated.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kippt-jekyll-incorporated-2x.jpg" + } + }, + "kirqe-autm-rb": { + "theme_key": "railsr-autm-rb", + "file": "jekyll-autm-rb.md", + "name": "autm-rb", + "title": "autm-rb", + "github_username": "kirqe", + "repo": "kirqe/autm-rb", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/kirqe/autm-rb", + "demo_url": "https://kirqe.github.io/autm-rb/", + "stars": 83, + "forks": 115, + "open_issues": 1, + "last_commit": "2017-04-02T21:14:04Z", + "created_at": "2014-10-10T15:37:02Z", + "description": "Jekyll theme", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/railsr-autm-rb.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/railsr-autm-rb.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/railsr-autm-rb-2x.jpg" } }, - "kishaningithub-hugo-creative-portfolio-theme-master": { - "theme_key": "kishaningithub-hugo-creative-portfolio-theme-master", + "kishaningithub-hugo-creative-portfolio-theme": { + "theme_key": "kishaningithub-hugo-creative-portfolio-theme", "file": "hugo-creative-portfolio-theme.md", "name": "hugo-creative-portfolio-theme", "title": "Creative portfolio", "github_username": "kishaningithub", "repo": "kishaningithub/hugo-creative-portfolio-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/kishaningithub/hugo-creative-portfolio-theme", "demo_url": "https://themes.gohugo.io/theme/hugo-creative-portfolio-theme/portfolio/", - "stars": 298, - "forks": 192, - "open_issues": 19, + "stars": 335, + "forks": 222, + "open_issues": 22, "last_commit": "2020-12-21T08:27:57Z", "created_at": "2016-11-02T09:44:46Z", "description": "Port of the creative portfolio theme to Hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/kishaningithub-hugo-creative-portfolio-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kishaningithub-hugo-creative-portfolio-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kishaningithub-hugo-creative-portfolio-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/kishaningithub-hugo-creative-portfolio-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kishaningithub-hugo-creative-portfolio-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kishaningithub-hugo-creative-portfolio-theme-2x.jpg" } }, - "kitian616-jekyll-text-theme-master": { - "theme_key": "kitian616-jekyll-text-theme-master", + "kitian616-jekyll-text-theme": { + "theme_key": "kitian616-jekyll-text-theme", "file": "jekyll-TeXt-theme.md", "name": "jekyll-TeXt-theme", "title": "TeXt", "github_username": "kitian616", "repo": "kitian616/jekyll-TeXt-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/kitian616/jekyll-TeXt-theme", "demo_url": "https://tianqi.name/jekyll-TeXt-theme/", - "stars": 1618, - "forks": 1421, - "open_issues": 104, - "last_commit": "2021-01-03T14:58:11Z", + "stars": 2661, + "forks": 2255, + "open_issues": 154, + "last_commit": "2022-10-23T16:17:30Z", "created_at": "2017-10-07T10:04:39Z", "description": "💎 🐳 A super customizable Jekyll theme for personal site, team site, blog, project, documentation, etc.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/kitian616-jekyll-text-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kitian616-jekyll-text-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kitian616-jekyll-text-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/kitian616-jekyll-text-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kitian616-jekyll-text-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kitian616-jekyll-text-theme-2x.jpg" } }, - "kkninjae-book-master": { - "theme_key": "kkninjae-book-master", + "kkninjae-book": { + "theme_key": "kkninjae-book", "file": "jekyll-book.md", "name": "book", "title": "Book", "github_username": "kkninjae", "repo": "kkninjae/book", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/kkninjae/book", "demo_url": "https://liulang.co/book/", - "stars": 113, - "forks": 62, + "stars": 121, + "forks": 64, "open_issues": 5, "last_commit": "2018-01-16T12:48:20Z", "created_at": "2015-08-27T20:29:15Z", "description": "A Jekyll Theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/kkninjae-book-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kkninjae-book-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kkninjae-book-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/kkninjae-book.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kkninjae-book.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kkninjae-book-2x.jpg" } }, - "klugjo-hexo-theme-alpha-dust-master": { - "theme_key": "klugjo-hexo-theme-alpha-dust-master", + "klugjo-hexo-theme-alpha-dust": { + "theme_key": "klugjo-hexo-theme-alpha-dust", "file": "hexo-theme-alpha-dust.md", "name": "hexo-theme-alpha-dust", "title": "Alpha Dust", "github_username": "klugjo", "repo": "klugjo/hexo-theme-alpha-dust", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/klugjo/hexo-theme-alpha-dust", "demo_url": "https://www.codeblocq.com/assets/projects/hexo-theme-alpha-dust/", - "stars": 271, - "forks": 86, - "open_issues": 3, + "stars": 297, + "forks": 97, + "open_issues": 4, "last_commit": "2020-08-21T20:30:11Z", "created_at": "2016-06-21T01:22:11Z", "description": "🌠 Original Futuristic Hexo Theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/klugjo-hexo-theme-alpha-dust-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/klugjo-hexo-theme-alpha-dust-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/klugjo-hexo-theme-alpha-dust-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/klugjo-hexo-theme-alpha-dust.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/klugjo-hexo-theme-alpha-dust.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/klugjo-hexo-theme-alpha-dust-2x.jpg" } }, - "klugjo-hexo-theme-anodyne-master": { - "theme_key": "klugjo-hexo-theme-anodyne-master", + "klugjo-hexo-theme-anodyne": { + "theme_key": "klugjo-hexo-theme-anodyne", "file": "hexo-theme-anodyne.md", "name": "hexo-theme-anodyne", "title": "Anodyne", "github_username": "klugjo", "repo": "klugjo/hexo-theme-anodyne", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/klugjo/hexo-theme-anodyne", "demo_url": "https://www.codeblocq.com/assets/projects/hexo-theme-anodyne/", - "stars": 140, + "stars": 148, "forks": 35, - "open_issues": 3, + "open_issues": 2, "last_commit": "2019-07-06T05:14:22Z", "created_at": "2017-01-27T03:59:03Z", "description": "🌋 Original Bright Theme for Hexo", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/klugjo-hexo-theme-anodyne-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/klugjo-hexo-theme-anodyne-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/klugjo-hexo-theme-anodyne-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/klugjo-hexo-theme-anodyne.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/klugjo-hexo-theme-anodyne.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/klugjo-hexo-theme-anodyne-2x.jpg" } }, - "klugjo-hexo-theme-clean-blog-master": { - "theme_key": "klugjo-hexo-theme-clean-blog-master", + "klugjo-hexo-theme-clean-blog": { + "theme_key": "klugjo-hexo-theme-clean-blog", "file": "hexo-theme-clean-blog.md", "name": "hexo-theme-clean-blog", "title": "Hexo Clean Blog", "github_username": "klugjo", "repo": "klugjo/hexo-theme-clean-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/klugjo/hexo-theme-clean-blog", "demo_url": "https://www.codeblocq.com/assets/projects/hexo-theme-clean-blog/", - "stars": 360, - "forks": 129, + "stars": 384, + "forks": 128, "open_issues": 6, - "last_commit": "2019-08-14T05:13:50Z", + "last_commit": "2021-02-08T07:01:15Z", "created_at": "2016-03-11T05:53:04Z", "description": "Hexo implementation of Clean Blog http://blackrockdigital.github.io/startbootstrap-clean-blog/index.html", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/klugjo-hexo-theme-clean-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/klugjo-hexo-theme-clean-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/klugjo-hexo-theme-clean-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/klugjo-hexo-theme-clean-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/klugjo-hexo-theme-clean-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/klugjo-hexo-theme-clean-blog-2x.jpg" } }, - "klugjo-hexo-theme-phantom-master": { - "theme_key": "klugjo-hexo-theme-phantom-master", + "klugjo-hexo-theme-phantom": { + "theme_key": "klugjo-hexo-theme-phantom", "file": "hexo-theme-phantom.md", "name": "hexo-theme-phantom", "title": "Phantom", "github_username": "klugjo", "repo": "klugjo/hexo-theme-phantom", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/klugjo/hexo-theme-phantom", "demo_url": "https://www.codeblocq.com/assets/projects/hexo-theme-phantom/", - "stars": 213, - "forks": 58, + "stars": 238, + "forks": 59, "open_issues": 6, "last_commit": "2018-11-27T10:26:19Z", "created_at": "2016-03-30T06:14:41Z", "description": "Hexo implementation of Phantom (http://html5up.net/phantom)", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/klugjo-hexo-theme-phantom-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/klugjo-hexo-theme-phantom-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/klugjo-hexo-theme-phantom-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/klugjo-hexo-theme-phantom.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/klugjo-hexo-theme-phantom.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/klugjo-hexo-theme-phantom-2x.jpg" } }, - "knaman2609-clean-master": { - "theme_key": "knaman2609-clean-master", + "knaman2609-clean": { + "theme_key": "knaman2609-clean", "file": "jekyll-clean.md", "name": "clean", "title": "Clean", "github_username": "knaman2609", "repo": "knaman2609/clean", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/knaman2609/clean", "demo_url": "https://knaman2609.github.io/clean/", - "stars": 51, - "forks": 59, - "open_issues": 10, + "stars": 49, + "forks": 58, + "open_issues": 9, "last_commit": "2017-06-05T18:34:26Z", "created_at": "2015-09-26T18:55:33Z", "description": "A clean jekyll theme.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/knaman2609-clean-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/knaman2609-clean-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/knaman2609-clean-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/knaman2609-clean.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/knaman2609-clean.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/knaman2609-clean-2x.jpg" } }, - "knhash-pudhina-master": { - "theme_key": "knhash-pudhina-master", + "knhash-jekyllbear": { + "theme_key": "knhash-jekyllbear", + "file": "jekyllBear.md", + "name": "jekyllBear", + "title": "jekyllBear", + "github_username": "knhash", + "repo": "knhash/jekyllBear", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/knhash/jekyllBear", + "demo_url": "https://knhash.in/jekyllBear", + "stars": 20, + "forks": 15, + "open_issues": 0, + "last_commit": "2022-10-25T13:06:23Z", + "created_at": "2022-08-21T12:31:01Z", + "description": "An easy to use, minimal, text focused Jekyll theme", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/knhash-jekyllbear.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/knhash-jekyllbear.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/knhash-jekyllbear-2x.jpg" + } + }, + "knhash-pudhina": { + "theme_key": "knhash-pudhina", "file": "pudhina.md", "name": "Pudhina", "title": "Pudhina", "github_username": "knhash", "repo": "knhash/Pudhina", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/knhash/Pudhina", "demo_url": "https://knhash.github.io/Pudhina/", - "stars": 30, - "forks": 137, - "open_issues": 0, - "last_commit": "2020-09-11T18:54:50Z", + "stars": 86, + "forks": 193, + "open_issues": 1, + "last_commit": "2022-10-25T13:06:55Z", "created_at": "2018-03-26T10:13:57Z", "description": "A simple, minimal Jekyll theme for a personal web page and blog, focusing on white space and readability", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/knhash-pudhina-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/knhash-pudhina-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/knhash-pudhina-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/knhash-pudhina.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/knhash-pudhina.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/knhash-pudhina-2x.jpg" } }, - "knightjdr-gatsby-starter-scientist-master": { - "theme_key": "knightjdr-gatsby-starter-scientist-master", + "knightjdr-gatsby-starter-scientist": { + "theme_key": "knightjdr-gatsby-starter-scientist", "file": "gatsby-starter-scientist.md", "name": "gatsby-starter-scientist", "title": "Gatsby Starter for Scientists", "github_username": "knightjdr", "repo": "knightjdr/gatsby-starter-scientist", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/knightjdr/gatsby-starter-scientist", "demo_url": "https://knightjdr.github.io/gatsby-starter-scientist", - "stars": 2, - "forks": 1, - "open_issues": 0, - "last_commit": "2020-12-10T15:53:50Z", + "stars": 9, + "forks": 23, + "open_issues": 3, + "last_commit": "2022-12-27T19:32:28Z", "created_at": "2020-05-23T22:08:30Z", "description": "Gatsby template for scientist/lab profile", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/knightjdr-gatsby-starter-scientist-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/knightjdr-gatsby-starter-scientist-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/knightjdr-gatsby-starter-scientist-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/knightjdr-gatsby-starter-scientist.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/knightjdr-gatsby-starter-scientist.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/knightjdr-gatsby-starter-scientist-2x.jpg" } }, - "koirand-pulp-master": { - "theme_key": "koirand-pulp-master", + "koirand-pulp": { + "theme_key": "koirand-pulp", "file": "hugo-pulp.md", "name": "pulp", "title": "Pulp", "github_username": "koirand", "repo": "koirand/pulp", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/koirand/pulp", "demo_url": "https://themes.gohugo.io/theme/pulp/", - "stars": 91, - "forks": 52, - "open_issues": 3, + "stars": 100, + "forks": 55, + "open_issues": 9, "last_commit": "2020-11-01T12:18:35Z", "created_at": "2018-09-23T10:34:53Z", "description": "Pulp is a Hugo theme for getting a simple, easy-to-read blog site.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/koirand-pulp-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/koirand-pulp-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/koirand-pulp-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/koirand-pulp.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/koirand-pulp.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/koirand-pulp-2x.jpg" + } + }, + "komomoo-vuepress-theme-resume": { + "theme_key": "wannaxiao-vuepress-theme-resume", + "file": "vuepress-theme-resume.md", + "name": "vuepress-theme-resume", + "title": "Resume", + "github_username": "komomoo", + "repo": "komomoo/vuepress-theme-resume", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/komomoo/vuepress-theme-resume", + "demo_url": "https://wannaxiao.github.io/vuepress-theme-resume/example/dist/", + "stars": 260, + "forks": 101, + "open_issues": 3, + "last_commit": "2021-11-19T09:08:14Z", + "created_at": "2018-06-03T07:19:01Z", + "description": "🐈 书写简洁优雅的前端程序员 markdown 简历,由 vuepress 驱动", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/wannaxiao-vuepress-theme-resume.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wannaxiao-vuepress-theme-resume.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wannaxiao-vuepress-theme-resume-2x.jpg" } }, - "konsumer-gatsby-starter-bootstrap-netlify-master": { - "theme_key": "konsumer-gatsby-starter-bootstrap-netlify-master", + "konsumer-gatsby-starter-bootstrap-netlify": { + "theme_key": "konsumer-gatsby-starter-bootstrap-netlify", "file": "gatsby-starter-bootstrap-netlify.md", "name": "gatsby-starter-bootstrap-netlify", "title": "Gatsby Starter Bootstrap Netlify", "github_username": "konsumer", "repo": "konsumer/gatsby-starter-bootstrap-netlify", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/konsumer/gatsby-starter-bootstrap-netlify", "demo_url": "https://gatsby-starter-bootstrap-netlify.netlify.com/", - "stars": 59, - "forks": 25, + "stars": 63, + "forks": 27, "open_issues": 3, "last_commit": "2019-05-03T20:35:51Z", "created_at": "2017-11-08T01:59:41Z", "description": "Bootstrap and netlify CMS starter for Gatsby", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/konsumer-gatsby-starter-bootstrap-netlify-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/konsumer-gatsby-starter-bootstrap-netlify-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/konsumer-gatsby-starter-bootstrap-netlify-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/konsumer-gatsby-starter-bootstrap-netlify.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/konsumer-gatsby-starter-bootstrap-netlify.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/konsumer-gatsby-starter-bootstrap-netlify-2x.jpg" + } + }, + "kontent-ai-boilerplate-statiq-net": { + "theme_key": "kentico-kontent-boilerplate-statiq-net", + "file": "statiq-kontent-boilerplate.md", + "name": "boilerplate-statiq-net", + "title": "Statiq Kontent Boilerplate Kontent", + "github_username": "kontent-ai", + "repo": "kontent-ai/boilerplate-statiq-net", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/kontent-ai/boilerplate-statiq-net", + "demo_url": "https://kentico.github.io/kontent-boilerplate-statiq-net", + "stars": 12, + "forks": 2, + "open_issues": 1, + "last_commit": "2022-08-18T13:14:59Z", + "created_at": "2020-11-18T18:26:57Z", + "description": "Boilerplate utilizing Statiq and Kontent.ai to provide a starting point in the Jamstack world for .NET developers.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/kentico-kontent-boilerplate-statiq-net.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kentico-kontent-boilerplate-statiq-net.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kentico-kontent-boilerplate-statiq-net-2x.jpg" + } + }, + "kontent-ai-gatsby-starter": { + "theme_key": "kentico-gatsby-starter-kontent", + "file": "gatsby-starter-kontent.md", + "name": "gatsby-starter", + "title": "Gatsby Starter Kentico Kontent", + "github_username": "kontent-ai", + "repo": "kontent-ai/gatsby-starter", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/kontent-ai/gatsby-starter", + "demo_url": "https://gatsby-starter-kontent.netlify.app", + "stars": 15, + "forks": 24, + "open_issues": 11, + "last_commit": "2023-01-17T08:05:58Z", + "created_at": "2018-08-17T10:25:38Z", + "description": "Gatsby starter site with Kontent.ai", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/kentico-gatsby-starter-kontent.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kentico-gatsby-starter-kontent.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kentico-gatsby-starter-kontent-2x.jpg" } }, - "kronik3r-daktilo-master": { - "theme_key": "kronik3r-daktilo-master", + "kronik3r-daktilo": { + "theme_key": "kronik3r-daktilo", "file": "jekyll-daktilo.md", "name": "daktilo", "title": "Daktilo", "github_username": "kronik3r", "repo": "kronik3r/daktilo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/kronik3r/daktilo", "demo_url": "https://daktilo.github.io/", - "stars": 265, - "forks": 151, - "open_issues": 8, + "stars": 281, + "forks": 159, + "open_issues": 9, "last_commit": "2018-12-03T18:13:42Z", "created_at": "2015-09-08T04:32:39Z", "description": "A Jekyll theme with a minimal design inspired by typewriters.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/kronik3r-daktilo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kronik3r-daktilo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kronik3r-daktilo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/kronik3r-daktilo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kronik3r-daktilo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kronik3r-daktilo-2x.jpg" + } + }, + "kulacino-bajawa": { + "theme_key": "kulacino-bajawa", + "file": "jekyll-bajawa.md", + "name": "bajawa", + "title": "Bajawa", + "github_username": "kulacino", + "repo": "kulacino/bajawa", + "branch": "gh-pages", + "default_branch": "gh-pages", + "github_url": "https://github.com/kulacino/bajawa", + "demo_url": "https://bajawa.ayuwelirang.com", + "stars": 4, + "forks": 4, + "open_issues": 1, + "last_commit": "2022-01-25T13:54:09Z", + "created_at": "2020-09-23T07:41:50Z", + "description": "Bajawa is a jekyll theme starter. Built for those who likes simple and clean blog.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/kulacino-bajawa.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kulacino-bajawa.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kulacino-bajawa-2x.jpg" + } + }, + "kun8018-gatsby-starter-icarus-blog": { + "theme_key": "kun8018-gatsby-starter-icarus-blog", + "file": "gatsby-starter-icarus-blog.md", + "name": "gatsby-starter-icarus-blog", + "title": "Gatsby Starter Icarus Blog", + "github_username": "Kun8018", + "repo": "Kun8018/gatsby-starter-icarus-blog", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/Kun8018/gatsby-starter-icarus-blog", + "demo_url": "https://kunzhang.me/", + "stars": 3, + "forks": 1, + "open_issues": 1, + "last_commit": "2022-10-19T11:00:37Z", + "created_at": "2022-07-31T07:04:04Z", + "description": "icarus-like theme with gatsby", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/kun8018-gatsby-starter-icarus-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kun8018-gatsby-starter-icarus-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kun8018-gatsby-starter-icarus-blog-2x.jpg" } }, - "kuntoaji-dekyll-master": { - "theme_key": "kuntoaji-dekyll-master", + "kuntoaji-dekyll": { + "theme_key": "kuntoaji-dekyll", "file": "jekyll-dekyll.md", "name": "dekyll", "title": "Dekyll", "github_username": "kuntoaji", "repo": "kuntoaji/dekyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/kuntoaji/dekyll", "demo_url": "https://www.kaklabs.com", - "stars": 8, - "forks": 11, - "open_issues": 1, - "last_commit": "2020-08-22T15:21:30Z", + "stars": 9, + "forks": 12, + "open_issues": 0, + "last_commit": "2022-11-09T15:00:13Z", "created_at": "2016-02-21T14:29:19Z", "description": "Clean and Minimal Jekyll theme based on Jekyll's Minima Layout", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/kuntoaji-dekyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kuntoaji-dekyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kuntoaji-dekyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/kuntoaji-dekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kuntoaji-dekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kuntoaji-dekyll-2x.jpg" } }, - "kxxvii-kikofri-master": { - "theme_key": "kxxvii-kikofri-master", + "kxxvii-kikofri": { + "theme_key": "kxxvii-kikofri", "file": "jekyll-Kikofri.md", "name": "Kikofri", "title": "Kikofri ", "github_username": "kxxvii", "repo": "kxxvii/Kikofri", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/kxxvii/Kikofri", "demo_url": "https://kxxvii.github.io/Kikofri", - "stars": 9, - "forks": 6, + "stars": 12, + "forks": 7, "open_issues": 0, "last_commit": "2019-07-09T20:33:29Z", "created_at": "2016-08-21T18:10:19Z", "description": "Kikofri, a Jekyll Theme, and a fork of Kiko.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/kxxvii-kikofri-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kxxvii-kikofri-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kxxvii-kikofri-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/kxxvii-kikofri.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kxxvii-kikofri.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kxxvii-kikofri-2x.jpg" } }, - "laixintao-princess-diaries-master": { - "theme_key": "laixintao-princess-diaries-master", + "laixintao-princess-diaries": { + "theme_key": "laixintao-princess-diaries", "file": "jekyll-princess-diaries.md", "name": "Princess-Diaries", "title": "Princess Diaries", "github_username": "laixintao", "repo": "laixintao/Princess-Diaries", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/laixintao/Princess-Diaries", "demo_url": "https://laixintao.github.io/Princess-Diaries.html", - "stars": 5, - "forks": 10, + "stars": 6, + "forks": 11, "open_issues": 0, "last_commit": "2017-08-02T01:49:55Z", "created_at": "2015-11-21T15:15:37Z", "description": "👸 A jekyll theme.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/laixintao-princess-diaries-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/laixintao-princess-diaries-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/laixintao-princess-diaries-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/laixintao-princess-diaries.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/laixintao-princess-diaries.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/laixintao-princess-diaries-2x.jpg" } }, - "laobubu-jekyll-theme-easybook-gh-pages": { - "theme_key": "laobubu-jekyll-theme-easybook-gh-pages", + "laobubu-jekyll-theme-easybook": { + "theme_key": "laobubu-jekyll-theme-easybook", "file": "jekyll-easybook.md", "name": "jekyll-theme-EasyBook", "title": "EasyBook", "github_username": "laobubu", "repo": "laobubu/jekyll-theme-EasyBook", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/laobubu/jekyll-theme-EasyBook", "demo_url": "https://blog.laobubu.net/", - "stars": 124, + "stars": 126, "forks": 90, "open_issues": 4, "last_commit": "2018-11-19T09:28:39Z", "created_at": "2015-01-15T06:14:44Z", "description": "Another Jekyll Blog Theme \"EasyBook\"", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/laobubu-jekyll-theme-easybook-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/laobubu-jekyll-theme-easybook-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/laobubu-jekyll-theme-easybook-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/laobubu-jekyll-theme-easybook.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/laobubu-jekyll-theme-easybook.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/laobubu-jekyll-theme-easybook-2x.jpg" } }, - "lasseborly-anybodyhome-master": { - "theme_key": "lasseborly-anybodyhome-master", + "lasseborly-anybodyhome": { + "theme_key": "lasseborly-anybodyhome", "file": "hugo-anybodyhome-theme.md", "name": "anybodyhome", "title": "Anybody Home", "github_username": "lasseborly", "repo": "lasseborly/anybodyhome", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/lasseborly/anybodyhome", "demo_url": "https://themes.gohugo.io/theme/anybodyhome/", - "stars": 15, - "forks": 5, + "stars": 16, + "forks": 7, "open_issues": 1, "last_commit": "2018-04-09T21:33:36Z", "created_at": "2016-08-31T14:03:59Z", "description": "A simple theme for simple people", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lasseborly-anybodyhome-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lasseborly-anybodyhome-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lasseborly-anybodyhome-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lasseborly-anybodyhome.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lasseborly-anybodyhome.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lasseborly-anybodyhome-2x.jpg" } }, - "lauragift21-gridsome-minimal-blog-master": { - "theme_key": "lauragift21-gridsome-minimal-blog-master", + "lauragift21-gridsome-minimal-blog": { + "theme_key": "lauragift21-gridsome-minimal-blog", "file": "minimal-starter-theme.md", "name": "gridsome-minimal-blog", "title": "Gridsome Minimal Blog", "github_username": "lauragift21", "repo": "lauragift21/gridsome-minimal-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/lauragift21/gridsome-minimal-blog", "demo_url": "https://gridsome-blog-telerik.netlify.com/", - "stars": 48, - "forks": 56, - "open_issues": 2, - "last_commit": "2020-08-17T13:34:47Z", + "stars": 58, + "forks": 52, + "open_issues": 4, + "last_commit": "2022-09-13T07:32:41Z", "created_at": "2019-05-23T10:48:45Z", "description": "📚 A blog built with Gridsome and Hosted on Netlify", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lauragift21-gridsome-minimal-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lauragift21-gridsome-minimal-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lauragift21-gridsome-minimal-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lauragift21-gridsome-minimal-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lauragift21-gridsome-minimal-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lauragift21-gridsome-minimal-blog-2x.jpg" } }, - "lavkumarv-feature-blog-jekyll-master": { - "theme_key": "lavkumarv-feature-blog-jekyll-master", + "lavkumarv-feature-blog-jekyll": { + "theme_key": "lavkumarv-feature-blog-jekyll", "file": "jekyll-feature-blog.md", "name": "feature-blog-jekyll", "title": "Feature Blog", "github_username": "lavkumarv", "repo": "lavkumarv/feature-blog-jekyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/lavkumarv/feature-blog-jekyll", "demo_url": "https://lavkumarv.github.io/", - "stars": 8, + "stars": 10, "forks": 19, "open_issues": 0, "last_commit": "2017-01-29T18:02:08Z", "created_at": "2017-01-05T19:19:50Z", "description": "Feature Blog is a minimalist, beautiful, responsive theme for Jekyll. Demo: ", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lavkumarv-feature-blog-jekyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lavkumarv-feature-blog-jekyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lavkumarv-feature-blog-jekyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lavkumarv-feature-blog-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lavkumarv-feature-blog-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lavkumarv-feature-blog-jekyll-2x.jpg" } }, - "le4ker-personal-jekyll-theme-master": { - "theme_key": "le4ker-personal-jekyll-theme-master", + "le4ker-personal-jekyll-theme": { + "theme_key": "le4ker-personal-jekyll-theme", "file": "jekyll-personal.md", "name": "personal-jekyll-theme", "title": "Personal", "github_username": "le4ker", "repo": "le4ker/personal-jekyll-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/le4ker/personal-jekyll-theme", "demo_url": "https://le4ker.github.io/personal-jekyll-theme/", - "stars": 565, - "forks": 602, - "open_issues": 21, + "stars": 590, + "forks": 626, + "open_issues": 22, "last_commit": "2020-07-11T01:20:35Z", "created_at": "2015-06-27T16:56:59Z", "description": " :bowtie: { Personal } Jekyll theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/le4ker-personal-jekyll-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/le4ker-personal-jekyll-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/le4ker-personal-jekyll-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/le4ker-personal-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/le4ker-personal-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/le4ker-personal-jekyll-theme-2x.jpg" } }, - "lednerb-bilberry-hugo-theme-master": { - "theme_key": "lednerb-bilberry-hugo-theme-master", - "file": "hugo-bilberry-theme.md", + "lednerb-bilberry-hugo-theme": { + "theme_key": "lednerb-bilberry-hugo-theme", + "file": "bilberry-hugo-theme.md", "name": "bilberry-hugo-theme", - "title": "Bilberry", + "title": "Bilberry Hugo", "github_username": "Lednerb", "repo": "Lednerb/bilberry-hugo-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Lednerb/bilberry-hugo-theme", - "demo_url": "https://lednerb.github.io/bilberry-hugo-theme/", - "stars": 199, - "forks": 106, - "open_issues": 10, - "last_commit": "2020-12-25T16:02:05Z", + "demo_url": "https://lednerb.github.io/bilberry-hugo-theme", + "stars": 297, + "forks": 143, + "open_issues": 1, + "last_commit": "2023-01-16T12:36:21Z", "created_at": "2017-10-27T02:20:38Z", "description": "Premium theme for the hugo site builder. DEMO:", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lednerb-bilberry-hugo-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lednerb-bilberry-hugo-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lednerb-bilberry-hugo-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lednerb-bilberry-hugo-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lednerb-bilberry-hugo-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lednerb-bilberry-hugo-theme-2x.jpg" } }, - "lekoarts-gatsby-starter-minimal-blog-master": { - "theme_key": "lekoarts-gatsby-starter-minimal-blog-master", + "lekoarts-gatsby-starter-minimal-blog": { + "theme_key": "lekoarts-gatsby-starter-minimal-blog", "file": "gatsby-starter-minimal-blog.md", "name": "gatsby-starter-minimal-blog", "title": "Gatsby Starter Minimal Blog", "github_username": "LekoArts", "repo": "LekoArts/gatsby-starter-minimal-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/LekoArts/gatsby-starter-minimal-blog", "demo_url": "https://minimal-blog.lekoarts.de/", - "stars": 694, - "forks": 193, + "stars": 1051, + "forks": 313, "open_issues": 0, - "last_commit": "2020-12-20T16:22:37Z", + "last_commit": "2023-01-06T12:42:37Z", "created_at": "2018-02-02T18:52:29Z", "description": "Typography driven, feature-rich blogging theme with minimal aesthetics. Includes tags/categories support and extensive features for code blocks such as live preview, line numbers, and line highlighting.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lekoarts-gatsby-starter-minimal-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lekoarts-gatsby-starter-minimal-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lekoarts-gatsby-starter-minimal-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lekoarts-gatsby-starter-minimal-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lekoarts-gatsby-starter-minimal-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lekoarts-gatsby-starter-minimal-blog-2x.jpg" } }, - "lekoarts-gatsby-starter-portfolio-bella-master": { - "theme_key": "lekoarts-gatsby-starter-portfolio-bella-master", + "lekoarts-gatsby-starter-portfolio-bella": { + "theme_key": "lekoarts-gatsby-starter-portfolio-bella", "file": "gatsby-starter-portfolio-bella.md", "name": "gatsby-starter-portfolio-bella", "title": "Gatsby Starter Portfolio Bella", "github_username": "LekoArts", "repo": "LekoArts/gatsby-starter-portfolio-bella", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/LekoArts/gatsby-starter-portfolio-bella", "demo_url": "https://portfolio-bella.netlify.com/", - "stars": 120, + "stars": 123, "forks": 19, "open_issues": 4, "last_commit": "2018-11-29T15:30:58Z", "created_at": "2018-05-30T17:27:04Z", "description": "A bright single-page portfolio starter for Gatsby powered by Prismic.io. The target audience are designers and photographers.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lekoarts-gatsby-starter-portfolio-bella-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-bella-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-bella-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lekoarts-gatsby-starter-portfolio-bella.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-bella.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-bella-2x.jpg" } }, - "lekoarts-gatsby-starter-portfolio-cara-master": { - "theme_key": "lekoarts-gatsby-starter-portfolio-cara-master", + "lekoarts-gatsby-starter-portfolio-cara": { + "theme_key": "lekoarts-gatsby-starter-portfolio-cara", "file": "gatsby-cara.md", "name": "gatsby-starter-portfolio-cara", "title": "Gatsby Cara", "github_username": "LekoArts", "repo": "LekoArts/gatsby-starter-portfolio-cara", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/LekoArts/gatsby-starter-portfolio-cara", "demo_url": "https://cara.lekoarts.de/", - "stars": 1059, - "forks": 260, - "open_issues": 1, - "last_commit": "2020-12-20T16:20:05Z", + "stars": 1332, + "forks": 378, + "open_issues": 0, + "last_commit": "2023-01-06T12:42:30Z", "created_at": "2018-06-02T19:41:22Z", "description": "Playful and Colorful One-Page portfolio featuring Parallax effects and animations. Especially designers and/or photographers will love this theme! Built with MDX and Theme UI.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lekoarts-gatsby-starter-portfolio-cara-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-cara-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-cara-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lekoarts-gatsby-starter-portfolio-cara.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-cara.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-cara-2x.jpg" } }, - "lekoarts-gatsby-starter-portfolio-emilia-master": { - "theme_key": "lekoarts-gatsby-starter-portfolio-emilia-master", + "lekoarts-gatsby-starter-portfolio-emilia": { + "theme_key": "lekoarts-gatsby-starter-portfolio-emilia", "file": "gatsby-theme-emilia.md", "name": "gatsby-starter-portfolio-emilia", "title": "Gatsby Emilia", "github_username": "LekoArts", "repo": "LekoArts/gatsby-starter-portfolio-emilia", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/LekoArts/gatsby-starter-portfolio-emilia", "demo_url": "https://emilia.lekoarts.de", - "stars": 294, - "forks": 66, + "stars": 342, + "forks": 82, "open_issues": 1, - "last_commit": "2020-12-20T16:20:38Z", + "last_commit": "2023-01-06T12:42:31Z", "created_at": "2017-11-30T18:53:29Z", "description": "Minimalistic portfolio/photography site with masonry grid, page transitions and big images. Themeable with Theme UI. Includes Light/Dark mode.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lekoarts-gatsby-starter-portfolio-emilia-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-emilia-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-emilia-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lekoarts-gatsby-starter-portfolio-emilia.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-emilia.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-emilia-2x.jpg" } }, - "lekoarts-gatsby-starter-portfolio-emma-master": { - "theme_key": "lekoarts-gatsby-starter-portfolio-emma-master", + "lekoarts-gatsby-starter-portfolio-emma": { + "theme_key": "lekoarts-gatsby-starter-portfolio-emma", "file": "gatsby-starter-portfolio-emma.md", "name": "gatsby-starter-portfolio-emma", "title": "Gatsby Starter Portfolio Emma", "github_username": "LekoArts", "repo": "LekoArts/gatsby-starter-portfolio-emma", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/LekoArts/gatsby-starter-portfolio-emma", "demo_url": "https://emma.lekoarts.de/", - "stars": 249, - "forks": 63, + "stars": 267, + "forks": 79, "open_issues": 0, - "last_commit": "2020-12-20T16:21:09Z", + "last_commit": "2023-01-06T12:42:33Z", "created_at": "2017-10-18T19:20:05Z", "description": "Minimalistic portfolio with full-width grid, page transitions, support for additional MDX pages, and a focus on large images. Especially designers and/or photographers will love this theme! Built with MDX and Theme UI.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lekoarts-gatsby-starter-portfolio-emma-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-emma-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-emma-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lekoarts-gatsby-starter-portfolio-emma.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-emma.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-emma-2x.jpg" } }, - "lekoarts-gatsby-starter-portfolio-jodie-master": { - "theme_key": "lekoarts-gatsby-starter-portfolio-jodie-master", + "lekoarts-gatsby-starter-portfolio-jodie": { + "theme_key": "lekoarts-gatsby-starter-portfolio-jodie", "file": "gatsby-starter-portfolio-jodie.md", "name": "gatsby-starter-portfolio-jodie", "title": "Gatsby Jodie", "github_username": "LekoArts", "repo": "LekoArts/gatsby-starter-portfolio-jodie", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/LekoArts/gatsby-starter-portfolio-jodie", "demo_url": "https://jodie.lekoarts.de/", - "stars": 232, - "forks": 57, + "stars": 321, + "forks": 78, "open_issues": 0, - "last_commit": "2020-12-20T16:22:06Z", + "last_commit": "2023-01-06T12:42:36Z", "created_at": "2019-02-19T15:17:30Z", "description": "Image-heavy photography portfolio with colorful accents & customizable pages. Includes adaptive image grids powered by CSS grid and automatic image integration into projects.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lekoarts-gatsby-starter-portfolio-jodie-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-jodie-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-jodie-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lekoarts-gatsby-starter-portfolio-jodie.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-jodie.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-jodie-2x.jpg" } }, - "lekoarts-gatsby-starter-prismic-i18n-master": { - "theme_key": "lekoarts-gatsby-starter-prismic-i18n-master", + "lekoarts-gatsby-starter-prismic-i18n": { + "theme_key": "lekoarts-gatsby-starter-prismic-i18n", "file": "gatsby-starter-prismic-i18n.md", "name": "gatsby-starter-prismic-i18n", "title": "Gatsby Prismic i18n", "github_username": "LekoArts", "repo": "LekoArts/gatsby-starter-prismic-i18n", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/LekoArts/gatsby-starter-prismic-i18n", "demo_url": "https://prismic-i18n.lekoarts.de/", - "stars": 74, - "forks": 17, - "open_issues": 6, + "stars": 84, + "forks": 18, + "open_issues": 5, "last_commit": "2019-11-28T11:04:07Z", "created_at": "2019-03-10T12:05:37Z", "description": "Based on gatsby-starter-prismic with Internationalization (i18n) support", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lekoarts-gatsby-starter-prismic-i18n-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lekoarts-gatsby-starter-prismic-i18n-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lekoarts-gatsby-starter-prismic-i18n-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lekoarts-gatsby-starter-prismic-i18n.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lekoarts-gatsby-starter-prismic-i18n.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lekoarts-gatsby-starter-prismic-i18n-2x.jpg" } }, - "lekovicmilos-gatsby-starter-portfolio-master": { - "theme_key": "lekovicmilos-gatsby-starter-portfolio-master", + "lekovicmilos-gatsby-starter-portfolio": { + "theme_key": "lekovicmilos-gatsby-starter-portfolio", "file": "gatsby-starter-portfolio.md", "name": "gatsby-starter-portfolio", "title": "Gatsby Starter Portfolio", "github_username": "LekovicMilos", "repo": "LekovicMilos/gatsby-starter-portfolio", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/LekovicMilos/gatsby-starter-portfolio", "demo_url": "https://relaxed-bhaskara-5abd0a.netlify.com/", - "stars": 17, - "forks": 4, + "stars": 18, + "forks": 7, "open_issues": 0, "last_commit": "2019-02-27T21:00:47Z", "created_at": "2019-02-27T20:42:33Z", "description": "Gatsby starter for creating a portfolio website", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lekovicmilos-gatsby-starter-portfolio-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lekovicmilos-gatsby-starter-portfolio-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lekovicmilos-gatsby-starter-portfolio-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lekovicmilos-gatsby-starter-portfolio.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lekovicmilos-gatsby-starter-portfolio.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lekovicmilos-gatsby-starter-portfolio-2x.jpg" + } + }, + "lenpaul-academic": { + "theme_key": "lenpaul-academic", + "file": "jekyll-academic.md", + "name": "academic", + "title": "academic", + "github_username": "LeNPaul", + "repo": "LeNPaul/academic", + "branch": "gh-pages", + "default_branch": "gh-pages", + "github_url": "https://github.com/LeNPaul/academic", + "demo_url": "https://lenpaul.github.io/academic/", + "stars": 79, + "forks": 99, + "open_issues": 1, + "last_commit": "2022-06-02T15:09:53Z", + "created_at": "2016-05-24T16:50:15Z", + "description": "A Jekyll theme for academia", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/lenpaul-academic.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lenpaul-academic.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lenpaul-academic-2x.jpg" } }, - "lenpaul-lagrange-gh-pages": { - "theme_key": "lenpaul-lagrange-gh-pages", + "lenpaul-lagrange": { + "theme_key": "lenpaul-lagrange", "file": "jekyll-lagrange.md", "name": "Lagrange", "title": "Lagrange", "github_username": "LeNPaul", "repo": "LeNPaul/Lagrange", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/LeNPaul/Lagrange", "demo_url": "https://lenpaul.github.io/Lagrange/", - "stars": 432, - "forks": 460, - "open_issues": 13, - "last_commit": "2019-12-19T04:46:08Z", + "stars": 577, + "forks": 574, + "open_issues": 14, + "last_commit": "2022-06-02T14:25:54Z", "created_at": "2016-07-24T02:05:27Z", - "description": "A minimalist Jekyll theme for running a personal blog", - "stale": true, + "description": "A minimalist Jekyll theme for running a personal blog powered by Jekyll and GitHub Pages", "images": { - "hires": "https://www.jamstackthemes.dev/capture/lenpaul-lagrange-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lenpaul-lagrange-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lenpaul-lagrange-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lenpaul-lagrange.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lenpaul-lagrange.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lenpaul-lagrange-2x.jpg" } }, - "lenpaul-millennial-gh-pages": { - "theme_key": "lenpaul-millennial-gh-pages", + "lenpaul-millennial": { + "theme_key": "lenpaul-millennial", "file": "millennial.md", "name": "Millennial", "title": "Millennial", "github_username": "LeNPaul", "repo": "LeNPaul/Millennial", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/LeNPaul/Millennial", "demo_url": "https://lenpaul.github.io/Millennial/", - "stars": 213, - "forks": 424, - "open_issues": 11, - "last_commit": "2020-02-20T05:21:29Z", + "stars": 348, + "forks": 713, + "open_issues": 12, + "last_commit": "2022-06-02T14:28:42Z", "created_at": "2016-08-21T21:53:24Z", - "description": "A minimalist Jekyll theme for running an online publication", - "stale": false, + "description": "A minimalist Jekyll theme for running a blog or publication powered by Jekyll and GitHub Pages", "images": { - "hires": "https://www.jamstackthemes.dev/capture/lenpaul-millennial-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lenpaul-millennial-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lenpaul-millennial-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lenpaul-millennial.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lenpaul-millennial.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lenpaul-millennial-2x.jpg" } }, - "lenpaul-portfolio-jekyll-theme-gh-pages": { - "theme_key": "lenpaul-portfolio-jekyll-theme-gh-pages", + "lenpaul-portfolio-jekyll-theme": { + "theme_key": "lenpaul-portfolio-jekyll-theme", "file": "jekyll-portfolio-theme.md", "name": "portfolio-jekyll-theme", "title": "Portfolio Jekyll Theme", "github_username": "LeNPaul", "repo": "LeNPaul/portfolio-jekyll-theme", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/LeNPaul/portfolio-jekyll-theme", "demo_url": "https://lenpaul.github.io/portfolio-jekyll-theme/", - "stars": 107, - "forks": 166, + "stars": 175, + "forks": 231, "open_issues": 4, - "last_commit": "2018-11-28T14:52:31Z", + "last_commit": "2022-06-02T14:45:27Z", "created_at": "2016-09-05T21:02:25Z", "description": "A minimalist Jekyll theme for building a personal portfolio site powered by Jekyll and GitHub Pages", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lenpaul-portfolio-jekyll-theme-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lenpaul-portfolio-jekyll-theme-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lenpaul-portfolio-jekyll-theme-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lenpaul-portfolio-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lenpaul-portfolio-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lenpaul-portfolio-jekyll-theme-2x.jpg" } }, - "leonhe-hugo_eiio-master": { - "theme_key": "leonhe-hugo_eiio-master", + "leonhe-hugo_eiio": { + "theme_key": "leonhe-hugo_eiio", "file": "hugo-eiio.md", "name": "hugo_eiio", "title": "Eiio", "github_username": "leonhe", "repo": "leonhe/hugo_eiio", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/leonhe/hugo_eiio", "demo_url": "https://themes.gohugo.io/theme/hugo_eiio/", "stars": 20, "forks": 3, "open_issues": 0, - "last_commit": "2020-09-03T06:33:49Z", + "last_commit": "2021-06-28T08:28:29Z", "created_at": "2016-12-03T09:41:16Z", "description": "Hugo Blog Theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/leonhe-hugo_eiio-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/leonhe-hugo_eiio-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/leonhe-hugo_eiio-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/leonhe-hugo_eiio.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/leonhe-hugo_eiio.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/leonhe-hugo_eiio-2x.jpg" } }, - "leopardpan-leopardpan.github.io-master": { - "theme_key": "leopardpan-leopardpan.github.io-master", + "leopardpan-leopardpan.github.io": { + "theme_key": "leopardpan-leopardpan.github.io", "file": "jekyll-leopard.md", "name": "leopardpan.github.io", "title": "leopard", "github_username": "leopardpan", "repo": "leopardpan/leopardpan.github.io", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/leopardpan/leopardpan.github.io", "demo_url": "https://baixin.io", - "stars": 1051, - "forks": 709, - "open_issues": 39, + "stars": 1140, + "forks": 756, + "open_issues": 46, "last_commit": "2020-07-13T09:45:27Z", "created_at": "2016-03-29T15:22:17Z", "description": "个人博客,看效果进入", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/leopardpan-leopardpan.github.io-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/leopardpan-leopardpan.github.io-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/leopardpan-leopardpan.github.io-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/leopardpan-leopardpan.github.io.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/leopardpan-leopardpan.github.io.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/leopardpan-leopardpan.github.io-2x.jpg" } }, - "lewis-geek-hexo-theme-aath-develop": { - "theme_key": "lewis-geek-hexo-theme-aath-develop", + "lewis-geek-hexo-theme-aath": { + "theme_key": "lewis-geek-hexo-theme-aath", "file": "hexo-theme-Aath.md", "name": "hexo-theme-Aath", "title": "Aath", "github_username": "lewis-geek", "repo": "lewis-geek/hexo-theme-Aath", "branch": "develop", - "url": "https://github.com/lewis-geek/hexo-theme-Aath", + "default_branch": "develop", + "github_url": "https://github.com/lewis-geek/hexo-theme-Aath", + "demo_url": "https://lewis.suclub.cn/", "stars": 154, - "forks": 26, + "forks": 24, "open_issues": 5, "last_commit": "2019-01-30T01:29:19Z", "created_at": "2017-09-04T02:41:19Z", "description": "Hexo 主题", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lewis-geek-hexo-theme-aath-develop.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lewis-geek-hexo-theme-aath-develop.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lewis-geek-hexo-theme-aath-develop-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lewis-geek-hexo-theme-aath.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lewis-geek-hexo-theme-aath.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lewis-geek-hexo-theme-aath-2x.jpg" } }, - "lewislbr-lewis-gatsby-starter-blog-master": { - "theme_key": "lewislbr-lewis-gatsby-starter-blog-master", + "lewislbr-lewis-gatsby-starter-blog": { + "theme_key": "lewislbr-lewis-gatsby-starter-blog", "file": "gatsby-lewis-starter-blog.md", "name": "lewis-gatsby-starter-blog", "title": "Gatsby Lewis Blog", "github_username": "lewislbr", "repo": "lewislbr/lewis-gatsby-starter-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/lewislbr/lewis-gatsby-starter-blog", "demo_url": "https://lewis-gatsby-starter-blog.firebaseapp.com/", - "stars": 19, - "forks": 4, - "open_issues": 0, - "last_commit": "2020-06-09T10:28:41Z", + "stars": 28, + "forks": 6, + "open_issues": 2, + "last_commit": "2020-12-10T15:21:16Z", "created_at": "2019-04-02T20:35:25Z", "description": "A custom Gatsby starter template to start a blog or personal website.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lewislbr-lewis-gatsby-starter-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lewislbr-lewis-gatsby-starter-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lewislbr-lewis-gatsby-starter-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lewislbr-lewis-gatsby-starter-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lewislbr-lewis-gatsby-starter-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lewislbr-lewis-gatsby-starter-blog-2x.jpg" } }, - "lgaida-mediumish-gohugo-theme-master": { - "theme_key": "lgaida-mediumish-gohugo-theme-master", + "lgaida-mediumish-gohugo-theme": { + "theme_key": "lgaida-mediumish-gohugo-theme", "file": "hugo-mediumish-theme.md", "name": "mediumish-gohugo-theme", "title": "Hugo Mediumish", "github_username": "lgaida", "repo": "lgaida/mediumish-gohugo-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/lgaida/mediumish-gohugo-theme", "demo_url": "https://lgaida.github.io/mediumish-gohugo-theme-demo/", - "stars": 92, - "forks": 74, - "open_issues": 4, - "last_commit": "2020-10-04T11:27:33Z", + "stars": 115, + "forks": 93, + "open_issues": 3, + "last_commit": "2021-08-12T15:12:43Z", "created_at": "2018-10-07T08:26:20Z", "description": "A mediumish gohugo theme, ported from jekyll", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lgaida-mediumish-gohugo-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lgaida-mediumish-gohugo-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lgaida-mediumish-gohugo-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lgaida-mediumish-gohugo-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lgaida-mediumish-gohugo-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lgaida-mediumish-gohugo-theme-2x.jpg" } }, - "lgcolella-gatsby-starter-developer-blog-master": { - "theme_key": "lgcolella-gatsby-starter-developer-blog-master", + "lgcolella-gatsby-starter-developer-blog": { + "theme_key": "lgcolella-gatsby-starter-developer-blog", "file": "gatsby-starter-developer-blog.md", "name": "gatsby-starter-developer-blog", "title": "Gatsby Developer Blog", "github_username": "lgcolella", "repo": "lgcolella/gatsby-starter-developer-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/lgcolella/gatsby-starter-developer-blog", "demo_url": "https://lgcolella.github.io/gatsby-starter-developer-blog/", - "stars": 61, + "stars": 63, "forks": 30, "open_issues": 3, "last_commit": "2020-07-31T23:17:00Z", "created_at": "2018-12-19T22:42:37Z", "description": "Blog starter made with Gatbsy.js", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lgcolella-gatsby-starter-developer-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lgcolella-gatsby-starter-developer-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lgcolella-gatsby-starter-developer-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lgcolella-gatsby-starter-developer-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lgcolella-gatsby-starter-developer-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lgcolella-gatsby-starter-developer-blog-2x.jpg" } }, - "liberxue-liberxue.github.io-master": { - "theme_key": "liberxue-liberxue.github.io-master", + "liberxue-liberxue.github.io": { + "theme_key": "liberxue-liberxue.github.io", "file": "jekyll-Liberxue-theme.md", "name": "liberxue.github.io", "title": "Liberxue Theme", "github_username": "Liberxue", "repo": "Liberxue/liberxue.github.io", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Liberxue/liberxue.github.io", "demo_url": "https://liberxue.github.io/", - "stars": 325, - "forks": 359, - "open_issues": 4, - "last_commit": "2019-11-12T05:49:03Z", + "stars": 351, + "forks": 383, + "open_issues": 8, + "last_commit": "2021-03-06T10:02:25Z", "created_at": "2017-08-02T04:58:02Z", "description": "Liberxue blog for lightweight Jekyll themes 轻量级自适应 简洁 卡片式博客主题 3秒搞定GitHub blog", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/liberxue-liberxue.github.io-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/liberxue-liberxue.github.io-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/liberxue-liberxue.github.io-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/liberxue-liberxue.github.io.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/liberxue-liberxue.github.io.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/liberxue-liberxue.github.io-2x.jpg" } }, - "lingxz-er-master": { - "theme_key": "lingxz-er-master", + "lingxz-er": { + "theme_key": "lingxz-er", "file": "hugo-er-theme.md", "name": "er", "title": "Er", "github_username": "lingxz", "repo": "lingxz/er", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/lingxz/er", "demo_url": "https://themes.gohugo.io/theme/er/", - "stars": 48, + "stars": 54, "forks": 27, - "open_issues": 9, + "open_issues": 10, "last_commit": "2019-08-25T17:51:48Z", "created_at": "2018-04-30T18:02:34Z", "description": ":snail: a hugo theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lingxz-er-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lingxz-er-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lingxz-er-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lingxz-er.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lingxz-er.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lingxz-er-2x.jpg" } }, - "link9596-hydrogen-master": { - "theme_key": "link9596-hydrogen-master", + "link9596-hydrogen": { + "theme_key": "link9596-hydrogen", "file": "jekyll-theme-hydrogen.md", "name": "hydrogen", "title": "Hydrogen", "github_username": "link9596", "repo": "link9596/hydrogen", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/link9596/hydrogen", "demo_url": "https://hydrogen.atlinker.cn/", - "stars": 51, - "forks": 69, + "stars": 55, + "forks": 71, "open_issues": 0, "last_commit": "2020-07-20T12:29:29Z", "created_at": "2018-11-18T07:09:14Z", "description": ":+1:轻盈、简洁的Jekyll主题,A Lightweight and Concise Jekyll theme For You.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/link9596-hydrogen-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/link9596-hydrogen-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/link9596-hydrogen-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/link9596-hydrogen.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/link9596-hydrogen.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/link9596-hydrogen-2x.jpg" + } + }, + "link9596-jekyll-theme-hydrogen": { + "theme_key": "link9596-hydrogen", + "file": "jekyll-theme-hydrogen.md", + "name": "jekyll-theme-Hydrogen", + "title": "Hydrogen", + "github_username": "link9596", + "repo": "link9596/jekyll-theme-Hydrogen", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/link9596/jekyll-theme-Hydrogen", + "demo_url": "https://hydrogen.atlinker.cn/", + "stars": 64, + "forks": 77, + "open_issues": 0, + "last_commit": "2022-10-25T17:00:30Z", + "created_at": "2018-11-18T07:09:14Z", + "description": ":+1:轻盈、简洁的Jekyll主题,A Lightweight and Concise Jekyll theme For You.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/link9596-hydrogen.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/link9596-hydrogen.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/link9596-hydrogen-2x.jpg" } }, - "liungkejin-liungkejin.github.io-master": { - "theme_key": "liungkejin-liungkejin.github.io-master", + "liungkejin-liungkejin.github.io": { + "theme_key": "liungkejin-liungkejin.github.io", "file": "jekyll-easy-pure-blog.md", "name": "liungkejin.github.io", "title": "简单博客", "github_username": "liungkejin", "repo": "liungkejin/liungkejin.github.io", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/liungkejin/liungkejin.github.io", "demo_url": "https://liungkejin.github.io/", - "stars": 37, - "forks": 43, + "stars": 35, + "forks": 40, "open_issues": 5, "last_commit": "2017-06-03T04:12:52Z", "created_at": "2016-01-29T18:18:02Z", "description": "我的个人博客", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/liungkejin-liungkejin.github.io-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/liungkejin-liungkejin.github.io-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/liungkejin-liungkejin.github.io-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/liungkejin-liungkejin.github.io.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/liungkejin-liungkejin.github.io.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/liungkejin-liungkejin.github.io-2x.jpg" } }, - "liuzc-leaveit-master": { - "theme_key": "liuzc-leaveit-master", + "liuzc-leaveit": { + "theme_key": "liuzc-leaveit", "file": "hugo-leaveit-theme.md", "name": "LeaveIt", "title": "LeaveIt", "github_username": "liuzc", "repo": "liuzc/LeaveIt", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/liuzc/LeaveIt", "demo_url": "https://themes.gohugo.io/theme/LeaveIt/", - "stars": 342, - "forks": 129, + "stars": 371, + "forks": 127, "open_issues": 30, "last_commit": "2018-11-04T11:11:57Z", "created_at": "2018-09-12T08:46:04Z", "description": "A simple, minimal, clean blog theme for hugo.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/liuzc-leaveit-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/liuzc-leaveit-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/liuzc-leaveit-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/liuzc-leaveit.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/liuzc-leaveit.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/liuzc-leaveit-2x.jpg" } }, - "livingdocsio-gatsby-magazine-example-master": { - "theme_key": "livingdocsio-gatsby-magazine-example-master", + "livingdocsio-gatsby-magazine-example": { + "theme_key": "livingdocsio-gatsby-magazine-example", "file": "gatsby-magazine-example.md", "name": "gatsby-magazine-example", "title": "Gatsby Magazine Example", "github_username": "livingdocsIO", "repo": "livingdocsIO/gatsby-magazine-example", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/livingdocsIO/gatsby-magazine-example", "demo_url": "https://magazine-example.livingdocs.io/", - "stars": 22, - "forks": 14, - "open_issues": 4, + "stars": 29, + "forks": 18, + "open_issues": 5, "last_commit": "2020-06-29T09:23:00Z", "created_at": "2018-12-19T14:47:21Z", - "description": "This is an open-source Demo Magazine built with Livingdocs. Check out the code and make it yours!", - "stale": false, + "description": "This is an open-source Demo Magazine built with Livingdocs and Gatsby/React. Check out the code, make it yours and deploy it to netlify today!", "images": { - "hires": "https://www.jamstackthemes.dev/capture/livingdocsio-gatsby-magazine-example-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/livingdocsio-gatsby-magazine-example-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/livingdocsio-gatsby-magazine-example-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/livingdocsio-gatsby-magazine-example.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/livingdocsio-gatsby-magazine-example.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/livingdocsio-gatsby-magazine-example-2x.jpg" } }, - "lixizhi-lixizhi.github.io-master": { - "theme_key": "lixizhi-lixizhi.github.io-master", + "lixizhi-lixizhi.github.io": { + "theme_key": "lixizhi-lixizhi.github.io", "file": "jekyll-wiki-blog.md", "name": "lixizhi.github.io", "title": "Wiki Blog", "github_username": "LiXizhi", "repo": "LiXizhi/lixizhi.github.io", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/LiXizhi/lixizhi.github.io", "demo_url": "https://lixizhi.github.io/", - "stars": 58, - "forks": 105, - "open_issues": 2, + "stars": 60, + "forks": 104, + "open_issues": 4, "last_commit": "2018-01-17T14:53:16Z", "created_at": "2015-11-17T09:51:10Z", "description": "Xizhi's personal website", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lixizhi-lixizhi.github.io-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lixizhi-lixizhi.github.io-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lixizhi-lixizhi.github.io-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lixizhi-lixizhi.github.io.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lixizhi-lixizhi.github.io.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lixizhi-lixizhi.github.io-2x.jpg" } }, - "longpdo-neumorphism-master": { - "theme_key": "longpdo-neumorphism-master", + "longpdo-neumorphism": { + "theme_key": "longpdo-neumorphism", "file": "jekyll-neumorphism.md", "name": "neumorphism", "title": "Neumorphism", "github_username": "longpdo", "repo": "longpdo/neumorphism", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/longpdo/neumorphism", "demo_url": "https://longpdo.github.io/neumorphism/", - "stars": 76, - "forks": 122, - "open_issues": 4, - "last_commit": "2020-10-01T08:18:03Z", + "stars": 282, + "forks": 455, + "open_issues": 12, + "last_commit": "2022-05-25T22:17:08Z", "created_at": "2020-04-10T21:08:01Z", "description": " Neumorphism designed Jekyll theme for personal websites, portfolios and resumes.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/longpdo-neumorphism-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/longpdo-neumorphism-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/longpdo-neumorphism-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/longpdo-neumorphism.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/longpdo-neumorphism.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/longpdo-neumorphism-2x.jpg" } }, - "lordmathis-hugo-theme-nix-master": { - "theme_key": "lordmathis-hugo-theme-nix-master", + "lordmathis-hugo-theme-nix": { + "theme_key": "lordmathis-hugo-theme-nix", "file": "hugo-theme-nix.md", "name": "hugo-theme-nix", "title": "Nix", "github_username": "LordMathis", "repo": "LordMathis/hugo-theme-nix", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/LordMathis/hugo-theme-nix", "demo_url": "https://themes.gohugo.io/theme/hugo-theme-nix/", - "stars": 102, - "forks": 68, - "open_issues": 0, - "last_commit": "2020-12-14T12:07:04Z", + "stars": 110, + "forks": 82, + "open_issues": 3, + "last_commit": "2021-05-23T12:41:14Z", "created_at": "2016-09-30T08:11:59Z", "description": "Nix is a simple, minimal theme for Hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lordmathis-hugo-theme-nix-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lordmathis-hugo-theme-nix-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lordmathis-hugo-theme-nix-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lordmathis-hugo-theme-nix.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lordmathis-hugo-theme-nix.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lordmathis-hugo-theme-nix-2x.jpg" } }, - "lorepirri-cayman-blog-master": { - "theme_key": "lorepirri-cayman-blog-master", + "lorepirri-cayman-blog": { + "theme_key": "lorepirri-cayman-blog", "file": "jekyll-theme-cayman-blog.md", "name": "cayman-blog", "title": "Cayman Blog Theme", "github_username": "lorepirri", "repo": "lorepirri/cayman-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/lorepirri/cayman-blog", "demo_url": "https://lorepirri.github.io/cayman-blog/", - "stars": 78, - "forks": 221, - "open_issues": 4, - "last_commit": "2019-09-25T22:50:02Z", + "stars": 104, + "forks": 271, + "open_issues": 5, + "last_commit": "2021-07-15T10:18:46Z", "created_at": "2017-04-28T21:55:31Z", "description": "Cayman Blog is a Jekyll theme for GitHub Pages, based on Cayman theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lorepirri-cayman-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lorepirri-cayman-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lorepirri-cayman-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lorepirri-cayman-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lorepirri-cayman-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lorepirri-cayman-blog-2x.jpg" } }, - "lorepirri-jekyll-theme-simple-blog-master": { - "theme_key": "lorepirri-jekyll-theme-simple-blog-master", + "lorepirri-jekyll-theme-simple-blog": { + "theme_key": "lorepirri-jekyll-theme-simple-blog", "file": "jekyll-simple-blog-theme.md", "name": "jekyll-theme-simple-blog", "title": "Jekyll Theme Simple Blog", "github_username": "lorepirri", "repo": "lorepirri/jekyll-theme-simple-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/lorepirri/jekyll-theme-simple-blog", "demo_url": "https://lorepirri.gitlab.io/jekyll-theme-simple-blog/", - "stars": 16, + "stars": 17, "forks": 17, "open_issues": 0, "last_commit": "2019-01-04T18:04:32Z", "created_at": "2017-05-20T16:21:49Z", "description": "Simple Blog Theme is a clean, responsive blogging theme for Jekyll and GitLab/GitHub Pages.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lorepirri-jekyll-theme-simple-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lorepirri-jekyll-theme-simple-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lorepirri-jekyll-theme-simple-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lorepirri-jekyll-theme-simple-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lorepirri-jekyll-theme-simple-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lorepirri-jekyll-theme-simple-blog-2x.jpg" + } + }, + "loveminimal-hugo-theme-virgo": { + "theme_key": "loveminimal-hugo-theme-virgo", + "file": "hugo-theme-virgo.md", + "name": "hugo-theme-virgo", + "title": "Virgo", + "github_username": "loveminimal", + "repo": "loveminimal/hugo-theme-virgo", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/loveminimal/hugo-theme-virgo", + "demo_url": "https://ovirgo.com", + "stars": 38, + "forks": 6, + "open_issues": 0, + "last_commit": "2022-12-01T08:28:21Z", + "created_at": "2022-06-21T12:52:48Z", + "description": "A simple and pure theme.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/loveminimal-hugo-theme-virgo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/loveminimal-hugo-theme-virgo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/loveminimal-hugo-theme-virgo-2x.jpg" } }, - "lubang-hugo-hello-programmer-theme-master": { - "theme_key": "lubang-hugo-hello-programmer-theme-master", + "lubang-hugo-hello-programmer-theme": { + "theme_key": "lubang-hugo-hello-programmer-theme", "file": "hugo-hello-programmer-theme.md", "name": "hugo-hello-programmer-theme", "title": "Hello Programmer", "github_username": "lubang", "repo": "lubang/hugo-hello-programmer-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/lubang/hugo-hello-programmer-theme", "demo_url": "https://blog.lulab.net/", - "stars": 36, - "forks": 21, + "stars": 39, + "forks": 19, "open_issues": 0, "last_commit": "2019-06-09T05:29:27Z", "created_at": "2016-11-20T14:49:37Z", "description": "This is a hugo theme for a programmer. It's simple and simple.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lubang-hugo-hello-programmer-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lubang-hugo-hello-programmer-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lubang-hugo-hello-programmer-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lubang-hugo-hello-programmer-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lubang-hugo-hello-programmer-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lubang-hugo-hello-programmer-theme-2x.jpg" + } + }, + "lucaspulliese-next-ecommerce": { + "theme_key": "lucaspulliese-next-ecommerce", + "file": "next-ecommerce.md", + "name": "next-ecommerce", + "title": "Next.js Ecommerce", + "github_username": "lucaspulliese", + "repo": "lucaspulliese/next-ecommerce", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/lucaspulliese/next-ecommerce", + "demo_url": "https://next-ecommerce-front.vercel.app/", + "stars": 352, + "forks": 127, + "open_issues": 3, + "last_commit": "2022-06-11T04:55:41Z", + "created_at": "2020-06-25T21:28:58Z", + "description": "A beautiful ecommerce made with Next.js", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/lucaspulliese-next-ecommerce.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lucaspulliese-next-ecommerce.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lucaspulliese-next-ecommerce-2x.jpg" + } + }, + "luigi-colella-gatsby-starter-developer-blog": { + "theme_key": "lgcolella-gatsby-starter-developer-blog", + "file": "gatsby-starter-developer-blog.md", + "name": "gatsby-starter-developer-blog", + "title": "Gatsby Developer Blog", + "github_username": "luigi-colella", + "repo": "luigi-colella/gatsby-starter-developer-blog", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/luigi-colella/gatsby-starter-developer-blog", + "demo_url": "https://lgcolella.github.io/gatsby-starter-developer-blog/", + "stars": 66, + "forks": 27, + "open_issues": 3, + "last_commit": "2020-07-31T23:17:00Z", + "created_at": "2018-12-19T22:42:37Z", + "description": "Blog starter made with Gatbsy.js", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/lgcolella-gatsby-starter-developer-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lgcolella-gatsby-starter-developer-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lgcolella-gatsby-starter-developer-blog-2x.jpg" } }, - "luizdepra-hugo-coder-master": { - "theme_key": "luizdepra-hugo-coder-master", + "luizdepra-hugo-coder": { + "theme_key": "luizdepra-hugo-coder", "file": "hugo-coder.md", "name": "hugo-coder", "title": "Coder", "github_username": "luizdepra", "repo": "luizdepra/hugo-coder", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/luizdepra/hugo-coder", "demo_url": "https://themes.gohugo.io/theme/hugo-coder/", - "stars": 1281, - "forks": 595, - "open_issues": 36, - "last_commit": "2020-12-15T19:38:06Z", + "stars": 1624, + "forks": 701, + "open_issues": 37, + "last_commit": "2021-09-23T13:31:58Z", "created_at": "2018-02-17T13:45:54Z", "description": "A minimalist blog theme for hugo.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/luizdepra-hugo-coder-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/luizdepra-hugo-coder-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/luizdepra-hugo-coder-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/luizdepra-hugo-coder.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/luizdepra-hugo-coder.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/luizdepra-hugo-coder-2x.jpg" } }, - "lukas-h-material-theme-gh-pages": { - "theme_key": "lukas-h-material-theme-gh-pages", + "lukas-h-material-theme": { + "theme_key": "lukas-h-material-theme", "file": "jekyll-light-material.md", "name": "material-theme", "title": "Light Material", "github_username": "lukas-h", "repo": "lukas-h/material-theme", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/lukas-h/material-theme", - "demo_url": "http://himsel.me/material-theme/", + "demo_url": "https://himsel.me/material-theme/", "stars": 35, - "forks": 39, + "forks": 38, "open_issues": 0, "last_commit": "2020-05-09T09:56:24Z", "created_at": "2016-09-06T08:42:27Z", "description": "lightweight jekyll blog theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lukas-h-material-theme-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lukas-h-material-theme-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lukas-h-material-theme-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lukas-h-material-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lukas-h-material-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lukas-h-material-theme-2x.jpg" } }, - "lukas-h-onepage-master": { - "theme_key": "lukas-h-onepage-master", + "lukas-h-onepage": { + "theme_key": "lukas-h-onepage", "file": "jekyll-onepage.md", "name": "onepage", "title": "Onepage", "github_username": "lukas-h", "repo": "lukas-h/onepage", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/lukas-h/onepage", - "demo_url": "http://himsel.me", + "demo_url": "https://himsel.me", "stars": 25, - "forks": 34, + "forks": 35, "open_issues": 0, "last_commit": "2020-05-09T09:59:03Z", "created_at": "2016-11-06T15:13:02Z", "description": "uncomplicated single-page jekyll blog theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lukas-h-onepage-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lukas-h-onepage-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lukas-h-onepage-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lukas-h-onepage.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lukas-h-onepage.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lukas-h-onepage-2x.jpg" } }, - "lukewhitehouse-gatsby-starter-blog-with-lunr-master": { - "theme_key": "lukewhitehouse-gatsby-starter-blog-with-lunr-master", + "lukewhitehouse-gatsby-starter-blog-with-lunr": { + "theme_key": "lukewhitehouse-gatsby-starter-blog-with-lunr", "file": "gatsby-starter-blog-with-lunr.md", "name": "gatsby-starter-blog-with-lunr", "title": "Gatsby Blog With Lunr", "github_username": "lukewhitehouse", "repo": "lukewhitehouse/gatsby-starter-blog-with-lunr", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/lukewhitehouse/gatsby-starter-blog-with-lunr", "demo_url": "https://gatsby-starter-blog-with-lunr.netlify.com/", - "stars": 16, - "forks": 6, + "stars": 18, + "forks": 5, "open_issues": 3, "last_commit": "2019-06-11T09:00:38Z", "created_at": "2019-04-26T20:57:26Z", "description": "Building upon Gatsby's blog starter with a Lunr.js powered Site Search. https://gatsby-starter-blog-with-lunr.netlify.com/", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lukewhitehouse-gatsby-starter-blog-with-lunr-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lukewhitehouse-gatsby-starter-blog-with-lunr-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lukewhitehouse-gatsby-starter-blog-with-lunr-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lukewhitehouse-gatsby-starter-blog-with-lunr.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lukewhitehouse-gatsby-starter-blog-with-lunr.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lukewhitehouse-gatsby-starter-blog-with-lunr-2x.jpg" } }, - "lunaceee-hexo-material-netlify-master": { - "theme_key": "lunaceee-hexo-material-netlify-master", + "lunaceee-hexo-material-netlify": { + "theme_key": "lunaceee-hexo-material-netlify", "file": "hexo-material-netlify.md", "name": "hexo-material-netlify", "title": "Hexo Material Netlify", "github_username": "lunaceee", "repo": "lunaceee/hexo-material-netlify", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/lunaceee/hexo-material-netlify", "demo_url": "https://hexo-material-cms.netlify.com/", - "stars": 10, - "forks": 9, - "open_issues": 3, + "stars": 15, + "forks": 12, + "open_issues": 4, "last_commit": "2019-02-27T04:18:38Z", "created_at": "2018-07-14T20:02:15Z", "description": "Hexo + Netlify CMS starter based on material design", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lunaceee-hexo-material-netlify-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lunaceee-hexo-material-netlify-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lunaceee-hexo-material-netlify-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lunaceee-hexo-material-netlify.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lunaceee-hexo-material-netlify.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lunaceee-hexo-material-netlify-2x.jpg" } }, - "lundgren2-gatsby-starter-github-api-master": { - "theme_key": "lundgren2-gatsby-starter-github-api-master", + "lundgren2-gatsby-starter-github-api": { + "theme_key": "lundgren2-gatsby-starter-github-api", "file": "gatsby-starter-github-api.md", "name": "gatsby-starter-github-api", "title": "Gatsby Github API", "github_username": "lundgren2", "repo": "lundgren2/gatsby-starter-github-api", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/lundgren2/gatsby-starter-github-api", "demo_url": "https://gatsby-starter-github-api.netlify.com/", - "stars": 14, - "forks": 4, + "stars": 16, + "forks": 5, "open_issues": 11, - "last_commit": "2020-02-01T20:56:33Z", + "last_commit": "2022-04-04T18:12:22Z", "created_at": "2019-06-05T14:38:24Z", "description": "Kick off your next, great Gatsby project with this Github source starter based on gatsby-source-github-api", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lundgren2-gatsby-starter-github-api-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lundgren2-gatsby-starter-github-api-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lundgren2-gatsby-starter-github-api-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lundgren2-gatsby-starter-github-api.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lundgren2-gatsby-starter-github-api.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lundgren2-gatsby-starter-github-api-2x.jpg" } }, - "luoyan35714-lessormore-master": { - "theme_key": "luoyan35714-lessormore-master", + "luoyan35714-lessormore": { + "theme_key": "luoyan35714-lessormore", "file": "jekyll-Less-Or-More.md", "name": "LessOrMore", "title": "Less Or More", "github_username": "luoyan35714", "repo": "luoyan35714/LessOrMore", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/luoyan35714/LessOrMore", "demo_url": "https://www.hifreud.com/", "stars": 179, - "forks": 227, - "open_issues": 2, - "last_commit": "2020-04-14T15:42:34Z", + "forks": 222, + "open_issues": 0, + "last_commit": "2022-12-06T14:08:46Z", "created_at": "2016-08-20T17:16:00Z", "description": "Jekyll theme.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/luoyan35714-lessormore-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/luoyan35714-lessormore-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/luoyan35714-lessormore-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/luoyan35714-lessormore.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/luoyan35714-lessormore.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/luoyan35714-lessormore-2x.jpg" + } + }, + "lwojcik-eleventy-template-bliss": { + "theme_key": "lwojcik-eleventy-template-bliss", + "file": "11ty-bliss.md", + "name": "eleventy-template-bliss", + "title": "Bliss", + "github_username": "lwojcik", + "repo": "lwojcik/eleventy-template-bliss", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/lwojcik/eleventy-template-bliss", + "demo_url": "https://eleventy-bliss.vercel.app/", + "stars": 14, + "forks": 3, + "open_issues": 4, + "last_commit": "2023-03-31T06:50:39Z", + "created_at": "2023-02-17T21:13:48Z", + "description": "Single-column blog template for Eleventy focused on simplicity without sacrificing functionality", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/lwojcik-eleventy-template-bliss.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lwojcik-eleventy-template-bliss.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lwojcik-eleventy-template-bliss-2x.jpg" } }, - "lwz7512-gatsby-netlify-identity-starter-master": { - "theme_key": "lwz7512-gatsby-netlify-identity-starter-master", + "lwz7512-gatsby-netlify-identity-starter": { + "theme_key": "lwz7512-gatsby-netlify-identity-starter", "file": "gatsby-netlify-identity-starter.md", "name": "gatsby-netlify-identity-starter", "title": "Gatsby Netlify Identity", "github_username": "lwz7512", "repo": "lwz7512/gatsby-netlify-identity-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/lwz7512/gatsby-netlify-identity-starter", "demo_url": "https://inspiring-me-lwz7512.netlify.com/", - "stars": 2, + "stars": 3, "forks": 2, - "open_issues": 13, + "open_issues": 32, "last_commit": "2020-01-21T14:11:23Z", "created_at": "2018-12-21T19:54:09Z", "description": "a gatsby static site generator with netlify identity control...", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lwz7512-gatsby-netlify-identity-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lwz7512-gatsby-netlify-identity-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lwz7512-gatsby-netlify-identity-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lwz7512-gatsby-netlify-identity-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lwz7512-gatsby-netlify-identity-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lwz7512-gatsby-netlify-identity-starter-2x.jpg" + } + }, + "lwz7512-next-dev-studio": { + "theme_key": "lwz7512-next-dev-studio", + "file": "next-dev-studio.md", + "name": "next-dev-studio", + "title": "Next Dev Studio", + "github_username": "lwz7512", + "repo": "lwz7512/next-dev-studio", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/lwz7512/next-dev-studio", + "demo_url": "https://next-dev-studio.vercel.app/", + "stars": 11, + "forks": 14, + "open_issues": 0, + "last_commit": "2022-08-17T01:26:16Z", + "created_at": "2021-05-28T21:02:11Z", + "description": "A small business website template based on Nextjs and the original idea of one-click-hugo-cms from netlify.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/lwz7512-next-dev-studio.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lwz7512-next-dev-studio.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lwz7512-next-dev-studio-2x.jpg" + } + }, + "lwz7512-next-smooth-doc": { + "theme_key": "lwz7512-next-smooth-doc", + "file": "next-smooth-doc.md", + "name": "next-smooth-doc", + "title": "Next Smooth Doc", + "github_username": "lwz7512", + "repo": "lwz7512/next-smooth-doc", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/lwz7512/next-smooth-doc", + "demo_url": "https://next-smooth-doc.vercel.app/", + "stars": 31, + "forks": 21, + "open_issues": 0, + "last_commit": "2021-10-08T13:12:35Z", + "created_at": "2021-06-05T00:36:07Z", + "description": "smooth-doc in Nextjs implementation", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/lwz7512-next-smooth-doc.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lwz7512-next-smooth-doc.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lwz7512-next-smooth-doc-2x.jpg" + } + }, + "lwz7512-next-static-neve": { + "theme_key": "lwz7512-next-static-neve", + "file": "next-static-neve.md", + "name": "next-static-neve", + "title": "Headless Neve", + "github_username": "lwz7512", + "repo": "lwz7512/next-static-neve", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/lwz7512/next-static-neve", + "demo_url": "https://next-static-neve.vercel.app/", + "stars": 17, + "forks": 20, + "open_issues": 0, + "last_commit": "2021-03-29T23:27:35Z", + "created_at": "2021-03-21T02:36:46Z", + "description": "the fastest way to export wordpress site as a static site", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/lwz7512-next-static-neve.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lwz7512-next-static-neve.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lwz7512-next-static-neve-2x.jpg" + } + }, + "lxndrblz-anatole": { + "theme_key": "lxndrblz-anatole", + "file": "hugo-anatole.md", + "name": "anatole", + "title": "Anatole", + "github_username": "lxndrblz", + "repo": "lxndrblz/anatole", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/lxndrblz/anatole", + "demo_url": "https://anatole-demo.netlify.app/", + "stars": 554, + "forks": 317, + "open_issues": 25, + "last_commit": "2023-01-06T16:38:13Z", + "created_at": "2020-04-10T19:53:00Z", + "description": "Anatole is a minimalistic two-column theme for Hugo.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/lxndrblz-anatole.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lxndrblz-anatole.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lxndrblz-anatole-2x.jpg" } }, - "lyket-dev-nextjs-simple-blog-theme-main": { - "theme_key": "lyket-dev-nextjs-simple-blog-theme-main", + "lyket-dev-nextjs-simple-blog-theme": { + "theme_key": "lyket-dev-nextjs-simple-blog-theme", "file": "nextjs-simple-blog.md", "name": "nextjs-simple-blog-theme", "title": "NextJS simple blog", "github_username": "lyket-dev", "repo": "lyket-dev/nextjs-simple-blog-theme", "branch": "main", + "default_branch": "main", "github_url": "https://github.com/lyket-dev/nextjs-simple-blog-theme", "demo_url": "https://nextjs-simple-blog.netlify.app/", - "stars": 1, - "forks": 1, + "stars": 3, + "forks": 2, "open_issues": 0, "last_commit": "2020-10-29T09:46:59Z", "created_at": "2020-10-29T09:42:18Z", "description": null, - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/lyket-dev-nextjs-simple-blog-theme-main.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lyket-dev-nextjs-simple-blog-theme-main.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lyket-dev-nextjs-simple-blog-theme-main-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/lyket-dev-nextjs-simple-blog-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/lyket-dev-nextjs-simple-blog-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/lyket-dev-nextjs-simple-blog-theme-2x.jpg" } }, - "macrod68-jekyll-materialize-starter-template-master": { - "theme_key": "macrod68-jekyll-materialize-starter-template-master", + "macrod68-jekyll-materialize-starter-template": { + "theme_key": "macrod68-jekyll-materialize-starter-template", "file": "jekyll-materialize-theme.md", "name": "jekyll-materialize-starter-template", "title": "Jekyll Materialize", "github_username": "macrod68", "repo": "macrod68/jekyll-materialize-starter-template", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/macrod68/jekyll-materialize-starter-template", "demo_url": "https://jekyllmaterialize.panoramedia.it/", - "stars": 56, - "forks": 85, + "stars": 60, + "forks": 87, "open_issues": 8, "last_commit": "2019-09-03T23:08:39Z", "created_at": "2017-08-09T19:17:13Z", "description": "Jekyll Materialize Starter Theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/macrod68-jekyll-materialize-starter-template-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/macrod68-jekyll-materialize-starter-template-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/macrod68-jekyll-materialize-starter-template-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/macrod68-jekyll-materialize-starter-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/macrod68-jekyll-materialize-starter-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/macrod68-jekyll-materialize-starter-template-2x.jpg" } }, - "madelyneriksen-gatsby-starter-tyra-master": { - "theme_key": "madelyneriksen-gatsby-starter-tyra-master", + "madelyneriksen-gatsby-starter-tyra": { + "theme_key": "madelyneriksen-gatsby-starter-tyra", "file": "gatsby-starter-tyra.md", "name": "gatsby-starter-tyra", "title": "Gatsby Starter Tyra", "github_username": "madelyneriksen", "repo": "madelyneriksen/gatsby-starter-tyra", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/madelyneriksen/gatsby-starter-tyra", "demo_url": "https://tyra-starter.netlify.com/", - "stars": 73, - "forks": 29, - "open_issues": 12, - "last_commit": "2021-01-01T14:01:20Z", + "stars": 78, + "forks": 31, + "open_issues": 34, + "last_commit": "2021-08-01T13:19:59Z", "created_at": "2018-12-12T14:21:33Z", "description": "Tyra - Feminine Gatsby Starter optimized for SEO", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/madelyneriksen-gatsby-starter-tyra-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/madelyneriksen-gatsby-starter-tyra-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/madelyneriksen-gatsby-starter-tyra-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/madelyneriksen-gatsby-starter-tyra.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/madelyneriksen-gatsby-starter-tyra.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/madelyneriksen-gatsby-starter-tyra-2x.jpg" } }, - "madforjekyll-madforjekyll.github.io-master": { - "theme_key": "madforjekyll-madforjekyll.github.io-master", + "madforjekyll-madforjekyll.github.io": { + "theme_key": "madforjekyll-madforjekyll.github.io", "file": "jekyll-MAD4Jekyll.md", "name": "madforjekyll.github.io", "title": "MAD4Jekyll", "github_username": "madforjekyll", "repo": "madforjekyll/madforjekyll.github.io", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/madforjekyll/madforjekyll.github.io", "demo_url": "https://madforjekyll.github.io", - "stars": 22, - "forks": 43, + "stars": 21, + "forks": 45, "open_issues": 0, "last_commit": "2016-08-27T03:18:00Z", "created_at": "2015-11-28T23:40:15Z", "description": "MAD4Jekyll theme for Jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/madforjekyll-madforjekyll.github.io-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/madforjekyll-madforjekyll.github.io-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/madforjekyll-madforjekyll.github.io-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/madforjekyll-madforjekyll.github.io.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/madforjekyll-madforjekyll.github.io.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/madforjekyll-madforjekyll.github.io-2x.jpg" + } + }, + "manavsehgal-opentheme": { + "theme_key": "open-start-opentheme", + "file": "jekyll-opentheme.md", + "name": "opentheme", + "title": "OpenTheme", + "github_username": "manavsehgal", + "repo": "manavsehgal/opentheme", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/manavsehgal/opentheme", + "demo_url": "https://opentheme.co/", + "stars": 151, + "forks": 208, + "open_issues": 6, + "last_commit": "2017-12-03T05:56:33Z", + "created_at": "2014-11-19T12:03:04Z", + "description": "Powerful new theme featuring Semantic UI for speedily creating amazing websites and mobile-hybrid apps on GitHub Pages.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/open-start-opentheme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/open-start-opentheme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/open-start-opentheme-2x.jpg" } }, - "manid2-lone-wolf-theme-master": { - "theme_key": "manid2-lone-wolf-theme-master", + "manid2-lone-wolf-theme": { + "theme_key": "manid2-lone-wolf-theme", "file": "jekyll-lone-wolf-theme.md", "name": "lone-wolf-theme", "title": "Lone Wolf Theme", "github_username": "manid2", "repo": "manid2/lone-wolf-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/manid2/lone-wolf-theme", "demo_url": "https://manid2.github.io/lone-wolf-theme/", - "stars": 9, - "forks": 15, - "open_issues": 1, - "last_commit": "2020-12-22T11:41:28Z", + "stars": 16, + "forks": 60, + "open_issues": 0, + "last_commit": "2021-07-01T19:24:41Z", "created_at": "2019-02-17T10:19:22Z", "description": "A simple bootstrap based jekyll theme.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/manid2-lone-wolf-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/manid2-lone-wolf-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/manid2-lone-wolf-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/manid2-lone-wolf-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/manid2-lone-wolf-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/manid2-lone-wolf-theme-2x.jpg" } }, - "marcanuy-hugotube-master": { - "theme_key": "marcanuy-hugotube-master", + "marcanuy-hugotube": { + "theme_key": "marcanuy-hugotube", "file": "hugo-hugotube.md", "name": "hugotube", "title": "Hugotube", "github_username": "marcanuy", "repo": "marcanuy/hugotube", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/marcanuy/hugotube", "demo_url": "https://marcanuy.github.io/hugotube/", - "stars": 7, - "forks": 5, + "stars": 9, + "forks": 7, "open_issues": 2, - "last_commit": "2019-09-27T15:04:52Z", + "last_commit": "2021-05-24T22:08:23Z", "created_at": "2017-12-04T12:35:17Z", "description": "Responsive Hugo theme inspired in YouTube layout", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/marcanuy-hugotube-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/marcanuy-hugotube-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/marcanuy-hugotube-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/marcanuy-hugotube.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/marcanuy-hugotube.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/marcanuy-hugotube-2x.jpg" } }, - "marcanuy-simpleit-hugo-theme-master": { - "theme_key": "marcanuy-simpleit-hugo-theme-master", + "marcanuy-simpleit-hugo-theme": { + "theme_key": "marcanuy-simpleit-hugo-theme", "file": "hugo-simpleit.md", "name": "simpleit-hugo-theme", "title": "SimpleIT", "github_username": "marcanuy", "repo": "marcanuy/simpleit-hugo-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/marcanuy/simpleit-hugo-theme", "demo_url": "https://themes.gohugo.io/theme/simpleit-hugo-theme/", "stars": 16, - "forks": 4, - "open_issues": 2, - "last_commit": "2020-10-20T13:50:47Z", + "forks": 6, + "open_issues": 0, + "last_commit": "2021-06-16T13:48:37Z", "created_at": "2018-08-06T20:17:57Z", "description": "Responsive Hugo theme for hierarchical content websites", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/marcanuy-simpleit-hugo-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/marcanuy-simpleit-hugo-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/marcanuy-simpleit-hugo-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/marcanuy-simpleit-hugo-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/marcanuy-simpleit-hugo-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/marcanuy-simpleit-hugo-theme-2x.jpg" } }, - "marcomelilli-gatsby-airtable-advanced-starter-master": { - "theme_key": "marcomelilli-gatsby-airtable-advanced-starter-master", + "marcomelilli-gatsby-airtable-advanced-starter": { + "theme_key": "marcomelilli-gatsby-airtable-advanced-starter", "file": "gatsby-airtable-advanced-starter.md", "name": "gatsby-airtable-advanced-starter", "title": "Gatsby Airtable Advanced Starter", "github_username": "marcomelilli", "repo": "marcomelilli/gatsby-airtable-advanced-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/marcomelilli/gatsby-airtable-advanced-starter", "demo_url": "https://gatsby-airtable-advanced-starter.marcomelilli.com/", - "stars": 20, + "stars": 21, "forks": 6, - "open_issues": 1, + "open_issues": 2, "last_commit": "2020-05-22T09:10:39Z", "created_at": "2019-07-04T19:41:10Z", "description": "A Gatsby Starter Blog using Airtable as backend", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/marcomelilli-gatsby-airtable-advanced-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/marcomelilli-gatsby-airtable-advanced-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/marcomelilli-gatsby-airtable-advanced-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/marcomelilli-gatsby-airtable-advanced-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/marcomelilli-gatsby-airtable-advanced-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/marcomelilli-gatsby-airtable-advanced-starter-2x.jpg" } }, - "marcusvirg-forty-master": { - "theme_key": "marcusvirg-forty-master", + "marcusvirg-forty": { + "theme_key": "marcusvirg-forty", "file": "forty.md", "name": "forty", "title": "Forty", "github_username": "MarcusVirg", "repo": "MarcusVirg/forty", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/MarcusVirg/forty", "demo_url": "https://themes.gohugo.io/theme/forty/", - "stars": 103, - "forks": 104, - "open_issues": 11, + "stars": 107, + "forks": 110, + "open_issues": 12, "last_commit": "2019-04-30T03:33:26Z", "created_at": "2017-11-18T01:53:43Z", "description": "Forty theme - Hugo theme ported from HTML5UP origrinal theme called Forty.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/marcusvirg-forty-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/marcusvirg-forty-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/marcusvirg-forty-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/marcusvirg-forty.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/marcusvirg-forty.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/marcusvirg-forty-2x.jpg" } }, - "margueriteroth-gatsby-prismic-starter-prist-master": { - "theme_key": "margueriteroth-gatsby-prismic-starter-prist-master", + "margueriteroth-gatsby-prismic-starter-prist": { + "theme_key": "margueriteroth-gatsby-prismic-starter-prist", "file": "gatsby-prismic-starter-prist.md", "name": "gatsby-prismic-starter-prist", "title": "Gatsby Prismic Starter Prist", "github_username": "margueriteroth", "repo": "margueriteroth/gatsby-prismic-starter-prist", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/margueriteroth/gatsby-prismic-starter-prist", "demo_url": "https://prist.marguerite.io/", - "stars": 267, - "forks": 51, - "open_issues": 16, + "stars": 342, + "forks": 71, + "open_issues": 35, "last_commit": "2020-07-06T15:37:53Z", "created_at": "2019-07-01T16:19:33Z", "description": "Gatsby starter for portfolios and blogs using Prismic CMS", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/margueriteroth-gatsby-prismic-starter-prist-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/margueriteroth-gatsby-prismic-starter-prist-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/margueriteroth-gatsby-prismic-starter-prist-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/margueriteroth-gatsby-prismic-starter-prist.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/margueriteroth-gatsby-prismic-starter-prist.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/margueriteroth-gatsby-prismic-starter-prist-2x.jpg" } }, - "markoradak-gatsby-starter-storybook-master": { - "theme_key": "markoradak-gatsby-starter-storybook-master", + "markoradak-gatsby-starter-storybook": { + "theme_key": "markoradak-gatsby-starter-storybook", "file": "gatsby-starter-storybook.md", "name": "gatsby-starter-storybook", "title": "Gatsby Starter Storybook", "github_username": "markoradak", "repo": "markoradak/gatsby-starter-storybook", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/markoradak/gatsby-starter-storybook", "demo_url": "https://gatsby-starter-storybook.netlify.com/", - "stars": 40, - "forks": 13, - "open_issues": 2, + "stars": 42, + "forks": 12, + "open_issues": 1, "last_commit": "2019-09-05T15:18:26Z", "created_at": "2018-11-01T10:06:05Z", "description": "👾 Gatsby Storybook Starter", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/markoradak-gatsby-starter-storybook-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/markoradak-gatsby-starter-storybook-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/markoradak-gatsby-starter-storybook-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/markoradak-gatsby-starter-storybook.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/markoradak-gatsby-starter-storybook.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/markoradak-gatsby-starter-storybook-2x.jpg" } }, - "matcornic-hugo-theme-learn-master": { - "theme_key": "matcornic-hugo-theme-learn-master", + "matcornic-hugo-theme-learn": { + "theme_key": "matcornic-hugo-theme-learn", "file": "hugo-theme-learn.md", "name": "hugo-theme-learn", "title": "Hugo Learn Theme", "github_username": "matcornic", "repo": "matcornic/hugo-theme-learn", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/matcornic/hugo-theme-learn", "demo_url": "https://learn.netlify.com/en/", - "stars": 1124, - "forks": 989, - "open_issues": 142, - "last_commit": "2020-12-05T10:39:25Z", + "stars": 1488, + "forks": 1315, + "open_issues": 168, + "last_commit": "2021-10-28T19:04:10Z", "created_at": "2016-03-17T10:58:41Z", "description": "Porting Grav Learn theme to Hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/matcornic-hugo-theme-learn-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/matcornic-hugo-theme-learn-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/matcornic-hugo-theme-learn-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/matcornic-hugo-theme-learn.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/matcornic-hugo-theme-learn.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/matcornic-hugo-theme-learn-2x.jpg" } }, - "mateussmedeiros-blade-theme-master": { - "theme_key": "mateussmedeiros-blade-theme-master", + "mateussmedeiros-blade-theme": { + "theme_key": "mateussmedeiros-blade-theme", "file": "jekyll-blade-theme.md", "name": "blade-theme", "title": "Blade Theme", "github_username": "mateussmedeiros", "repo": "mateussmedeiros/blade-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/mateussmedeiros/blade-theme", "demo_url": "https://mateussmedeiros.github.io/blade-theme/", "stars": 3, @@ -13031,67 +16507,67 @@ "last_commit": "2019-02-04T18:18:11Z", "created_at": "2017-01-25T22:59:55Z", "description": "A simple Jekyll blog theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/mateussmedeiros-blade-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mateussmedeiros-blade-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mateussmedeiros-blade-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/mateussmedeiros-blade-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mateussmedeiros-blade-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mateussmedeiros-blade-theme-2x.jpg" } }, - "mattbutton-silhouette-hugo-master": { - "theme_key": "mattbutton-silhouette-hugo-master", + "mattbutton-silhouette-hugo": { + "theme_key": "mattbutton-silhouette-hugo", "file": "hugo-silhouette-theme.md", "name": "silhouette-hugo", "title": "Silhouette Hugo", "github_username": "mattbutton", "repo": "mattbutton/silhouette-hugo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/mattbutton/silhouette-hugo", "demo_url": "https://themes.gohugo.io/theme/silhouette-hugo/", - "stars": 21, - "forks": 11, + "stars": 20, + "forks": 12, "open_issues": 3, - "last_commit": "2019-12-29T22:31:20Z", + "last_commit": "2021-07-23T10:28:48Z", "created_at": "2018-12-15T10:28:21Z", "description": null, - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/mattbutton-silhouette-hugo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mattbutton-silhouette-hugo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mattbutton-silhouette-hugo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/mattbutton-silhouette-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mattbutton-silhouette-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mattbutton-silhouette-hugo-2x.jpg" } }, - "mattcouchman-jekyll-resume-master": { - "theme_key": "mattcouchman-jekyll-resume-master", + "mattcouchman-jekyll-resume": { + "theme_key": "mattcouchman-jekyll-resume", "file": "jekyll-resume.md", "name": "jekyll-resume", "title": "jekyll-resume", "github_username": "mattcouchman", "repo": "mattcouchman/jekyll-resume", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/mattcouchman/jekyll-resume", - "demo_url": "http://mattcouchman.co.uk/jekyll-resume", - "stars": 80, - "forks": 195, - "open_issues": 4, + "demo_url": "https://mattcouchman.co.uk/jekyll-resume", + "stars": 82, + "forks": 191, + "open_issues": 6, "last_commit": "2016-06-06T20:15:26Z", "created_at": "2016-05-31T20:26:59Z", "description": "A simple resume theme for Jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/mattcouchman-jekyll-resume-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mattcouchman-jekyll-resume-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mattcouchman-jekyll-resume-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/mattcouchman-jekyll-resume.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mattcouchman-jekyll-resume.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mattcouchman-jekyll-resume-2x.jpg" } }, - "mattgraham-leap-day-master": { - "theme_key": "mattgraham-leap-day-master", + "mattgraham-leap-day": { + "theme_key": "mattgraham-leap-day", "file": "jekyll-leap-day.md", "name": "leapday", "title": "Leap Day", "github_username": "mattgraham", "repo": "mattgraham/leapday", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/mattgraham/leapday", "demo_url": "https://madebygraham.com/leapday/", "stars": 99, @@ -13100,44 +16576,67 @@ "last_commit": "2018-09-17T13:48:38Z", "created_at": "2012-04-04T21:48:06Z", "description": "GitHub Pages Theme: Leap Day", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/mattgraham-leap-day-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mattgraham-leap-day-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mattgraham-leap-day-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/mattgraham-leap-day.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mattgraham-leap-day.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mattgraham-leap-day-2x.jpg" } }, - "mattgraham-midnight-master": { - "theme_key": "mattgraham-midnight-master", + "mattgraham-leapday": { + "theme_key": "mattgraham-leap-day", + "file": "jekyll-leap-day.md", + "name": "leapday", + "title": "Leap Day", + "github_username": "mattgraham", + "repo": "mattgraham/leapday", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/mattgraham/leapday", + "demo_url": "https://madebygraham.com/leapday/", + "stars": 102, + "forks": 72, + "open_issues": 5, + "last_commit": "2018-09-17T13:48:38Z", + "created_at": "2012-04-04T21:48:06Z", + "description": "GitHub Pages Theme: Leap Day", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/mattgraham-leap-day.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mattgraham-leap-day.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mattgraham-leap-day-2x.jpg" + } + }, + "mattgraham-midnight": { + "theme_key": "mattgraham-midnight", "file": "jekyll-midnight.md", "name": "midnight", "title": "Midnight", "github_username": "mattgraham", "repo": "mattgraham/midnight", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/mattgraham/midnight", "demo_url": "https://madebygraham.com/midnight/", - "stars": 148, - "forks": 118, - "open_issues": 6, + "stars": 150, + "forks": 117, + "open_issues": 5, "last_commit": "2018-09-17T13:49:40Z", "created_at": "2012-04-04T23:05:14Z", "description": "GitHub Pages Theme: Midnight", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/mattgraham-midnight-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mattgraham-midnight-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mattgraham-midnight-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/mattgraham-midnight.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mattgraham-midnight.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mattgraham-midnight-2x.jpg" } }, - "mattolson-middleman-bootstrap-template-master": { - "theme_key": "mattolson-middleman-bootstrap-template-master", + "mattolson-middleman-bootstrap-template": { + "theme_key": "mattolson-middleman-bootstrap-template", "file": "middleman-bootstrap-template.md", "name": "middleman-bootstrap-template", "title": "Middleman Bootstrap Template", "github_username": "mattolson", "repo": "mattolson/middleman-bootstrap-template", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/mattolson/middleman-bootstrap-template", "demo_url": "https://middleman-bootstrap.s3-website-us-east-1.amazonaws.com/", "stars": 6, @@ -13146,21 +16645,21 @@ "last_commit": "2017-12-28T20:14:24Z", "created_at": "2017-12-28T02:11:32Z", "description": "Bootstrap v4 template for Middleman static site generator", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/mattolson-middleman-bootstrap-template-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mattolson-middleman-bootstrap-template-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mattolson-middleman-bootstrap-template-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/mattolson-middleman-bootstrap-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mattolson-middleman-bootstrap-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mattolson-middleman-bootstrap-template-2x.jpg" } }, - "mattolson-middleman-zurb-template-master": { - "theme_key": "mattolson-middleman-zurb-template-master", + "mattolson-middleman-zurb-template": { + "theme_key": "mattolson-middleman-zurb-template", "file": "middleman-zurb-template.md", "name": "middleman-zurb-template", "title": "Middleman Zurb", "github_username": "mattolson", "repo": "mattolson/middleman-zurb-template", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/mattolson/middleman-zurb-template", "demo_url": "https://mattolson.com/", "stars": 29, @@ -13169,940 +16668,1033 @@ "last_commit": "2017-12-28T03:59:56Z", "created_at": "2013-02-02T00:32:42Z", "description": "Middleman blog template containing ZURB Foundation and sensible default components and templates", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/mattolson-middleman-zurb-template-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mattolson-middleman-zurb-template-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mattolson-middleman-zurb-template-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/mattolson-middleman-zurb-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mattolson-middleman-zurb-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mattolson-middleman-zurb-template-2x.jpg" } }, - "mattvh-solar-theme-jekyll-master": { - "theme_key": "mattvh-solar-theme-jekyll-master", + "mattvh-solar-theme-jekyll": { + "theme_key": "mattvh-solar-theme-jekyll", "file": "solar-theme-jekyll.md", "name": "solar-theme-jekyll", "title": "Solar Jekyll", "github_username": "mattvh", "repo": "mattvh/solar-theme-jekyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/mattvh/solar-theme-jekyll", "demo_url": "https://mattvh.github.io/solar-theme-jekyll/", - "stars": 215, - "forks": 145, + "stars": 217, + "forks": 149, "open_issues": 3, "last_commit": "2016-05-14T07:56:00Z", "created_at": "2013-06-07T20:27:21Z", "description": "A stylish theme for Jekyll blogs, based on the Solarized color palette", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/mattvh-solar-theme-jekyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mattvh-solar-theme-jekyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mattvh-solar-theme-jekyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/mattvh-solar-theme-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mattvh-solar-theme-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mattvh-solar-theme-jekyll-2x.jpg" } }, - "maxpou-gatsby-starter-morning-dew-master": { - "theme_key": "maxpou-gatsby-starter-morning-dew-master", + "maxpou-gatsby-starter-morning-dew": { + "theme_key": "maxpou-gatsby-starter-morning-dew", "file": "gatsby-starter-morning-dew.md", "name": "gatsby-starter-morning-dew", "title": "Gatsby Morning Dew", "github_username": "maxpou", "repo": "maxpou/gatsby-starter-morning-dew", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/maxpou/gatsby-starter-morning-dew", "demo_url": "https://maxpou.github.io/gatsby-starter-morning-dew/", - "stars": 181, - "forks": 39, + "stars": 202, + "forks": 41, "open_issues": 11, - "last_commit": "2020-12-10T17:15:22Z", + "last_commit": "2021-04-04T09:03:51Z", "created_at": "2018-09-16T20:53:24Z", "description": ":rocket: A Gatsby theme/starter to build lightning-fast blog/websites", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/maxpou-gatsby-starter-morning-dew-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/maxpou-gatsby-starter-morning-dew-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/maxpou-gatsby-starter-morning-dew-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/maxpou-gatsby-starter-morning-dew.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/maxpou-gatsby-starter-morning-dew.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/maxpou-gatsby-starter-morning-dew-2x.jpg" } }, - "mazgi-hugo-theme-techlog-simple-master": { - "theme_key": "mazgi-hugo-theme-techlog-simple-master", + "mazgi-hugo-theme-techlog-simple": { + "theme_key": "mazgi-hugo-theme-techlog-simple", "file": "hugo-theme-techlog-simple.md", "name": "hugo-theme-techlog-simple", "title": "Techlog Simple", "github_username": "mazgi", "repo": "mazgi/hugo-theme-techlog-simple", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/mazgi/hugo-theme-techlog-simple", "demo_url": "https://themes.gohugo.io/theme/hugo-theme-techlog-simple/", - "stars": 7, - "forks": 3, + "stars": 8, + "forks": 5, "open_issues": 0, - "last_commit": "2020-11-01T19:37:57Z", + "last_commit": "2020-11-01T19:37:40Z", "created_at": "2018-10-07T12:37:00Z", "description": "A simple Hugo theme for tech-blogs.", "images": { - "hires": "https://www.jamstackthemes.dev/capture/mazgi-hugo-theme-techlog-simple-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mazgi-hugo-theme-techlog-simple-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mazgi-hugo-theme-techlog-simple-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/mazgi-hugo-theme-techlog-simple.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mazgi-hugo-theme-techlog-simple.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mazgi-hugo-theme-techlog-simple-2x.jpg" } }, - "mccrodp-gatsby-starter-contentful-i18n-master": { - "theme_key": "mccrodp-gatsby-starter-contentful-i18n-master", + "mccrodp-gatsby-starter-contentful-i18n": { + "theme_key": "mccrodp-gatsby-starter-contentful-i18n", "file": "gatsby-starter-contentful-i18n.md", "name": "gatsby-starter-contentful-i18n", "title": "Gatsby Contentful i18n", "github_username": "mccrodp", "repo": "mccrodp/gatsby-starter-contentful-i18n", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/mccrodp/gatsby-starter-contentful-i18n", "demo_url": "https://gatsby-starter-contentful-i18n.netlify.com/en-US/", - "stars": 55, - "forks": 16, + "stars": 61, + "forks": 17, "open_issues": 0, - "last_commit": "2019-04-14T03:39:50Z", + "last_commit": "2021-06-04T02:22:31Z", "created_at": "2018-02-11T06:35:14Z", "description": "i18n support and language switcher for Contentful starter repo", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/mccrodp-gatsby-starter-contentful-i18n-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mccrodp-gatsby-starter-contentful-i18n-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mccrodp-gatsby-starter-contentful-i18n-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/mccrodp-gatsby-starter-contentful-i18n.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mccrodp-gatsby-starter-contentful-i18n.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mccrodp-gatsby-starter-contentful-i18n-2x.jpg" + } + }, + "mdrathik-nuxtjs-tailwind-blog": { + "theme_key": "mdrathik-nuxtjs-tailwind-blog", + "file": "nuxt-tailwind-blog-starter.md", + "name": "nuxtjs-tailwind-blog", + "title": "NuxtJs Tailwind Blog Starter", + "github_username": "mdrathik", + "repo": "mdrathik/nuxtjs-tailwind-blog", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/mdrathik/nuxtjs-tailwind-blog", + "demo_url": "https://nuxt-tailwind-blog.netlify.app/", + "stars": 46, + "forks": 26, + "open_issues": 0, + "last_commit": "2022-05-10T08:04:59Z", + "created_at": "2022-04-09T07:21:02Z", + "description": "This is a nuxtjs, Tailwind CSS blogging template. Its supported Markdown for blog.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/mdrathik-nuxtjs-tailwind-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mdrathik-nuxtjs-tailwind-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mdrathik-nuxtjs-tailwind-blog-2x.jpg" } }, - "meibenny-elephants-master": { - "theme_key": "meibenny-elephants-master", + "meibenny-elephants": { + "theme_key": "meibenny-elephants", "file": "hugo-elephants.md", "name": "elephants", "title": "Elephants", "github_username": "meibenny", "repo": "meibenny/elephants", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/meibenny/elephants", "demo_url": "https://themes.gohugo.io/theme/elephants/", - "stars": 18, - "forks": 11, - "open_issues": 0, + "stars": 17, + "forks": 12, + "open_issues": 1, "last_commit": "2019-08-20T02:50:02Z", "created_at": "2018-01-01T20:30:49Z", "description": "Minimal Hugo theme using the Ubuntu font", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/meibenny-elephants-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/meibenny-elephants-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/meibenny-elephants-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/meibenny-elephants.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/meibenny-elephants.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/meibenny-elephants-2x.jpg" } }, - "melangue-dactl-master": { - "theme_key": "melangue-dactl-master", + "melangue-dactl": { + "theme_key": "melangue-dactl", "file": "jekyll-dactl-theme.md", "name": "dactl", "title": "dactl", "github_username": "melangue", "repo": "melangue/dactl", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/melangue/dactl", "demo_url": "https://melangue.github.io/dactl/", - "stars": 174, - "forks": 153, + "stars": 207, + "forks": 165, "open_issues": 5, - "last_commit": "2018-08-11T12:51:42Z", + "last_commit": "2021-08-13T15:12:58Z", "created_at": "2017-04-30T17:52:23Z", "description": "Modern, fast and configurable Jekyll theme with some tricks up it's sleeve.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/melangue-dactl-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/melangue-dactl-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/melangue-dactl-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/melangue-dactl.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/melangue-dactl.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/melangue-dactl-2x.jpg" } }, - "meliodus-meliodus.github.io-master": { - "theme_key": "meliodus-meliodus.github.io-master", + "meliodus-meliodus.github.io": { + "theme_key": "meliodus-meliodus.github.io", "file": "jekyll-atmos-plus.md", "name": "meliodus.github.io", "title": "Atmos Plus", "github_username": "Meliodus", "repo": "Meliodus/meliodus.github.io", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Meliodus/meliodus.github.io", "demo_url": "https://meliodus.github.io/", "stars": 2, - "forks": 5, + "forks": 6, "open_issues": 0, "last_commit": "2016-11-03T21:02:13Z", "created_at": "2015-11-08T15:21:45Z", "description": "Introvert Geek Diaries ~ Ankan Biswas on the internet", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/meliodus-meliodus.github.io-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/meliodus-meliodus.github.io-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/meliodus-meliodus.github.io-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/meliodus-meliodus.github.io.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/meliodus-meliodus.github.io.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/meliodus-meliodus.github.io-2x.jpg" } }, - "meliodus-uno-dbyll-gh-pages": { - "theme_key": "meliodus-uno-dbyll-gh-pages", + "meliodus-uno-dbyll": { + "theme_key": "meliodus-uno-dbyll", "file": "jekyll-uno-dbyll.md", "name": "uno-dbyll", "title": "Uno-dbyll", "github_username": "Meliodus", "repo": "Meliodus/uno-dbyll", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/Meliodus/uno-dbyll", "demo_url": "https://meliodus.github.io/uno-dbyll/", - "stars": 40, - "forks": 50, + "stars": 42, + "forks": 52, "open_issues": 0, "last_commit": "2016-11-03T20:50:47Z", "created_at": "2015-02-01T19:02:47Z", "description": "Simple, clean, responsive and stylist theme for jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/meliodus-uno-dbyll-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/meliodus-uno-dbyll-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/meliodus-uno-dbyll-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/meliodus-uno-dbyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/meliodus-uno-dbyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/meliodus-uno-dbyll-2x.jpg" } }, - "melvinchng-event-jekyll-theme-master": { - "theme_key": "melvinchng-event-jekyll-theme-master", + "melvinchng-event-jekyll-theme": { + "theme_key": "melvinchng-event-jekyll-theme", "file": "jekyll-event-theme.md", "name": "event-jekyll-theme", "title": "Event", "github_username": "melvinchng", "repo": "melvinchng/event-jekyll-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/melvinchng/event-jekyll-theme", "demo_url": "https://event-jekyll-theme.github.io/", - "stars": 117, - "forks": 152, + "stars": 124, + "forks": 189, "open_issues": 0, "last_commit": "2018-05-29T02:43:16Z", "created_at": "2017-08-09T05:56:36Z", "description": "Jekyll Theme package for your event", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/melvinchng-event-jekyll-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/melvinchng-event-jekyll-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/melvinchng-event-jekyll-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/melvinchng-event-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/melvinchng-event-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/melvinchng-event-jekyll-theme-2x.jpg" + } + }, + "mendhak-eleventy-satisfactory": { + "theme_key": "mendhak-eleventy-satisfactory", + "file": "eleventy-satisfactory.md", + "name": "eleventy-satisfactory", + "title": "Eleventy Satisfactory", + "github_username": "mendhak", + "repo": "mendhak/eleventy-satisfactory", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/mendhak/eleventy-satisfactory", + "demo_url": "https://code.mendhak.com/eleventy-satisfactory/", + "stars": 8, + "forks": 1, + "open_issues": 1, + "last_commit": "2023-03-07T18:25:03Z", + "created_at": "2023-01-08T11:16:04Z", + "description": "Content-first eleventy blog template with basic layout and various features", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/mendhak-eleventy-satisfactory.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mendhak-eleventy-satisfactory.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mendhak-eleventy-satisfactory-2x.jpg" } }, - "meteorlxy-vuepress-theme-meteorlxy-master": { - "theme_key": "meteorlxy-vuepress-theme-meteorlxy-master", + "meteorlxy-vuepress-theme-meteorlxy": { + "theme_key": "meteorlxy-vuepress-theme-meteorlxy", "file": "vuepress-theme-meteorlxy.md", "name": "vuepress-theme-meteorlxy", "title": "Meteorixy", "github_username": "meteorlxy", "repo": "meteorlxy/vuepress-theme-meteorlxy", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/meteorlxy/vuepress-theme-meteorlxy", "demo_url": "https://vuepress-theme-meteorlxy.meteorlxy.cn/", - "stars": 308, - "forks": 83, - "open_issues": 0, + "stars": 365, + "forks": 85, + "open_issues": 4, "last_commit": "2020-12-11T02:15:32Z", "created_at": "2018-05-09T08:49:11Z", "description": ":sparkling_heart: VuePress Blog Theme - Meteorlxy", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/meteorlxy-vuepress-theme-meteorlxy-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/meteorlxy-vuepress-theme-meteorlxy-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/meteorlxy-vuepress-theme-meteorlxy-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/meteorlxy-vuepress-theme-meteorlxy.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/meteorlxy-vuepress-theme-meteorlxy.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/meteorlxy-vuepress-theme-meteorlxy-2x.jpg" } }, - "mhadaily-gatsby-starter-typescript-power-blog-master": { - "theme_key": "mhadaily-gatsby-starter-typescript-power-blog-master", + "mhadaily-gatsby-starter-typescript-power-blog": { + "theme_key": "mhadaily-gatsby-starter-typescript-power-blog", "file": "gatsby-starter-typescript-power-blog.md", "name": "gatsby-starter-typescript-power-blog", "title": "Typescript Power Blog", "github_username": "mhadaily", "repo": "mhadaily/gatsby-starter-typescript-power-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/mhadaily/gatsby-starter-typescript-power-blog", "demo_url": "https://gatsby-starter-typescript-power-blog.majidhajian.com/", - "stars": 60, + "stars": 66, "forks": 21, - "open_issues": 5, + "open_issues": 29, "last_commit": "2020-10-03T08:20:18Z", "created_at": "2018-10-19T12:42:53Z", "description": "Personal Blog/Website with Gatsby and Typescript", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/mhadaily-gatsby-starter-typescript-power-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mhadaily-gatsby-starter-typescript-power-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mhadaily-gatsby-starter-typescript-power-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/mhadaily-gatsby-starter-typescript-power-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mhadaily-gatsby-starter-typescript-power-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mhadaily-gatsby-starter-typescript-power-blog-2x.jpg" } }, - "miccall-hexo-theme-mic_theme-master": { - "theme_key": "miccall-hexo-theme-mic_theme-master", + "miccall-hexo-theme-mic_theme": { + "theme_key": "miccall-hexo-theme-mic_theme", "file": "hexo-theme-mictheme.md", "name": "hexo-theme-Mic_Theme", "title": "Mic Theme", "github_username": "miccall", "repo": "miccall/hexo-theme-Mic_Theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/miccall/hexo-theme-Mic_Theme", "demo_url": "https://miccall.tech/", - "stars": 335, - "forks": 86, - "open_issues": 55, + "stars": 358, + "forks": 89, + "open_issues": 56, "last_commit": "2018-10-23T04:44:17Z", "created_at": "2017-05-24T13:43:59Z", "description": "hexo theme ", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/miccall-hexo-theme-mic_theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/miccall-hexo-theme-mic_theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/miccall-hexo-theme-mic_theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/miccall-hexo-theme-mic_theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/miccall-hexo-theme-mic_theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/miccall-hexo-theme-mic_theme-2x.jpg" } }, - "midzer-urban-theme-master": { - "theme_key": "midzer-urban-theme-master", - "file": "jekyll-urban.md", + "midzer-urban-theme": { + "theme_key": "midzer-urban-theme", + "file": "urban.md", "name": "urban-theme", - "title": "Urban", + "title": "Urban Theme", "github_username": "midzer", "repo": "midzer/urban-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/midzer/urban-theme", "demo_url": "https://midzer.github.io/urban-theme/", - "stars": 78, - "forks": 98, + "stars": 98, + "forks": 112, "open_issues": 1, - "last_commit": "2020-12-20T18:17:57Z", + "last_commit": "2022-01-08T17:55:46Z", "created_at": "2015-10-06T13:35:07Z", "description": "Minimal jekyll theme for visual artists", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/midzer-urban-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/midzer-urban-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/midzer-urban-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/midzer-urban-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/midzer-urban-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/midzer-urban-theme-2x.jpg" } }, - "miguelsimoni-hugo-initio-master": { - "theme_key": "miguelsimoni-hugo-initio-master", + "miguelsimoni-hugo-initio": { + "theme_key": "miguelsimoni-hugo-initio", "file": "hugo-initio-theme.md", "name": "hugo-initio", "title": "Hugo Initio", "github_username": "miguelsimoni", "repo": "miguelsimoni/hugo-initio", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/miguelsimoni/hugo-initio", "demo_url": "https://themes.gohugo.io/theme/hugo-initio/", - "stars": 42, - "forks": 77, - "open_issues": 4, - "last_commit": "2020-10-17T14:59:12Z", + "stars": 53, + "forks": 91, + "open_issues": 3, + "last_commit": "2021-07-26T15:39:23Z", "created_at": "2017-05-30T14:34:35Z", - "description": "Hugo Theme adaptation of Initio from GetTemplate", - "stale": false, + "description": "Hugo Theme port of Initio bootstrap template by GetTemplate", "images": { - "hires": "https://www.jamstackthemes.dev/capture/miguelsimoni-hugo-initio-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/miguelsimoni-hugo-initio-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/miguelsimoni-hugo-initio-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/miguelsimoni-hugo-initio.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/miguelsimoni-hugo-initio.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/miguelsimoni-hugo-initio-2x.jpg" } }, - "mikeblum-hugo-now-master": { - "theme_key": "mikeblum-hugo-now-master", + "mikeblum-hugo-now": { + "theme_key": "mikeblum-hugo-now", "file": "hugo-now.md", "name": "hugo-now", "title": "Hugo Now", "github_username": "mikeblum", "repo": "mikeblum/hugo-now", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/mikeblum/hugo-now", "demo_url": "https://themes.gohugo.io/theme/hugo-now/", "stars": 15, - "forks": 7, - "open_issues": 0, - "last_commit": "2020-04-12T18:37:47Z", + "forks": 8, + "open_issues": 2, + "last_commit": "2021-04-11T22:03:09Z", "created_at": "2017-07-02T23:22:27Z", "description": "a Hugo port of Jekyll Now", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/mikeblum-hugo-now-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mikeblum-hugo-now-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mikeblum-hugo-now-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/mikeblum-hugo-now.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mikeblum-hugo-now.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mikeblum-hugo-now-2x.jpg" } }, - "minhhuy150894-minhhuy150894.github.io-master": { - "theme_key": "minhhuy150894-minhhuy150894.github.io-master", + "minhhuy150894-minhhuy150894.github.io": { + "theme_key": "minhhuy150894-minhhuy150894.github.io", "file": "jekyll-HPSTRversion2.md", "name": "alway5.github.io", "title": "HPSTR Version 2 - Vietnamese", - "github_username": "VietnameZe", - "repo": "VietnameZe/alway5.github.io", + "github_username": "UsernameHasBeenChanged100Times", + "repo": "UsernameHasBeenChanged100Times/alway5.github.io", "branch": "master", - "github_url": "https://github.com/VietnameZe/alway5.github.io", - "demo_url": "http://minhhuy150894.github.io", + "default_branch": "master", + "github_url": "https://github.com/UsernameHasBeenChanged100Times/alway5.github.io", + "demo_url": "https://minhhuy150894.github.io", "stars": 18, - "forks": 38, + "forks": 39, "open_issues": 0, "last_commit": "2018-02-07T04:55:13Z", "created_at": "2015-05-11T13:24:51Z", "description": null, - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/minhhuy150894-minhhuy150894.github.io-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/minhhuy150894-minhhuy150894.github.io-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/minhhuy150894-minhhuy150894.github.io-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/minhhuy150894-minhhuy150894.github.io.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/minhhuy150894-minhhuy150894.github.io.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/minhhuy150894-minhhuy150894.github.io-2x.jpg" } }, - "mmistakes-hpstr-jekyll-theme-master": { - "theme_key": "mmistakes-hpstr-jekyll-theme-master", + "mmistakes-hpstr-jekyll-theme": { + "theme_key": "mmistakes-hpstr-jekyll-theme", "file": "jekyll-hpstr.md", "name": "jekyll-theme-hpstr", "title": "HPSTR", "github_username": "mmistakes", "repo": "mmistakes/jekyll-theme-hpstr", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/mmistakes/jekyll-theme-hpstr", "demo_url": "https://mmistakes.github.io/jekyll-theme-hpstr/", - "stars": 994, - "forks": 1518, + "stars": 997, + "forks": 1517, "open_issues": 30, "last_commit": "2019-08-27T20:23:53Z", "created_at": "2013-08-23T19:03:11Z", "description": "A Jekyll theme with some tumble-log tendencies.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/mmistakes-hpstr-jekyll-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mmistakes-hpstr-jekyll-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mmistakes-hpstr-jekyll-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/mmistakes-hpstr-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mmistakes-hpstr-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mmistakes-hpstr-jekyll-theme-2x.jpg" } }, - "mmistakes-jekyll-theme-basically-basic-master": { - "theme_key": "mmistakes-jekyll-theme-basically-basic-master", + "mmistakes-jekyll-theme-basically-basic": { + "theme_key": "mmistakes-jekyll-theme-basically-basic", "file": "jekyll-theme-basically-basic.md", "name": "jekyll-theme-basically-basic", "title": "Basically Basic", "github_username": "mmistakes", "repo": "mmistakes/jekyll-theme-basically-basic", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/mmistakes/jekyll-theme-basically-basic", "demo_url": "https://mmistakes.github.io/jekyll-theme-basically-basic/", - "stars": 499, - "forks": 833, - "open_issues": 2, - "last_commit": "2020-12-09T04:12:32Z", + "stars": 753, + "forks": 1195, + "open_issues": 8, + "last_commit": "2021-09-22T02:47:20Z", "created_at": "2017-03-07T21:08:01Z", "description": "Your new Jekyll default theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/mmistakes-jekyll-theme-basically-basic-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mmistakes-jekyll-theme-basically-basic-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mmistakes-jekyll-theme-basically-basic-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/mmistakes-jekyll-theme-basically-basic.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mmistakes-jekyll-theme-basically-basic.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mmistakes-jekyll-theme-basically-basic-2x.jpg" + } + }, + "mmistakes-jekyll-theme-hpstr": { + "theme_key": "mmistakes-hpstr-jekyll-theme", + "file": "jekyll-hpstr.md", + "name": "jekyll-theme-hpstr", + "title": "HPSTR", + "github_username": "mmistakes", + "repo": "mmistakes/jekyll-theme-hpstr", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/mmistakes/jekyll-theme-hpstr", + "demo_url": "https://mmistakes.github.io/jekyll-theme-hpstr/", + "stars": 987, + "forks": 1484, + "open_issues": 30, + "last_commit": "2019-08-27T20:23:53Z", + "created_at": "2013-08-23T19:03:11Z", + "description": "A Jekyll theme with some tumble-log tendencies.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/mmistakes-hpstr-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mmistakes-hpstr-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mmistakes-hpstr-jekyll-theme-2x.jpg" } }, - "mmistakes-jekyll-theme-skinny-bones-master": { - "theme_key": "mmistakes-jekyll-theme-skinny-bones-master", + "mmistakes-jekyll-theme-skinny-bones": { + "theme_key": "mmistakes-jekyll-theme-skinny-bones", "file": "jekyll-theme-skinny-bones.md", "name": "jekyll-theme-skinny-bones", "title": "Skinny Bones", "github_username": "mmistakes", "repo": "mmistakes/jekyll-theme-skinny-bones", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/mmistakes/jekyll-theme-skinny-bones", "demo_url": "https://mmistakes.github.io/jekyll-theme-skinny-bones/", - "stars": 775, - "forks": 877, + "stars": 793, + "forks": 910, "open_issues": 21, "last_commit": "2019-08-27T20:12:13Z", "created_at": "2014-06-02T13:25:37Z", "description": "A Jekyll starter with a variety of flexible layouts and components.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/mmistakes-jekyll-theme-skinny-bones-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mmistakes-jekyll-theme-skinny-bones-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mmistakes-jekyll-theme-skinny-bones-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/mmistakes-jekyll-theme-skinny-bones.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mmistakes-jekyll-theme-skinny-bones.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mmistakes-jekyll-theme-skinny-bones-2x.jpg" } }, - "mmistakes-minimal-mistakes-master": { - "theme_key": "mmistakes-minimal-mistakes-master", + "mmistakes-minimal-mistakes": { + "theme_key": "mmistakes-minimal-mistakes", "file": "minimal-mistakes.md", "name": "minimal-mistakes", "title": "Minimal Mistakes", "github_username": "mmistakes", "repo": "mmistakes/minimal-mistakes", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/mmistakes/minimal-mistakes", "demo_url": "https://mmistakes.github.io/minimal-mistakes/", - "stars": 7477, - "forks": 12809, - "open_issues": 17, - "last_commit": "2020-12-10T19:41:57Z", + "stars": 10556, + "forks": 21503, + "open_issues": 43, + "last_commit": "2022-07-08T15:38:44Z", "created_at": "2013-05-24T14:13:30Z", "description": ":triangular_ruler: Jekyll theme for building a personal site, blog, project documentation, or portfolio.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/mmistakes-minimal-mistakes-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mmistakes-minimal-mistakes-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mmistakes-minimal-mistakes-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/mmistakes-minimal-mistakes.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mmistakes-minimal-mistakes.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mmistakes-minimal-mistakes-2x.jpg" } }, - "mmistakes-so-simple-theme-master": { - "theme_key": "mmistakes-so-simple-theme-master", + "mmistakes-so-simple-theme": { + "theme_key": "mmistakes-so-simple-theme", "file": "so-simple-theme.md", "name": "so-simple-theme", "title": "So Simple", "github_username": "mmistakes", "repo": "mmistakes/so-simple-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/mmistakes/so-simple-theme", "demo_url": "https://mmistakes.github.io/so-simple-theme/", - "stars": 1557, - "forks": 2252, - "open_issues": 8, - "last_commit": "2020-12-09T04:13:18Z", + "stars": 1836, + "forks": 2431, + "open_issues": 9, + "last_commit": "2021-09-22T02:46:52Z", "created_at": "2013-06-25T20:17:12Z", "description": "A simple Jekyll theme for words and pictures.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/mmistakes-so-simple-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mmistakes-so-simple-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mmistakes-so-simple-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/mmistakes-so-simple-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mmistakes-so-simple-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mmistakes-so-simple-theme-2x.jpg" } }, - "mmrath-hugo-bootstrap-master": { - "theme_key": "mmrath-hugo-bootstrap-master", + "mmrath-hugo-bootstrap": { + "theme_key": "mmrath-hugo-bootstrap", "file": "hugo-bootstrap4-theme.md", "name": "hugo-bootstrap", "title": "Hugo Bootstrap4", "github_username": "mmrath", "repo": "mmrath/hugo-bootstrap", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/mmrath/hugo-bootstrap", "demo_url": "https://themes.gohugo.io//theme/hugo-bootstrap4/", - "stars": 57, - "forks": 59, + "stars": 58, + "forks": 58, "open_issues": 1, "last_commit": "2019-06-15T04:57:21Z", "created_at": "2015-10-27T13:16:12Z", "description": "Bootstrap theme for Hugo", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/mmrath-hugo-bootstrap-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mmrath-hugo-bootstrap-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mmrath-hugo-bootstrap-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/mmrath-hugo-bootstrap.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mmrath-hugo-bootstrap.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mmrath-hugo-bootstrap-2x.jpg" } }, - "mohanmonu777-gatsby-starter-krisp-master": { - "theme_key": "mohanmonu777-gatsby-starter-krisp-master", + "mohanmonu777-gatsby-starter-krisp": { + "theme_key": "mohanmonu777-gatsby-starter-krisp", "file": "gatsby-starter-krisp.md", "name": "gatsby-starter-krisp", "title": "Gatsby Starter Krisp", "github_username": "algokun", "repo": "algokun/gatsby-starter-krisp", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/algokun/gatsby-starter-krisp", "demo_url": "https://gatsby-starter-krisp.netlify.com/", "stars": 11, - "forks": 6, + "forks": 7, "open_issues": 0, "last_commit": "2019-07-18T17:53:02Z", "created_at": "2019-07-18T17:06:13Z", "description": "A minimal, clean and responsive starter built with gatsby", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/mohanmonu777-gatsby-starter-krisp-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mohanmonu777-gatsby-starter-krisp-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mohanmonu777-gatsby-starter-krisp-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/mohanmonu777-gatsby-starter-krisp.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mohanmonu777-gatsby-starter-krisp.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mohanmonu777-gatsby-starter-krisp-2x.jpg" } }, - "molebox-gatsby-theme-pocket-master": { - "theme_key": "molebox-gatsby-theme-pocket-master", + "molebox-gatsby-theme-pocket": { + "theme_key": "molebox-gatsby-theme-pocket", "file": "gatsby-theme-pocket.md", "name": "gatsby-theme-pocket", "title": "Gatsby Pocket", "github_username": "molebox", "repo": "molebox/gatsby-theme-pocket", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/molebox/gatsby-theme-pocket", "demo_url": "https://gatsby-theme-pocket-example.netlify.com/articleIndex/", - "stars": 13, - "forks": 7, - "open_issues": 13, + "stars": 38, + "forks": 11, + "open_issues": 50, "last_commit": "2020-09-24T06:38:28Z", "created_at": "2019-10-31T18:37:33Z", "description": "A Gatsby theme that adds a pocket to your website.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/molebox-gatsby-theme-pocket-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/molebox-gatsby-theme-pocket-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/molebox-gatsby-theme-pocket-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/molebox-gatsby-theme-pocket.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/molebox-gatsby-theme-pocket.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/molebox-gatsby-theme-pocket-2x.jpg" } }, - "moltin-gatsby-demo-store-master": { - "theme_key": "moltin-gatsby-demo-store-master", + "moltin-gatsby-demo-store": { + "theme_key": "moltin-gatsby-demo-store", "file": "moltin-ecommerce-starter.md", "name": "gatsby-demo-store", "title": "Moltin ecommerce starter", "github_username": "moltin", "repo": "moltin/gatsby-demo-store", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/moltin/gatsby-demo-store", "demo_url": "https://demo.moltin.com", - "stars": 92, - "forks": 40, - "open_issues": 19, + "stars": 93, + "forks": 38, + "open_issues": 17, "last_commit": "2020-06-17T21:09:12Z", "created_at": "2019-01-25T10:48:44Z", "description": "Elastic Path + Gatsby powered online store", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/moltin-gatsby-demo-store-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/moltin-gatsby-demo-store-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/moltin-gatsby-demo-store-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/moltin-gatsby-demo-store.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/moltin-gatsby-demo-store.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/moltin-gatsby-demo-store-2x.jpg" } }, - "moonwave99-waffel-master": { - "theme_key": "moonwave99-waffel-master", + "moonwave99-waffel": { + "theme_key": "moonwave99-waffel", "file": "waffel.md", "name": "waffel", "title": "Waffel", "github_username": "moonwave99", "repo": "moonwave99/waffel", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/moonwave99/waffel", "demo_url": "https://moonwave99.github.io/waffel/", - "stars": 34, - "forks": 4, - "open_issues": 5, + "stars": 35, + "forks": 3, + "open_issues": 14, "last_commit": "2020-12-11T23:44:55Z", "created_at": "2015-04-07T12:17:22Z", "description": "Yet another static generator, here to help you with more concrete use cases than just your personal blog.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/moonwave99-waffel-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/moonwave99-waffel-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/moonwave99-waffel-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/moonwave99-waffel.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/moonwave99-waffel.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/moonwave99-waffel-2x.jpg" + } + }, + "mrgreensworkshop-mrgreen-jekylltheme": { + "theme_key": "mrgreensworkshop-mrgreen-jekylltheme", + "file": "jekyll-mr-green.md", + "name": "MrGreen-JekyllTheme", + "title": "Mr. Green", + "github_username": "MrGreensWorkshop", + "repo": "MrGreensWorkshop/MrGreen-JekyllTheme", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/MrGreensWorkshop/MrGreen-JekyllTheme", + "demo_url": "https://jekyll-theme-mrgreen-demo.mrgreensworkshop.com", + "stars": 78, + "forks": 181, + "open_issues": 0, + "last_commit": "2022-12-29T15:19:05Z", + "created_at": "2022-03-03T22:23:30Z", + "description": "Mr. Green is a multilingual theme generated with Jekyll and fully compatible with GitHub Pages. ", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/mrgreensworkshop-mrgreen-jekylltheme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mrgreensworkshop-mrgreen-jekylltheme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mrgreensworkshop-mrgreen-jekylltheme-2x.jpg" } }, - "muan-scribble-gh-pages": { - "theme_key": "muan-scribble-gh-pages", + "muan-scribble": { + "theme_key": "muan-scribble", "file": "jekyll-theme-scribble.md", "name": "scribble", "title": "Scribble", "github_username": "muan", "repo": "muan/scribble", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/muan/scribble", "demo_url": "https://scribble.muan.co/", - "stars": 748, - "forks": 692, + "stars": 766, + "forks": 688, "open_issues": 8, "last_commit": "2017-05-01T11:51:44Z", "created_at": "2013-05-06T09:51:15Z", "description": ":tomato: A Jekyll theme.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/muan-scribble-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/muan-scribble-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/muan-scribble-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/muan-scribble.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/muan-scribble.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/muan-scribble-2x.jpg" } }, - "mudassirgithub-next-basic-blog-master": { - "theme_key": "mudassirgithub-next-basic-blog-master", + "mudassirgithub-next-basic-blog": { + "theme_key": "mudassirgithub-next-basic-blog", "file": "next-basic-blog.md", "name": "next-basic-blog", "title": "Next Basic Blog", "github_username": "mudassirgithub", "repo": "mudassirgithub/next-basic-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/mudassirgithub/next-basic-blog", "demo_url": "https://next-basic-blog.vercel.app/", - "stars": 9, - "forks": 3, + "stars": 22, + "forks": 4, "open_issues": 0, "last_commit": "2020-08-14T12:32:26Z", "created_at": "2020-08-13T19:45:11Z", "description": "A JAMstack Theme of Basic Blog Site with dark/light theme toggle support built using Nextjs, Tailwindcss and Markdown.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/mudassirgithub-next-basic-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mudassirgithub-next-basic-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mudassirgithub-next-basic-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/mudassirgithub-next-basic-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mudassirgithub-next-basic-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mudassirgithub-next-basic-blog-2x.jpg" } }, - "muenzpraeger-eleventy-chirpy-blog-template-main": { - "theme_key": "muenzpraeger-eleventy-chirpy-blog-template-main", + "muenzpraeger-eleventy-chirpy-blog-template": { + "theme_key": "muenzpraeger-eleventy-chirpy-blog-template", "file": "eleventy-chirpy-blog-template.md", "name": "eleventy-chirpy-blog-template", "title": "Eleventy Chirpy Blog Template", "github_username": "muenzpraeger", "repo": "muenzpraeger/eleventy-chirpy-blog-template", "branch": "main", + "default_branch": "main", "github_url": "https://github.com/muenzpraeger/eleventy-chirpy-blog-template", "demo_url": "https://eleventy-chirpy-blog-template.netlify.app/", - "stars": 4, - "forks": 0, - "open_issues": 1, - "last_commit": "2021-02-01T08:24:14Z", + "stars": 54, + "forks": 16, + "open_issues": 5, + "last_commit": "2022-01-31T08:03:21Z", "created_at": "2021-01-28T07:00:56Z", "description": "Blog template for 11ty based on Chirpy UX", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/muenzpraeger-eleventy-chirpy-blog-template-main.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/muenzpraeger-eleventy-chirpy-blog-template-main.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/muenzpraeger-eleventy-chirpy-blog-template-main-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/muenzpraeger-eleventy-chirpy-blog-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/muenzpraeger-eleventy-chirpy-blog-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/muenzpraeger-eleventy-chirpy-blog-template-2x.jpg" } }, - "muhajirdev-gatsby-starter-firebase-master": { - "theme_key": "muhajirdev-gatsby-starter-firebase-master", + "muhajirdev-gatsby-starter-firebase": { + "theme_key": "muhajirdev-gatsby-starter-firebase", "file": "gatsby-starter-firebase.md", "name": "gatsby-starter-firebase", "title": "Gatsby Starter Firebase", "github_username": "muhajirdev", "repo": "muhajirdev/gatsby-starter-firebase", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/muhajirdev/gatsby-starter-firebase", "demo_url": "https://gatsby-starter-firebase.netlify.com/", - "stars": 38, + "stars": 41, "forks": 13, - "open_issues": 10, + "open_issues": 25, "last_commit": "2018-11-19T05:31:24Z", "created_at": "2018-10-17T12:39:39Z", "description": "Gatsby + Firebase = 👍", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/muhajirdev-gatsby-starter-firebase-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/muhajirdev-gatsby-starter-firebase-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/muhajirdev-gatsby-starter-firebase-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/muhajirdev-gatsby-starter-firebase.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/muhajirdev-gatsby-starter-firebase.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/muhajirdev-gatsby-starter-firebase-2x.jpg" } }, - "muhajirdev-gatsby-starter-redux-firebase-master": { - "theme_key": "muhajirdev-gatsby-starter-redux-firebase-master", + "muhajirdev-gatsby-starter-redux-firebase": { + "theme_key": "muhajirdev-gatsby-starter-redux-firebase", "file": "gatsby-starter-redux-firebase.md", "name": "gatsby-starter-redux-firebase", "title": "Gatsby Redux Firebase", "github_username": "muhajirdev", "repo": "muhajirdev/gatsby-starter-redux-firebase", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/muhajirdev/gatsby-starter-redux-firebase", "demo_url": "https://gatsby-starter-redux-firebase.netlify.com/", - "stars": 13, - "forks": 2, + "stars": 14, + "forks": 4, "open_issues": 2, "last_commit": "2018-11-15T23:35:23Z", "created_at": "2018-11-15T23:30:09Z", "description": null, - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/muhajirdev-gatsby-starter-redux-firebase-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/muhajirdev-gatsby-starter-redux-firebase-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/muhajirdev-gatsby-starter-redux-firebase-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/muhajirdev-gatsby-starter-redux-firebase.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/muhajirdev-gatsby-starter-redux-firebase.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/muhajirdev-gatsby-starter-redux-firebase-2x.jpg" } }, - "muhajirdev-gatsby-tailwind-emotion-starter-master": { - "theme_key": "muhajirdev-gatsby-tailwind-emotion-starter-master", + "muhajirdev-gatsby-tailwind-emotion-starter": { + "theme_key": "muhajirdev-gatsby-tailwind-emotion-starter", "file": "gatsby-tailwind-emotion-starter.md", "name": "gatsby-tailwind-emotion-starter", "title": "Gatsby Tailwind Emotion Starter", "github_username": "muhajirdev", "repo": "muhajirdev/gatsby-tailwind-emotion-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/muhajirdev/gatsby-tailwind-emotion-starter", "demo_url": "https://gatsby-tailwind-emotion-starter.netlify.com/", - "stars": 37, - "forks": 5, + "stars": 39, + "forks": 6, "open_issues": 1, "last_commit": "2019-03-04T14:09:40Z", "created_at": "2018-10-05T10:34:13Z", "description": "A Gatsby Starter with Tailwind CSS + Emotion Js", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/muhajirdev-gatsby-tailwind-emotion-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/muhajirdev-gatsby-tailwind-emotion-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/muhajirdev-gatsby-tailwind-emotion-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/muhajirdev-gatsby-tailwind-emotion-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/muhajirdev-gatsby-tailwind-emotion-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/muhajirdev-gatsby-tailwind-emotion-starter-2x.jpg" } }, - "mumuxme-materialize-jekyll-master": { - "theme_key": "mumuxme-materialize-jekyll-master", + "mumuxme-materialize-jekyll": { + "theme_key": "mumuxme-materialize-jekyll", "file": "jekyll-materialize-jekyll.md", "name": "materialize-jekyll", "title": "Material blog", "github_username": "mumuxme", "repo": "mumuxme/materialize-jekyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/mumuxme/materialize-jekyll", "demo_url": "https://mumuxme.github.io/materialize-jekyll/", - "stars": 33, - "forks": 22, - "open_issues": 0, + "stars": 39, + "forks": 30, + "open_issues": 3, "last_commit": "2020-08-08T08:34:04Z", "created_at": "2015-11-01T14:16:55Z", "description": "Jekyll theme based on materialize.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/mumuxme-materialize-jekyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mumuxme-materialize-jekyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mumuxme-materialize-jekyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/mumuxme-materialize-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mumuxme-materialize-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mumuxme-materialize-jekyll-2x.jpg" } }, - "muniftanjim-minimo-master": { - "theme_key": "muniftanjim-minimo-master", + "muniftanjim-minimo": { + "theme_key": "muniftanjim-minimo", "file": "hugo-minimo.md", "name": "minimo", "title": "Minimo", "github_username": "MunifTanjim", "repo": "MunifTanjim/minimo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/MunifTanjim/minimo", "demo_url": "https://minimo.netlify.com/", - "stars": 443, - "forks": 221, - "open_issues": 21, - "last_commit": "2020-10-20T17:25:26Z", + "stars": 531, + "forks": 222, + "open_issues": 37, + "last_commit": "2023-01-01T02:37:47Z", "created_at": "2017-05-18T22:32:21Z", "description": "Minimo - Minimalist theme for Hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/muniftanjim-minimo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/muniftanjim-minimo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/muniftanjim-minimo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/muniftanjim-minimo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/muniftanjim-minimo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/muniftanjim-minimo-2x.jpg" } }, - "murraco-jekyll-theme-minimal-resume-master": { - "theme_key": "murraco-jekyll-theme-minimal-resume-master", + "murraco-jekyll-theme-minimal-resume": { + "theme_key": "murraco-jekyll-theme-minimal-resume", "file": "jekyll-theme-Minimal-Resume.md", "name": "jekyll-theme-minimal-resume", "title": "Minimal Resume", "github_username": "murraco", "repo": "murraco/jekyll-theme-minimal-resume", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/murraco/jekyll-theme-minimal-resume", "demo_url": "https://jekyll-theme-minimal-resume.netlify.com/", - "stars": 257, - "forks": 414, - "open_issues": 0, - "last_commit": "2020-12-11T10:08:04Z", + "stars": 424, + "forks": 524, + "open_issues": 4, + "last_commit": "2023-01-16T19:55:46Z", "created_at": "2017-11-16T01:45:13Z", - "description": "Simple Jekyll theme for a minimal resume website: https://jekyll-theme-minimal-resume.netlify.com/", - "stale": false, + "description": "Simple Jekyll theme for a minimal resume website: https://jekyll-theme-minimal-resume.netlify.com", "images": { - "hires": "https://www.jamstackthemes.dev/capture/murraco-jekyll-theme-minimal-resume-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/murraco-jekyll-theme-minimal-resume-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/murraco-jekyll-theme-minimal-resume-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/murraco-jekyll-theme-minimal-resume.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/murraco-jekyll-theme-minimal-resume.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/murraco-jekyll-theme-minimal-resume-2x.jpg" } }, - "mushishi78-jekyll-video-gh-pages": { - "theme_key": "mushishi78-jekyll-video-gh-pages", + "mushishi78-jekyll-video": { + "theme_key": "mushishi78-jekyll-video", "file": "jekyll-video.md", "name": "jekyll-video", "title": "Jekyll Video", "github_username": "mushishi78", "repo": "mushishi78/jekyll-video", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/mushishi78/jekyll-video", "demo_url": "https://mushishi78.github.io/jekyll-video/", - "stars": 16, - "forks": 30, + "stars": 19, + "forks": 32, "open_issues": 0, "last_commit": "2015-08-24T03:06:19Z", "created_at": "2015-08-24T01:18:55Z", "description": "Template for a video blog", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/mushishi78-jekyll-video-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mushishi78-jekyll-video-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mushishi78-jekyll-video-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/mushishi78-jekyll-video.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mushishi78-jekyll-video.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mushishi78-jekyll-video-2x.jpg" } }, - "mushishi78-one-page-wonder-jekyll-gh-pages": { - "theme_key": "mushishi78-one-page-wonder-jekyll-gh-pages", + "mushishi78-one-page-wonder-jekyll": { + "theme_key": "mushishi78-one-page-wonder-jekyll", "file": "jekyll-one-page-wonder.md", "name": "one-page-wonder-jekyll", "title": "One Page Wonder", "github_username": "mushishi78", "repo": "mushishi78/one-page-wonder-jekyll", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/mushishi78/one-page-wonder-jekyll", "demo_url": "https://mushishi78.github.io/one-page-wonder-jekyll", - "stars": 29, - "forks": 59, + "stars": 31, + "forks": 64, "open_issues": 0, "last_commit": "2015-05-09T18:23:40Z", "created_at": "2015-04-22T13:12:24Z", "description": "Jekyll port of One Page Wonder", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/mushishi78-one-page-wonder-jekyll-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mushishi78-one-page-wonder-jekyll-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mushishi78-one-page-wonder-jekyll-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/mushishi78-one-page-wonder-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mushishi78-one-page-wonder-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mushishi78-one-page-wonder-jekyll-2x.jpg" } }, - "mx3m-hikari-for-jekyll-gh-pages": { - "theme_key": "mx3m-hikari-for-jekyll-gh-pages", + "mx3m-hikari-for-jekyll": { + "theme_key": "mx3m-hikari-for-jekyll", "file": "jekyll-hikari.md", "name": "hikari-for-jekyll", "title": "Hikari", "github_username": "mx3m", "repo": "mx3m/hikari-for-jekyll", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/mx3m/hikari-for-jekyll", - "demo_url": "http://mx3m.github.io/hikari-for-Jekyll/", - "stars": 225, - "forks": 87, + "demo_url": "https://mx3m.github.io/hikari-for-Jekyll/", + "stars": 232, + "forks": 89, "open_issues": 0, - "last_commit": "2020-07-07T14:30:54Z", + "last_commit": "2021-08-02T22:20:25Z", "created_at": "2014-02-01T08:30:55Z", "description": "An open-source theme for Jekyll", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/mx3m-hikari-for-jekyll-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mx3m-hikari-for-jekyll-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mx3m-hikari-for-jekyll-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/mx3m-hikari-for-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/mx3m-hikari-for-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/mx3m-hikari-for-jekyll-2x.jpg" } }, - "nadjetey-gridgallery-master": { - "theme_key": "nadjetey-gridgallery-master", + "nadjetey-gridgallery": { + "theme_key": "nadjetey-gridgallery", "file": "jekyll-gridgallery.md", "name": "GridGallery", "title": "GridGallery", "github_username": "thesowah", "repo": "thesowah/GridGallery", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/thesowah/GridGallery", "demo_url": "https://nadjetey.github.io/GridGallery", "stars": 56, - "forks": 60, + "forks": 59, "open_issues": 0, "last_commit": "2016-04-22T12:00:36Z", "created_at": "2014-04-07T01:26:30Z", "description": "A responsive grid gallery based on the [Google Chromebook getting started](https://gweb-gettingstartedguide.appspot.com/) guide gallery. ", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/nadjetey-gridgallery-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nadjetey-gridgallery-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nadjetey-gridgallery-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/nadjetey-gridgallery.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nadjetey-gridgallery.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nadjetey-gridgallery-2x.jpg" } }, - "nadjetey-redcup-master": { - "theme_key": "nadjetey-redcup-master", + "nadjetey-redcup": { + "theme_key": "nadjetey-redcup", "file": "jekyll-redcup.md", "name": "redcup", "title": "redcup", "github_username": "thesowah", "repo": "thesowah/redcup", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/thesowah/redcup", - "demo_url": "http://nadjetey.github.io/redcup/", + "demo_url": "https://nadjetey.github.io/redcup/", "stars": 25, "forks": 19, "open_issues": 0, "last_commit": "2016-04-22T11:31:41Z", "created_at": "2014-01-26T21:40:33Z", "description": "This is a Jekyll Theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/nadjetey-redcup-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nadjetey-redcup-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nadjetey-redcup-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/nadjetey-redcup.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nadjetey-redcup.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nadjetey-redcup-2x.jpg" } }, - "nadjetey-wangana-master": { - "theme_key": "nadjetey-wangana-master", + "nadjetey-wangana": { + "theme_key": "nadjetey-wangana", "file": "jekyll-wangana.md", "name": "wangana", "title": "Wangana", "github_username": "thesowah", "repo": "thesowah/wangana", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/thesowah/wangana", "demo_url": "https://thesowah.github.io/wangana/", "stars": 52, @@ -14111,1147 +17703,1424 @@ "last_commit": "2018-06-03T11:27:49Z", "created_at": "2014-02-09T16:41:40Z", "description": "Wangana is a responsive Jekyll theme, perfect for powering your GitHub hosted blog.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/nadjetey-wangana-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nadjetey-wangana-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nadjetey-wangana-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/nadjetey-wangana.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nadjetey-wangana.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nadjetey-wangana-2x.jpg" } }, - "nairobilug-pelican-alchemy-master": { - "theme_key": "nairobilug-pelican-alchemy-master", + "nairobilug-pelican-alchemy": { + "theme_key": "nairobilug-pelican-alchemy", "file": "pelican-alchemy.md", "name": "pelican-alchemy", "title": "Alchemy", "github_username": "nairobilug", "repo": "nairobilug/pelican-alchemy", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/nairobilug/pelican-alchemy", "demo_url": "https://nairobilug.github.io/pelican-alchemy/", - "stars": 118, - "forks": 72, - "open_issues": 5, - "last_commit": "2020-08-21T08:22:40Z", + "stars": 130, + "forks": 80, + "open_issues": 7, + "last_commit": "2019-04-28T14:09:36Z", "created_at": "2013-11-25T04:48:18Z", "description": "A ✨ functional, clean, responsive Pelican theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/nairobilug-pelican-alchemy-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nairobilug-pelican-alchemy-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nairobilug-pelican-alchemy-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/nairobilug-pelican-alchemy.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nairobilug-pelican-alchemy.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nairobilug-pelican-alchemy-2x.jpg" } }, - "nakorndev-vuepress-theme-bulma-master": { - "theme_key": "nakorndev-vuepress-theme-bulma-master", + "nakorndev-vuepress-theme-bulma": { + "theme_key": "nakorndev-vuepress-theme-bulma", "file": "vuepress-theme-bulma.md", "name": "vuepress-theme-bulma", "title": "Vuepress Bulma", "github_username": "nakorndev", "repo": "nakorndev/vuepress-theme-bulma", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/nakorndev/vuepress-theme-bulma", "demo_url": "https://nakorn.dev/vuepress-theme-bulma/", - "stars": 66, - "forks": 25, - "open_issues": 7, + "stars": 68, + "forks": 22, + "open_issues": 10, "last_commit": "2020-04-27T04:00:20Z", "created_at": "2018-07-16T12:37:30Z", "description": "A pure Bulma.css theme for VuePress", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/nakorndev-vuepress-theme-bulma-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nakorndev-vuepress-theme-bulma-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nakorndev-vuepress-theme-bulma-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/nakorndev-vuepress-theme-bulma.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nakorndev-vuepress-theme-bulma.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nakorndev-vuepress-theme-bulma-2x.jpg" } }, - "nandomoreirame-dotx-master": { - "theme_key": "nandomoreirame-dotx-master", + "nandomoreirame-dotx": { + "theme_key": "nandomoreirame-dotx", "file": "jekyll-dotx.md", "name": "dotX", "title": "dotX", "github_username": "nandomoreirame", "repo": "nandomoreirame/dotX", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/nandomoreirame/dotX", "demo_url": "https://nandomoreirame.github.io/dotX/", - "stars": 82, - "forks": 56, - "open_issues": 7, + "stars": 84, + "forks": 55, + "open_issues": 8, "last_commit": "2018-01-16T17:49:44Z", "created_at": "2015-12-20T16:11:01Z", "description": "💎 Simple & Beautiful Jekyll theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/nandomoreirame-dotx-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nandomoreirame-dotx-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nandomoreirame-dotx-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/nandomoreirame-dotx.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nandomoreirame-dotx.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nandomoreirame-dotx-2x.jpg" } }, - "nandomoreirame-end2end-master": { - "theme_key": "nandomoreirame-end2end-master", + "nandomoreirame-end2end": { + "theme_key": "nandomoreirame-end2end", "file": "end2end.md", "name": "end2end", "title": "End2end", "github_username": "nandomoreirame", "repo": "nandomoreirame/end2end", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/nandomoreirame/end2end", "demo_url": "https://nandomoreirame.github.io/end2end/", - "stars": 257, - "forks": 195, - "open_issues": 8, + "stars": 272, + "forks": 201, + "open_issues": 7, "last_commit": "2019-03-25T12:39:20Z", "created_at": "2015-11-26T15:45:00Z", "description": "💎 Clean Jekyll theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/nandomoreirame-end2end-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nandomoreirame-end2end-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nandomoreirame-end2end-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/nandomoreirame-end2end.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nandomoreirame-end2end.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nandomoreirame-end2end-2x.jpg" } }, - "nandomoreirame-lora-master": { - "theme_key": "nandomoreirame-lora-master", + "nandomoreirame-lora": { + "theme_key": "nandomoreirame-lora", "file": "jekyll-lora.md", "name": "lora", "title": "Lora", "github_username": "nandomoreirame", "repo": "nandomoreirame/lora", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/nandomoreirame/lora", "demo_url": "https://nandomoreira.me/lora/", - "stars": 32, - "forks": 31, + "stars": 31, + "forks": 33, "open_issues": 1, "last_commit": "2018-01-16T17:49:49Z", "created_at": "2015-11-15T17:33:04Z", "description": ":gem: Lora free Jekyll theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/nandomoreirame-lora-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nandomoreirame-lora-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nandomoreirame-lora-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/nandomoreirame-lora.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nandomoreirame-lora.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nandomoreirame-lora-2x.jpg" } }, - "nandomoreirame-mug-master": { - "theme_key": "nandomoreirame-mug-master", + "nandomoreirame-mug": { + "theme_key": "nandomoreirame-mug", "file": "jekyll-mug.md", "name": "mug", "title": "mug", "github_username": "nandomoreirame", "repo": "nandomoreirame/mug", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/nandomoreirame/mug", "demo_url": "https://nandomoreira.me/mug/", - "stars": 41, - "forks": 34, + "stars": 44, + "forks": 33, "open_issues": 1, "last_commit": "2018-01-16T17:49:21Z", "created_at": "2015-11-20T14:42:31Z", "description": "💎 mug Jekyll theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/nandomoreirame-mug-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nandomoreirame-mug-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nandomoreirame-mug-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/nandomoreirame-mug.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nandomoreirame-mug.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nandomoreirame-mug-2x.jpg" } }, - "nandomoreirame-nandomoreira-jekyll-theme-master": { - "theme_key": "nandomoreirame-nandomoreira-jekyll-theme-master", + "nandomoreirame-nandomoreira-jekyll-theme": { + "theme_key": "nandomoreirame-nandomoreira-jekyll-theme", "file": "jekyll-nandomoreira.me.md", "name": "nandomoreira-jekyll-theme", "title": "nandomoreira.me", "github_username": "nandomoreirame", "repo": "nandomoreirame/nandomoreira-jekyll-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/nandomoreirame/nandomoreira-jekyll-theme", "demo_url": "https://nandomoreira.me/nandomoreira-jekyll-theme/", - "stars": 100, + "stars": 102, "forks": 80, "open_issues": 4, "last_commit": "2018-01-16T17:49:01Z", "created_at": "2015-11-12T18:06:34Z", "description": "💎 My old website in Jekyll and Gulpjs", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/nandomoreirame-nandomoreira-jekyll-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nandomoreirame-nandomoreira-jekyll-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nandomoreirame-nandomoreira-jekyll-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/nandomoreirame-nandomoreira-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nandomoreirame-nandomoreira-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nandomoreirame-nandomoreira-jekyll-theme-2x.jpg" } }, - "nandomoreirame-simplest-master": { - "theme_key": "nandomoreirame-simplest-master", + "nandomoreirame-simplest": { + "theme_key": "nandomoreirame-simplest", "file": "jekyll-simplest.md", "name": "simplest", "title": "Simplest", "github_username": "nandomoreirame", "repo": "nandomoreirame/simplest", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/nandomoreirame/simplest", "demo_url": "https://nandomoreira.me/simplest/", "stars": 130, - "forks": 45, + "forks": 46, "open_issues": 6, "last_commit": "2018-01-04T15:36:41Z", "created_at": "2015-12-10T15:28:29Z", "description": "💎 Simple and beautiful Jekyll theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/nandomoreirame-simplest-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nandomoreirame-simplest-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nandomoreirame-simplest-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/nandomoreirame-simplest.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nandomoreirame-simplest.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nandomoreirame-simplest-2x.jpg" } }, - "nandomoreirame-zetsu-master": { - "theme_key": "nandomoreirame-zetsu-master", + "nandomoreirame-zetsu": { + "theme_key": "nandomoreirame-zetsu", "file": "jekyll-zetsu.md", "name": "zetsu", "title": "Zetsu", "github_username": "nandomoreirame", "repo": "nandomoreirame/zetsu", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/nandomoreirame/zetsu", "demo_url": "https://nandomoreirame.github.io/zetsu/", "stars": 42, - "forks": 39, + "forks": 40, "open_issues": 3, "last_commit": "2018-01-16T17:48:45Z", "created_at": "2015-08-08T05:58:15Z", "description": "💎 Zetsu - a free Jekyll theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/nandomoreirame-zetsu-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nandomoreirame-zetsu-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nandomoreirame-zetsu-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/nandomoreirame-zetsu.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nandomoreirame-zetsu.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nandomoreirame-zetsu-2x.jpg" } }, - "nanxiaobei-hugo-paper-master": { - "theme_key": "nanxiaobei-hugo-paper-master", + "nanxiaobei-hugo-paper": { + "theme_key": "nanxiaobei-hugo-paper", "file": "hugo-paper.md", "name": "hugo-paper", "title": "Paper", "github_username": "nanxiaobei", "repo": "nanxiaobei/hugo-paper", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/nanxiaobei/hugo-paper", "demo_url": "https://nanxiaobei.github.io/hugo-paper/", - "stars": 486, - "forks": 110, + "stars": 1328, + "forks": 292, "open_issues": 0, - "last_commit": "2020-12-13T20:40:04Z", + "last_commit": "2023-01-12T07:17:56Z", "created_at": "2018-01-08T16:26:30Z", - "description": "🥛 A simple, clean, flexible Hugo theme", - "stale": false, + "description": "🪺 A simple, clean, flexible Hugo theme", "images": { - "hires": "https://www.jamstackthemes.dev/capture/nanxiaobei-hugo-paper-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nanxiaobei-hugo-paper-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nanxiaobei-hugo-paper-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/nanxiaobei-hugo-paper.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nanxiaobei-hugo-paper.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nanxiaobei-hugo-paper-2x.jpg" } }, - "narative-gatsby-theme-novela-master": { - "theme_key": "narative-gatsby-theme-novela-master", + "narative-gatsby-theme-novela": { + "theme_key": "narative-gatsby-theme-novela", "file": "gatsby-theme-novela.md", "name": "gatsby-theme-novela", "title": "Gatsby Novela", "github_username": "narative", "repo": "narative/gatsby-theme-novela", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/narative/gatsby-theme-novela", "demo_url": "https://novela.narative.co/", - "stars": 1568, - "forks": 430, - "open_issues": 73, - "last_commit": "2020-12-29T20:02:45Z", + "stars": 1726, + "forks": 511, + "open_issues": 80, + "last_commit": "2021-06-04T17:26:13Z", "created_at": "2019-08-01T04:08:19Z", "description": "Welcome to Novela, the simplest way to start publishing with Gatsby.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/narative-gatsby-theme-novela-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/narative-gatsby-theme-novela-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/narative-gatsby-theme-novela-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/narative-gatsby-theme-novela.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/narative-gatsby-theme-novela.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/narative-gatsby-theme-novela-2x.jpg" } }, - "natarajmb-charaka-hugo-theme-master": { - "theme_key": "natarajmb-charaka-hugo-theme-master", + "natarajmb-charaka-hugo-theme": { + "theme_key": "natarajmb-charaka-hugo-theme", "file": "hugo-theme-charaka.md", "name": "charaka-hugo-theme", "title": "Charaka", "github_username": "natarajmb", "repo": "natarajmb/charaka-hugo-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/natarajmb/charaka-hugo-theme", "demo_url": "https://themes.gohugo.io/theme/charaka-hugo-theme/", - "stars": 35, - "forks": 29, + "stars": 40, + "forks": 30, "open_issues": 1, "last_commit": "2020-12-15T11:37:36Z", "created_at": "2018-08-21T20:17:16Z", "description": "Minimalistic and Responsive blog theme for hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/natarajmb-charaka-hugo-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/natarajmb-charaka-hugo-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/natarajmb-charaka-hugo-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/natarajmb-charaka-hugo-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/natarajmb-charaka-hugo-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/natarajmb-charaka-hugo-theme-2x.jpg" } }, - "nathancday-min_night-master": { - "theme_key": "nathancday-min_night-master", + "nathancday-min_night": { + "theme_key": "nathancday-min_night", "file": "hugo-min-night.md", "name": "min_night", "title": "Min_night", "github_username": "nathancday", "repo": "nathancday/min_night", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/nathancday/min_night", "demo_url": "https://www.natedayta.com/", - "stars": 19, - "forks": 20, + "stars": 20, + "forks": 21, "open_issues": 0, "last_commit": "2020-12-07T21:26:18Z", "created_at": "2018-05-19T17:36:39Z", "description": "An easy on the eyes Hugo blog theme with dark mode.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/nathancday-min_night-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nathancday-min_night-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nathancday-min_night-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/nathancday-min_night.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nathancday-min_night.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nathancday-min_night-2x.jpg" + } + }, + "naufaldi-next-landing-vpn": { + "theme_key": "naufaldi-next-landing-vpn", + "file": "next-landing-vpn.md", + "name": "next-landing-vpn", + "title": "Tailwind VPN Landingpage", + "github_username": "naufaldi", + "repo": "naufaldi/next-landing-vpn", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/naufaldi/next-landing-vpn", + "demo_url": "https://next-landing-vpn.vercel.app/", + "stars": 229, + "forks": 119, + "open_issues": 7, + "last_commit": "2022-10-12T15:14:37Z", + "created_at": "2020-11-28T01:36:44Z", + "description": "An Open Source Landingpage For VPN or Apps. Build using NextJS 12 and Tailwind v3.0", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/naufaldi-next-landing-vpn.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/naufaldi-next-landing-vpn.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/naufaldi-next-landing-vpn-2x.jpg" + } + }, + "ndimatteo-hull": { + "theme_key": "ndimatteo-hull", + "file": "next-hull.md", + "name": "HULL", + "title": "HULL", + "github_username": "ndimatteo", + "repo": "ndimatteo/HULL", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/ndimatteo/HULL", + "demo_url": "https://hull.dev", + "stars": 1103, + "forks": 109, + "open_issues": 7, + "last_commit": "2022-12-28T22:41:25Z", + "created_at": "2020-10-19T19:00:26Z", + "description": "💀 Headless Shopify Starter – powered by Next.js + Sanity.io", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/ndimatteo-hull.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ndimatteo-hull.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ndimatteo-hull-2x.jpg" } }, - "nehalist-gatsby-starter-nehalem-master": { - "theme_key": "nehalist-gatsby-starter-nehalem-master", + "nehalist-gatsby-starter-nehalem": { + "theme_key": "nehalist-gatsby-starter-nehalem", "file": "gatsby-starter-nehalem.md", "name": "gatsby-starter-nehalem", "title": "Gatsby Starter Nehalem", "github_username": "nehalist", "repo": "nehalist/gatsby-starter-nehalem", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/nehalist/gatsby-starter-nehalem", "demo_url": "https://nehalem.netlify.com/", - "stars": 33, + "stars": 39, "forks": 21, - "open_issues": 9, + "open_issues": 31, "last_commit": "2020-03-17T21:04:39Z", "created_at": "2019-09-07T15:57:10Z", "description": null, - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/nehalist-gatsby-starter-nehalem-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nehalist-gatsby-starter-nehalem-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nehalist-gatsby-starter-nehalem-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/nehalist-gatsby-starter-nehalem.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nehalist-gatsby-starter-nehalem.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nehalist-gatsby-starter-nehalem-2x.jpg" } }, - "neizod-lemma-theme-gh-pages": { - "theme_key": "neizod-lemma-theme-gh-pages", + "neizod-lemma-theme": { + "theme_key": "neizod-lemma-theme", "file": "jekyll-lemma-theme.md", "name": "lemma-theme", "title": "Lemma", "github_username": "neizod", "repo": "neizod/lemma-theme", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/neizod/lemma-theme", "demo_url": "https://neizod.github.io/lemma-theme", "stars": 10, "forks": 16, "open_issues": 7, - "last_commit": "2014-11-11T09:07:15Z", + "last_commit": "2021-10-09T19:24:14Z", "created_at": "2014-10-23T03:14:41Z", "description": "Bootstrap theme for GitHub Pages (Jekyll).", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/neizod-lemma-theme-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/neizod-lemma-theme-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/neizod-lemma-theme-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/neizod-lemma-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/neizod-lemma-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/neizod-lemma-theme-2x.jpg" } }, - "netlify-templates-gatsby-starter-netlify-cms-master": { - "theme_key": "netlify-templates-gatsby-starter-netlify-cms-master", + "netlify-templates-gatsby-starter-netlify-cms": { + "theme_key": "netlify-templates-gatsby-starter-netlify-cms", "file": "gatsby-starter-netlify-cms.md", "name": "gatsby-starter-netlify-cms", "title": "Gatsby Starter Netlify CMS", "github_username": "netlify-templates", "repo": "netlify-templates/gatsby-starter-netlify-cms", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/netlify-templates/gatsby-starter-netlify-cms", "demo_url": "https://gatsby-netlify-cms.netlify.com/", - "stars": 1747, - "forks": 876, - "open_issues": 49, - "last_commit": "2020-12-10T17:48:18Z", + "stars": 2023, + "forks": 1008, + "open_issues": 36, + "last_commit": "2023-01-23T01:49:04Z", "created_at": "2017-08-15T23:15:14Z", "description": "Example gatsby + netlify cms project", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/netlify-templates-gatsby-starter-netlify-cms-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/netlify-templates-gatsby-starter-netlify-cms-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/netlify-templates-gatsby-starter-netlify-cms-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/netlify-templates-gatsby-starter-netlify-cms.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/netlify-templates-gatsby-starter-netlify-cms.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/netlify-templates-gatsby-starter-netlify-cms-2x.jpg" } }, - "netlify-templates-one-click-hugo-cms-master": { - "theme_key": "netlify-templates-one-click-hugo-cms-master", + "netlify-templates-one-click-hugo-cms": { + "theme_key": "netlify-templates-one-click-hugo-cms", "file": "hugo-starter-blog-theme-kaldi.md", "name": "one-click-hugo-cms", "title": "Hugo starter Kaldi", "github_username": "netlify-templates", "repo": "netlify-templates/one-click-hugo-cms", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/netlify-templates/one-click-hugo-cms", "demo_url": "https://master-template-one-click-hugo-cms.netlify.com/", - "stars": 303, - "forks": 176, - "open_issues": 34, - "last_commit": "2020-12-23T14:17:55Z", + "stars": 419, + "forks": 281, + "open_issues": 28, + "last_commit": "2023-01-23T01:37:39Z", "created_at": "2017-09-07T03:11:30Z", "description": "Hugo template with Netlify CMS", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/netlify-templates-one-click-hugo-cms-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/netlify-templates-one-click-hugo-cms-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/netlify-templates-one-click-hugo-cms-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/netlify-templates-one-click-hugo-cms.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/netlify-templates-one-click-hugo-cms.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/netlify-templates-one-click-hugo-cms-2x.jpg" + } + }, + "netlify-templates-tanstack-template": { + "theme_key": "netlify-templates-tanstack-template", + "file": "tanstack-chat.md", + "name": "tanstack-template", + "title": "TanStack Chat Template", + "github_username": "netlify-templates", + "repo": "netlify-templates/tanstack-template", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/netlify-templates/tanstack-template", + "demo_url": "https://tanstack-starter.netlify.app/", + "stars": 10, + "forks": 2, + "open_issues": 1, + "last_commit": "2025-03-20T07:29:51Z", + "created_at": "2025-03-05T14:35:57Z", + "description": "A modern chat template built with TanStack Router, Claude AI, Sentry, and Convex integrations, featuring a clean and responsive interface.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/netlify-templates-tanstack-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/netlify-templates-tanstack-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/netlify-templates-tanstack-template-2x.jpg" + } + }, + "nextacular-nextacular": { + "theme_key": "arjayosma-nextacular", + "file": "nextacular.md", + "name": "nextacular", + "title": "Nextacular", + "github_username": "nextacular", + "repo": "nextacular/nextacular", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/nextacular/nextacular", + "demo_url": "https://demo.nextacular.co", + "stars": 507, + "forks": 89, + "open_issues": 10, + "last_commit": "2023-01-22T12:50:25Z", + "created_at": "2022-01-07T01:12:41Z", + "description": "An open-source starter kit that will help you build full-stack multi-tenant SaaS platforms efficiently and help you focus on developing your core SaaS features. Built on top of popular and modern technologies such as Next JS, Tailwind, Prisma, and Stripe.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/arjayosma-nextacular.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/arjayosma-nextacular.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/arjayosma-nextacular-2x.jpg" } }, - "ngzhio-jekyll-theme-hamilton-master": { - "theme_key": "ngzhio-jekyll-theme-hamilton-master", + "ngzhio-jekyll-theme-hamilton": { + "theme_key": "ngzhio-jekyll-theme-hamilton", "file": "hamilton.md", "name": "jekyll-theme-hamilton", "title": "Hamilton", "github_username": "ngzhio", "repo": "ngzhio/jekyll-theme-hamilton", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ngzhio/jekyll-theme-hamilton", "demo_url": "https://ngzhio.github.io/jekyll-theme-hamilton/", - "stars": 38, - "forks": 73, + "stars": 45, + "forks": 91, "open_issues": 2, "last_commit": "2020-09-22T11:48:28Z", "created_at": "2020-04-04T11:56:55Z", "description": "A minimal and beautiful Jekyll theme best for writing and note-taking.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ngzhio-jekyll-theme-hamilton-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ngzhio-jekyll-theme-hamilton-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ngzhio-jekyll-theme-hamilton-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ngzhio-jekyll-theme-hamilton.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ngzhio-jekyll-theme-hamilton.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ngzhio-jekyll-theme-hamilton-2x.jpg" } }, - "nickbalestra-kactus-master": { - "theme_key": "nickbalestra-kactus-master", + "nickbalestra-kactus": { + "theme_key": "nickbalestra-kactus", "file": "jekyll-kactus.md", "name": "kactus", "title": "Kactus", "github_username": "nickbalestra", "repo": "nickbalestra/kactus", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/nickbalestra/kactus", "demo_url": "https://nick.balestra.ch/2015/Kactus/", - "stars": 391, - "forks": 182, + "stars": 390, + "forks": 167, "open_issues": 12, "last_commit": "2017-09-12T09:18:08Z", "created_at": "2015-06-11T18:10:48Z", "description": "Cactus's default theme on Jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/nickbalestra-kactus-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nickbalestra-kactus-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nickbalestra-kactus-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/nickbalestra-kactus.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nickbalestra-kactus.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nickbalestra-kactus-2x.jpg" } }, - "nielsenramon-chalk-master": { - "theme_key": "nielsenramon-chalk-master", + "nielsenramon-chalk": { + "theme_key": "nielsenramon-chalk", "file": "jekyll-chalk.md", "name": "chalk", "title": "Chalk", "github_username": "nielsenramon", "repo": "nielsenramon/chalk", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/nielsenramon/chalk", "demo_url": "https://chalk.nielsenramon.com", - "stars": 964, - "forks": 412, - "open_issues": 29, + "stars": 1142, + "forks": 438, + "open_issues": 33, "last_commit": "2019-12-21T19:44:00Z", "created_at": "2016-07-26T20:59:57Z", "description": "Chalk is a high quality, completely customizable, performant and 100% free Jekyll blog theme.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/nielsenramon-chalk-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nielsenramon-chalk-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nielsenramon-chalk-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/nielsenramon-chalk.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nielsenramon-chalk.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nielsenramon-chalk-2x.jpg" } }, - "niklasbuschmann-contrast-hugo-master": { - "theme_key": "niklasbuschmann-contrast-hugo-master", - "file": "hugo-contrast-theme.md", - "name": "contrast-hugo", - "title": "Hugo Contrast", - "github_username": "niklasbuschmann", - "repo": "niklasbuschmann/contrast-hugo", - "branch": "master", - "github_url": "https://github.com/niklasbuschmann/contrast-hugo", - "demo_url": "https://themes.gohugo.io/theme/contrast-hugo/", - "stars": 23, - "forks": 22, - "open_issues": 3, - "last_commit": "2021-01-10T00:20:47Z", - "created_at": "2019-07-15T13:03:07Z", - "description": "Minimalistic Hugo theme", - "stale": false, - "images": { - "hires": "https://www.jamstackthemes.dev/capture/niklasbuschmann-contrast-hugo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/niklasbuschmann-contrast-hugo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/niklasbuschmann-contrast-hugo-master-2x.jpg" - } - }, - "niklasbuschmann-contrast-master": { - "theme_key": "niklasbuschmann-contrast-master", - "file": "jekyll-contrast.md", - "name": "contrast", - "title": "Jekyll Contrast", + "niklasbuschmann-contrast": { + "theme_key": "niklasbuschmann-contrast", + "file": "jekyll-contrast.md", + "name": "contrast", + "title": "Jekyll Contrast", "github_username": "niklasbuschmann", "repo": "niklasbuschmann/contrast", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/niklasbuschmann/contrast", "demo_url": "https://niklasbuschmann.github.io/contrast/", - "stars": 171, - "forks": 237, - "open_issues": 5, - "last_commit": "2021-01-10T00:08:42Z", + "stars": 312, + "forks": 1340, + "open_issues": 19, + "last_commit": "2021-09-12T13:41:04Z", "created_at": "2018-01-19T01:23:22Z", "description": "Jekyll Theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/niklasbuschmann-contrast-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/niklasbuschmann-contrast-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/niklasbuschmann-contrast-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/niklasbuschmann-contrast.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/niklasbuschmann-contrast.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/niklasbuschmann-contrast-2x.jpg" + } + }, + "niklasbuschmann-contrast-hugo": { + "theme_key": "niklasbuschmann-contrast-hugo", + "file": "hugo-contrast-theme.md", + "name": "contrast-hugo", + "title": "Hugo Contrast", + "github_username": "niklasbuschmann", + "repo": "niklasbuschmann/contrast-hugo", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/niklasbuschmann/contrast-hugo", + "demo_url": "https://themes.gohugo.io/theme/contrast-hugo/", + "stars": 30, + "forks": 25, + "open_issues": 4, + "last_commit": "2021-03-13T14:06:59Z", + "created_at": "2019-07-15T13:03:07Z", + "description": "Minimalistic Hugo theme", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/niklasbuschmann-contrast-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/niklasbuschmann-contrast-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/niklasbuschmann-contrast-hugo-2x.jpg" } }, - "niklasmtj-gatsby-starter-julia-master": { - "theme_key": "niklasmtj-gatsby-starter-julia-master", + "niklasmtj-gatsby-starter-julia": { + "theme_key": "niklasmtj-gatsby-starter-julia", "file": "gatsby-starter-julia.md", "name": "gatsby-starter-julia", "title": "Gatsby Starter Julia", "github_username": "niklasmtj", "repo": "niklasmtj/gatsby-starter-julia", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/niklasmtj/gatsby-starter-julia", "demo_url": "https://gatsby-starter-julia.netlify.com/", - "stars": 142, - "forks": 39, - "open_issues": 0, - "last_commit": "2020-10-06T13:44:06Z", + "stars": 164, + "forks": 40, + "open_issues": 2, + "last_commit": "2023-01-08T08:09:36Z", "created_at": "2019-03-17T20:42:55Z", "description": "A minimal GatsbyJS blog starter with landingpage, estimated reading time, markdown sourcing and much more.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/niklasmtj-gatsby-starter-julia-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/niklasmtj-gatsby-starter-julia-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/niklasmtj-gatsby-starter-julia-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/niklasmtj-gatsby-starter-julia.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/niklasmtj-gatsby-starter-julia.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/niklasmtj-gatsby-starter-julia-2x.jpg" } }, - "nikrich-jekyll-slender-template-master": { - "theme_key": "nikrich-jekyll-slender-template-master", + "nikrich-jekyll-slender-template": { + "theme_key": "nikrich-jekyll-slender-template", "file": "jekyll-slender.md", "name": "jekyll-slender-template", "title": "Slender", "github_username": "nikrich", "repo": "nikrich/jekyll-slender-template", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/nikrich/jekyll-slender-template", "demo_url": "https://nikrich.github.io/jekyll-slender-template/#", - "stars": 45, - "forks": 49, + "stars": 47, + "forks": 47, "open_issues": 0, "last_commit": "2016-04-13T15:09:29Z", "created_at": "2016-03-30T10:52:12Z", "description": "Beautiful portfolio style template for jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/nikrich-jekyll-slender-template-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nikrich-jekyll-slender-template-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nikrich-jekyll-slender-template-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/nikrich-jekyll-slender-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nikrich-jekyll-slender-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nikrich-jekyll-slender-template-2x.jpg" } }, - "nikrich-jekyll-wing-template-master": { - "theme_key": "nikrich-jekyll-wing-template-master", + "nikrich-jekyll-wing-template": { + "theme_key": "nikrich-jekyll-wing-template", "file": "jekyll-wing.md", "name": "jekyll-wing-template", "title": "Wing", "github_username": "nikrich", "repo": "nikrich/jekyll-wing-template", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/nikrich/jekyll-wing-template", "demo_url": "https://nikrich.github.io/jekyll-wing-template/#", "stars": 40, - "forks": 96, + "forks": 94, "open_issues": 0, "last_commit": "2016-09-30T08:50:25Z", "created_at": "2016-07-19T09:48:57Z", "description": "Light and beautiful blog style template for jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/nikrich-jekyll-wing-template-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nikrich-jekyll-wing-template-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nikrich-jekyll-wing-template-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/nikrich-jekyll-wing-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nikrich-jekyll-wing-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nikrich-jekyll-wing-template-2x.jpg" } }, - "ninapetrop-artist-theme-master": { - "theme_key": "ninapetrop-artist-theme-master", + "ninapetrop-artist-theme": { + "theme_key": "ninapetrop-artist-theme", "file": "jekyll-artist-theme.md", "name": "Artist-Theme", "title": "Artist Theme", "github_username": "ninapetrop", "repo": "ninapetrop/Artist-Theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ninapetrop/Artist-Theme", "demo_url": "https://ninapetrop.github.io/Artist-Theme/", - "stars": 89, - "forks": 103, - "open_issues": 2, + "stars": 90, + "forks": 106, + "open_issues": 3, "last_commit": "2016-05-25T17:23:38Z", "created_at": "2016-01-31T20:52:26Z", "description": "A free Jekyll theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ninapetrop-artist-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ninapetrop-artist-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ninapetrop-artist-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ninapetrop-artist-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ninapetrop-artist-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ninapetrop-artist-theme-2x.jpg" } }, - "nirocfz-arabica-master": { - "theme_key": "nirocfz-arabica-master", + "nirocfz-arabica": { + "theme_key": "nirocfz-arabica", "file": "hugo-arabica.md", "name": "arabica", "title": "Arabica", "github_username": "nirocfz", "repo": "nirocfz/arabica", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/nirocfz/arabica", "demo_url": "https://arabica.netlify.com/", - "stars": 15, - "forks": 29, + "stars": 18, + "forks": 35, "open_issues": 1, - "last_commit": "2019-10-12T23:18:50Z", + "last_commit": "2022-04-04T02:51:04Z", "created_at": "2018-09-11T05:31:47Z", "description": "A port of the Ghost arabica theme for Hugo", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/nirocfz-arabica-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nirocfz-arabica-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nirocfz-arabica-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/nirocfz-arabica.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nirocfz-arabica.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nirocfz-arabica-2x.jpg" } }, - "nix1947-jekyll-hilmi-master": { - "theme_key": "nix1947-jekyll-hilmi-master", + "nix1947-jekyll-hilmi": { + "theme_key": "nix1947-jekyll-hilmi", "file": "jekyll-hilmi.md", "name": "jekyll-hilmi", "title": "Jekyll-hilmi", "github_username": "nix1947", "repo": "nix1947/jekyll-hilmi", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/nix1947/jekyll-hilmi", - "demo_url": "http://nix1947.github.io/jekyll-hilmi", - "stars": 2, - "forks": 4, + "demo_url": "https://nix1947.github.io/jekyll-hilmi", + "stars": 3, + "forks": 3, "open_issues": 1, "last_commit": "2017-01-01T14:54:47Z", "created_at": "2017-01-01T14:27:40Z", "description": "jekyll-hilmi is the minimal jekyll theme that focuses on writing matters.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/nix1947-jekyll-hilmi-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nix1947-jekyll-hilmi-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nix1947-jekyll-hilmi-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/nix1947-jekyll-hilmi.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nix1947-jekyll-hilmi.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nix1947-jekyll-hilmi-2x.jpg" } }, - "nodejh-hugo-theme-cactus-plus-master": { - "theme_key": "nodejh-hugo-theme-cactus-plus-master", + "nodejh-hugo-theme-cactus-plus": { + "theme_key": "nodejh-hugo-theme-cactus-plus", "file": "hugo-theme-cactus-plus.md", "name": "hugo-theme-cactus-plus", "title": "Cactus Plus", "github_username": "nodejh", "repo": "nodejh/hugo-theme-cactus-plus", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/nodejh/hugo-theme-cactus-plus", "demo_url": "https://themes.gohugo.io/theme/hugo-theme-cactus-plus/", - "stars": 350, - "forks": 144, + "stars": 353, + "forks": 147, "open_issues": 26, "last_commit": "2018-02-15T08:45:08Z", "created_at": "2017-01-15T14:56:47Z", "description": "A minimalistic hugo theme based on cactus", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/nodejh-hugo-theme-cactus-plus-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nodejh-hugo-theme-cactus-plus-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nodejh-hugo-theme-cactus-plus-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/nodejh-hugo-theme-cactus-plus.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nodejh-hugo-theme-cactus-plus.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nodejh-hugo-theme-cactus-plus-2x.jpg" + } + }, + "nodejh-hugo-theme-mini": { + "theme_key": "nodejh-hugo-theme-cactus-plus", + "file": "hugo-theme-cactus-plus.md", + "name": "hugo-theme-mini", + "title": "Cactus Plus", + "github_username": "nodejh", + "repo": "nodejh/hugo-theme-mini", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/nodejh/hugo-theme-mini", + "demo_url": "https://themes.gohugo.io/theme/hugo-theme-cactus-plus/", + "stars": 428, + "forks": 179, + "open_issues": 25, + "last_commit": "2021-08-22T15:02:45Z", + "created_at": "2017-01-15T14:56:47Z", + "description": "A fast, minimalist and responsive hugo theme for bloggers.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/nodejh-hugo-theme-cactus-plus.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nodejh-hugo-theme-cactus-plus.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nodejh-hugo-theme-cactus-plus-2x.jpg" } }, - "notpushkin-mkdocs-alabaster-master": { - "theme_key": "notpushkin-mkdocs-alabaster-master", + "notpushkin-mkdocs-alabaster": { + "theme_key": "notpushkin-mkdocs-alabaster", "file": "mkdocs-alabaster.md", "name": "mkdocs-alabaster", "title": "MkDocs Alabaster", "github_username": "notpushkin", "repo": "notpushkin/mkdocs-alabaster", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/notpushkin/mkdocs-alabaster", "demo_url": "https://mkdocs-alabaster.ale.sh/", "stars": 36, - "forks": 7, + "forks": 9, "open_issues": 4, "last_commit": "2020-06-16T08:22:23Z", "created_at": "2016-01-29T22:40:46Z", "description": "Alabaster port for MkDocs", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/notpushkin-mkdocs-alabaster-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/notpushkin-mkdocs-alabaster-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/notpushkin-mkdocs-alabaster-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/notpushkin-mkdocs-alabaster.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/notpushkin-mkdocs-alabaster.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/notpushkin-mkdocs-alabaster-2x.jpg" } }, - "nrandecker-particle-master": { - "theme_key": "nrandecker-particle-master", + "nrandecker-particle": { + "theme_key": "nrandecker-particle", "file": "jekyll-particle.md", "name": "particle", "title": "Particle", "github_username": "nrandecker", "repo": "nrandecker/particle", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/nrandecker/particle", "demo_url": "https://nrandecker.github.io/particle", - "stars": 711, - "forks": 901, - "open_issues": 9, - "last_commit": "2019-02-27T08:40:47Z", + "stars": 934, + "forks": 1058, + "open_issues": 0, + "last_commit": "2021-09-20T22:20:59Z", "created_at": "2017-01-17T05:20:07Z", "description": "A simple portfolio Jekyll theme:", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/nrandecker-particle-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nrandecker-particle-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nrandecker-particle-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/nrandecker-particle.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nrandecker-particle.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nrandecker-particle-2x.jpg" + } + }, + "nryotaro-siera": { + "theme_key": "kazumasato-siera", + "file": "jekyll-siera.md", + "name": "Siera", + "title": "Siera", + "github_username": "nryotaro", + "repo": "nryotaro/Siera", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/nryotaro/Siera", + "demo_url": "https://ranceworks.com/", + "stars": 32, + "forks": 53, + "open_issues": 1, + "last_commit": "2016-01-01T00:40:04Z", + "created_at": "2015-11-14T07:47:20Z", + "description": "jekyll theme", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/kazumasato-siera.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/kazumasato-siera.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/kazumasato-siera-2x.jpg" + } + }, + "nunocoracao-blowfish": { + "theme_key": "nunocoracao-blowfish", + "file": "blowfish.md", + "name": "blowfish", + "title": "Blowfish", + "github_username": "nunocoracao", + "repo": "nunocoracao/blowfish", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/nunocoracao/blowfish", + "demo_url": "https://nunocoracao.github.io/blowfish/", + "stars": 247, + "forks": 76, + "open_issues": 5, + "last_commit": "2023-01-18T21:45:33Z", + "created_at": "2022-09-09T20:38:52Z", + "description": "Personal Website & Blog Theme for Hugo", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/nunocoracao-blowfish.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nunocoracao-blowfish.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nunocoracao-blowfish-2x.jpg" } }, - "nurlansu-hugo-sustain-master": { - "theme_key": "nurlansu-hugo-sustain-master", + "nurlansu-hugo-sustain": { + "theme_key": "nurlansu-hugo-sustain", "file": "hugo-sustain.md", "name": "hugo-sustain", "title": "Sustain", "github_username": "nurlansu", "repo": "nurlansu/hugo-sustain", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/nurlansu/hugo-sustain", "demo_url": "https://demo.nurlan.co/hugo-sustain/", - "stars": 158, - "forks": 104, - "open_issues": 12, - "last_commit": "2019-08-05T12:49:47Z", + "stars": 170, + "forks": 114, + "open_issues": 6, + "last_commit": "2021-02-13T17:20:29Z", "created_at": "2016-10-22T07:21:04Z", "description": "🦁 Personal blog theme built with Bootstrap, powered by Hugo.", - "stale": true, - "images": { - "hires": "https://www.jamstackthemes.dev/capture/nurlansu-hugo-sustain-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nurlansu-hugo-sustain-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nurlansu-hugo-sustain-master-2x.jpg" - } - }, - "obaez-dentistsmile-master": { - "theme_key": "obaez-dentistsmile-master", - "file": "dentistsmile.md", - "name": "dentistsmile", - "title": "Dentistsmile", - "github_username": "obaez", - "repo": "obaez/dentistsmile", - "branch": "master", - "github_url": "https://github.com/obaez/dentistsmile", - "demo_url": "https://obaez.com/dentistsmile/", - "stars": 104, - "forks": 178, - "open_issues": 6, - "last_commit": "2016-03-07T20:49:04Z", - "created_at": "2015-10-10T22:37:27Z", - "description": "Single page Jekyll theme for dental clinics", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/obaez-dentistsmile-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/obaez-dentistsmile-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/obaez-dentistsmile-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/nurlansu-hugo-sustain.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nurlansu-hugo-sustain.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nurlansu-hugo-sustain-2x.jpg" } }, - "octoxalis-11tyframe-master": { - "theme_key": "octoxalis-11tyframe-master", + "octoxalis-11tyframe": { + "theme_key": "octoxalis-11tyframe", "file": "11tyframe.md", "name": "11tyframe", "title": "11tyFrame", "github_username": "octoxalis", "repo": "octoxalis/11tyframe", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/octoxalis/11tyframe", "demo_url": "https://11tyframe.netlify.com", - "stars": 5, - "forks": 4, + "stars": 6, + "forks": 2, "open_issues": 3, "last_commit": "2020-05-14T17:50:32Z", "created_at": "2019-10-27T15:30:44Z", "description": "A light site frame using Eleventy static site generator", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/octoxalis-11tyframe-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/octoxalis-11tyframe-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/octoxalis-11tyframe-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/octoxalis-11tyframe.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/octoxalis-11tyframe.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/octoxalis-11tyframe-2x.jpg" } }, - "ofranke-gatsby-typescript-scss-docker-master": { - "theme_key": "ofranke-gatsby-typescript-scss-docker-master", + "ofranke-gatsby-typescript-scss-docker": { + "theme_key": "ofranke-gatsby-typescript-scss-docker", "file": "gatsby-typescript-scss-docker.md", "name": "gatsby-typescript-scss-docker", "title": "Gatsby Typescript Scss Docker", "github_username": "OFranke", "repo": "OFranke/gatsby-typescript-scss-docker", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/OFranke/gatsby-typescript-scss-docker", "demo_url": "https://gatsby-typescript-scss-docker-starter.netlify.com/", - "stars": 11, - "forks": 2, - "open_issues": 10, + "stars": 12, + "forks": 1, + "open_issues": 28, "last_commit": "2019-07-21T19:39:32Z", "created_at": "2018-12-16T20:28:09Z", "description": "gatsby with typescript, scss typed modules, eslint, prettier & husky, docker", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ofranke-gatsby-typescript-scss-docker-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ofranke-gatsby-typescript-scss-docker-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ofranke-gatsby-typescript-scss-docker-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ofranke-gatsby-typescript-scss-docker.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ofranke-gatsby-typescript-scss-docker.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ofranke-gatsby-typescript-scss-docker-2x.jpg" } }, - "ohduran-onassis-master": { - "theme_key": "ohduran-onassis-master", + "ohduran-onassis": { + "theme_key": "ohduran-onassis", "file": "Onassis.md", "name": "Onassis", "title": "Onassis", "github_username": "ohduran", "repo": "ohduran/Onassis", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ohduran/Onassis", "demo_url": "https://ohduran.github.io/Onassis", - "stars": 19, - "forks": 18, - "open_issues": 1, - "last_commit": "2020-03-05T09:57:41Z", + "stars": 23, + "forks": 24, + "open_issues": 2, + "last_commit": "2021-07-15T19:15:57Z", "created_at": "2019-10-16T21:11:55Z", "description": "The Onassis Theme for Jekyll", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ohduran-onassis-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ohduran-onassis-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ohduran-onassis-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ohduran-onassis.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ohduran-onassis.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ohduran-onassis-2x.jpg" } }, - "ohduran-the-interesting-times-master": { - "theme_key": "ohduran-the-interesting-times-master", + "ohduran-the-interesting-times": { + "theme_key": "ohduran-the-interesting-times", "file": "the-interesting-times.md", "name": "the-interesting-times", "title": "The Interesting Times", "github_username": "ohduran", "repo": "ohduran/the-interesting-times", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ohduran/the-interesting-times", "demo_url": "https://ohduran.github.io/the-interesting-times", - "stars": 23, - "forks": 18, - "open_issues": 0, - "last_commit": "2020-09-16T07:38:33Z", + "stars": 47, + "forks": 38, + "open_issues": 1, + "last_commit": "2021-07-15T19:15:46Z", "created_at": "2019-10-06T21:10:52Z", "description": "The Interesting Times Theme for Jekyll", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ohduran-the-interesting-times-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ohduran-the-interesting-times-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ohduran-the-interesting-times-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ohduran-the-interesting-times.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ohduran-the-interesting-times.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ohduran-the-interesting-times-2x.jpg" } }, - "okkur-syna-master": { - "theme_key": "okkur-syna-master", + "okkur-syna": { + "theme_key": "okkur-syna", "file": "hugo-syna.md", "name": "syna", "title": "Syna", "github_username": "okkur", "repo": "okkur/syna", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/okkur/syna", "demo_url": "https://themes.gohugo.io/theme/syna/", - "stars": 178, - "forks": 101, - "open_issues": 73, - "last_commit": "2020-11-13T14:16:05Z", + "stars": 218, + "forks": 108, + "open_issues": 79, + "last_commit": "2021-06-07T10:03:37Z", "created_at": "2017-09-07T11:51:44Z", "description": "Highly customizable open source theme for Hugo based static websites", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/okkur-syna-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/okkur-syna-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/okkur-syna-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/okkur-syna.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/okkur-syna.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/okkur-syna-2x.jpg" } }, - "olakara-jekyllmetro-master": { - "theme_key": "olakara-jekyllmetro-master", + "olakara-jekyllmetro": { + "theme_key": "olakara-jekyllmetro", "file": "jekyll-metro.md", "name": "JekyllMetro", "title": "Jekyll Metro", "github_username": "olakara", "repo": "olakara/JekyllMetro", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/olakara/JekyllMetro", "demo_url": "https://abdelraoof.com", - "stars": 62, - "forks": 83, + "stars": 63, + "forks": 82, "open_issues": 2, "last_commit": "2017-04-14T04:38:30Z", "created_at": "2014-06-17T14:07:26Z", "description": "A Metro based theme for Jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/olakara-jekyllmetro-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/olakara-jekyllmetro-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/olakara-jekyllmetro-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/olakara-jekyllmetro.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/olakara-jekyllmetro.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/olakara-jekyllmetro-2x.jpg" + } + }, + "old-jekyll-templates-dopetrope-jekyll-theme": { + "theme_key": "cloudcannon-dopetrope-jekyll-theme", + "file": "jekyll-dopetrope.md", + "name": "DopeTrope-Jekyll-Theme", + "title": "Dopetrope", + "github_username": "old-jekyll-templates", + "repo": "old-jekyll-templates/DopeTrope-Jekyll-Theme", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/old-jekyll-templates/DopeTrope-Jekyll-Theme", + "demo_url": "https://html5up.net/dopetrope", + "stars": 58, + "forks": 65, + "open_issues": 3, + "last_commit": "2015-09-13T23:34:58Z", + "created_at": "2015-01-07T23:00:38Z", + "description": "DopeTrope Jekyll Theme", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/cloudcannon-dopetrope-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cloudcannon-dopetrope-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cloudcannon-dopetrope-jekyll-theme-2x.jpg" + } + }, + "old-jekyll-templates-strata-jekyll-theme": { + "theme_key": "cloudcannon-strata-jekyll-theme", + "file": "jekyll-strata.md", + "name": "Strata-Jekyll-Theme", + "title": "Strata", + "github_username": "old-jekyll-templates", + "repo": "old-jekyll-templates/Strata-Jekyll-Theme", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/old-jekyll-templates/Strata-Jekyll-Theme", + "demo_url": "https://html5up.net/strata", + "stars": 133, + "forks": 207, + "open_issues": 11, + "last_commit": "2017-01-23T17:47:28Z", + "created_at": "2015-04-26T18:24:31Z", + "description": null, + "images": { + "hires": "https://www.jamstackthemes.dev/capture/cloudcannon-strata-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cloudcannon-strata-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cloudcannon-strata-jekyll-theme-2x.jpg" + } + }, + "old-jekyll-templates-twenty-jekyll-theme": { + "theme_key": "cloudcannon-twenty-jekyll-theme", + "file": "jekyll-twenty.md", + "name": "Twenty-Jekyll-Theme", + "title": "Twenty", + "github_username": "old-jekyll-templates", + "repo": "old-jekyll-templates/Twenty-Jekyll-Theme", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/old-jekyll-templates/Twenty-Jekyll-Theme", + "demo_url": "https://html5up.net/twenty", + "stars": 81, + "forks": 110, + "open_issues": 2, + "last_commit": "2015-01-07T22:44:35Z", + "created_at": "2015-01-07T02:59:06Z", + "description": "Twenty Jekyll Theme - more themes available @ http://cloudcannon.com/jekyll_themes", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/cloudcannon-twenty-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/cloudcannon-twenty-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/cloudcannon-twenty-jekyll-theme-2x.jpg" + } + }, + "olivier3lanc-jekyll-libdoc": { + "theme_key": "olivier3lanc-jekyll-libdoc", + "file": "jekyll-libdoc.md", + "name": "Jekyll-LibDoc", + "title": "Jekyll LibDoc", + "github_username": "olivier3lanc", + "repo": "olivier3lanc/Jekyll-LibDoc", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/olivier3lanc/Jekyll-LibDoc", + "demo_url": "https://olivier3lanc.github.io/Jekyll-LibDoc/", + "stars": 13, + "forks": 15, + "open_issues": 0, + "last_commit": "2023-01-22T19:38:19Z", + "created_at": "2021-03-02T21:15:03Z", + "description": "A Jekyll documentation theme with built-in search and playground", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/olivier3lanc-jekyll-libdoc.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/olivier3lanc-jekyll-libdoc.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/olivier3lanc-jekyll-libdoc-2x.jpg" } }, - "olowolo-hugo-theme-even-master": { - "theme_key": "olowolo-hugo-theme-even-master", + "olowolo-hugo-theme-even": { + "theme_key": "olowolo-hugo-theme-even", "file": "hugo-theme-even.md", "name": "hugo-theme-even", "title": "Even", "github_username": "olOwOlo", "repo": "olOwOlo/hugo-theme-even", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/olOwOlo/hugo-theme-even", "demo_url": "https://blog.olowolo.com/example-site/", - "stars": 1239, - "forks": 505, - "open_issues": 59, - "last_commit": "2020-09-10T16:27:28Z", + "stars": 1550, + "forks": 622, + "open_issues": 12, + "last_commit": "2021-01-19T13:36:26Z", "created_at": "2017-08-28T09:20:45Z", "description": "🚀 A super concise theme for Hugo https://hugo-theme-even.netlify.app", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/olowolo-hugo-theme-even-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/olowolo-hugo-theme-even-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/olowolo-hugo-theme-even-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/olowolo-hugo-theme-even.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/olowolo-hugo-theme-even.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/olowolo-hugo-theme-even-2x.jpg" } }, - "ondrabus-gridsome-starter-kontent-lumen-master": { - "theme_key": "ondrabus-gridsome-starter-kontent-lumen-master", + "ondrabus-gridsome-starter-kontent-lumen": { + "theme_key": "ondrabus-gridsome-starter-kontent-lumen", "file": "gridsome-kontent-lumen.md", "name": "gridsome-starter-kontent-lumen", "title": "Gridsome Kontent Lumen", "github_username": "ondrabus", "repo": "ondrabus/gridsome-starter-kontent-lumen", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ondrabus/gridsome-starter-kontent-lumen", "demo_url": "https://gridsome-starter-kontent-lumen.netlify.app", - "stars": 3, - "forks": 3, - "open_issues": 0, + "stars": 9, + "forks": 4, + "open_issues": 1, "last_commit": "2020-10-05T10:43:45Z", "created_at": "2020-09-30T11:46:10Z", "description": "Lumen is a minimal, lightweight and mobile-first starter for creating blogs using Gridsome and Kentico Kontent.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ondrabus-gridsome-starter-kontent-lumen-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ondrabus-gridsome-starter-kontent-lumen-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ondrabus-gridsome-starter-kontent-lumen-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ondrabus-gridsome-starter-kontent-lumen.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ondrabus-gridsome-starter-kontent-lumen.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ondrabus-gridsome-starter-kontent-lumen-2x.jpg" } }, - "ondrabus-scully-starter-kontent-lumen-master": { - "theme_key": "ondrabus-scully-starter-kontent-lumen-master", + "ondrabus-scully-starter-kontent-lumen": { + "theme_key": "ondrabus-scully-starter-kontent-lumen", "file": "scully-kontent-lumen.md", "name": "scully-starter-kontent-lumen", "title": "Scully Starter Kontent Lumen", "github_username": "ondrabus", "repo": "ondrabus/scully-starter-kontent-lumen", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/ondrabus/scully-starter-kontent-lumen", "demo_url": "https://scully-starter-kontent-lumen.netlify.app/", - "stars": 1, - "forks": 0, + "stars": 2, + "forks": 3, "open_issues": 0, - "last_commit": "2020-12-10T03:54:52Z", + "last_commit": "2020-11-05T15:04:26Z", "created_at": "2020-10-27T17:21:10Z", "description": "Lumen starter on Scully", "images": { - "hires": "https://www.jamstackthemes.dev/capture/ondrabus-scully-starter-kontent-lumen-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ondrabus-scully-starter-kontent-lumen-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ondrabus-scully-starter-kontent-lumen-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ondrabus-scully-starter-kontent-lumen.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ondrabus-scully-starter-kontent-lumen.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ondrabus-scully-starter-kontent-lumen-2x.jpg" + } + }, + "onepase-ephesus": { + "theme_key": "onepase-ephesus", + "file": "Ephesus.md", + "name": "Ephesus", + "title": "Ephesus", + "github_username": "onepase", + "repo": "onepase/Ephesus", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/onepase/Ephesus", + "demo_url": "https://pardin.us/ephesus", + "stars": 59, + "forks": 40, + "open_issues": 1, + "last_commit": "2021-11-21T20:05:31Z", + "created_at": "2021-09-22T21:42:54Z", + "description": "Ephesus is a minimalist Jekyll theme, designed for personal blog use.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/onepase-ephesus.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/onepase-ephesus.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/onepase-ephesus-2x.jpg" } }, - "onweru-compose-master": { - "theme_key": "onweru-compose-master", + "onweru-compose": { + "theme_key": "onweru-compose", "file": "compose.md", "name": "compose", "title": "Compose", "github_username": "onweru", "repo": "onweru/compose", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/onweru/compose", "demo_url": "https://docs.neuralvibes.com", - "stars": 73, - "forks": 27, - "open_issues": 4, - "last_commit": "2020-12-31T09:52:28Z", + "stars": 199, + "forks": 77, + "open_issues": 18, + "last_commit": "2023-01-23T16:24:13Z", "created_at": "2020-01-28T20:17:23Z", "description": "A Hugo theme for documentation sites. It's inspired by https://forestry.io/docs/welcome/", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/onweru-compose-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/onweru-compose-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/onweru-compose-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/onweru-compose.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/onweru-compose.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/onweru-compose-2x.jpg" } }, - "onweru-hugo-swift-theme-master": { - "theme_key": "onweru-hugo-swift-theme-master", + "onweru-hugo-swift-theme": { + "theme_key": "onweru-hugo-swift-theme", "file": "hugo-swift-theme.md", "name": "hugo-swift-theme", "title": "Swift", "github_username": "onweru", "repo": "onweru/hugo-swift-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/onweru/hugo-swift-theme", "demo_url": "https://neuralvibes.com", - "stars": 79, - "forks": 59, - "open_issues": 1, - "last_commit": "2020-11-19T10:42:17Z", + "stars": 112, + "forks": 68, + "open_issues": 2, + "last_commit": "2021-08-13T12:06:37Z", "created_at": "2019-02-14T21:49:30Z", "description": "A simple open source theme for publishing with hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/onweru-hugo-swift-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/onweru-hugo-swift-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/onweru-hugo-swift-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/onweru-hugo-swift-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/onweru-hugo-swift-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/onweru-hugo-swift-theme-2x.jpg" } }, - "onweru-newsroom-master": { - "theme_key": "onweru-newsroom-master", + "onweru-newsroom": { + "theme_key": "onweru-newsroom", "file": "newsroom.md", "name": "newsroom", "title": "Newsroom", "github_username": "onweru", "repo": "onweru/newsroom", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/onweru/newsroom", "demo_url": "https://rooms.netlify.com", - "stars": 107, - "forks": 50, + "stars": 212, + "forks": 93, "open_issues": 3, - "last_commit": "2020-10-16T14:19:00Z", + "last_commit": "2023-01-11T19:51:45Z", "created_at": "2019-08-15T20:25:37Z", "description": "A simple, minimalistic Hugo theme. View Demo here", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/onweru-newsroom-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/onweru-newsroom-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/onweru-newsroom-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/onweru-newsroom.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/onweru-newsroom.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/onweru-newsroom-2x.jpg" + } + }, + "onwidget-astrowind": { + "theme_key": "onwidget-astrowind", + "file": "AstroWind.md", + "name": "astrowind", + "title": "AstroWind", + "github_username": "onwidget", + "repo": "onwidget/astrowind", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/onwidget/astrowind", + "demo_url": "https://astrowind.vercel.app/", + "stars": 771, + "forks": 186, + "open_issues": 9, + "last_commit": "2023-04-01T20:13:53Z", + "created_at": "2022-06-24T03:13:29Z", + "description": "⭕️ AstroWind: A free template using Astro 2.0 and Tailwind CSS.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/onwidget-astrowind.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/onwidget-astrowind.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/onwidget-astrowind-2x.jpg" } }, - "open-sl-jekyll-modern-blog-master": { - "theme_key": "open-sl-jekyll-modern-blog-master", + "open-sl-jekyll-modern-blog": { + "theme_key": "open-sl-jekyll-modern-blog", "file": "jekyll-Modern-Blog-V2-theme.md", "name": "Jekyll-Modern-Blog", "title": "Modern Blog Version 2", "github_username": "Open-SL", "repo": "Open-SL/Jekyll-Modern-Blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Open-SL/Jekyll-Modern-Blog", "demo_url": "https://open-sl.github.io/Jekyll-Modern-Blog/", - "stars": 15, + "stars": 17, "forks": 18, "open_issues": 2, "last_commit": "2017-03-12T15:53:46Z", "created_at": "2017-03-12T15:47:54Z", "description": "Jekyll Modern Theme Alternative Version", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/open-sl-jekyll-modern-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/open-sl-jekyll-modern-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/open-sl-jekyll-modern-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/open-sl-jekyll-modern-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/open-sl-jekyll-modern-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/open-sl-jekyll-modern-blog-2x.jpg" } }, - "open-start-opentheme-master": { - "theme_key": "open-start-opentheme-master", + "open-start-opentheme": { + "theme_key": "open-start-opentheme", "file": "jekyll-opentheme.md", "name": "opentheme", "title": "OpenTheme", "github_username": "manavsehgal", "repo": "manavsehgal/opentheme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/manavsehgal/opentheme", "demo_url": "https://opentheme.co/", - "stars": 145, - "forks": 207, + "stars": 147, + "forks": 208, "open_issues": 6, "last_commit": "2017-12-03T05:56:33Z", "created_at": "2014-11-19T12:03:04Z", "description": "Powerful new theme featuring Semantic UI for speedily creating amazing websites and mobile-hybrid apps on GitHub Pages.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/open-start-opentheme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/open-start-opentheme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/open-start-opentheme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/open-start-opentheme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/open-start-opentheme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/open-start-opentheme-2x.jpg" } }, - "orderedlist-minimal-master": { - "theme_key": "orderedlist-minimal-master", + "orderedlist-minimal": { + "theme_key": "orderedlist-minimal", "file": "jekyll-minimal.md", "name": "minimal", "title": "Minimal", "github_username": "orderedlist", "repo": "orderedlist/minimal", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/orderedlist/minimal", "demo_url": "https://orderedlist.com/minimal/", - "stars": 1822, - "forks": 595, - "open_issues": 27, - "last_commit": "2017-11-02T16:58:01Z", + "stars": 2077, + "forks": 704, + "open_issues": 36, + "last_commit": "2022-08-17T21:24:32Z", "created_at": "2012-04-05T13:10:55Z", "description": "A Theme for GitHub Pages", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/orderedlist-minimal-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/orderedlist-minimal-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/orderedlist-minimal-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/orderedlist-minimal.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/orderedlist-minimal.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/orderedlist-minimal-2x.jpg" } }, - "orderedlist-modernist-master": { - "theme_key": "orderedlist-modernist-master", + "orderedlist-modernist": { + "theme_key": "orderedlist-modernist", "file": "jekyll-modernist.md", "name": "modernist", "title": "Modernist", "github_username": "orderedlist", "repo": "orderedlist/modernist", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/orderedlist/modernist", "demo_url": "https://orderedlist.com/modernist/", - "stars": 452, - "forks": 94, - "open_issues": 7, + "stars": 465, + "forks": 96, + "open_issues": 6, "last_commit": "2013-10-29T04:34:57Z", "created_at": "2012-04-05T13:57:48Z", "description": "A Theme for GitHub Pages", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/orderedlist-modernist-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/orderedlist-modernist-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/orderedlist-modernist-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/orderedlist-modernist.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/orderedlist-modernist.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/orderedlist-modernist-2x.jpg" } }, - "osogrizz-gatsby-starter-santa-fe-master": { - "theme_key": "osogrizz-gatsby-starter-santa-fe-master", + "osogrizz-gatsby-starter-santa-fe": { + "theme_key": "osogrizz-gatsby-starter-santa-fe", "file": "gatsby-starter-santa-fe.md", "name": "gatsby-starter-santa-fe", "title": "Gatsby Starter Santa Fe", "github_username": "osogrizz", "repo": "osogrizz/gatsby-starter-santa-fe", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/osogrizz/gatsby-starter-santa-fe", "demo_url": "https://gatsby-starter-santa-fe.netlify.com/", "stars": 1, @@ -15260,476 +19129,504 @@ "last_commit": "2019-05-08T05:13:22Z", "created_at": "2019-01-25T22:42:31Z", "description": null, - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/osogrizz-gatsby-starter-santa-fe-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/osogrizz-gatsby-starter-santa-fe-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/osogrizz-gatsby-starter-santa-fe-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/osogrizz-gatsby-starter-santa-fe.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/osogrizz-gatsby-starter-santa-fe.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/osogrizz-gatsby-starter-santa-fe-2x.jpg" } }, - "ovidiumihaibelciug-gatsby-firebase-starter-master": { - "theme_key": "ovidiumihaibelciug-gatsby-firebase-starter-master", + "ovidiumihaibelciug-gatsby-firebase-starter": { + "theme_key": "ovidiumihaibelciug-gatsby-firebase-starter", "file": "gatsby-firebase-starter.md", "name": "gatsby-firebase-starter", "title": "Gatsby Firebase Starter", "github_username": "ovidiumihaibelciug", "repo": "ovidiumihaibelciug/gatsby-firebase-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ovidiumihaibelciug/gatsby-firebase-starter", "demo_url": "https://gatsby-firebase-starter.netlify.com/", - "stars": 54, - "forks": 17, - "open_issues": 3, + "stars": 60, + "forks": 18, + "open_issues": 19, "last_commit": "2020-03-31T05:56:15Z", "created_at": "2019-07-20T08:11:06Z", "description": "🔥 Starter Project / Boilerplate for Authentication and creating Dynamic pages from collections with Firebase and Gatsby.js. ", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ovidiumihaibelciug-gatsby-firebase-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ovidiumihaibelciug-gatsby-firebase-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ovidiumihaibelciug-gatsby-firebase-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ovidiumihaibelciug-gatsby-firebase-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ovidiumihaibelciug-gatsby-firebase-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ovidiumihaibelciug-gatsby-firebase-starter-2x.jpg" } }, - "ozgrozer-dasper-master": { - "theme_key": "ozgrozer-dasper-master", + "ozgrozer-dasper": { + "theme_key": "ozgrozer-dasper", "file": "jekyll-dasper.md", "name": "dasper", "title": "Dasper", "github_username": "ozgrozer", "repo": "ozgrozer/dasper", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ozgrozer/dasper", "demo_url": "https://ozgrozer.github.io/dasper/", - "stars": 73, - "forks": 54, + "stars": 77, + "forks": 59, "open_issues": 4, "last_commit": "2019-05-31T17:06:13Z", "created_at": "2016-05-15T14:47:40Z", "description": "A Jekyll theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ozgrozer-dasper-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ozgrozer-dasper-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ozgrozer-dasper-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ozgrozer-dasper.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ozgrozer-dasper.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ozgrozer-dasper-2x.jpg" + } + }, + "p0wex-gesko": { + "theme_key": "p0wex-gesko", + "file": "Gesko.md", + "name": "Gesko", + "title": "Gesko", + "github_username": "P0WEX", + "repo": "P0WEX/Gesko", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/P0WEX/Gesko", + "demo_url": "https://p0wex.github.io/Gesko/", + "stars": 118, + "forks": 54, + "open_issues": 1, + "last_commit": "2022-02-09T20:35:02Z", + "created_at": "2021-05-03T10:42:54Z", + "description": "Gesko is a simple and minimalistic jekyll blogging theme.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/p0wex-gesko.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/p0wex-gesko.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/p0wex-gesko-2x.jpg" } }, - "pablovila-gatsby-starter-wordpress-community-master": { - "theme_key": "pablovila-gatsby-starter-wordpress-community-master", + "pablovila-gatsby-starter-wordpress-community": { + "theme_key": "pablovila-gatsby-starter-wordpress-community", "file": "gatsby-starter-wordpress-community.md", "name": "gatsby-starter-wordpress-community", "title": "Gatsby Wordpress Community", "github_username": "pablovila", "repo": "pablovila/gatsby-starter-wordpress-community", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/pablovila/gatsby-starter-wordpress-community", "demo_url": "https://gatsby-starter-wordpress-community.netlify.com/", "stars": 9, - "forks": 8, - "open_issues": 8, + "forks": 9, + "open_issues": 29, "last_commit": "2019-09-10T09:06:00Z", "created_at": "2019-02-20T20:16:18Z", "description": "Gatsby Starter to launch your blog from WordPress", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/pablovila-gatsby-starter-wordpress-community-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pablovila-gatsby-starter-wordpress-community-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pablovila-gatsby-starter-wordpress-community-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/pablovila-gatsby-starter-wordpress-community.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pablovila-gatsby-starter-wordpress-community.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pablovila-gatsby-starter-wordpress-community-2x.jpg" } }, - "pacollins-hugo-future-imperfect-slim-master": { - "theme_key": "pacollins-hugo-future-imperfect-slim-master", + "pacollins-hugo-future-imperfect-slim": { + "theme_key": "pacollins-hugo-future-imperfect-slim", "file": "hugo-future-imperfect-slim.md", "name": "hugo-future-imperfect-slim", "title": "Future Imperfect Slim", "github_username": "pacollins", "repo": "pacollins/hugo-future-imperfect-slim", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/pacollins/hugo-future-imperfect-slim", "demo_url": "https://themes.gohugo.io/theme/hugo-future-imperfect-slim/", - "stars": 220, - "forks": 160, - "open_issues": 21, - "last_commit": "2020-12-18T22:11:06Z", + "stars": 269, + "forks": 184, + "open_issues": 26, + "last_commit": "2021-07-04T02:14:29Z", "created_at": "2019-04-06T17:48:53Z", "description": "Multilingual Blogging Theme for Hugo | Check the Wiki for Documentation", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/pacollins-hugo-future-imperfect-slim-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pacollins-hugo-future-imperfect-slim-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pacollins-hugo-future-imperfect-slim-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/pacollins-hugo-future-imperfect-slim.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pacollins-hugo-future-imperfect-slim.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pacollins-hugo-future-imperfect-slim-2x.jpg" } }, - "pandasekh-jekyll-podcaster-master": { - "theme_key": "pandasekh-jekyll-podcaster-master", + "pandasekh-jekyll-podcaster": { + "theme_key": "pandasekh-jekyll-podcaster", "file": "jekyll-podcaster.md", "name": "Jekyll-Podcaster", "title": "jekyll Podcaster", "github_username": "PandaSekh", "repo": "PandaSekh/Jekyll-Podcaster", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/PandaSekh/Jekyll-Podcaster", "demo_url": "https://jekyll-podcaster.netlify.app/", - "stars": 15, - "forks": 6, + "stars": 47, + "forks": 20, "open_issues": 0, - "last_commit": "2020-11-08T18:45:38Z", + "last_commit": "2022-09-12T18:25:34Z", "created_at": "2020-05-26T21:38:52Z", - "description": "Podcaster is a dynamic Jekyll theme built for... Podcasters!", - "stale": false, + "description": "🎙 Podcaster is a dynamic Jekyll theme built for podcasters!", "images": { - "hires": "https://www.jamstackthemes.dev/capture/pandasekh-jekyll-podcaster-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pandasekh-jekyll-podcaster-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pandasekh-jekyll-podcaster-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/pandasekh-jekyll-podcaster.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pandasekh-jekyll-podcaster.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pandasekh-jekyll-podcaster-2x.jpg" } }, - "pandasekh-jekyll-yamt-master": { - "theme_key": "pandasekh-jekyll-yamt-master", + "pandasekh-jekyll-yamt": { + "theme_key": "pandasekh-jekyll-yamt", "file": "jekyll-yamt.md", "name": "Jekyll-YAMT", "title": "YAMT", "github_username": "PandaSekh", "repo": "PandaSekh/Jekyll-YAMT", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/PandaSekh/Jekyll-YAMT", "demo_url": "https://yamt.netlify.app/", - "stars": 41, - "forks": 52, + "stars": 70, + "forks": 83, "open_issues": 0, - "last_commit": "2021-01-02T21:49:55Z", + "last_commit": "2021-02-27T12:36:58Z", "created_at": "2020-05-12T19:18:18Z", "description": "YAMT is a minimal Jekyll theme focused on simplicity and ease-of-use.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/pandasekh-jekyll-yamt-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pandasekh-jekyll-yamt-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pandasekh-jekyll-yamt-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/pandasekh-jekyll-yamt.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pandasekh-jekyll-yamt.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pandasekh-jekyll-yamt-2x.jpg" } }, - "panr-gatsby-starter-hello-friend-master": { - "theme_key": "panr-gatsby-starter-hello-friend-master", + "panr-gatsby-starter-hello-friend": { + "theme_key": "panr-gatsby-starter-hello-friend", "file": "gatsby-hello-friend.md", "name": "gatsby-starter-hello-friend", "title": "Gatsby Hello Friend", "github_username": "panr", "repo": "panr/gatsby-starter-hello-friend", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/panr/gatsby-starter-hello-friend", "demo_url": "https://gatsby-hello-friend.now.sh/", - "stars": 158, - "forks": 67, - "open_issues": 7, + "stars": 170, + "forks": 79, + "open_issues": 8, "last_commit": "2020-06-13T13:58:44Z", "created_at": "2019-01-03T15:03:41Z", "description": "Pretty basic starter for Gatsby that covers all of the essentials. All you have to do is start typing!", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/panr-gatsby-starter-hello-friend-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/panr-gatsby-starter-hello-friend-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/panr-gatsby-starter-hello-friend-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/panr-gatsby-starter-hello-friend.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/panr-gatsby-starter-hello-friend.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/panr-gatsby-starter-hello-friend-2x.jpg" } }, - "panr-hugo-theme-hello-friend-master": { - "theme_key": "panr-hugo-theme-hello-friend-master", + "panr-hugo-theme-hello-friend": { + "theme_key": "panr-hugo-theme-hello-friend", "file": "hugo-hello-friend.md", "name": "hugo-theme-hello-friend", "title": "hello-friend", "github_username": "panr", "repo": "panr/hugo-theme-hello-friend", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/panr/hugo-theme-hello-friend", "demo_url": "https://hugo-hello-friend.now.sh/", - "stars": 543, - "forks": 668, - "open_issues": 32, - "last_commit": "2020-10-21T08:02:48Z", + "stars": 969, + "forks": 1066, + "open_issues": 23, + "last_commit": "2023-01-07T22:52:12Z", "created_at": "2018-07-20T17:13:14Z", "description": "Pretty basic theme for Hugo that covers all of the essentials. All you have to do is start typing!", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/panr-hugo-theme-hello-friend-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/panr-hugo-theme-hello-friend-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/panr-hugo-theme-hello-friend-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/panr-hugo-theme-hello-friend.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/panr-hugo-theme-hello-friend.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/panr-hugo-theme-hello-friend-2x.jpg" } }, - "panr-hugo-theme-terminal-master": { - "theme_key": "panr-hugo-theme-terminal-master", + "panr-hugo-theme-terminal": { + "theme_key": "panr-hugo-theme-terminal", "file": "hugo-theme-terminal.md", "name": "hugo-theme-terminal", "title": "Terminal", "github_username": "panr", "repo": "panr/hugo-theme-terminal", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/panr/hugo-theme-terminal", "demo_url": "https://hugo-terminal.now.sh/", - "stars": 759, - "forks": 307, - "open_issues": 29, - "last_commit": "2021-01-10T09:27:51Z", + "stars": 1626, + "forks": 592, + "open_issues": 19, + "last_commit": "2023-01-21T22:12:58Z", "created_at": "2019-01-27T23:58:03Z", "description": "A simple, retro theme for Hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/panr-hugo-theme-terminal-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/panr-hugo-theme-terminal-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/panr-hugo-theme-terminal-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/panr-hugo-theme-terminal.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/panr-hugo-theme-terminal.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/panr-hugo-theme-terminal-2x.jpg" } }, - "panxw-panxw.github.com-master": { - "theme_key": "panxw-panxw.github.com-master", + "panxw-panxw.github.com": { + "theme_key": "panxw-panxw.github.com", "file": "jekyll-simple-elegant-theme.md", "name": "panxw.github.com", "title": "Simple Elegant", "github_username": "panxw", "repo": "panxw/panxw.github.com", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/panxw/panxw.github.com", "demo_url": "https://www.panxw.com/", "stars": 4, - "forks": 7, - "open_issues": 2, + "forks": 9, + "open_issues": 1, "last_commit": "2020-04-06T10:12:31Z", "created_at": "2015-08-21T04:20:04Z", "description": "Blog theme powered by Jekyll.", - "stale": false + "images": { + "hires": "https://www.jamstackthemes.dev/capture/panxw-panxw.github.com.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/panxw-panxw.github.com.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/panxw-panxw.github.com-2x.jpg" + } }, - "parmsang-gatsby-starter-ecommerce-master": { - "theme_key": "parmsang-gatsby-starter-ecommerce-master", + "parmsang-gatsby-starter-ecommerce": { + "theme_key": "parmsang-gatsby-starter-ecommerce", "file": "gatsby-starter-ecommerce.md", "name": "gatsby-starter-ecommerce", "title": "Gatsby Starter Ecommerce", "github_username": "parmsang", "repo": "parmsang/gatsby-starter-ecommerce", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/parmsang/gatsby-starter-ecommerce", "demo_url": "https://parmsang.github.io/gatsby-starter-ecommerce/", - "stars": 434, - "forks": 137, - "open_issues": 2, - "last_commit": "2021-01-04T20:24:57Z", + "stars": 491, + "forks": 150, + "open_issues": 18, + "last_commit": "2021-04-11T15:37:52Z", "created_at": "2018-06-08T07:15:32Z", "description": "Gatsby starter for creating an eCommerce site using the Moltin eCommerce Api", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/parmsang-gatsby-starter-ecommerce-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/parmsang-gatsby-starter-ecommerce-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/parmsang-gatsby-starter-ecommerce-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/parmsang-gatsby-starter-ecommerce.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/parmsang-gatsby-starter-ecommerce.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/parmsang-gatsby-starter-ecommerce-2x.jpg" } }, - "parsiya-hugo-octopress-master": { - "theme_key": "parsiya-hugo-octopress-master", + "parsiya-hugo-octopress": { + "theme_key": "parsiya-hugo-octopress", "file": "hugo-octopress-theme.md", "name": "Hugo-Octopress", "title": "Hugo-Octopress", "github_username": "parsiya", "repo": "parsiya/Hugo-Octopress", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/parsiya/Hugo-Octopress", "demo_url": "https://hugo-octopress-test.s3-website-us-east-1.amazonaws.com/", - "stars": 98, - "forks": 37, - "open_issues": 14, - "last_commit": "2021-01-09T23:58:14Z", + "stars": 103, + "forks": 35, + "open_issues": 11, + "last_commit": "2021-04-16T20:55:36Z", "created_at": "2016-02-02T06:55:49Z", "description": "Port of the classic Octopress theme to Hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/parsiya-hugo-octopress-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/parsiya-hugo-octopress-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/parsiya-hugo-octopress-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/parsiya-hugo-octopress.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/parsiya-hugo-octopress.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/parsiya-hugo-octopress-2x.jpg" } }, - "pasindud-jekyll-masonry-master": { - "theme_key": "pasindud-jekyll-masonry-master", + "pasindud-jekyll-masonry": { + "theme_key": "pasindud-jekyll-masonry", "file": "jekyll-masonry.md", "name": "jekyll-masonry", "title": "Jekyll Masonry", "github_username": "pasindud", "repo": "pasindud/jekyll-masonry", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/pasindud/jekyll-masonry", "demo_url": "https://pasindud.github.io/", - "stars": 36, - "forks": 41, + "stars": 37, + "forks": 42, "open_issues": 1, "last_commit": "2015-09-08T11:59:51Z", "created_at": "2014-09-03T14:35:16Z", "description": "Jekyll theme based on masonry", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/pasindud-jekyll-masonry-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pasindud-jekyll-masonry-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pasindud-jekyll-masonry-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/pasindud-jekyll-masonry.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pasindud-jekyll-masonry.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pasindud-jekyll-masonry-2x.jpg" } }, - "patdryburgh-hitchens-master": { - "theme_key": "patdryburgh-hitchens-master", + "patdryburgh-hitchens": { + "theme_key": "patdryburgh-hitchens", "file": "jekyll-hitchens.md", "name": "hitchens", "title": "Hitchens", "github_username": "patdryburgh", "repo": "patdryburgh/hitchens", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/patdryburgh/hitchens", "demo_url": "https://patdryburgh.github.io/hitchens/", - "stars": 151, - "forks": 153, - "open_issues": 0, + "stars": 241, + "forks": 277, + "open_issues": 4, "last_commit": "2020-10-01T20:42:29Z", "created_at": "2018-07-31T01:12:09Z", "description": "An inarguably well-designed Jekyll theme.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/patdryburgh-hitchens-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/patdryburgh-hitchens-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/patdryburgh-hitchens-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/patdryburgh-hitchens.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/patdryburgh-hitchens.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/patdryburgh-hitchens-2x.jpg" } }, - "patricoferris-gatsby-starter-notes-master": { - "theme_key": "patricoferris-gatsby-starter-notes-master", + "patricoferris-gatsby-starter-notes": { + "theme_key": "patricoferris-gatsby-starter-notes", "file": "gatsby-starter-notes.md", "name": "gatsby-starter-notes", "title": "Gatsby Starter Notes", "github_username": "patricoferris", "repo": "patricoferris/gatsby-starter-notes", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/patricoferris/gatsby-starter-notes", "demo_url": "https://gatsby-starter-notes.netlify.com/", - "stars": 11, + "stars": 10, "forks": 4, "open_issues": 2, "last_commit": "2018-12-03T09:30:30Z", "created_at": "2018-12-02T23:27:51Z", "description": "Gatsby starter for creating notes organised by subject and topic", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/patricoferris-gatsby-starter-notes-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/patricoferris-gatsby-starter-notes-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/patricoferris-gatsby-starter-notes-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/patricoferris-gatsby-starter-notes.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/patricoferris-gatsby-starter-notes.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/patricoferris-gatsby-starter-notes-2x.jpg" } }, - "pdevty-material-design-master": { - "theme_key": "pdevty-material-design-master", + "pdevty-material-design": { + "theme_key": "pdevty-material-design", "file": "hugo-material-design.md", "name": "material-design", "title": "Material Design", "github_username": "pdevty", "repo": "pdevty/material-design", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/pdevty/material-design", "demo_url": "https://themes.gohugo.io/theme/material-design/", - "stars": 60, - "forks": 34, + "stars": 58, + "forks": 32, "open_issues": 13, "last_commit": "2016-08-28T00:21:25Z", "created_at": "2015-05-15T13:44:38Z", "description": "Simple Material Design Theme for Hugo", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/pdevty-material-design-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pdevty-material-design-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pdevty-material-design-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/pdevty-material-design.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pdevty-material-design.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pdevty-material-design-2x.jpg" } }, - "pdevty-polymer-master": { - "theme_key": "pdevty-polymer-master", + "pdevty-polymer": { + "theme_key": "pdevty-polymer", "file": "hugo-polymer-theme.md", "name": "polymer", "title": "Polymer", "github_username": "pdevty", "repo": "pdevty/polymer", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/pdevty/polymer", "demo_url": "https://themes.gohugo.io/theme/polymer/", - "stars": 23, + "stars": 22, "forks": 14, "open_issues": 4, "last_commit": "2015-06-30T13:41:33Z", "created_at": "2015-06-30T09:07:58Z", "description": "Polymer Material Design Theme for Hugo", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/pdevty-polymer-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pdevty-polymer-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pdevty-polymer-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/pdevty-polymer.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pdevty-polymer.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pdevty-polymer-2x.jpg" } }, - "peaceiris-hugo-theme-iris-master": { - "theme_key": "peaceiris-hugo-theme-iris-master", + "peaceiris-hugo-theme-iris": { + "theme_key": "peaceiris-hugo-theme-iris", "file": "hugo-theme-iris.md", "name": "hugo-theme-iris", "title": "Hugo Iris", "github_username": "peaceiris", "repo": "peaceiris/hugo-theme-iris", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/peaceiris/hugo-theme-iris", "demo_url": "https://hugothemeiris.peaceiris.app", - "stars": 17, - "forks": 10, - "open_issues": 27, - "last_commit": "2021-01-10T10:39:40Z", + "stars": 58, + "forks": 18, + "open_issues": 42, + "last_commit": "2023-01-20T15:11:50Z", "created_at": "2018-07-28T14:56:18Z", "description": "Hugo IRIS Theme - Portfolio and Blog", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/peaceiris-hugo-theme-iris-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/peaceiris-hugo-theme-iris-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/peaceiris-hugo-theme-iris-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/peaceiris-hugo-theme-iris.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/peaceiris-hugo-theme-iris.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/peaceiris-hugo-theme-iris-2x.jpg" } }, - "peahatlanding-plain-webcomic-master": { - "theme_key": "peahatlanding-plain-webcomic-master", + "peahatlanding-plain-webcomic": { + "theme_key": "peahatlanding-plain-webcomic", "file": "jekyll-plain-webcomic-theme.md", "name": "Plain-Webcomic", "title": "Plain Webcomic", "github_username": "peahatlanding", "repo": "peahatlanding/Plain-Webcomic", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/peahatlanding/Plain-Webcomic", "demo_url": "https://peahatlanding.github.io/Plain-Webcomic/", - "stars": 9, - "forks": 10, - "open_issues": 0, + "stars": 12, + "forks": 12, + "open_issues": 1, "last_commit": "2017-08-16T18:23:49Z", "created_at": "2017-07-12T03:19:34Z", "description": "A simple webcomic theme for Jekyll. Built using Bootstrap.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/peahatlanding-plain-webcomic-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/peahatlanding-plain-webcomic-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/peahatlanding-plain-webcomic-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/peahatlanding-plain-webcomic.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/peahatlanding-plain-webcomic.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/peahatlanding-plain-webcomic-2x.jpg" } }, - "pelican-elegant-elegant-master": { - "theme_key": "pelican-elegant-elegant-master", + "pelican-elegant-elegant": { + "theme_key": "pelican-elegant-elegant", "file": "pelican-elegant.md", "name": "elegant", "title": "elegant", "github_username": "Pelican-Elegant", "repo": "Pelican-Elegant/elegant", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Pelican-Elegant/elegant", "demo_url": "https://elegant.oncrashreboot.com/", - "stars": 237, - "forks": 172, - "open_issues": 72, - "last_commit": "2020-10-18T11:48:28Z", + "stars": 274, + "forks": 184, + "open_issues": 89, + "last_commit": "2022-06-20T06:03:34Z", "created_at": "2012-05-25T17:33:51Z", "description": "Best theme for Pelican Static Blog Generator", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/pelican-elegant-elegant-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pelican-elegant-elegant-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pelican-elegant-elegant-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/pelican-elegant-elegant.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pelican-elegant-elegant.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pelican-elegant-elegant-2x.jpg" } }, - "penibelst-jekyll-noita-gh-pages": { - "theme_key": "penibelst-jekyll-noita-gh-pages", + "penibelst-jekyll-noita": { + "theme_key": "penibelst-jekyll-noita", "file": "jekyll-noita.md", "name": "jekyll-noita", "title": "Noita", "github_username": "doktorbro", "repo": "doktorbro/jekyll-noita", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/doktorbro/jekyll-noita", "demo_url": "https://noita.penibelst.de/", "stars": 39, @@ -15738,246 +19635,251 @@ "last_commit": "2019-05-05T12:56:31Z", "created_at": "2014-04-16T20:52:20Z", "description": "Noita is a Jekyll theme built with Foundation", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/penibelst-jekyll-noita-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/penibelst-jekyll-noita-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/penibelst-jekyll-noita-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/penibelst-jekyll-noita.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/penibelst-jekyll-noita.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/penibelst-jekyll-noita-2x.jpg" } }, - "petrsvihlik-statiq-starter-kontent-lumen-master": { - "theme_key": "petrsvihlik-statiq-starter-kontent-lumen-master", - "file": "statiq-starter-kontent-lumen.md", - "name": "statiq-starter-kontent-lumen", - "title": "Statiq Starter Kontent Lumen", - "github_username": "Kentico", - "repo": "Kentico/statiq-starter-kontent-lumen", - "branch": "master", - "github_url": "https://github.com/Kentico/statiq-starter-kontent-lumen", - "demo_url": "https://petrsvihlik.github.io/statiq-starter-kontent-lumen/", - "stars": 3, - "forks": 2, - "open_issues": 3, - "last_commit": "2020-11-19T11:48:19Z", - "created_at": "2020-10-09T07:32:02Z", - "description": "Lumen is a minimal, lightweight, and mobile-first starter for creating blogs using Statiq and Kentico Kontent.", - "stale": false - }, - "philhawksworth-eleventyone-master": { - "theme_key": "philhawksworth-eleventyone-master", + "philhawksworth-eleventyone": { + "theme_key": "philhawksworth-eleventyone", "file": "eleventyone.md", "name": "eleventyone", "title": "Eleventyone", "github_username": "philhawksworth", "repo": "philhawksworth/eleventyone", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/philhawksworth/eleventyone", "demo_url": "https://eleventyone.netlify.com/", - "stars": 369, - "forks": 100, - "open_issues": 9, - "last_commit": "2020-08-17T07:32:07Z", + "stars": 449, + "forks": 114, + "open_issues": 17, + "last_commit": "2021-01-18T11:29:03Z", "created_at": "2018-03-30T19:45:51Z", "description": "A scaffold for a quick start building with the Eleventy SSG", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/philhawksworth-eleventyone-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/philhawksworth-eleventyone-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/philhawksworth-eleventyone-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/philhawksworth-eleventyone.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/philhawksworth-eleventyone.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/philhawksworth-eleventyone-2x.jpg" } }, - "philhawksworth-hawksworx.com-master": { - "theme_key": "philhawksworth-hawksworx.com-master", + "philhawksworth-hawksworx.com": { + "theme_key": "philhawksworth-hawksworx.com", "file": "hawksworx.md", "name": "hawksworx.com", "title": "Hawksworth", "github_username": "philhawksworth", "repo": "philhawksworth/hawksworx.com", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/philhawksworth/hawksworx.com", "demo_url": "https://www.hawksworx.com/", - "stars": 80, - "forks": 34, - "open_issues": 9, - "last_commit": "2020-08-31T13:36:36Z", + "stars": 102, + "forks": 37, + "open_issues": 18, + "last_commit": "2021-09-23T10:19:16Z", "created_at": "2012-07-23T11:28:15Z", "description": "My hawksworx.com blog site, powered by Eleventy and Netlify", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/philhawksworth-hawksworx.com-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/philhawksworth-hawksworx.com-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/philhawksworth-hawksworx.com-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/philhawksworth-hawksworx.com.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/philhawksworth-hawksworx.com.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/philhawksworth-hawksworx.com-2x.jpg" } }, - "philhawksworth-medium-export-master": { - "theme_key": "philhawksworth-medium-export-master", + "philhawksworth-medium-export": { + "theme_key": "philhawksworth-medium-export", "file": "medium-export.md", "name": "medium-export", "title": "Medium Export", "github_username": "philhawksworth", "repo": "philhawksworth/medium-export", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/philhawksworth/medium-export", "demo_url": "https://rss-jamstack.netlify.com/", - "stars": 26, - "forks": 7, - "open_issues": 8, + "stars": 40, + "forks": 11, + "open_issues": 20, "last_commit": "2019-01-31T15:33:51Z", "created_at": "2018-09-06T12:55:13Z", "description": "A demo of generating an JAMstack site from an RSS feed", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/philhawksworth-medium-export-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/philhawksworth-medium-export-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/philhawksworth-medium-export-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/philhawksworth-medium-export.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/philhawksworth-medium-export.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/philhawksworth-medium-export-2x.jpg" } }, - "phlow-feeling-responsive-gh-pages": { - "theme_key": "phlow-feeling-responsive-gh-pages", + "phlow-feeling-responsive": { + "theme_key": "phlow-feeling-responsive", "file": "feeling-responsive.md", "name": "feeling-responsive", "title": "Feeling Responsive", "github_username": "Phlow", "repo": "Phlow/feeling-responsive", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/Phlow/feeling-responsive", "demo_url": "https://phlow.github.io/feeling-responsive/", - "stars": 633, - "forks": 951, - "open_issues": 21, - "last_commit": "2020-12-17T10:24:24Z", + "stars": 779, + "forks": 1169, + "open_issues": 3, + "last_commit": "2022-09-06T16:58:47Z", "created_at": "2014-08-17T10:32:01Z", "description": "»Feeling Responsive« is a free flexible theme for Jekyll built on Foundation framework. You can use it for your company site, as a portfolio or as a blog.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/phlow-feeling-responsive-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/phlow-feeling-responsive-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/phlow-feeling-responsive-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/phlow-feeling-responsive.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/phlow-feeling-responsive.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/phlow-feeling-responsive-2x.jpg" + } + }, + "piandhust-tailieubkhn": { + "theme_key": "piandhust-tailieubkhn", + "file": "tailieubkhn.md", + "name": "tailieubkhn", + "title": "tailieubkhn convert theme", + "github_username": "piandhust", + "repo": "piandhust/tailieubkhn", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/piandhust/tailieubkhn", + "demo_url": "https://piandhust.github.io/tailieubkhn/", + "stars": 8, + "forks": 1, + "open_issues": 0, + "last_commit": "2021-12-31T02:07:07Z", + "created_at": "2021-07-05T23:02:37Z", + "description": "Tool redirects domain from github pages to your website. See theme in Jamstack https://jamstackthemes.dev/theme/tailieubkhn/", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/piandhust-tailieubkhn.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/piandhust-tailieubkhn.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/piandhust-tailieubkhn-2x.jpg" } }, - "piducancore-gatsby-starter-apollo-netlify-master": { - "theme_key": "piducancore-gatsby-starter-apollo-netlify-master", + "piducancore-gatsby-starter-apollo-netlify": { + "theme_key": "piducancore-gatsby-starter-apollo-netlify", "file": "gatsby-starter-apollo-netlify.md", "name": "gatsby-starter-apollo-netlify", "title": "Gatsby Apollo Netlify", "github_username": "piducancore", "repo": "piducancore/gatsby-starter-apollo-netlify", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/piducancore/gatsby-starter-apollo-netlify", "demo_url": "https://gatsby-starter-apollo.netlify.com/", - "stars": 6, + "stars": 11, "forks": 1, "open_issues": 0, "last_commit": "2020-09-07T21:29:16Z", "created_at": "2019-07-24T20:30:38Z", "description": "This is an easy way to start developing fullstack GraphQL apps with Gatsby and Apollo Server (powered by Netlify functions).", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/piducancore-gatsby-starter-apollo-netlify-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/piducancore-gatsby-starter-apollo-netlify-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/piducancore-gatsby-starter-apollo-netlify-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/piducancore-gatsby-starter-apollo-netlify.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/piducancore-gatsby-starter-apollo-netlify.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/piducancore-gatsby-starter-apollo-netlify-2x.jpg" } }, - "pietromenna-jekyll-architect-theme-master": { - "theme_key": "pietromenna-jekyll-architect-theme-master", + "pietromenna-jekyll-architect-theme": { + "theme_key": "pietromenna-jekyll-architect-theme", "file": "jekyll-architect.md", "name": "jekyll-architect-theme", "title": "architect", "github_username": "pietromenna", "repo": "pietromenna/jekyll-architect-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/pietromenna/jekyll-architect-theme", "demo_url": "https://pietro.menna.net.br/jekyll-architect-theme/", - "stars": 86, - "forks": 65, + "stars": 95, + "forks": 74, "open_issues": 0, - "last_commit": "2018-01-13T11:42:50Z", + "last_commit": "2022-10-05T23:19:18Z", "created_at": "2014-04-06T18:05:02Z", "description": "Open Source version of the GitHub Pages theme, now for Jekyll. Demo at http://pietro.menna.net.br/jekyll-architect-theme/", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/pietromenna-jekyll-architect-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pietromenna-jekyll-architect-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pietromenna-jekyll-architect-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/pietromenna-jekyll-architect-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pietromenna-jekyll-architect-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pietromenna-jekyll-architect-theme-2x.jpg" } }, - "pietromenna-jekyll-cayman-theme-master": { - "theme_key": "pietromenna-jekyll-cayman-theme-master", + "pietromenna-jekyll-cayman-theme": { + "theme_key": "pietromenna-jekyll-cayman-theme", "file": "jekyll-cayman-theme.md", "name": "jekyll-cayman-theme", "title": "Cayman Theme", "github_username": "pietromenna", "repo": "pietromenna/jekyll-cayman-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/pietromenna/jekyll-cayman-theme", "demo_url": "https://jasonlong.github.io/cayman-theme/", - "stars": 225, - "forks": 207, + "stars": 239, + "forks": 222, "open_issues": 0, - "last_commit": "2017-12-06T02:56:18Z", + "last_commit": "2021-06-24T00:34:46Z", "created_at": "2016-02-12T19:24:16Z", "description": "A Jekyll theme for the responsive theme for GitHub Pages http://jasonlong.github.io/cayman-theme/", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/pietromenna-jekyll-cayman-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pietromenna-jekyll-cayman-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pietromenna-jekyll-cayman-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/pietromenna-jekyll-cayman-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pietromenna-jekyll-cayman-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pietromenna-jekyll-cayman-theme-2x.jpg" } }, - "piharpi-jekyll-klise-master": { - "theme_key": "piharpi-jekyll-klise-master", + "piharpi-jekyll-klise": { + "theme_key": "piharpi-jekyll-klise", "file": "jekyll-klise.md", "name": "jekyll-klise", "title": "Jekyll Klisé", "github_username": "piharpi", "repo": "piharpi/jekyll-klise", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/piharpi/jekyll-klise", "demo_url": "https://klise.now.sh", - "stars": 267, - "forks": 110, - "open_issues": 5, - "last_commit": "2020-12-17T00:10:57Z", + "stars": 648, + "forks": 270, + "open_issues": 14, + "last_commit": "2022-09-16T15:29:20Z", "created_at": "2019-03-03T04:02:13Z", - "description": ":beach_umbrella: Klisé is a minimalist Jekyll theme for running a personal site or blog, light & dark mode support. (https://klise.now.sh)", - "stale": false, + "description": ":beach_umbrella: Klisé is a minimalist Jekyll theme for running a personal site or blog, light & dark mode support. (https://klise.vercel.app)", "images": { - "hires": "https://www.jamstackthemes.dev/capture/piharpi-jekyll-klise-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/piharpi-jekyll-klise-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/piharpi-jekyll-klise-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/piharpi-jekyll-klise.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/piharpi-jekyll-klise.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/piharpi-jekyll-klise-2x.jpg" } }, - "pipporj-hugo-refresh-master": { - "theme_key": "pipporj-hugo-refresh-master", + "pipporj-hugo-refresh": { + "theme_key": "pipporj-hugo-refresh", "file": "hugo-refresh.md", "name": "hugo-refresh", "title": "Hugo ReFresh", "github_username": "PippoRJ", "repo": "PippoRJ/hugo-refresh", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/PippoRJ/hugo-refresh", "demo_url": "https://themes.gohugo.io/theme/hugo-fresh/", - "stars": 75, - "forks": 56, - "open_issues": 2, - "last_commit": "2020-11-05T16:51:18Z", + "stars": 98, + "forks": 64, + "open_issues": 3, + "last_commit": "2021-05-04T21:12:22Z", "created_at": "2019-07-01T23:19:32Z", "description": null, - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/pipporj-hugo-refresh-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pipporj-hugo-refresh-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pipporj-hugo-refresh-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/pipporj-hugo-refresh.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pipporj-hugo-refresh.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pipporj-hugo-refresh-2x.jpg" } }, - "pixelsign-gatsby-starter-tachyons-master": { - "theme_key": "pixelsign-gatsby-starter-tachyons-master", + "pixelsign-gatsby-starter-tachyons": { + "theme_key": "pixelsign-gatsby-starter-tachyons", "file": "gatsby-starter-tachyons.md", "name": "gatsby-starter-tachyons", "title": "Gatsby Starter Tachyons", "github_username": "pixelsign", "repo": "pixelsign/gatsby-starter-tachyons", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/pixelsign/gatsby-starter-tachyons", "demo_url": "https://gatsby-tachyons.netlify.com/", "stars": 19, @@ -15986,320 +19888,343 @@ "last_commit": "2018-09-23T16:32:52Z", "created_at": "2018-06-19T13:39:10Z", "description": "Simple starter demo", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/pixelsign-gatsby-starter-tachyons-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pixelsign-gatsby-starter-tachyons-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pixelsign-gatsby-starter-tachyons-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/pixelsign-gatsby-starter-tachyons.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pixelsign-gatsby-starter-tachyons.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pixelsign-gatsby-starter-tachyons-2x.jpg" } }, - "planetjekyll-jekyll-starter-theme-master": { - "theme_key": "planetjekyll-jekyll-starter-theme-master", + "planetjekyll-jekyll-starter-theme": { + "theme_key": "planetjekyll-jekyll-starter-theme", "file": "jekyll-planetjekyll-starter.md", "name": "jekyll-starter-theme", "title": "Planet Jekyll's Starter (Minimal)", "github_username": "henrythemes", "repo": "henrythemes/jekyll-starter-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/henrythemes/jekyll-starter-theme", - "demo_url": "http://planetjekyll.github.io/jekyll-starter-theme/", + "demo_url": "https://planetjekyll.github.io/jekyll-starter-theme/", "stars": 30, - "forks": 66, + "forks": 64, "open_issues": 0, "last_commit": "2017-01-11T05:35:17Z", "created_at": "2015-08-08T14:36:05Z", "description": "jekyll starter theme - minimial", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/planetjekyll-jekyll-starter-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/planetjekyll-jekyll-starter-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/planetjekyll-jekyll-starter-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/planetjekyll-jekyll-starter-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/planetjekyll-jekyll-starter-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/planetjekyll-jekyll-starter-theme-2x.jpg" } }, - "planetoftheweb-seven-master": { - "theme_key": "planetoftheweb-seven-master", + "planetoftheweb-seven": { + "theme_key": "planetoftheweb-seven", "file": "seven.md", "name": "seven", "title": "Seven", "github_username": "planetoftheweb", "repo": "planetoftheweb/seven", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/planetoftheweb/seven", "demo_url": "https://7ty.tech/", - "stars": 107, - "forks": 39, - "open_issues": 7, - "last_commit": "2020-04-01T00:11:19Z", + "stars": 126, + "forks": 45, + "open_issues": 26, + "last_commit": "2021-06-28T19:26:02Z", "created_at": "2018-11-02T04:32:06Z", "description": "Eleventy template using Bootstrap, Sass, Webpack, Vue.js powered search, includes lots of other features", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/planetoftheweb-seven-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/planetoftheweb-seven-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/planetoftheweb-seven-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/planetoftheweb-seven.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/planetoftheweb-seven.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/planetoftheweb-seven-2x.jpg" } }, - "platframe-platframe-master": { - "theme_key": "platframe-platframe-master", + "platframe-platframe": { + "theme_key": "platframe-platframe", "file": "platframe-default-starter.md", "name": "platframe", "title": "Platframe default starter", "github_username": "platframe", "repo": "platframe/platframe", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/platframe/platframe", "demo_url": "https://default.platframe.com/", - "stars": 33, - "forks": 12, - "open_issues": 6, - "last_commit": "2021-01-07T21:14:46Z", + "stars": 38, + "forks": 17, + "open_issues": 17, + "last_commit": "2021-02-19T22:51:41Z", "created_at": "2018-03-14T14:45:19Z", "description": "Structured, scalable and modular frontend development platform.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/platframe-platframe-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/platframe-platframe-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/platframe-platframe-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/platframe-platframe.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/platframe-platframe.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/platframe-platframe-2x.jpg" } }, - "pmarsceill-just-the-docs-master": { - "theme_key": "pmarsceill-just-the-docs-master", + "pmarsceill-just-the-docs": { + "theme_key": "pmarsceill-just-the-docs", "file": "just-the-docs.md", "name": "just-the-docs", "title": "Just The Docs", "github_username": "pmarsceill", "repo": "pmarsceill/just-the-docs", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/pmarsceill/just-the-docs", "demo_url": "https://pmarsceill.github.io/just-the-docs/", - "stars": 2455, - "forks": 1458, - "open_issues": 74, + "stars": 4002, + "forks": 2475, + "open_issues": 154, "last_commit": "2020-10-14T17:23:05Z", "created_at": "2017-11-08T16:22:28Z", "description": "A modern, high customizable, responsive Jekyll theme for documention with built-in search.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/pmarsceill-just-the-docs-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pmarsceill-just-the-docs-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pmarsceill-just-the-docs-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/pmarsceill-just-the-docs.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pmarsceill-just-the-docs.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pmarsceill-just-the-docs-2x.jpg" } }, - "poole-hyde-master": { - "theme_key": "poole-hyde-master", + "poole-hyde": { + "theme_key": "poole-hyde", "file": "jekyll-hyde.md", "name": "hyde", "title": "Hyde", "github_username": "poole", "repo": "poole/hyde", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/poole/hyde", "demo_url": "https://hyde.getpoole.com/", - "stars": 3023, - "forks": 3189, - "open_issues": 37, + "stars": 3432, + "forks": 3747, + "open_issues": 40, "last_commit": "2015-05-11T20:21:43Z", "created_at": "2013-02-07T07:01:38Z", "description": "A brazen two-column theme for Jekyll.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/poole-hyde-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/poole-hyde-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/poole-hyde-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/poole-hyde.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/poole-hyde.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/poole-hyde-2x.jpg" } }, - "poole-lanyon-master": { - "theme_key": "poole-lanyon-master", + "poole-lanyon": { + "theme_key": "poole-lanyon", "file": "jekyll-lanyon.md", "name": "lanyon", "title": "Lanyon", "github_username": "poole", "repo": "poole/lanyon", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/poole/lanyon", "demo_url": "https://lanyon.getpoole.com/", - "stars": 2767, - "forks": 2493, - "open_issues": 20, + "stars": 3078, + "forks": 2873, + "open_issues": 33, "last_commit": "2020-04-03T18:14:48Z", "created_at": "2013-12-28T07:53:04Z", "description": "A content-first, sliding sidebar theme for Jekyll.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/poole-lanyon-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/poole-lanyon-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/poole-lanyon-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/poole-lanyon.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/poole-lanyon.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/poole-lanyon-2x.jpg" } }, - "poole-poole-master": { - "theme_key": "poole-poole-master", + "poole-poole": { + "theme_key": "poole-poole", "file": "jekyll-poole.md", "name": "poole", "title": "Poole", "github_username": "poole", "repo": "poole/poole", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/poole/poole", "demo_url": "https://demo.getpoole.com/", - "stars": 2571, - "forks": 1350, - "open_issues": 14, + "stars": 2748, + "forks": 1751, + "open_issues": 12, "last_commit": "2020-05-28T04:37:27Z", "created_at": "2013-12-29T23:39:18Z", "description": "The Jekyll Butler. A no frills responsive Jekyll blog theme.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/poole-poole-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/poole-poole-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/poole-poole-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/poole-poole.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/poole-poole.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/poole-poole-2x.jpg" } }, - "portfolio-central-jekyll-instagram-portfolio-theme-gh-pages": { - "theme_key": "portfolio-central-jekyll-instagram-portfolio-theme-gh-pages", + "portfolio-central-jekyll-instagram-portfolio-theme": { + "theme_key": "portfolio-central-jekyll-instagram-portfolio-theme", "file": "jekyll-instagram-portfolio-theme.md", "name": "jekyll-instagram-portfolio-theme", "title": "Instagram portfolio theme", "github_username": "portfolio-central", "repo": "portfolio-central/jekyll-instagram-portfolio-theme", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/portfolio-central/jekyll-instagram-portfolio-theme", "demo_url": "https://portfolio-central.github.io/jekyll-instagram-portfolio-theme/", - "stars": 62, - "forks": 136, + "stars": 64, + "forks": 134, "open_issues": 4, "last_commit": "2017-02-14T18:41:55Z", "created_at": "2016-09-01T14:41:11Z", "description": "Jekyll Instagram Portfolio Theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/portfolio-central-jekyll-instagram-portfolio-theme-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/portfolio-central-jekyll-instagram-portfolio-theme-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/portfolio-central-jekyll-instagram-portfolio-theme-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/portfolio-central-jekyll-instagram-portfolio-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/portfolio-central-jekyll-instagram-portfolio-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/portfolio-central-jekyll-instagram-portfolio-theme-2x.jpg" } }, - "pranavrajs-limpid-master": { - "theme_key": "pranavrajs-limpid-master", + "pranavrajs-limpid": { + "theme_key": "pranavrajs-limpid", "file": "jekyll-limpid-minimal-theme.md", "name": "limpid", "title": "Limpid Theme", "github_username": "pranavrajs", "repo": "pranavrajs/limpid", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/pranavrajs/limpid", "demo_url": "https://pranavrajs.github.io/limpid/", "stars": 4, - "forks": 4, + "forks": 3, "open_issues": 1, "last_commit": "2017-03-07T03:51:31Z", "created_at": "2016-06-05T17:18:41Z", "description": "A clean, minimal theme for Jekyll blogs", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/pranavrajs-limpid-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pranavrajs-limpid-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pranavrajs-limpid-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/pranavrajs-limpid.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pranavrajs-limpid.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pranavrajs-limpid-2x.jpg" } }, - "pranavrajs-swift-master": { - "theme_key": "pranavrajs-swift-master", + "pranavrajs-swift": { + "theme_key": "pranavrajs-swift", "file": "jekyll-swift.md", "name": "swift", "title": "Swift", "github_username": "pranavrajs", "repo": "pranavrajs/swift", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/pranavrajs/swift", "demo_url": "https://pranavrajs.github.io/swift/", - "stars": 33, - "forks": 36, - "open_issues": 2, + "stars": 35, + "forks": 40, + "open_issues": 1, "last_commit": "2014-12-17T13:19:18Z", "created_at": "2014-11-28T18:43:16Z", "description": "A clean Minimal Blog theme for Jekyll , built with Bootswatch ", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/pranavrajs-swift-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pranavrajs-swift-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pranavrajs-swift-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/pranavrajs-swift.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/pranavrajs-swift.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/pranavrajs-swift-2x.jpg" + } + }, + "prezly-theme-nextjs-bea": { + "theme_key": "prezly-theme-nextjs-bea", + "file": "theme-nextjs-bea.md", + "name": "theme-nextjs-bea", + "title": "Prezly Bea Theme", + "github_username": "prezly", + "repo": "prezly/theme-nextjs-bea", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/prezly/theme-nextjs-bea", + "demo_url": "https://theme-nextjs-bea-the-good-newsroom.vercel.app/", + "stars": 25, + "forks": 5, + "open_issues": 5, + "last_commit": "2023-01-19T12:55:06Z", + "created_at": "2021-10-12T12:12:43Z", + "description": "News site built with NextJS, Typescript and Prezly SDK", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/prezly-theme-nextjs-bea.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/prezly-theme-nextjs-bea.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/prezly-theme-nextjs-bea-2x.jpg" } }, - "prio101-metaphor-jekyll-master": { - "theme_key": "prio101-metaphor-jekyll-master", + "prio101-metaphor-jekyll": { + "theme_key": "prio101-metaphor-jekyll", "file": "jekyll-metaphor.md", "name": "metaphor-jekyll", "title": "Metaphor", "github_username": "prio101", "repo": "prio101/metaphor-jekyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/prio101/metaphor-jekyll", - "demo_url": "http://mahabubislam.me", - "stars": 3, + "demo_url": "https://mahabubislam.me", + "stars": 4, "forks": 5, "open_issues": 0, "last_commit": "2015-02-05T11:37:31Z", "created_at": "2015-02-05T11:38:10Z", "description": "metaphor jekyll src", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/prio101-metaphor-jekyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/prio101-metaphor-jekyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/prio101-metaphor-jekyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/prio101-metaphor-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/prio101-metaphor-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/prio101-metaphor-jekyll-2x.jpg" } }, - "progrhyme-hugo-theme-bootie-docs-master": { - "theme_key": "progrhyme-hugo-theme-bootie-docs-master", + "progrhyme-hugo-theme-bootie-docs": { + "theme_key": "progrhyme-hugo-theme-bootie-docs", "file": "hugo-theme-bootie-docs.md", "name": "hugo-theme-bootie-docs", "title": "Bootie Docs", "github_username": "progrhyme", "repo": "progrhyme/hugo-theme-bootie-docs", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/progrhyme/hugo-theme-bootie-docs", "demo_url": "https://progrhy.me/bootie-docs-demo/", - "stars": 49, - "forks": 12, - "open_issues": 1, + "stars": 54, + "forks": 17, + "open_issues": 2, "last_commit": "2018-04-05T22:42:32Z", "created_at": "2015-04-19T10:27:41Z", "description": "A simple Hugo theme for documentation", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/progrhyme-hugo-theme-bootie-docs-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/progrhyme-hugo-theme-bootie-docs-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/progrhyme-hugo-theme-bootie-docs-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/progrhyme-hugo-theme-bootie-docs.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/progrhyme-hugo-theme-bootie-docs.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/progrhyme-hugo-theme-bootie-docs-2x.jpg" } }, - "projectpages-project-pages-gh-pages": { - "theme_key": "projectpages-project-pages-gh-pages", + "projectpages-project-pages": { + "theme_key": "projectpages-project-pages", "file": "jekyll-project-pages.md", "name": "project-pages", "title": "project-pages", "github_username": "projectpages", "repo": "projectpages/project-pages", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/projectpages/project-pages", "demo_url": "https://projectpages.github.io/project-pages/", - "stars": 119, - "forks": 348, - "open_issues": 12, + "stars": 136, + "forks": 355, + "open_issues": 13, "last_commit": "2017-04-04T06:08:47Z", "created_at": "2015-02-03T18:36:21Z", "description": "Fork this repo for a quick start. If \"Project Timeline\" or \"License\" appeared on your nav bar, Look Below!", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/projectpages-project-pages-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/projectpages-project-pages-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/projectpages-project-pages-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/projectpages-project-pages.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/projectpages-project-pages.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/projectpages-project-pages-2x.jpg" } }, - "prototypeinteractive-gatsby-react-boilerplate-master": { - "theme_key": "prototypeinteractive-gatsby-react-boilerplate-master", + "prototypeinteractive-gatsby-react-boilerplate": { + "theme_key": "prototypeinteractive-gatsby-react-boilerplate", "file": "gatsby-react-boilerplate.md", "name": "gatsby-react-boilerplate", "title": "Gatsby React Boilerplate", "github_username": "PrototypeInteractive", "repo": "PrototypeInteractive/gatsby-react-boilerplate", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/PrototypeInteractive/gatsby-react-boilerplate", "demo_url": "https://prototypeinteractive.github.io/gatsby-react-boilerplate/", "stars": 59, @@ -16308,2413 +20233,2919 @@ "last_commit": "2019-02-17T04:57:06Z", "created_at": "2017-10-13T18:45:57Z", "description": "Gatsbyjs boilerplate", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/prototypeinteractive-gatsby-react-boilerplate-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/prototypeinteractive-gatsby-react-boilerplate-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/prototypeinteractive-gatsby-react-boilerplate-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/prototypeinteractive-gatsby-react-boilerplate.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/prototypeinteractive-gatsby-react-boilerplate.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/prototypeinteractive-gatsby-react-boilerplate-2x.jpg" } }, - "puresyntax71-hugo-theme-chunky-poster-master": { - "theme_key": "puresyntax71-hugo-theme-chunky-poster-master", + "puresyntax71-hugo-theme-chunky-poster": { + "theme_key": "puresyntax71-hugo-theme-chunky-poster", "file": "hugo-theme-chunky-poster.md", "name": "hugo-theme-chunky-poster", "title": "Chunky Poster", "github_username": "puresyntax71", "repo": "puresyntax71/hugo-theme-chunky-poster", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/puresyntax71/hugo-theme-chunky-poster", "demo_url": "https://hugo-theme-chunky-poster.netlify.com", - "stars": 80, - "forks": 86, - "open_issues": 33, + "stars": 106, + "forks": 90, + "open_issues": 30, "last_commit": "2020-11-13T03:58:22Z", "created_at": "2019-12-17T05:13:18Z", "description": "A simple, bootstrap 4 based hugo blog theme.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/puresyntax71-hugo-theme-chunky-poster-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/puresyntax71-hugo-theme-chunky-poster-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/puresyntax71-hugo-theme-chunky-poster-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/puresyntax71-hugo-theme-chunky-poster.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/puresyntax71-hugo-theme-chunky-poster.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/puresyntax71-hugo-theme-chunky-poster-2x.jpg" } }, - "qingpingmeng-gatsby-starter-traveler-blog-master": { - "theme_key": "qingpingmeng-gatsby-starter-traveler-blog-master", + "qingpingmeng-gatsby-starter-traveler-blog": { + "theme_key": "qingpingmeng-gatsby-starter-traveler-blog", "file": "gatsby-starter-traveler-blog.md", "name": "gatsby-starter-traveler-blog", "title": "Gatsby Starter Traveler Blog", "github_username": "QingpingMeng", "repo": "QingpingMeng/gatsby-starter-traveler-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/QingpingMeng/gatsby-starter-traveler-blog", "demo_url": "https://traveler-blog.netlify.com", - "stars": 6, + "stars": 5, "forks": 2, - "open_issues": 11, - "last_commit": "2020-09-16T05:54:01Z", + "open_issues": 8, + "last_commit": "2022-08-17T05:33:11Z", "created_at": "2019-01-04T06:13:13Z", "description": null, - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/qingpingmeng-gatsby-starter-traveler-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/qingpingmeng-gatsby-starter-traveler-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/qingpingmeng-gatsby-starter-traveler-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/qingpingmeng-gatsby-starter-traveler-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/qingpingmeng-gatsby-starter-traveler-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/qingpingmeng-gatsby-starter-traveler-blog-2x.jpg" } }, - "qqhann-hugo-primer-master": { - "theme_key": "qqhann-hugo-primer-master", + "qqhann-hugo-primer": { + "theme_key": "qqhann-hugo-primer", "file": "hugo-primer-theme.md", "name": "hugo-primer", "title": "Hugo Primer", "github_username": "qqhann", "repo": "qqhann/hugo-primer", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/qqhann/hugo-primer", "demo_url": "https://themes.gohugo.io/theme/hugo-primer/", - "stars": 100, - "forks": 41, - "open_issues": 11, - "last_commit": "2020-06-15T09:06:11Z", + "stars": 112, + "forks": 45, + "open_issues": 13, + "last_commit": "2021-02-25T02:12:45Z", "created_at": "2018-05-23T10:25:28Z", "description": "Hugo theme based on GitHub's Primer CSS", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/qqhann-hugo-primer-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/qqhann-hugo-primer-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/qqhann-hugo-primer-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/qqhann-hugo-primer.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/qqhann-hugo-primer.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/qqhann-hugo-primer-2x.jpg" } }, - "qwtel-hydejack-master": { - "theme_key": "qwtel-hydejack-master", + "qwtel-hydejack": { + "theme_key": "qwtel-hydejack", "file": "jekyll-hydejack-theme.md", "name": "hydejack", "title": "Hydejack", "github_username": "hydecorp", "repo": "hydecorp/hydejack", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/hydecorp/hydejack", "demo_url": "https://qwtel.com/hydejack/", - "stars": 717, - "forks": 562, - "open_issues": 20, - "last_commit": "2020-10-01T06:01:34Z", + "stars": 735, + "forks": 567, + "open_issues": 18, + "last_commit": "2021-02-11T03:57:35Z", "created_at": "2016-02-26T12:45:54Z", "description": "A boutique Jekyll theme for hackers, nerds, and academics", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/qwtel-hydejack-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/qwtel-hydejack-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/qwtel-hydejack-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/qwtel-hydejack.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/qwtel-hydejack.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/qwtel-hydejack-2x.jpg" } }, - "railsr-autm-rb-master": { - "theme_key": "railsr-autm-rb-master", + "railsr-autm-rb": { + "theme_key": "railsr-autm-rb", "file": "jekyll-autm-rb.md", "name": "autm-rb", "title": "autm-rb", "github_username": "kirqe", "repo": "kirqe/autm-rb", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/kirqe/autm-rb", "demo_url": "https://kirqe.github.io/autm-rb/", "stars": 80, - "forks": 113, + "forks": 112, "open_issues": 1, "last_commit": "2017-04-02T21:14:04Z", "created_at": "2014-10-10T15:37:02Z", "description": "Jekyll theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/railsr-autm-rb-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/railsr-autm-rb-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/railsr-autm-rb-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/railsr-autm-rb.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/railsr-autm-rb.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/railsr-autm-rb-2x.jpg" } }, - "raniesantos-artisan-static-master": { - "theme_key": "raniesantos-artisan-static-master", + "raniesantos-artisan-static": { + "theme_key": "raniesantos-artisan-static", "file": "artisan-static.md", "name": "artisan-static", "title": "Artisan Static", "github_username": "raniesantos", "repo": "raniesantos/artisan-static", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/raniesantos/artisan-static", "demo_url": "https://artisanstatic.netlify.app/", - "stars": 35, - "forks": 18, + "stars": 41, + "forks": 30, "open_issues": 0, - "last_commit": "2020-11-02T20:19:12Z", + "last_commit": "2021-12-12T15:25:45Z", "created_at": "2018-08-20T18:05:33Z", "description": "A feature-rich starter template for building a static Jigsaw blog hosted on Netlify.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/raniesantos-artisan-static-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/raniesantos-artisan-static-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/raniesantos-artisan-static-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/raniesantos-artisan-static.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/raniesantos-artisan-static.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/raniesantos-artisan-static-2x.jpg" } }, - "raphadeluca-gatsby-starter-quiz-master": { - "theme_key": "raphadeluca-gatsby-starter-quiz-master", - "file": "gatsby-starter-quiz.md", - "name": "gatsby-starter-quiz", - "title": "Gatsby Starter Quiz", - "github_username": "raphadeluca", - "repo": "raphadeluca/gatsby-starter-quiz", + "razonyang-hugo-theme-bootstrap": { + "theme_key": "razonyang-hugo-theme-bootstrap", + "file": "hugo-bootstrap.md", + "name": "hugo-theme-bootstrap", + "title": "Hugo Bootstrap Theme", + "github_username": "razonyang", + "repo": "razonyang/hugo-theme-bootstrap", "branch": "master", - "github_url": "https://github.com/raphadeluca/gatsby-starter-quiz", - "demo_url": "https://gatsby-starter-quiz.netlify.com/", - "stars": 13, - "forks": 9, - "open_issues": 0, - "last_commit": "2019-05-16T14:53:50Z", - "created_at": "2019-04-13T20:22:30Z", - "description": ":grapes: Create rich quizzes with Gatsby and MDX", - "stale": true, + "default_branch": "master", + "github_url": "https://github.com/razonyang/hugo-theme-bootstrap", + "demo_url": "https://hugo-theme-bootstrap.netlify.app/", + "stars": 338, + "forks": 132, + "open_issues": 1, + "last_commit": "2023-01-23T03:50:16Z", + "created_at": "2020-10-15T13:20:45Z", + "description": "A fast, responsive, multipurpose and feature-rich Hugo theme.", "images": { - "hires": "https://www.jamstackthemes.dev/capture/raphadeluca-gatsby-starter-quiz-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/raphadeluca-gatsby-starter-quiz-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/raphadeluca-gatsby-starter-quiz-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/razonyang-hugo-theme-bootstrap.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/razonyang-hugo-theme-bootstrap.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/razonyang-hugo-theme-bootstrap-2x.jpg" } }, - "rcjach-hugo-webslides-master": { - "theme_key": "rcjach-hugo-webslides-master", + "rcjach-hugo-webslides": { + "theme_key": "rcjach-hugo-webslides", "file": "hugo-webslides.md", "name": "hugo-webslides", "title": "Hugo Webslides", "github_username": "RCJacH", "repo": "RCJacH/hugo-webslides", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/RCJacH/hugo-webslides", "demo_url": "https://rcjach.github.io/hugo-webslides/#slide=1", - "stars": 59, - "forks": 26, - "open_issues": 5, - "last_commit": "2020-03-25T04:07:06Z", + "stars": 114, + "forks": 39, + "open_issues": 4, + "last_commit": "2022-02-23T15:47:33Z", "created_at": "2019-08-09T08:35:08Z", "description": "This is a Hugo template to create WebSlides presentation using markdown.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/rcjach-hugo-webslides-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/rcjach-hugo-webslides-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/rcjach-hugo-webslides-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/rcjach-hugo-webslides.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/rcjach-hugo-webslides.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/rcjach-hugo-webslides-2x.jpg" } }, - "realorangeone-hugo-theme-revealjs-master": { - "theme_key": "realorangeone-hugo-theme-revealjs-master", + "realorangeone-hugo-theme-revealjs": { + "theme_key": "realorangeone-hugo-theme-revealjs", "file": "hugo-theme-revealjs.md", "name": "hugo-theme-revealjs", "title": "Revealjs", "github_username": "RealOrangeOne", "repo": "RealOrangeOne/hugo-theme-revealjs", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/RealOrangeOne/hugo-theme-revealjs", "demo_url": "https://hugo-theme-revealjs.netlify.com/#/", - "stars": 37, - "forks": 13, + "stars": 46, + "forks": 15, "open_issues": 0, "last_commit": "2018-01-07T11:28:25Z", "created_at": "2018-01-02T16:37:47Z", "description": "Use Hugo to build a presentation, powered by RevealJS", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/realorangeone-hugo-theme-revealjs-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/realorangeone-hugo-theme-revealjs-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/realorangeone-hugo-theme-revealjs-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/realorangeone-hugo-theme-revealjs.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/realorangeone-hugo-theme-revealjs.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/realorangeone-hugo-theme-revealjs-2x.jpg" } }, - "redvi-voyager-master": { - "theme_key": "redvi-voyager-master", + "redvi-voyager": { + "theme_key": "redvi-voyager", "file": "jekyll-voyager.md", "name": "voyager", "title": "Voyager", "github_username": "redVi", "repo": "redVi/voyager", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/redVi/voyager", "demo_url": "https://redvi.github.io/voyager/", - "stars": 37, - "forks": 60, - "open_issues": 0, - "last_commit": "2020-06-14T09:59:19Z", + "stars": 44, + "forks": 58, + "open_issues": 1, + "last_commit": "2021-09-24T07:04:21Z", "created_at": "2016-06-29T06:06:11Z", "description": "Just another jekyll theme.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/redvi-voyager-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/redvi-voyager-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/redvi-voyager-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/redvi-voyager.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/redvi-voyager.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/redvi-voyager-2x.jpg" } }, - "reeseschultz-11r-master": { - "theme_key": "reeseschultz-11r-master", + "reeseschultz-11r": { + "theme_key": "reeseschultz-11r", "file": "11ty-11r.md", "name": "11r", "title": "11r", "github_username": "reeseschultz", "repo": "reeseschultz/11r", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/reeseschultz/11r", "demo_url": "https://reeseschultz.github.io/11r/", - "stars": 50, - "forks": 7, - "open_issues": 0, - "last_commit": "2021-01-02T01:31:57Z", + "stars": 136, + "forks": 30, + "open_issues": 1, + "last_commit": "2022-06-24T15:21:40Z", "created_at": "2020-08-25T22:40:53Z", "description": "America's favorite Eleventy blog template.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/reeseschultz-11r-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/reeseschultz-11r-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/reeseschultz-11r-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/reeseschultz-11r.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/reeseschultz-11r.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/reeseschultz-11r-2x.jpg" } }, - "renvrant-gatsby-mdx-netlify-cms-starter-master": { - "theme_key": "renvrant-gatsby-mdx-netlify-cms-starter-master", + "renvrant-gatsby-mdx-netlify-cms-starter": { + "theme_key": "renvrant-gatsby-mdx-netlify-cms-starter", "file": "gatsby-mdx-netlify-cms-starter.md", "name": "gatsby-mdx-netlify-cms-starter", "title": "Mdx Netlify CMS", "github_username": "renvrant", "repo": "renvrant/gatsby-mdx-netlify-cms-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/renvrant/gatsby-mdx-netlify-cms-starter", "demo_url": "https://mystifying-mclean-5c7fce.netlify.com/", - "stars": 84, - "forks": 41, + "stars": 88, + "forks": 50, "open_issues": 5, "last_commit": "2020-01-25T22:31:32Z", "created_at": "2019-02-27T19:17:17Z", "description": "Gatsby-MDX with Netlify CMS. Support React components in your CMS editor!", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/renvrant-gatsby-mdx-netlify-cms-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/renvrant-gatsby-mdx-netlify-cms-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/renvrant-gatsby-mdx-netlify-cms-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/renvrant-gatsby-mdx-netlify-cms-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/renvrant-gatsby-mdx-netlify-cms-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/renvrant-gatsby-mdx-netlify-cms-starter-2x.jpg" } }, - "renyuanz-leonids-master": { - "theme_key": "renyuanz-leonids-master", + "renyuanz-leonids": { + "theme_key": "renyuanz-leonids", "file": "jekyll-leonids.md", "name": "leonids", "title": "Leonids", "github_username": "renyuanz", "repo": "renyuanz/leonids", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/renyuanz/leonids", "demo_url": "https://renyuanz.github.io/leonids", - "stars": 797, - "forks": 372, - "open_issues": 4, - "last_commit": "2020-10-13T05:54:56Z", + "stars": 863, + "forks": 362, + "open_issues": 18, + "last_commit": "2021-02-09T02:19:07Z", "created_at": "2015-08-22T20:45:38Z", "description": "A simple, fixed sidebar two columns Gatsby.js blog starter.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/renyuanz-leonids-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/renyuanz-leonids-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/renyuanz-leonids-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/renyuanz-leonids.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/renyuanz-leonids.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/renyuanz-leonids-2x.jpg" } }, - "resir014-gatsby-starter-typescript-plus-master": { - "theme_key": "resir014-gatsby-starter-typescript-plus-master", + "resir014-gatsby-starter-typescript-plus": { + "theme_key": "resir014-gatsby-starter-typescript-plus", "file": "gatsby-starter-typescript-plus.md", "name": "gatsby-starter-typescript-plus", "title": "Gatsby Starter Typescript Plus", "github_username": "resir014", "repo": "resir014/gatsby-starter-typescript-plus", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/resir014/gatsby-starter-typescript-plus", "demo_url": "https://gatsby-starter-typescript-plus.netlify.com/", - "stars": 176, - "forks": 37, - "open_issues": 1, - "last_commit": "2020-03-13T11:29:14Z", + "stars": 193, + "forks": 36, + "open_issues": 29, + "last_commit": "2021-03-08T10:45:20Z", "created_at": "2018-02-12T18:34:22Z", "description": "A starter kit for TypeScript-based Gatsby projects with sensible defaults.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/resir014-gatsby-starter-typescript-plus-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/resir014-gatsby-starter-typescript-plus-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/resir014-gatsby-starter-typescript-plus-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/resir014-gatsby-starter-typescript-plus.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/resir014-gatsby-starter-typescript-plus.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/resir014-gatsby-starter-typescript-plus-2x.jpg" } }, - "reuixiy-hugo-theme-meme-master": { - "theme_key": "reuixiy-hugo-theme-meme-master", + "reuixiy-hugo-theme-meme": { + "theme_key": "reuixiy-hugo-theme-meme", "file": "hugo-theme-meme.md", "name": "hugo-theme-meme", "title": "MemE", "github_username": "reuixiy", "repo": "reuixiy/hugo-theme-meme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/reuixiy/hugo-theme-meme", "demo_url": "https://themes.gohugo.io/theme/hugo-theme-meme/", - "stars": 410, - "forks": 117, - "open_issues": 24, - "last_commit": "2021-01-10T12:50:43Z", + "stars": 577, + "forks": 139, + "open_issues": 39, + "last_commit": "2021-08-26T17:20:04Z", "created_at": "2019-08-12T04:06:21Z", "description": "You can’t spell aWEsoME without MEME! 😝", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/reuixiy-hugo-theme-meme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/reuixiy-hugo-theme-meme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/reuixiy-hugo-theme-meme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/reuixiy-hugo-theme-meme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/reuixiy-hugo-theme-meme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/reuixiy-hugo-theme-meme-2x.jpg" } }, - "rhazdon-hugo-theme-hello-friend-ng-master": { - "theme_key": "rhazdon-hugo-theme-hello-friend-ng-master", + "rhazdon-hugo-theme-hello-friend-ng": { + "theme_key": "rhazdon-hugo-theme-hello-friend-ng", "file": "hello-friend-ng.md", "name": "hugo-theme-hello-friend-ng", "title": "Hello Friend Ng", "github_username": "rhazdon", "repo": "rhazdon/hugo-theme-hello-friend-ng", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/rhazdon/hugo-theme-hello-friend-ng", "demo_url": "https://themes.gohugo.io/theme/hugo-theme-hello-friend-ng/", - "stars": 824, - "forks": 428, - "open_issues": 12, - "last_commit": "2021-01-10T22:41:52Z", + "stars": 1045, + "forks": 545, + "open_issues": 36, + "last_commit": "2021-08-24T21:54:18Z", "created_at": "2019-01-26T08:46:36Z", "description": "Pretty basic theme for Hugo that covers all of the essentials. All you have to do is start typing!", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/rhazdon-hugo-theme-hello-friend-ng-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/rhazdon-hugo-theme-hello-friend-ng-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/rhazdon-hugo-theme-hello-friend-ng-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/rhazdon-hugo-theme-hello-friend-ng.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/rhazdon-hugo-theme-hello-friend-ng.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/rhazdon-hugo-theme-hello-friend-ng-2x.jpg" } }, - "ribice-kiss-master": { - "theme_key": "ribice-kiss-master", + "ribice-kiss": { + "theme_key": "ribice-kiss", "file": "hugo-kiss-theme.md", "name": "kiss", "title": "Kiss", "github_username": "ribice", "repo": "ribice/kiss", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ribice/kiss", "demo_url": "https://themes.gohugo.io/theme/kiss/", - "stars": 253, - "forks": 120, - "open_issues": 10, - "last_commit": "2020-07-07T14:27:12Z", + "stars": 274, + "forks": 134, + "open_issues": 11, + "last_commit": "2021-03-21T16:51:33Z", "created_at": "2017-10-23T19:57:06Z", "description": "Stupidly simple Hugo blogging theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ribice-kiss-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ribice-kiss-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ribice-kiss-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ribice-kiss.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ribice-kiss.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ribice-kiss-2x.jpg" } }, - "riggraz-no-style-please-master": { - "theme_key": "riggraz-no-style-please-master", + "riggraz-no-style-please": { + "theme_key": "riggraz-no-style-please", "file": "no-style-please.md", "name": "no-style-please", "title": "no style, please!", "github_username": "riggraz", "repo": "riggraz/no-style-please", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/riggraz/no-style-please", "demo_url": "https://riggraz.dev/no-style-please/", - "stars": 134, - "forks": 92, - "open_issues": 7, - "last_commit": "2020-11-20T21:38:19Z", + "stars": 680, + "forks": 367, + "open_issues": 21, + "last_commit": "2021-07-08T18:21:44Z", "created_at": "2020-07-10T12:23:19Z", "description": "A (nearly) no-CSS, fast, minimalist Jekyll theme.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/riggraz-no-style-please-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/riggraz-no-style-please-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/riggraz-no-style-please-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/riggraz-no-style-please.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/riggraz-no-style-please.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/riggraz-no-style-please-2x.jpg" } }, - "ritijjain-pudhina-fresh-master": { - "theme_key": "ritijjain-pudhina-fresh-master", + "ritijjain-pudhina-fresh": { + "theme_key": "ritijjain-pudhina-fresh", "file": "pudhina-fresh.md", "name": "pudhina-fresh", "title": "Pudhina Fresh", "github_username": "ritijjain", "repo": "ritijjain/pudhina-fresh", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ritijjain/pudhina-fresh", "demo_url": "https://ritijjain.github.io/pudhina-fresh/", - "stars": 0, - "forks": 0, - "open_issues": 0, - "last_commit": "2021-01-06T07:44:15Z", + "stars": 62, + "forks": 28, + "open_issues": 1, + "last_commit": "2022-05-28T21:40:59Z", "created_at": "2020-09-12T22:30:43Z", "description": "A minimal yet feature-rich Jekyll theme made for personal websites and blogs.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ritijjain-pudhina-fresh-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ritijjain-pudhina-fresh-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ritijjain-pudhina-fresh-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ritijjain-pudhina-fresh.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ritijjain-pudhina-fresh.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ritijjain-pudhina-fresh-2x.jpg" } }, - "rlue-jekyll-solana-master": { - "theme_key": "rlue-jekyll-solana-master", + "rlue-jekyll-solana": { + "theme_key": "rlue-jekyll-solana", "file": "jekyll-solana-theme.md", "name": "jekyll-solana", "title": "Solana", "github_username": "rlue", "repo": "rlue/jekyll-solana", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/rlue/jekyll-solana", "demo_url": "https://solana.ryanlue.com/", - "stars": 37, + "stars": 40, "forks": 46, "open_issues": 0, - "last_commit": "2020-09-03T23:27:06Z", + "last_commit": "2021-07-29T14:40:55Z", "created_at": "2017-03-29T06:10:39Z", "description": "A wholesome, flat, sunshiny Jekyll theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/rlue-jekyll-solana-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/rlue-jekyll-solana-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/rlue-jekyll-solana-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/rlue-jekyll-solana.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/rlue-jekyll-solana.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/rlue-jekyll-solana-2x.jpg" } }, - "rmagon-gatsby-starter-interviews-master": { - "theme_key": "rmagon-gatsby-starter-interviews-master", + "rmagon-gatsby-starter-interviews": { + "theme_key": "rmagon-gatsby-starter-interviews", "file": "gatsby-starter-interviews.md", "name": "gatsby-starter-interviews", "title": "Gatsby Starter Interviews", "github_username": "rmagon", "repo": "rmagon/gatsby-starter-interviews", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/rmagon/gatsby-starter-interviews", "demo_url": "https://gatsby-starter-interviews.netlify.com/", - "stars": 2, + "stars": 5, "forks": 2, - "open_issues": 0, + "open_issues": 1, "last_commit": "2019-08-13T15:39:14Z", "created_at": "2019-08-13T14:09:51Z", "description": "A responsive Gatsby starter for structured Q&A Interviews", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/rmagon-gatsby-starter-interviews-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/rmagon-gatsby-starter-interviews-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/rmagon-gatsby-starter-interviews-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/rmagon-gatsby-starter-interviews.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/rmagon-gatsby-starter-interviews.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/rmagon-gatsby-starter-interviews-2x.jpg" } }, - "rmsubekti-emping-master": { - "theme_key": "rmsubekti-emping-master", + "rmsubekti-emping": { + "theme_key": "rmsubekti-emping", "file": "jekyll-emping.md", "name": "emping", "title": "Emping Theme", "github_username": "rmsubekti", "repo": "rmsubekti/emping", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/rmsubekti/emping", "demo_url": "https://rmsubekti.github.io/emping/", "stars": 27, - "forks": 34, + "forks": 31, "open_issues": 0, "last_commit": "2020-06-29T14:31:21Z", "created_at": "2016-10-21T16:56:20Z", "description": "Jekyll theme using Amp", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/rmsubekti-emping-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/rmsubekti-emping-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/rmsubekti-emping-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/rmsubekti-emping.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/rmsubekti-emping.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/rmsubekti-emping-2x.jpg" } }, - "rmsubekti-nangka-gh-pages": { - "theme_key": "rmsubekti-nangka-gh-pages", + "rmsubekti-nangka": { + "theme_key": "rmsubekti-nangka", "file": "jekyll-nangka.md", "name": "nangka", "title": "Nangka Theme", "github_username": "rmsubekti", "repo": "rmsubekti/nangka", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/rmsubekti/nangka", "demo_url": "https://rmsubekti.github.io/nangka", - "stars": 7, + "stars": 8, "forks": 1, "open_issues": 0, - "last_commit": "2019-07-02T17:33:15Z", + "last_commit": "2021-02-25T04:57:47Z", "created_at": "2018-12-29T17:37:54Z", "description": "nangka-jekyll-theme #rmsu", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/rmsubekti-nangka-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/rmsubekti-nangka-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/rmsubekti-nangka-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/rmsubekti-nangka.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/rmsubekti-nangka.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/rmsubekti-nangka-2x.jpg" } }, - "robertcoopercode-gatsby-netlify-cms-master": { - "theme_key": "robertcoopercode-gatsby-netlify-cms-master", + "robertcoopercode-gatsby-netlify-cms": { + "theme_key": "robertcoopercode-gatsby-netlify-cms", "file": "gatsby-netlify-cms.md", "name": "gatsby-netlify-cms", "title": "Gatsby Netlify CMS", "github_username": "robertcoopercode", "repo": "robertcoopercode/gatsby-netlify-cms", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/robertcoopercode/gatsby-netlify-cms", "demo_url": "https://gatsby-netlify-cms-example.netlify.com/", - "stars": 160, - "forks": 125, + "stars": 166, + "forks": 133, "open_issues": 0, "last_commit": "2019-09-08T00:35:35Z", "created_at": "2018-11-19T00:43:34Z", "description": "Example website built with Gatsby V2 and Netlify CMS 📝", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/robertcoopercode-gatsby-netlify-cms-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/robertcoopercode-gatsby-netlify-cms-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/robertcoopercode-gatsby-netlify-cms-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/robertcoopercode-gatsby-netlify-cms.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/robertcoopercode-gatsby-netlify-cms.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/robertcoopercode-gatsby-netlify-cms-2x.jpg" + } + }, + "robertedwardes-jekyll-2-column-theme": { + "theme_key": "digital-roots-jekyll-2-column-theme", + "file": "jekyll-two-column.md", + "name": "Jekyll-2-Column-Theme", + "title": "2 column Blog with Video", + "github_username": "RobertEdwardes", + "repo": "RobertEdwardes/Jekyll-2-Column-Theme", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/RobertEdwardes/Jekyll-2-Column-Theme", + "demo_url": "https://www.digitalroots.io/two-column/", + "stars": 0, + "forks": 0, + "open_issues": 0, + "last_commit": "2017-01-24T13:37:46Z", + "created_at": "2016-11-01T17:51:22Z", + "description": "Basic Jekyll Theme with 2 Column", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/digital-roots-jekyll-2-column-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/digital-roots-jekyll-2-column-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/digital-roots-jekyll-2-column-theme-2x.jpg" } }, - "robincsl-gatsby-starter-docz-master": { - "theme_key": "robincsl-gatsby-starter-docz-master", + "robincsl-gatsby-starter-docz": { + "theme_key": "robincsl-gatsby-starter-docz", "file": "gatsby-starter-docz.md", "name": "gatsby-starter-docz", "title": "Gatsby Starter Docz", "github_username": "RobinCsl", "repo": "RobinCsl/gatsby-starter-docz", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/RobinCsl/gatsby-starter-docz", "demo_url": "https://gatsby-starter-docz.netlify.com/", "stars": 7, - "forks": 4, + "forks": 3, "open_issues": 1, "last_commit": "2019-01-19T19:14:16Z", "created_at": "2019-01-19T19:10:34Z", "description": "Simple starter where building your own documentation with Docz is possible", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/robincsl-gatsby-starter-docz-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/robincsl-gatsby-starter-docz-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/robincsl-gatsby-starter-docz-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/robincsl-gatsby-starter-docz.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/robincsl-gatsby-starter-docz.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/robincsl-gatsby-starter-docz-2x.jpg" } }, - "robinmetral-gatsby-starter-under-construction-master": { - "theme_key": "robinmetral-gatsby-starter-under-construction-master", + "robinmetral-gatsby-starter-under-construction": { + "theme_key": "robinmetral-gatsby-starter-under-construction", "file": "gatsby-starter-under-construction.md", "name": "gatsby-theme-oss", "title": "Gatsby Starter Under Construction", "github_username": "robinmetral", "repo": "robinmetral/gatsby-theme-oss", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/robinmetral/gatsby-theme-oss", "demo_url": "https://gatsby-starter-under-construction.netlify.com/", "stars": 9, "forks": 4, "open_issues": 2, - "last_commit": "2020-11-03T23:12:32Z", + "last_commit": "2021-02-22T08:41:19Z", + "created_at": "2019-01-23T18:50:25Z", + "description": "A Gatsby theme to showcase your open-source projects.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/robinmetral-gatsby-starter-under-construction.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/robinmetral-gatsby-starter-under-construction.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/robinmetral-gatsby-starter-under-construction-2x.jpg" + } + }, + "robinmetral-gatsby-theme-oss": { + "theme_key": "robinmetral-gatsby-starter-under-construction", + "file": "gatsby-starter-under-construction.md", + "name": "gatsby-theme-oss", + "title": "Gatsby Starter Under Construction", + "github_username": "robinmetral", + "repo": "robinmetral/gatsby-theme-oss", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/robinmetral/gatsby-theme-oss", + "demo_url": "https://gatsby-starter-under-construction.netlify.com/", + "stars": 9, + "forks": 4, + "open_issues": 13, + "last_commit": "2021-04-12T09:07:06Z", "created_at": "2019-01-23T18:50:25Z", "description": "A Gatsby theme to showcase your open-source projects.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/robinmetral-gatsby-starter-under-construction-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/robinmetral-gatsby-starter-under-construction-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/robinmetral-gatsby-starter-under-construction-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/robinmetral-gatsby-starter-under-construction.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/robinmetral-gatsby-starter-under-construction.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/robinmetral-gatsby-starter-under-construction-2x.jpg" } }, - "rohanchandra-type-theme-master": { - "theme_key": "rohanchandra-type-theme-master", + "rohanchandra-type-theme": { + "theme_key": "rohanchandra-type-theme", "file": "jekyll-type-theme.md", "name": "type-theme", "title": "Jekyll Type Theme", "github_username": "rohanchandra", "repo": "rohanchandra/type-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/rohanchandra/type-theme", "demo_url": "https://rohanchandra.github.io/type-theme/", - "stars": 649, - "forks": 557, - "open_issues": 1, + "stars": 689, + "forks": 558, + "open_issues": 4, "last_commit": "2019-07-22T04:20:13Z", "created_at": "2015-01-07T02:37:24Z", "description": "A free and open-source Jekyll theme with responsive design. Great for blogs and easy to customize.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/rohanchandra-type-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/rohanchandra-type-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/rohanchandra-type-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/rohanchandra-type-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/rohanchandra-type-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/rohanchandra-type-theme-2x.jpg" } }, - "rohitguptab-oneshopper-master": { - "theme_key": "rohitguptab-oneshopper-master", + "rohitguptab-oneshopper": { + "theme_key": "rohitguptab-oneshopper", "file": "gatsby-oneshopper.md", "name": "OneShopper", "title": "OneShopper", "github_username": "rohitguptab", "repo": "rohitguptab/OneShopper", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/rohitguptab/OneShopper", "demo_url": "https://oneshopper.netlify.com/", - "stars": 74, - "forks": 56, - "open_issues": 2, + "stars": 87, + "forks": 59, + "open_issues": 16, "last_commit": "2020-08-14T03:47:37Z", "created_at": "2019-05-13T05:52:36Z", "description": "This is repository create for Ecommerce site With Gatsby js", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/rohitguptab-oneshopper-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/rohitguptab-oneshopper-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/rohitguptab-oneshopper-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/rohitguptab-oneshopper.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/rohitguptab-oneshopper.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/rohitguptab-oneshopper-2x.jpg" } }, - "rohitguptab-rg-portfolio-master": { - "theme_key": "rohitguptab-rg-portfolio-master", + "rohitguptab-rg-portfolio": { + "theme_key": "rohitguptab-rg-portfolio", "file": "rg-portfolio.md", "name": "rg-portfolio", "title": "RG Portfolio", "github_username": "rohitguptab", "repo": "rohitguptab/rg-portfolio", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/rohitguptab/rg-portfolio", "demo_url": "https://rg-portfolio.netlify.com", - "stars": 23, - "forks": 34, - "open_issues": 0, - "last_commit": "2020-12-14T03:57:48Z", + "stars": 47, + "forks": 49, + "open_issues": 1, + "last_commit": "2021-04-02T13:37:31Z", "created_at": "2020-02-24T11:47:07Z", "description": "This is repository create for Portfolio website starter", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/rohitguptab-rg-portfolio-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/rohitguptab-rg-portfolio-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/rohitguptab-rg-portfolio-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/rohitguptab-rg-portfolio.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/rohitguptab-rg-portfolio.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/rohitguptab-rg-portfolio-2x.jpg" + } + }, + "roninro-hugo-theme-puppet": { + "theme_key": "roninro-hugo-theme-puppet", + "file": "hugo-theme-puppet.md", + "name": "hugo-theme-puppet", + "title": "Puppet", + "github_username": "roninro", + "repo": "roninro/hugo-theme-puppet", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/roninro/hugo-theme-puppet", + "demo_url": "https://hugo-theme-puppet.netlify.app/", + "stars": 31, + "forks": 27, + "open_issues": 4, + "last_commit": "2022-11-28T07:13:34Z", + "created_at": "2022-07-28T09:19:40Z", + "description": null, + "images": { + "hires": "https://www.jamstackthemes.dev/capture/roninro-hugo-theme-puppet.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/roninro-hugo-theme-puppet.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/roninro-hugo-theme-puppet-2x.jpg" } }, - "ronv-colorie-master": { - "theme_key": "ronv-colorie-master", + "ronv-colorie": { + "theme_key": "ronv-colorie", "file": "colorie-jekyll.md", "name": "colorie", "title": "Colorie", "github_username": "ronv", "repo": "ronv/colorie", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ronv/colorie", "demo_url": "https://colorie.netlify.com", - "stars": 66, - "forks": 25, + "stars": 87, + "forks": 36, "open_issues": 0, - "last_commit": "2020-12-06T18:06:27Z", + "last_commit": "2022-07-31T17:48:39Z", "created_at": "2019-09-16T19:47:17Z", "description": "Colorie - Single column blog and portfolio Jekyll theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ronv-colorie-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ronv-colorie-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ronv-colorie-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ronv-colorie.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ronv-colorie.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ronv-colorie-2x.jpg" } }, - "ronv-gray-master": { - "theme_key": "ronv-gray-master", + "ronv-gray": { + "theme_key": "ronv-gray", "file": "gray-jekyll.md", "name": "gray", "title": "Gray", "github_username": "ronv", "repo": "ronv/gray", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ronv/gray", "demo_url": "https://gray-jekyll.netlify.com", - "stars": 18, - "forks": 14, + "stars": 21, + "forks": 15, "open_issues": 0, - "last_commit": "2020-12-06T18:08:57Z", + "last_commit": "2022-07-31T17:50:02Z", "created_at": "2019-08-22T16:00:14Z", "description": "Gray - Single column blog and portfolio Jekyll theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ronv-gray-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ronv-gray-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ronv-gray-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ronv-gray.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ronv-gray.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ronv-gray-2x.jpg" + } + }, + "ronv-jam": { + "theme_key": "ronv-jam", + "file": "jam-hugo.md", + "name": "jam", + "title": "Jam", + "github_username": "ronv", + "repo": "ronv/jam", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/ronv/jam", + "demo_url": "https://jam-hugo.netlify.app/", + "stars": 20, + "forks": 11, + "open_issues": 0, + "last_commit": "2022-07-31T17:47:57Z", + "created_at": "2021-12-06T16:11:04Z", + "description": "Jam is a minimal personal blog and portfolio theme powered by Hugo. Demo: https://jam-hugo.netlify.app/", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/ronv-jam.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ronv-jam.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ronv-jam-2x.jpg" } }, - "ronv-lines-master": { - "theme_key": "ronv-lines-master", + "ronv-lines": { + "theme_key": "ronv-lines", "file": "hugo-theme-line.md", "name": "lines", "title": "Lines", "github_username": "ronv", "repo": "ronv/lines", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ronv/lines", "demo_url": "https://lines-hugo-theme.netlify.app/", - "stars": 18, - "forks": 7, + "stars": 62, + "forks": 29, "open_issues": 0, - "last_commit": "2020-12-06T18:07:45Z", + "last_commit": "2022-07-31T17:45:29Z", "created_at": "2020-09-08T05:51:35Z", "description": "Minimalist and simple theme for Hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ronv-lines-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ronv-lines-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ronv-lines-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ronv-lines.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ronv-lines.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ronv-lines-2x.jpg" + } + }, + "ronv-listed": { + "theme_key": "ronv-listed", + "file": "listed.md", + "name": "listed", + "title": "Listed", + "github_username": "ronv", + "repo": "ronv/listed", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/ronv/listed", + "demo_url": "https://listed-hugo.netlify.app/", + "stars": 52, + "forks": 26, + "open_issues": 0, + "last_commit": "2022-07-31T17:47:00Z", + "created_at": "2021-09-18T07:39:09Z", + "description": "Minimalistic, clean and simple design Hugo theme", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/ronv-listed.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ronv-listed.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ronv-listed-2x.jpg" + } + }, + "ronv-minimalist": { + "theme_key": "ronv-minimalist", + "file": "minimalist-hugo.md", + "name": "minimalist", + "title": "Minimalist Hugo theme", + "github_username": "ronv", + "repo": "ronv/minimalist", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/ronv/minimalist", + "demo_url": "https://minimalist-hugo.netlify.app/", + "stars": 39, + "forks": 13, + "open_issues": 0, + "last_commit": "2022-07-31T17:47:25Z", + "created_at": "2022-03-05T08:47:57Z", + "description": "Minimalist is content focused, minimal theme for Hugo", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/ronv-minimalist.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ronv-minimalist.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ronv-minimalist-2x.jpg" } }, - "ronv-sidey-master": { - "theme_key": "ronv-sidey-master", + "ronv-sidey": { + "theme_key": "ronv-sidey", "file": "sidey-jekyll.md", "name": "sidey", "title": "Sidey", "github_username": "ronv", "repo": "ronv/sidey", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ronv/sidey", "demo_url": "https://sidey-jekyll.netlify.com/", - "stars": 252, - "forks": 118, + "stars": 442, + "forks": 190, "open_issues": 1, - "last_commit": "2020-12-06T18:07:02Z", + "last_commit": "2022-07-31T17:46:16Z", "created_at": "2020-01-30T18:13:54Z", "description": "Sidey is a simple and minimalistic jekyll blogging theme.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ronv-sidey-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ronv-sidey-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ronv-sidey-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ronv-sidey.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ronv-sidey.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ronv-sidey-2x.jpg" } }, - "ronv-ultra-master": { - "theme_key": "ronv-ultra-master", + "ronv-ultra": { + "theme_key": "ronv-ultra", "file": "ultra-jekyll.md", "name": "ultra", "title": "Ultra", "github_username": "ronv", "repo": "ronv/ultra", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ronv/ultra", "demo_url": "https://ultra-jekyll.netlify.com", - "stars": 45, - "forks": 27, + "stars": 62, + "forks": 41, "open_issues": 0, - "last_commit": "2020-12-06T18:08:21Z", + "last_commit": "2022-07-31T17:50:28Z", "created_at": "2019-07-16T17:34:42Z", "description": "Ultra - Super fast Jekyll theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ronv-ultra-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ronv-ultra-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ronv-ultra-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ronv-ultra.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ronv-ultra.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ronv-ultra-2x.jpg" } }, - "rosario-kasper-master": { - "theme_key": "rosario-kasper-master", + "rosario-kasper": { + "theme_key": "rosario-kasper", "file": "jekyll-kasper.md", "name": "kasper", "title": "Kasper", "github_username": "rosario", "repo": "rosario/kasper", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/rosario/kasper", "demo_url": "https://rosario.io/2013/11/10/kasper-theme-for-jekyll.html", - "stars": 991, - "forks": 403, - "open_issues": 9, + "stars": 1044, + "forks": 408, + "open_issues": 12, "last_commit": "2020-06-28T18:38:18Z", "created_at": "2013-11-10T10:15:43Z", "description": "Ghost's default theme (Casper v1.0) on Jekyll", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/rosario-kasper-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/rosario-kasper-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/rosario-kasper-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/rosario-kasper.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/rosario-kasper.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/rosario-kasper-2x.jpg" } }, - "rowanoulton-galileo-theme-master": { - "theme_key": "rowanoulton-galileo-theme-master", + "rowanoulton-galileo-theme": { + "theme_key": "rowanoulton-galileo-theme", "file": "jekyll-galileo.md", "name": "galileo-theme", "title": "Galileo", "github_username": "rowanoulton", "repo": "rowanoulton/galileo-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/rowanoulton/galileo-theme", - "demo_url": "http://travelog.io", - "stars": 98, - "forks": 122, + "demo_url": "https://travelog.io", + "stars": 105, + "forks": 126, "open_issues": 4, "last_commit": "2020-05-26T19:27:34Z", "created_at": "2015-11-15T11:56:59Z", "description": "Another damn theme for Jekyll", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/rowanoulton-galileo-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/rowanoulton-galileo-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/rowanoulton-galileo-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/rowanoulton-galileo-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/rowanoulton-galileo-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/rowanoulton-galileo-theme-2x.jpg" } }, - "rowanoulton-travelog-theme-master": { - "theme_key": "rowanoulton-travelog-theme-master", + "rowanoulton-travelog-theme": { + "theme_key": "rowanoulton-travelog-theme", "file": "jekyll-travelog.md", "name": "travelog-theme", "title": "Travelog", "github_username": "rowanoulton", "repo": "rowanoulton/travelog-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/rowanoulton/travelog-theme", - "demo_url": "http://travelog.io/", + "demo_url": "https://travelog.io/", "stars": 98, - "forks": 90, + "forks": 94, "open_issues": 0, "last_commit": "2015-09-09T10:00:27Z", "created_at": "2014-08-05T05:36:00Z", "description": "Travelog is a theme for Jekyll that is both elegant and downright simple.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/rowanoulton-travelog-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/rowanoulton-travelog-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/rowanoulton-travelog-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/rowanoulton-travelog-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/rowanoulton-travelog-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/rowanoulton-travelog-theme-2x.jpg" } }, - "runbytech-gatsby-theme-ultronele-master": { - "theme_key": "runbytech-gatsby-theme-ultronele-master", + "runbytech-gatsby-theme-ultronele": { + "theme_key": "runbytech-gatsby-theme-ultronele", "file": "gatsby-theme-ultronele.md", "name": "gatsby-theme-ultronele", "title": "Ultronele eLearning", "github_username": "runbytech", "repo": "runbytech/gatsby-theme-ultronele", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/runbytech/gatsby-theme-ultronele", "demo_url": "https://ultronele.netlify.com/", - "stars": 9, - "forks": 11, + "stars": 18, + "forks": 13, "open_issues": 0, "last_commit": "2019-10-09T18:02:09Z", "created_at": "2019-07-04T11:28:21Z", "description": "Gatsby Theme for UltronEle - the Fastest Elearning Engine in the world", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/runbytech-gatsby-theme-ultronele-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/runbytech-gatsby-theme-ultronele-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/runbytech-gatsby-theme-ultronele-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/runbytech-gatsby-theme-ultronele.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/runbytech-gatsby-theme-ultronele.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/runbytech-gatsby-theme-ultronele-2x.jpg" } }, - "rundocs-jekyll-rtd-theme-master": { - "theme_key": "rundocs-jekyll-rtd-theme-master", + "rundocs-jekyll-rtd-theme": { + "theme_key": "rundocs-jekyll-rtd-theme", "file": "jekyll-rtd-theme.md", "name": "jekyll-rtd-theme", "title": "jekyll-rtd-theme", "github_username": "rundocs", "repo": "rundocs/jekyll-rtd-theme", - "branch": "master", + "branch": "develop", + "default_branch": "develop", "github_url": "https://github.com/rundocs/jekyll-rtd-theme", "demo_url": "https://rundocs.github.io/jekyll-rtd-theme/", - "stars": 67, - "forks": 128, - "open_issues": 7, - "last_commit": "2020-10-30T13:20:08Z", + "stars": 168, + "forks": 309, + "open_issues": 21, + "last_commit": "2020-11-23T03:36:43Z", "created_at": "2020-07-22T15:50:21Z", "description": "Just another documentation theme compatible with GitHub Pages", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/rundocs-jekyll-rtd-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/rundocs-jekyll-rtd-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/rundocs-jekyll-rtd-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/rundocs-jekyll-rtd-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/rundocs-jekyll-rtd-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/rundocs-jekyll-rtd-theme-2x.jpg" } }, - "runningstream-hugograyscale-master": { - "theme_key": "runningstream-hugograyscale-master", + "runningstream-hugograyscale": { + "theme_key": "runningstream-hugograyscale", "file": "hugograyscale.md", "name": "hugograyscale", "title": "Hugo Grayscale", "github_username": "runningstream", "repo": "runningstream/hugograyscale", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/runningstream/hugograyscale", "demo_url": "https://runningstream.github.io/hugograyscale/", - "stars": 23, - "forks": 30, + "stars": 45, + "forks": 39, "open_issues": 0, - "last_commit": "2020-02-01T20:33:29Z", + "last_commit": "2021-01-23T00:48:50Z", "created_at": "2018-09-16T01:12:43Z", "description": "A multi-section single page theme intended as a landing page. This is derived from the startbootstrap-grayscale theme.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/runningstream-hugograyscale-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/runningstream-hugograyscale-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/runningstream-hugograyscale-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/runningstream-hugograyscale.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/runningstream-hugograyscale.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/runningstream-hugograyscale-2x.jpg" } }, - "ryanfitzgerald-devblog-master": { - "theme_key": "ryanfitzgerald-devblog-master", + "ryanfitzgerald-devblog": { + "theme_key": "ryanfitzgerald-devblog", "file": "gatsby-dev-blog-fitzgerald.md", "name": "devblog", "title": "Gatsby DevBlog", "github_username": "RyanFitzgerald", "repo": "RyanFitzgerald/devblog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/RyanFitzgerald/devblog", "demo_url": "https://gatsby-devblog.netlify.com/", - "stars": 302, - "forks": 107, - "open_issues": 10, + "stars": 403, + "forks": 171, + "open_issues": 14, "last_commit": "2020-07-16T16:05:58Z", "created_at": "2018-06-27T01:12:44Z", "description": "A lightweight, customizable personal blog template built with GatsbyJS and React", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ryanfitzgerald-devblog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ryanfitzgerald-devblog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ryanfitzgerald-devblog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ryanfitzgerald-devblog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ryanfitzgerald-devblog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ryanfitzgerald-devblog-2x.jpg" } }, - "ryanwiemer-gatsby-starter-gcn-master": { - "theme_key": "ryanwiemer-gatsby-starter-gcn-master", + "ryanwiemer-gatsby-starter-gcn": { + "theme_key": "ryanwiemer-gatsby-starter-gcn", "file": "gatsby-starter-gcn.md", "name": "gatsby-starter-gcn", "title": "Gatsby Starter GCN", "github_username": "ryanwiemer", "repo": "ryanwiemer/gatsby-starter-gcn", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ryanwiemer/gatsby-starter-gcn", "demo_url": "https://gcn.netlify.com/", - "stars": 483, - "forks": 115, + "stars": 508, + "forks": 119, "open_issues": 0, - "last_commit": "2020-02-04T06:16:09Z", + "last_commit": "2021-11-19T05:17:33Z", "created_at": "2018-02-23T00:09:29Z", "description": "A starter template to build amazing static websites with Gatsby, Contentful and Netlify", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ryanwiemer-gatsby-starter-gcn-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ryanwiemer-gatsby-starter-gcn-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ryanwiemer-gatsby-starter-gcn-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ryanwiemer-gatsby-starter-gcn.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ryanwiemer-gatsby-starter-gcn.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ryanwiemer-gatsby-starter-gcn-2x.jpg" } }, - "s-kris-gatsby-minimal-portfolio-blog-master": { - "theme_key": "s-kris-gatsby-minimal-portfolio-blog-master", + "s-kris-gatsby-minimal-portfolio-blog": { + "theme_key": "s-kris-gatsby-minimal-portfolio-blog", "file": "gatsby-minimal-portfolio-blog.md", "name": "gatsby-minimal-portfolio-blog", "title": "Gatsby Minimal Portfolio Blog", "github_username": "s-kris", "repo": "s-kris/gatsby-minimal-portfolio-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/s-kris/gatsby-minimal-portfolio-blog", "demo_url": "https://saikrishna.me/", - "stars": 10, - "forks": 4, - "open_issues": 0, + "stars": 11, + "forks": 3, + "open_issues": 16, "last_commit": "2020-05-27T05:22:34Z", "created_at": "2019-01-02T16:26:06Z", "description": "GatsbyJS starter for a minimal portfolio website with blog. Suitable for developers.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/s-kris-gatsby-minimal-portfolio-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/s-kris-gatsby-minimal-portfolio-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/s-kris-gatsby-minimal-portfolio-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/s-kris-gatsby-minimal-portfolio-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/s-kris-gatsby-minimal-portfolio-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/s-kris-gatsby-minimal-portfolio-blog-2x.jpg" } }, - "saey55-hugo-elate-theme-master": { - "theme_key": "saey55-hugo-elate-theme-master", + "saey55-hugo-elate-theme": { + "theme_key": "saey55-hugo-elate-theme", "file": "hugo-elate-theme.md", "name": "hugo-elate-theme", "title": "Elate", "github_username": "saey55", "repo": "saey55/hugo-elate-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/saey55/hugo-elate-theme", "demo_url": "https://themes.gohugo.io/theme/hugo-elate-theme/", - "stars": 163, - "forks": 102, - "open_issues": 13, + "stars": 172, + "forks": 105, + "open_issues": 15, "last_commit": "2019-01-13T20:36:40Z", "created_at": "2016-11-18T15:14:54Z", "description": "A one page parallax theme with animation for Hugo", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/saey55-hugo-elate-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/saey55-hugo-elate-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/saey55-hugo-elate-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/saey55-hugo-elate-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/saey55-hugo-elate-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/saey55-hugo-elate-theme-2x.jpg" } }, - "sag-dev-hugo-minimalist-spa-master": { - "theme_key": "sag-dev-hugo-minimalist-spa-master", + "sag-dev-hugo-minimalist-spa": { + "theme_key": "sag-dev-hugo-minimalist-spa", "file": "hugo-minimalist-spa.md", "name": "hugo-minimalist-spa", "title": "Hugo minimalist SPA", "github_username": "sergioabreu-g", "repo": "sergioabreu-g/hugo-minimalist-spa", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/sergioabreu-g/hugo-minimalist-spa", "demo_url": "https://themes.gohugo.io/theme/hugo-minimalist-spa/", "stars": 1, - "forks": 3, + "forks": 2, "open_issues": 1, "last_commit": "2019-02-14T08:45:47Z", "created_at": "2018-09-15T14:57:06Z", "description": "A minimalist single page application theme for Hugo", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/sag-dev-hugo-minimalist-spa-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sag-dev-hugo-minimalist-spa-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sag-dev-hugo-minimalist-spa-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sag-dev-hugo-minimalist-spa.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sag-dev-hugo-minimalist-spa.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sag-dev-hugo-minimalist-spa-2x.jpg" } }, - "sagar7993-gatsby-wordpress-typescript-scss-blog-master": { - "theme_key": "sagar7993-gatsby-wordpress-typescript-scss-blog-master", + "sagar7993-gatsby-wordpress-typescript-scss-blog": { + "theme_key": "sagar7993-gatsby-wordpress-typescript-scss-blog", "file": "gatsby-wordpress-typescript-scss-blog.md", "name": "gatsby-wordpress-typescript-scss-blog", "title": "Gatsby Wordpress Typescript Scss Blog", "github_username": "sagar7993", "repo": "sagar7993/gatsby-wordpress-typescript-scss-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/sagar7993/gatsby-wordpress-typescript-scss-blog", "demo_url": "https://gatsby-wordpress-typescript-scss-blog.netlify.com", - "stars": 37, - "forks": 16, - "open_issues": 13, - "last_commit": "2020-07-12T12:49:46Z", + "stars": 51, + "forks": 21, + "open_issues": 1, + "last_commit": "2022-08-08T14:43:59Z", "created_at": "2019-09-03T17:34:27Z", "description": "Gatsby Wordpress Typescript Blog Boilerplate", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/sagar7993-gatsby-wordpress-typescript-scss-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sagar7993-gatsby-wordpress-typescript-scss-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sagar7993-gatsby-wordpress-typescript-scss-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sagar7993-gatsby-wordpress-typescript-scss-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sagar7993-gatsby-wordpress-typescript-scss-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sagar7993-gatsby-wordpress-typescript-scss-blog-2x.jpg" } }, - "salcan-beyondnothing-master": { - "theme_key": "salcan-beyondnothing-master", + "salcan-beyondnothing": { + "theme_key": "salcan-beyondnothing", "file": "hugo-beyondnothing.md", "name": "BeyondNothing", "title": "BeyondNothing", "github_username": "salcan", "repo": "salcan/BeyondNothing", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/salcan/BeyondNothing", "demo_url": "https://themes.gohugo.io/theme/BeyondNothing/", - "stars": 13, - "forks": 8, + "stars": 14, + "forks": 9, "open_issues": 1, "last_commit": "2019-09-08T21:08:52Z", "created_at": "2018-06-03T01:57:33Z", "description": "Hugo Theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/salcan-beyondnothing-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/salcan-beyondnothing-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/salcan-beyondnothing-master-2x.jpg" - } - }, - "salgnt-travelogue-master": { - "theme_key": "salgnt-travelogue-master", + "hires": "https://www.jamstackthemes.dev/capture/salcan-beyondnothing.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/salcan-beyondnothing.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/salcan-beyondnothing-2x.jpg" + } + }, + "saleor-react-storefront": { + "theme_key": "saleor-react-storefront", + "file": "next-react-storefront.md", + "name": "react-storefront", + "title": "React Storefront", + "github_username": "saleor", + "repo": "saleor/react-storefront", + "branch": "canary", + "default_branch": "canary", + "github_url": "https://github.com/saleor/react-storefront", + "demo_url": "https://reactstorefront.vercel.app/", + "stars": 557, + "forks": 323, + "open_issues": 81, + "last_commit": "2023-01-16T10:00:47Z", + "created_at": "2021-08-20T15:47:51Z", + "description": "An open-source storefront in React.js with Next.js. Built for Headless Commerce, using a modern stack with TypeScript, GraphQL, Apollo, and Tailwind CSS. ", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/saleor-react-storefront.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/saleor-react-storefront.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/saleor-react-storefront-2x.jpg" + } + }, + "salgnt-travelogue": { + "theme_key": "salgnt-travelogue", "file": "jekyll-travelogue.md", "name": "Travelogue", "title": "Travelogue", "github_username": "SalGnt", "repo": "SalGnt/Travelogue", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/SalGnt/Travelogue", "demo_url": "https://salgnt.github.io/Travelogue/", - "stars": 152, - "forks": 54, + "stars": 154, + "forks": 56, "open_issues": 4, - "last_commit": "2020-07-05T18:10:21Z", + "last_commit": "2021-07-14T07:40:33Z", "created_at": "2015-01-13T15:49:27Z", "description": "A minimal, single-column Jekyll theme that provides an immersive read experience for your readers.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/salgnt-travelogue-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/salgnt-travelogue-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/salgnt-travelogue-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/salgnt-travelogue.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/salgnt-travelogue.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/salgnt-travelogue-2x.jpg" } }, - "salsysd-hugo-assembly-master": { - "theme_key": "salsysd-hugo-assembly-master", + "salsysd-hugo-assembly": { + "theme_key": "salsysd-hugo-assembly", "file": "hugo-assembly-theme.md", "name": "hugo-assembly", "title": "Hugo Assembly", "github_username": "salsysd", "repo": "salsysd/hugo-assembly", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/salsysd/hugo-assembly", "demo_url": "https://themes.gohugo.io/theme/hugo-assembly/", - "stars": 4, - "forks": 14, + "stars": 6, + "forks": 17, "open_issues": 6, "last_commit": "2018-10-02T01:21:30Z", "created_at": "2018-06-30T06:36:45Z", "description": "Assembly - a hugo theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/salsysd-hugo-assembly-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/salsysd-hugo-assembly-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/salsysd-hugo-assembly-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/salsysd-hugo-assembly.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/salsysd-hugo-assembly.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/salsysd-hugo-assembly-2x.jpg" } }, - "samanyougarg-hanuman-master": { - "theme_key": "samanyougarg-hanuman-master", + "samanyougarg-hanuman": { + "theme_key": "samanyougarg-hanuman", "file": "jekyll-hanuman-theme.md", "name": "hanuman", "title": "Hanuman", "github_username": "samanyougarg", "repo": "samanyougarg/hanuman", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/samanyougarg/hanuman", "demo_url": "https://samanyougarg.com/hanuman", - "stars": 100, - "forks": 322, - "open_issues": 2, + "stars": 103, + "forks": 312, + "open_issues": 3, "last_commit": "2019-07-04T12:55:41Z", "created_at": "2017-12-04T06:41:05Z", "description": "A responsive, lightning-fast Jekyll theme built using AMP (Accelerated Mobile Pages) to speed up your blogs and websites.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/samanyougarg-hanuman-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/samanyougarg-hanuman-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/samanyougarg-hanuman-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/samanyougarg-hanuman.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/samanyougarg-hanuman.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/samanyougarg-hanuman-2x.jpg" + } + }, + "samarsault-plainwhite-jekyll": { + "theme_key": "thelehhman-plainwhite-jekyll", + "file": "jekyll-theme-PlainWhite.md", + "name": "plainwhite-jekyll", + "title": "Plainwhite", + "github_username": "samarsault", + "repo": "samarsault/plainwhite-jekyll", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/samarsault/plainwhite-jekyll", + "demo_url": "https://thelehhman.com/", + "stars": 348, + "forks": 455, + "open_issues": 15, + "last_commit": "2021-07-03T10:02:54Z", + "created_at": "2019-03-24T16:00:17Z", + "description": "A configurable portfolio-style jekyll theme for writers.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/thelehhman-plainwhite-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thelehhman-plainwhite-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thelehhman-plainwhite-jekyll-2x.jpg" + } + }, + "samarsault-texture": { + "theme_key": "thelehhman-texture", + "file": "jekyll-theme-Texture-Theme.md", + "name": "texture", + "title": "Texture", + "github_username": "samarsault", + "repo": "samarsault/texture", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/samarsault/texture", + "demo_url": "https://thelehhman.com/texture/", + "stars": 200, + "forks": 352, + "open_issues": 2, + "last_commit": "2021-05-28T15:23:25Z", + "created_at": "2019-06-29T14:05:37Z", + "description": "A configurable jekyll theme for simply beautiful blogs.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/thelehhman-texture.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thelehhman-texture.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thelehhman-texture-2x.jpg" } }, - "samesies-barber-jekyll-master": { - "theme_key": "samesies-barber-jekyll-master", + "samesies-barber-jekyll": { + "theme_key": "samesies-barber-jekyll", "file": "jekyll-theme-barber.md", "name": "barber-jekyll", "title": "Barber", "github_username": "samesies", "repo": "samesies/barber-jekyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/samesies/barber-jekyll", "demo_url": "https://barber.samesies.io/", - "stars": 246, - "forks": 278, - "open_issues": 6, + "stars": 278, + "forks": 293, + "open_issues": 12, "last_commit": "2020-05-15T14:32:25Z", "created_at": "2018-02-15T03:05:57Z", "description": null, - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/samesies-barber-jekyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/samesies-barber-jekyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/samesies-barber-jekyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/samesies-barber-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/samesies-barber-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/samesies-barber-jekyll-2x.jpg" } }, - "samme-brunch-phaser-master": { - "theme_key": "samme-brunch-phaser-master", + "samme-brunch-phaser": { + "theme_key": "samme-brunch-phaser", "file": "brunch-phaser.md", "name": "brunch-phaser", "title": "Brunch Phaser", "github_username": "samme", "repo": "samme/brunch-phaser", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/samme/brunch-phaser", "demo_url": "https://phaser.io/phaser3", "stars": 36, - "forks": 8, - "open_issues": 1, - "last_commit": "2020-07-29T23:38:04Z", + "forks": 9, + "open_issues": 0, + "last_commit": "2021-03-14T20:49:29Z", "created_at": "2017-02-05T03:41:10Z", "description": "A Brunch skeleton for making games with Phaser 3. Variants for CoffeeScript, ES6, TypeScript", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/samme-brunch-phaser-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/samme-brunch-phaser-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/samme-brunch-phaser-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/samme-brunch-phaser.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/samme-brunch-phaser.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/samme-brunch-phaser-2x.jpg" } }, - "samuelhorn-jamdocs-master": { - "theme_key": "samuelhorn-jamdocs-master", + "samuelhorn-jamdocs": { + "theme_key": "samuelhorn-jamdocs", "file": "jamdocs.md", "name": "jamdocs", "title": "Jamdocs", "github_username": "samuelhorn", "repo": "samuelhorn/jamdocs", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/samuelhorn/jamdocs", "demo_url": "https://jamdocs.netlify.com/", - "stars": 174, - "forks": 76, - "open_issues": 9, - "last_commit": "2020-12-11T13:25:30Z", + "stars": 218, + "forks": 98, + "open_issues": 22, + "last_commit": "2022-01-04T19:24:38Z", "created_at": "2019-06-26T11:39:42Z", "description": "The ultimate staic generated documentation theme for the JAM-stack. Highly cusomizable, based on Gridsome, ready to deploy to Netlify in one click.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/samuelhorn-jamdocs-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/samuelhorn-jamdocs-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/samuelhorn-jamdocs-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/samuelhorn-jamdocs.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/samuelhorn-jamdocs.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/samuelhorn-jamdocs-2x.jpg" + } + }, + "samuelkraft-notion-blog-nextjs": { + "theme_key": "samuelkraft-notion-blog-nextjs", + "file": "notion-blog-nextjs-coral.md", + "name": "notion-blog-nextjs", + "title": "Next.js blog powered by Notion API", + "github_username": "samuelkraft", + "repo": "samuelkraft/notion-blog-nextjs", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/samuelkraft/notion-blog-nextjs", + "demo_url": "https://notion-blog-nextjs-coral.vercel.app/", + "stars": 772, + "forks": 169, + "open_issues": 3, + "last_commit": "2022-10-26T14:58:31Z", + "created_at": "2021-05-13T18:22:43Z", + "description": "Next.js example blog powered by Notion Public API", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/samuelkraft-notion-blog-nextjs.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/samuelkraft-notion-blog-nextjs.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/samuelkraft-notion-blog-nextjs-2x.jpg" } }, - "santosfrancisco-gatsby-starter-cv-master": { - "theme_key": "santosfrancisco-gatsby-starter-cv-master", + "santosfrancisco-gatsby-starter-cv": { + "theme_key": "santosfrancisco-gatsby-starter-cv", "file": "gatsby-starter-cv.md", "name": "gatsby-starter-cv", "title": "Gatsby Starter CV", "github_username": "santosfrancisco", "repo": "santosfrancisco/gatsby-starter-cv", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/santosfrancisco/gatsby-starter-cv", "demo_url": "https://santosfrancisco.github.io/gatsby-starter-cv/", - "stars": 94, - "forks": 35, - "open_issues": 16, - "last_commit": "2020-12-31T16:13:27Z", + "stars": 115, + "forks": 48, + "open_issues": 18, + "last_commit": "2021-02-23T23:28:22Z", "created_at": "2018-12-24T00:05:49Z", "description": "A simple starter to get up and developing your digital curriculum with GatsbyJS", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/santosfrancisco-gatsby-starter-cv-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/santosfrancisco-gatsby-starter-cv-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/santosfrancisco-gatsby-starter-cv-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/santosfrancisco-gatsby-starter-cv.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/santosfrancisco-gatsby-starter-cv.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/santosfrancisco-gatsby-starter-cv-2x.jpg" } }, - "sarasate-gate-master": { - "theme_key": "sarasate-gate-master", + "sarasate-gate": { + "theme_key": "sarasate-gate", "file": "gatsby-gate.md", "name": "gate", "title": "Gate", "github_username": "sarasate", "repo": "sarasate/gate", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/sarasate/gate", "demo_url": "https://gatejs.netlify.com/", - "stars": 19, - "forks": 26, - "open_issues": 5, + "stars": 20, + "forks": 31, + "open_issues": 6, "last_commit": "2019-10-09T15:40:48Z", "created_at": "2019-01-29T09:40:17Z", "description": "Static API documentation with GatsbyJS", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/sarasate-gate-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sarasate-gate-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sarasate-gate-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sarasate-gate.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sarasate-gate.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sarasate-gate-2x.jpg" } }, - "saschajullmann-gatsby-starter-gatsbythemes-master": { - "theme_key": "saschajullmann-gatsby-starter-gatsbythemes-master", + "saschajullmann-gatsby-starter-gatsbythemes": { + "theme_key": "saschajullmann-gatsby-starter-gatsbythemes", "file": "gatsby-starter-gatsbythemes.md", "name": "gatsby-starter-gatsbythemes", "title": "Gatsby Starter Gatsbythemes", "github_username": "saschajullmann", "repo": "saschajullmann/gatsby-starter-gatsbythemes", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/saschajullmann/gatsby-starter-gatsbythemes", "demo_url": "https://themes.gatsbythemes.com/gatsby-starter/", - "stars": 101, - "forks": 27, + "stars": 98, + "forks": 24, "open_issues": 0, "last_commit": "2019-10-27T17:43:19Z", "created_at": "2017-10-21T09:52:00Z", "description": "Basic gatsby-starter package", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/saschajullmann-gatsby-starter-gatsbythemes-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/saschajullmann-gatsby-starter-gatsbythemes-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/saschajullmann-gatsby-starter-gatsbythemes-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/saschajullmann-gatsby-starter-gatsbythemes.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/saschajullmann-gatsby-starter-gatsbythemes.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/saschajullmann-gatsby-starter-gatsbythemes-2x.jpg" + } + }, + "sblisesivdin-biscuit": { + "theme_key": "sblisesivdin-biscuit", + "file": "jekyll-Biscuit.md", + "name": "biscuit", + "title": "Biscuit", + "github_username": "sblisesivdin", + "repo": "sblisesivdin/biscuit", + "branch": "gh-pages", + "default_branch": "gh-pages", + "github_url": "https://github.com/sblisesivdin/biscuit", + "demo_url": "https://sblisesivdin.github.io/biscuit", + "stars": 12, + "forks": 25, + "open_issues": 0, + "last_commit": "2022-07-01T16:44:54Z", + "created_at": "2022-06-30T12:56:09Z", + "description": "Single-page responsive Jekyll theme", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/sblisesivdin-biscuit.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sblisesivdin-biscuit.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sblisesivdin-biscuit-2x.jpg" } }, - "schmanat-hugo-highlights-theme-master": { - "theme_key": "schmanat-hugo-highlights-theme-master", + "schmanat-hugo-highlights-theme": { + "theme_key": "schmanat-hugo-highlights-theme", "file": "hugo-highlights-theme.md", "name": "hugo-highlights-theme", "title": "Highlights", "github_username": "schmanat", "repo": "schmanat/hugo-highlights-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/schmanat/hugo-highlights-theme", "demo_url": "https://themes.gohugo.io/theme/highlights/", - "stars": 25, - "forks": 19, - "open_issues": 3, + "stars": 24, + "forks": 22, + "open_issues": 3, "last_commit": "2020-04-09T13:40:00Z", "created_at": "2016-06-03T08:33:42Z", "description": "a one page layout for gohugo.io", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/schmanat-hugo-highlights-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/schmanat-hugo-highlights-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/schmanat-hugo-highlights-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/schmanat-hugo-highlights-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/schmanat-hugo-highlights-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/schmanat-hugo-highlights-theme-2x.jpg" } }, - "schollz-onetwothree-master": { - "theme_key": "schollz-onetwothree-master", + "schollz-onetwothree": { + "theme_key": "schollz-onetwothree", "file": "hugo-onetwothree.md", "name": "onetwothree", "title": "Onetwothree", "github_username": "schollz", "repo": "schollz/onetwothree", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/schollz/onetwothree", "demo_url": "https://schollz.github.io/onetwothree/", - "stars": 38, - "forks": 49, - "open_issues": 4, + "stars": 40, + "forks": 46, + "open_issues": 3, "last_commit": "2019-09-16T16:17:43Z", "created_at": "2017-11-02T18:03:28Z", "description": "A responsive minimalist theme for Hugo that is simple as 1, 2, 3", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/schollz-onetwothree-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/schollz-onetwothree-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/schollz-onetwothree-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/schollz-onetwothree.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/schollz-onetwothree.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/schollz-onetwothree-2x.jpg" } }, - "scotte-jekyll-clean-gh-pages": { - "theme_key": "scotte-jekyll-clean-gh-pages", + "scotte-jekyll-clean": { + "theme_key": "scotte-jekyll-clean", "file": "jekyll-clean-theme.md", "name": "jekyll-clean", "title": "Jekyll Clean", "github_username": "scotte", "repo": "scotte/jekyll-clean", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/scotte/jekyll-clean", "demo_url": "https://scotte.github.io/jekyll-clean", - "stars": 170, - "forks": 344, + "stars": 177, + "forks": 345, "open_issues": 0, "last_commit": "2020-02-12T16:45:12Z", "created_at": "2014-08-22T22:48:36Z", "description": "A simple and clean Jekyll theme that's easy to modify.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/scotte-jekyll-clean-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/scotte-jekyll-clean-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/scotte-jekyll-clean-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/scotte-jekyll-clean.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/scotte-jekyll-clean.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/scotte-jekyll-clean-2x.jpg" } }, - "scottmathson-simpol-theme-master": { - "theme_key": "scottmathson-simpol-theme-master", + "scottmathson-simpol-theme": { + "theme_key": "scottmathson-simpol-theme", "file": "simpol-theme.md", "name": "simpol-theme", "title": "Simpol Theme", "github_username": "scottmathson", "repo": "scottmathson/simpol-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/scottmathson/simpol-theme", "demo_url": "https://simpol.scottmathson.com/", - "stars": 12, - "forks": 5, - "open_issues": 3, + "stars": 14, + "forks": 6, + "open_issues": 4, "last_commit": "2017-10-09T18:14:26Z", "created_at": "2017-09-25T18:19:26Z", "description": "Simpol Theme is a clean, minimal website theme all about the writing, the content. Currently available for Jekyll. Perfect for blogging.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/scottmathson-simpol-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/scottmathson-simpol-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/scottmathson-simpol-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/scottmathson-simpol-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/scottmathson-simpol-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/scottmathson-simpol-theme-2x.jpg" } }, - "scttcper-gatsby-casper-master": { - "theme_key": "scttcper-gatsby-casper-master", + "scttcper-gatsby-casper": { + "theme_key": "scttcper-gatsby-casper", "file": "gatsby-casper.md", "name": "gatsby-casper", "title": "Gatsby Casper", "github_username": "scttcper", "repo": "scttcper/gatsby-casper", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/scttcper/gatsby-casper", "demo_url": "https://gatsby-casper.netlify.com", - "stars": 359, - "forks": 152, - "open_issues": 12, - "last_commit": "2021-01-05T22:42:24Z", + "stars": 453, + "forks": 181, + "open_issues": 9, + "last_commit": "2022-11-10T05:22:47Z", "created_at": "2018-09-10T03:48:22Z", "description": "A Casper blog starter for Gatsby", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/scttcper-gatsby-casper-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/scttcper-gatsby-casper-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/scttcper-gatsby-casper-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/scttcper-gatsby-casper.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/scttcper-gatsby-casper.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/scttcper-gatsby-casper-2x.jpg" + } + }, + "sdtelectronics-jekyll-theme-antarctica": { + "theme_key": "sdtelectronics-jekyll-theme-antarctica", + "file": "Antarctica.md", + "name": "jekyll-theme-antarctica", + "title": "Antarctica", + "github_username": "SdtElectronics", + "repo": "SdtElectronics/jekyll-theme-antarctica", + "branch": "dev", + "default_branch": "dev", + "github_url": "https://github.com/SdtElectronics/jekyll-theme-antarctica", + "demo_url": "https://sdtelectronics.github.io/jekyll-theme-antarctica/", + "stars": 24, + "forks": 20, + "open_issues": 1, + "last_commit": "2022-06-04T14:35:47Z", + "created_at": "2021-08-05T15:26:01Z", + "description": "Stylish and feature-rich theme for Jekyll", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/sdtelectronics-jekyll-theme-antarctica.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sdtelectronics-jekyll-theme-antarctica.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sdtelectronics-jekyll-theme-antarctica-2x.jpg" } }, - "seanlane-gochowdown-master": { - "theme_key": "seanlane-gochowdown-master", + "seanlane-gochowdown": { + "theme_key": "seanlane-gochowdown", "file": "hugo-chowdown-theme.md", "name": "gochowdown", "title": "GoChowdown", "github_username": "seanlane", "repo": "seanlane/gochowdown", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/seanlane/gochowdown", "demo_url": "https://chowdown.io/", - "stars": 39, - "forks": 44, - "open_issues": 3, - "last_commit": "2021-01-03T16:03:13Z", + "stars": 64, + "forks": 51, + "open_issues": 8, + "last_commit": "2022-06-03T12:20:33Z", "created_at": "2019-01-20T22:05:30Z", "description": "Hugo theme based on the Jekyll chowdown theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/seanlane-gochowdown-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/seanlane-gochowdown-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/seanlane-gochowdown-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/seanlane-gochowdown.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/seanlane-gochowdown.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/seanlane-gochowdown-2x.jpg" } }, - "serg-yourfolio-master": { - "theme_key": "serg-yourfolio-master", + "serg-yourfolio": { + "theme_key": "serg-yourfolio", "file": "hugo-yourfolio-theme.md", "name": "yourfolio", "title": "Yourfolio", "github_username": "serg", "repo": "serg/yourfolio", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/serg/yourfolio", "demo_url": "https://themes.gohugo.io/theme/yourfolio/", - "stars": 21, - "forks": 15, - "open_issues": 3, - "last_commit": "2020-11-16T21:29:47Z", + "stars": 24, + "forks": 21, + "open_issues": 7, + "last_commit": "2021-06-06T19:24:46Z", "created_at": "2018-06-01T13:13:55Z", "description": ":star: Super simple and responsive theme for your personal website on Hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/serg-yourfolio-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/serg-yourfolio-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/serg-yourfolio-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/serg-yourfolio.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/serg-yourfolio.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/serg-yourfolio-2x.jpg" + } + }, + "sergical-gatsby-starter-lightbox": { + "theme_key": "416serg-gatsby-starter-lightbox", + "file": "gatsby-starter-lightbox.md", + "name": "gatsby-starter-lightbox", + "title": "Gatsby Starter Lightbox", + "github_username": "sergical", + "repo": "sergical/gatsby-starter-lightbox", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/sergical/gatsby-starter-lightbox", + "demo_url": "https://gatsby-lightbox.416serg.me/", + "stars": 19, + "forks": 9, + "open_issues": 2, + "last_commit": "2018-08-05T22:37:05Z", + "created_at": "2018-08-05T22:04:23Z", + "description": null, + "images": { + "hires": "https://www.jamstackthemes.dev/capture/416serg-gatsby-starter-lightbox.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/416serg-gatsby-starter-lightbox.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/416serg-gatsby-starter-lightbox-2x.jpg" + } + }, + "sergioabreu-g-hugo-minimalist-spa": { + "theme_key": "sag-dev-hugo-minimalist-spa", + "file": "hugo-minimalist-spa.md", + "name": "hugo-minimalist-spa", + "title": "Hugo minimalist SPA", + "github_username": "sergioabreu-g", + "repo": "sergioabreu-g/hugo-minimalist-spa", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/sergioabreu-g/hugo-minimalist-spa", + "demo_url": "https://themes.gohugo.io/theme/hugo-minimalist-spa/", + "stars": 2, + "forks": 2, + "open_issues": 1, + "last_commit": "2019-02-14T08:45:47Z", + "created_at": "2018-09-15T14:57:06Z", + "description": "A minimalist single page application theme for Hugo", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/sag-dev-hugo-minimalist-spa.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sag-dev-hugo-minimalist-spa.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sag-dev-hugo-minimalist-spa-2x.jpg" } }, - "sergiokopplin-indigo-gh-pages": { - "theme_key": "sergiokopplin-indigo-gh-pages", + "sergiokopplin-indigo": { + "theme_key": "sergiokopplin-indigo", "file": "jekyll-indigo.md", "name": "indigo", "title": "Jekyll Indigo", "github_username": "sergiokopplin", "repo": "sergiokopplin/indigo", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/sergiokopplin/indigo", "demo_url": "https://sergiokopplin.github.io/indigo/", - "stars": 2054, - "forks": 1913, - "open_issues": 20, - "last_commit": "2020-05-02T01:28:23Z", + "stars": 2391, + "forks": 2155, + "open_issues": 4, + "last_commit": "2022-05-06T11:39:53Z", "created_at": "2016-01-23T22:26:04Z", - "description": ":ramen: Minimalist Jekyll Template", - "stale": false, + "description": ":ramen: Minimalist Jekyll Template, dark and light themes", "images": { - "hires": "https://www.jamstackthemes.dev/capture/sergiokopplin-indigo-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sergiokopplin-indigo-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sergiokopplin-indigo-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sergiokopplin-indigo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sergiokopplin-indigo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sergiokopplin-indigo-2x.jpg" } }, - "sergiokopplin-violet-gh-pages": { - "theme_key": "sergiokopplin-violet-gh-pages", + "sergiokopplin-violet": { + "theme_key": "sergiokopplin-violet", "file": "jekyll-violet.md", "name": "violet", "title": "Violet", "github_username": "sergiokopplin", "repo": "sergiokopplin/violet", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/sergiokopplin/violet", - "demo_url": "http://sergiokopplin.github.io/violet/", - "stars": 36, - "forks": 54, - "open_issues": 0, + "demo_url": "https://sergiokopplin.github.io/violet/", + "stars": 37, + "forks": 57, + "open_issues": 2, "last_commit": "2017-02-12T02:07:40Z", "created_at": "2016-07-06T02:09:17Z", "description": ":crystal_ball: Violet Jekyll Template", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/sergiokopplin-violet-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sergiokopplin-violet-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sergiokopplin-violet-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sergiokopplin-violet.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sergiokopplin-violet.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sergiokopplin-violet-2x.jpg" + } + }, + "sfengyuan-edidor": { + "theme_key": "jacobsun-edidor", + "file": "hugo-edidor-theme.md", + "name": "edidor", + "title": "Edidor", + "github_username": "sfengyuan", + "repo": "sfengyuan/edidor", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/sfengyuan/edidor", + "demo_url": "https://themes.gohugo.io/theme/edidor/", + "stars": 34, + "forks": 14, + "open_issues": 0, + "last_commit": "2021-04-11T14:19:43Z", + "created_at": "2019-05-08T12:49:36Z", + "description": "A hugo theme that looks like an editor with a builtin style generator, INFINITE COLOR MODE from a market perspective. 😂", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/jacobsun-edidor.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jacobsun-edidor.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jacobsun-edidor-2x.jpg" } }, - "sfreytag-friday-theme-master": { - "theme_key": "sfreytag-friday-theme-master", + "sfreytag-friday-theme": { + "theme_key": "sfreytag-friday-theme", "file": "jekyll-friday-theme.md", "name": "friday-theme", "title": "Friday Theme", "github_username": "sfreytag", "repo": "sfreytag/friday-theme", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/sfreytag/friday-theme", "demo_url": "https://sfreytag.github.io/friday-theme/2017/10/19/friday-theme-multiple-images.html", - "stars": 34, - "forks": 41, + "stars": 56, + "forks": 75, "open_issues": 3, - "last_commit": "2020-05-23T11:56:09Z", + "last_commit": "2021-09-18T14:55:15Z", "created_at": "2017-10-16T10:03:35Z", "description": "A Bootstrap 4 portfolio and blog theme for Jekyll", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/sfreytag-friday-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sfreytag-friday-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sfreytag-friday-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sfreytag-friday-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sfreytag-friday-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sfreytag-friday-theme-2x.jpg" } }, - "shaform-hugo-theme-den-master": { - "theme_key": "shaform-hugo-theme-den-master", + "shaform-hugo-theme-den": { + "theme_key": "shaform-hugo-theme-den", "file": "hugo-theme-den.md", "name": "hugo-theme-den", "title": "Den", "github_username": "shaform", "repo": "shaform/hugo-theme-den", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/shaform/hugo-theme-den", "demo_url": "https://themes.gohugo.io/theme/hugo-theme-den/en", "stars": 20, - "forks": 17, + "forks": 16, "open_issues": 0, "last_commit": "2020-07-17T03:12:08Z", "created_at": "2018-07-15T13:29:45Z", "description": "A Simple Theme for Hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/shaform-hugo-theme-den-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/shaform-hugo-theme-den-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/shaform-hugo-theme-den-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/shaform-hugo-theme-den.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/shaform-hugo-theme-den.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/shaform-hugo-theme-den-2x.jpg" } }, - "shankar-hugo-grapes-master": { - "theme_key": "shankar-hugo-grapes-master", + "shankar-hugo-grapes": { + "theme_key": "shankar-hugo-grapes", "file": "hugo-grapes-theme.md", "name": "hugo-grapes", "title": "Hugo Grapes", "github_username": "shankar", "repo": "shankar/hugo-grapes", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/shankar/hugo-grapes", "demo_url": "https://themes.gohugo.io/theme/hugo-grapes/", - "stars": 7, - "forks": 10, + "stars": 8, + "forks": 9, "open_issues": 0, "last_commit": "2019-08-30T13:05:54Z", "created_at": "2018-10-23T04:13:29Z", "description": "A minimalistic text based theme for Hugo with grapes color theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/shankar-hugo-grapes-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/shankar-hugo-grapes-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/shankar-hugo-grapes-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/shankar-hugo-grapes.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/shankar-hugo-grapes.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/shankar-hugo-grapes-2x.jpg" } }, - "shantanu-deshmukh-vhealth-gatsby-master": { - "theme_key": "shantanu-deshmukh-vhealth-gatsby-master", + "shantanu-deshmukh-vhealth-gatsby": { + "theme_key": "shantanu-deshmukh-vhealth-gatsby", "file": "vhealth-gatsby.md", "name": "vhealth-gatsby", "title": "vHealth - Virtual healthcare", "github_username": "shantanu-deshmukh", "repo": "shantanu-deshmukh/vhealth-gatsby", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/shantanu-deshmukh/vhealth-gatsby", "demo_url": "https://vhealth.openthemes.dev/", - "stars": 13, - "forks": 7, + "stars": 38, + "forks": 16, "open_issues": 0, "last_commit": "2020-09-13T04:18:05Z", "created_at": "2020-08-19T03:52:02Z", "description": "Open source Gatsby template for a healthcare startup.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/shantanu-deshmukh-vhealth-gatsby-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/shantanu-deshmukh-vhealth-gatsby-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/shantanu-deshmukh-vhealth-gatsby-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/shantanu-deshmukh-vhealth-gatsby.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/shantanu-deshmukh-vhealth-gatsby.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/shantanu-deshmukh-vhealth-gatsby-2x.jpg" + } + }, + "sharadcodes-gatsby-theme-serial-programmer": { + "theme_key": "sharadcodes-gatsby-theme-serial-programmer", + "file": "gatsby-theme-serial-programmer.md", + "name": "gatsby-theme-serial-programmer", + "title": "Serial Programmer", + "github_username": "sharadcodes", + "repo": "sharadcodes/gatsby-theme-serial-programmer", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/sharadcodes/gatsby-theme-serial-programmer", + "demo_url": "https://gatsby-theme-serial-programmer.vercel.app/", + "stars": 30, + "forks": 16, + "open_issues": 0, + "last_commit": "2022-07-03T14:46:16Z", + "created_at": "2021-11-06T16:46:51Z", + "description": "A Gatsby theme for serial programmers (-.-)", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/sharadcodes-gatsby-theme-serial-programmer.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharadcodes-gatsby-theme-serial-programmer.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharadcodes-gatsby-theme-serial-programmer-2x.jpg" } }, - "sharadcodes-geekyll-starter-blog-master": { - "theme_key": "sharadcodes-geekyll-starter-blog-master", + "sharadcodes-geekyll-starter-blog": { + "theme_key": "sharadcodes-geekyll-starter-blog", "file": "geekyll-starter-blog.md", "name": "geekyll-starter-blog", "title": "Geekyll Starter Blog", "github_username": "sharadcodes", "repo": "sharadcodes/geekyll-starter-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/sharadcodes/geekyll-starter-blog", "demo_url": "https://sharadcodes.github.io/geekyll-starter-blog/", - "stars": 12, - "forks": 7, + "stars": 17, + "forks": 9, "open_issues": 0, "last_commit": "2020-08-29T13:27:05Z", "created_at": "2020-05-30T08:00:00Z", "description": "A minimal Jekyll theme for blogging", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/sharadcodes-geekyll-starter-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharadcodes-geekyll-starter-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharadcodes-geekyll-starter-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sharadcodes-geekyll-starter-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharadcodes-geekyll-starter-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharadcodes-geekyll-starter-blog-2x.jpg" + } + }, + "sharadcodes-hugo-theme-serial-programmer": { + "theme_key": "sharadcodes-hugo-theme-serial-programmer", + "file": "hugo-theme-serial-programmer.md", + "name": "hugo-theme-serial-programmer", + "title": "Serial Programmer", + "github_username": "sharadcodes", + "repo": "sharadcodes/hugo-theme-serial-programmer", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/sharadcodes/hugo-theme-serial-programmer", + "demo_url": "https://sharadcodes.github.io/hugo-theme-serial-programmer/", + "stars": 33, + "forks": 20, + "open_issues": 1, + "last_commit": "2022-07-22T04:00:19Z", + "created_at": "2021-11-06T11:22:00Z", + "description": "A Hugo theme for serial programmers (-.-)", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/sharadcodes-hugo-theme-serial-programmer.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharadcodes-hugo-theme-serial-programmer.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharadcodes-hugo-theme-serial-programmer-2x.jpg" } }, - "sharadcodes-jekyll-theme-dark-reader-master": { - "theme_key": "sharadcodes-jekyll-theme-dark-reader-master", + "sharadcodes-jekyll-theme-dark-reader": { + "theme_key": "sharadcodes-jekyll-theme-dark-reader", "file": "jekyll-theme-dark-reader.md", "name": "jekyll-theme-dark-reader", "title": "Dark Reader", "github_username": "sharadcodes", "repo": "sharadcodes/jekyll-theme-dark-reader", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/sharadcodes/jekyll-theme-dark-reader", "demo_url": "https://sharadcodes.github.io/jekyll-theme-dark-reader/", - "stars": 32, - "forks": 18, - "open_issues": 0, - "last_commit": "2020-09-11T18:10:54Z", + "stars": 47, + "forks": 24, + "open_issues": 4, + "last_commit": "2022-07-22T04:03:31Z", "created_at": "2019-11-25T10:59:04Z", "description": "A Minimal Dark theme for jekyll with minimal CSS and blazing fast loading of pages by Sharad Raj Singh Maurya", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/sharadcodes-jekyll-theme-dark-reader-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharadcodes-jekyll-theme-dark-reader-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-dark-reader-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sharadcodes-jekyll-theme-dark-reader.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharadcodes-jekyll-theme-dark-reader.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-dark-reader-2x.jpg" + } + }, + "sharadcodes-jekyll-theme-material-you": { + "theme_key": "sharadcodes-jekyll-theme-material-you", + "file": "jekyll-theme-material-you.md", + "name": "jekyll-theme-material-you", + "title": "Material You", + "github_username": "sharadcodes", + "repo": "sharadcodes/jekyll-theme-material-you", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/sharadcodes/jekyll-theme-material-you", + "demo_url": "https://sharadcodes.github.io/jekyll-theme-material-you/", + "stars": 13, + "forks": 5, + "open_issues": 2, + "last_commit": "2022-12-23T14:27:18Z", + "created_at": "2022-05-03T03:46:32Z", + "description": "A Jekyll theme for Material You Lovers", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/sharadcodes-jekyll-theme-material-you.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharadcodes-jekyll-theme-material-you.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-material-you-2x.jpg" } }, - "sharadcodes-jekyll-theme-milo-master": { - "theme_key": "sharadcodes-jekyll-theme-milo-master", + "sharadcodes-jekyll-theme-milo": { + "theme_key": "sharadcodes-jekyll-theme-milo", "file": "jekyll-theme-milo.md", "name": "jekyll-theme-milo", "title": "Milo Bootstrap", "github_username": "sharadcodes", "repo": "sharadcodes/jekyll-theme-milo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/sharadcodes/jekyll-theme-milo", "demo_url": "https://sharadcodes.github.io/jekyll-theme-milo/", - "stars": 6, - "forks": 10, + "stars": 7, + "forks": 12, "open_issues": 0, "last_commit": "2020-04-05T05:19:58Z", "created_at": "2018-12-22T13:44:48Z", "description": "A Bootstrap theme tweaked for Jekyll :heart:", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/sharadcodes-jekyll-theme-milo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharadcodes-jekyll-theme-milo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-milo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sharadcodes-jekyll-theme-milo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharadcodes-jekyll-theme-milo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-milo-2x.jpg" } }, - "sharadcodes-jekyll-theme-retro-yellow-master": { - "theme_key": "sharadcodes-jekyll-theme-retro-yellow-master", + "sharadcodes-jekyll-theme-retro-yellow": { + "theme_key": "sharadcodes-jekyll-theme-retro-yellow", "file": "jekyll-theme-retro-yellow.md", "name": "jekyll-theme-retro-yellow", "title": "Retro Yellow", "github_username": "sharadcodes", "repo": "sharadcodes/jekyll-theme-retro-yellow", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/sharadcodes/jekyll-theme-retro-yellow", "demo_url": "https://sharadcodes.github.io/jekyll-theme-retro-yellow/", - "stars": 0, - "forks": 1, - "open_issues": 0, - "last_commit": "2020-08-08T08:08:31Z", + "stars": 2, + "forks": 2, + "open_issues": 2, + "last_commit": "2022-10-21T04:02:35Z", "created_at": "2020-01-04T14:00:28Z", "description": "A super simple and Light theme for Jekyll with minimal CSS by Sharad Raj Singh Maurya", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/sharadcodes-jekyll-theme-retro-yellow-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharadcodes-jekyll-theme-retro-yellow-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-retro-yellow-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sharadcodes-jekyll-theme-retro-yellow.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharadcodes-jekyll-theme-retro-yellow.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-retro-yellow-2x.jpg" + } + }, + "sharadcodes-jekyll-theme-serial-programmer": { + "theme_key": "sharadcodes-jekyll-theme-serial-programmer", + "file": "jekyll-theme-serial-programmer.md", + "name": "jekyll-theme-serial-programmer", + "title": "Serial Programmer", + "github_username": "sharadcodes", + "repo": "sharadcodes/jekyll-theme-serial-programmer", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/sharadcodes/jekyll-theme-serial-programmer", + "demo_url": "https://sharadcodes.github.io/jekyll-theme-serial-programmer/", + "stars": 98, + "forks": 61, + "open_issues": 2, + "last_commit": "2022-11-25T11:48:03Z", + "created_at": "2021-11-04T05:37:10Z", + "description": "A Jekyll theme for serial programmers (-.-)", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/sharadcodes-jekyll-theme-serial-programmer.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharadcodes-jekyll-theme-serial-programmer.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-serial-programmer-2x.jpg" } }, - "sharu725-ashwath-master": { - "theme_key": "sharu725-ashwath-master", + "sharu725-ashwath": { + "theme_key": "sharu725-ashwath", "file": "jekyll-webjeda-ashwath.md", "name": "ashwath", "title": "Webjeda Ashwath", "github_username": "sharu725", "repo": "sharu725/ashwath", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/sharu725/ashwath", "demo_url": "https://webjeda.com/ashwath/", - "stars": 11, - "forks": 46, + "stars": 12, + "forks": 48, "open_issues": 1, - "last_commit": "2017-10-24T05:33:19Z", + "last_commit": "2021-08-21T12:54:23Z", "created_at": "2017-03-22T19:17:15Z", "description": "Minimal Jekyll Theme with an app like layout", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/sharu725-ashwath-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharu725-ashwath-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharu725-ashwath-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sharu725-ashwath.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharu725-ashwath.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharu725-ashwath-2x.jpg" } }, - "sharu725-bheema-master": { - "theme_key": "sharu725-bheema-master", + "sharu725-bheema": { + "theme_key": "sharu725-bheema", "file": "jekyll-bheema.md", "name": "bheema", "title": "Webjeda Bheema", "github_username": "sharu725", "repo": "sharu725/bheema", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/sharu725/bheema", "demo_url": "https://webjeda.com/bheema", - "stars": 11, - "forks": 38, + "stars": 16, + "forks": 43, "open_issues": 2, - "last_commit": "2017-03-27T15:26:44Z", + "last_commit": "2021-09-03T16:06:25Z", "created_at": "2016-12-08T18:01:48Z", - "description": "A journal theme", - "stale": true, + "description": "A simple jekyll theme for journal, news etc.", "images": { - "hires": "https://www.jamstackthemes.dev/capture/sharu725-bheema-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharu725-bheema-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharu725-bheema-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sharu725-bheema.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharu725-bheema.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharu725-bheema-2x.jpg" } }, - "sharu725-cards-master": { - "theme_key": "sharu725-cards-master", + "sharu725-cards": { + "theme_key": "sharu725-cards", "file": "jekyll-webjeda-cards.md", "name": "cards", "title": "Webjeda Cards", "github_username": "sharu725", "repo": "sharu725/cards", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/sharu725/cards", "demo_url": "https://webjeda.com/cards", - "stars": 81, - "forks": 245, - "open_issues": 0, - "last_commit": "2020-11-20T02:56:42Z", + "stars": 90, + "forks": 262, + "open_issues": 1, + "last_commit": "2022-06-23T04:30:13Z", "created_at": "2016-06-16T10:12:17Z", "description": "A bootstrap based minimal jekyll theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/sharu725-cards-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharu725-cards-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharu725-cards-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sharu725-cards.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharu725-cards.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharu725-cards-2x.jpg" } }, - "sharu725-gatok-master": { - "theme_key": "sharu725-gatok-master", + "sharu725-gatok": { + "theme_key": "sharu725-gatok", "file": "jekyll-gatok.md", "name": "gatok", "title": "Webjeda Gatok", "github_username": "sharu725", "repo": "sharu725/gatok", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/sharu725/gatok", "demo_url": "https://webjeda.com/gatok", - "stars": 25, + "stars": 26, "forks": 60, - "open_issues": 2, - "last_commit": "2019-11-15T04:27:14Z", + "open_issues": 1, + "last_commit": "2021-08-21T12:52:24Z", "created_at": "2016-07-15T17:24:18Z", "description": "A minimal responsive jekyll theme -Webjeda Gatok", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/sharu725-gatok-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharu725-gatok-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharu725-gatok-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sharu725-gatok.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharu725-gatok.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharu725-gatok-2x.jpg" } }, - "sharu725-hagura-gh-pages": { - "theme_key": "sharu725-hagura-gh-pages", + "sharu725-hagura": { + "theme_key": "sharu725-hagura", "file": "jekyll-hagura.md", "name": "hagura", "title": "Webjeda Hagura", "github_username": "sharu725", "repo": "sharu725/hagura", - "branch": "gh-pages", + "branch": "master", + "default_branch": "master", "github_url": "https://github.com/sharu725/hagura", "demo_url": "https://webjeda.com/hagura", - "stars": 230, - "forks": 137, + "stars": 255, + "forks": 152, "open_issues": 0, - "last_commit": "2019-11-14T06:30:34Z", + "last_commit": "2023-01-11T00:43:34Z", "created_at": "2016-11-02T14:30:30Z", "description": "A light weight, minimal Jekyll theme.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/sharu725-hagura-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharu725-hagura-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharu725-hagura-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sharu725-hagura.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharu725-hagura.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharu725-hagura-2x.jpg" } }, - "sharu725-karna-master": { - "theme_key": "sharu725-karna-master", + "sharu725-karna": { + "theme_key": "sharu725-karna", "file": "jekyll-karna.md", "name": "karna", "title": "Webjeda Karna", "github_username": "sharu725", "repo": "sharu725/karna", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/sharu725/karna", "demo_url": "https://webjeda.com/karna", - "stars": 42, - "forks": 94, + "stars": 43, + "forks": 99, "open_issues": 1, - "last_commit": "2017-10-24T13:29:08Z", + "last_commit": "2021-08-21T12:38:37Z", "created_at": "2016-11-01T14:59:40Z", "description": "Karna is a responsive jekyll theme which includes pinterest like pins", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/sharu725-karna-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharu725-karna-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharu725-karna-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sharu725-karna.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharu725-karna.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharu725-karna-2x.jpg" } }, - "sharu725-online-cv-master": { - "theme_key": "sharu725-online-cv-master", + "sharu725-online-cv": { + "theme_key": "sharu725-online-cv", "file": "jekyll-online-cv.md", "name": "online-cv", "title": "Online CV", "github_username": "sharu725", "repo": "sharu725/online-cv", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/sharu725/online-cv", "demo_url": "https://webjeda.com/online-cv/", - "stars": 1533, - "forks": 2995, - "open_issues": 17, - "last_commit": "2020-09-29T06:34:40Z", + "stars": 2331, + "forks": 4685, + "open_issues": 15, + "last_commit": "2023-01-19T18:44:41Z", "created_at": "2016-07-29T04:35:27Z", "description": "A minimal Jekyll Theme to host your resume (CV)", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/sharu725-online-cv-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharu725-online-cv-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharu725-online-cv-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sharu725-online-cv.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharu725-online-cv.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharu725-online-cv-2x.jpg" } }, - "sharu725-slides-master": { - "theme_key": "sharu725-slides-master", + "sharu725-slides": { + "theme_key": "sharu725-slides", "file": "jekyll-slides.md", "name": "slides", "title": "Webjeda Slides", "github_username": "sharu725", "repo": "sharu725/slides", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/sharu725/slides", "demo_url": "https://webjeda.com/slides/", - "stars": 52, - "forks": 52, + "stars": 56, + "forks": 54, "open_issues": 1, - "last_commit": "2019-11-15T04:26:57Z", + "last_commit": "2021-08-21T12:37:00Z", "created_at": "2016-07-06T17:15:11Z", "description": "A presentstion theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/sharu725-slides-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharu725-slides-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharu725-slides-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sharu725-slides.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharu725-slides.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharu725-slides-2x.jpg" } }, - "sharu725-thunder-master": { - "theme_key": "sharu725-thunder-master", + "sharu725-thunder": { + "theme_key": "sharu725-thunder", "file": "jekyll-thunder.md", "name": "thunder", "title": "Thunder", "github_username": "sharu725", "repo": "sharu725/thunder", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/sharu725/thunder", "demo_url": "https://webjeda.com/thunder/", "stars": 17, - "forks": 52, + "forks": 56, "open_issues": 0, - "last_commit": "2017-03-27T15:25:32Z", + "last_commit": "2021-08-21T12:43:00Z", "created_at": "2016-05-12T16:03:19Z", "description": "A minimal and superfast Jekyll theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/sharu725-thunder-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharu725-thunder-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharu725-thunder-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sharu725-thunder.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharu725-thunder.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharu725-thunder-2x.jpg" } }, - "sharu725-vyaasa-master": { - "theme_key": "sharu725-vyaasa-master", + "sharu725-vyaasa": { + "theme_key": "sharu725-vyaasa", "file": "jekyll-vyaasa.md", "name": "vyaasa", "title": "Vyaasa", "github_username": "sharu725", "repo": "sharu725/vyaasa", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/sharu725/vyaasa", "demo_url": "https://webjeda.com/vyaasa", - "stars": 23, - "forks": 41, + "stars": 24, + "forks": 38, "open_issues": 1, - "last_commit": "2019-11-15T04:29:41Z", + "last_commit": "2021-08-21T12:47:35Z", "created_at": "2016-09-22T14:23:34Z", "description": "Here is the demo", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/sharu725-vyaasa-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharu725-vyaasa-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharu725-vyaasa-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sharu725-vyaasa.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharu725-vyaasa.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharu725-vyaasa-2x.jpg" } }, - "sharvaridesai-hexo-theme-edinburgh-master": { - "theme_key": "sharvaridesai-hexo-theme-edinburgh-master", + "sharvaridesai-hexo-theme-edinburgh": { + "theme_key": "sharvaridesai-hexo-theme-edinburgh", "file": "hexo-theme-edinburgh.md", "name": "hexo-theme-edinburgh", "title": "Edinburgh", "github_username": "sharvaridesai", "repo": "sharvaridesai/hexo-theme-edinburgh", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/sharvaridesai/hexo-theme-edinburgh", "demo_url": "https://sharvaridesai.github.io/hexo-theme-edinburgh-demo/", - "stars": 277, - "forks": 69, - "open_issues": 15, + "stars": 336, + "forks": 76, + "open_issues": 17, "last_commit": "2017-08-03T01:16:41Z", "created_at": "2017-02-04T15:40:03Z", "description": "Beautiful minimal portfolio theme for Hexo.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/sharvaridesai-hexo-theme-edinburgh-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharvaridesai-hexo-theme-edinburgh-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharvaridesai-hexo-theme-edinburgh-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sharvaridesai-hexo-theme-edinburgh.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sharvaridesai-hexo-theme-edinburgh.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sharvaridesai-hexo-theme-edinburgh-2x.jpg" } }, - "shawnteoh-matjek-gh-pages": { - "theme_key": "shawnteoh-matjek-gh-pages", + "shawnteoh-matjek": { + "theme_key": "shawnteoh-matjek", "file": "jekyll-matjek-theme.md", "name": "matjek", "title": "MatJek", "github_username": "ShawnTeoh", "repo": "ShawnTeoh/matjek", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/ShawnTeoh/matjek", "demo_url": "https://shawnteoh.github.io/matjek", - "stars": 82, - "forks": 382, + "stars": 96, + "forks": 425, "open_issues": 10, "last_commit": "2017-06-27T17:43:21Z", "created_at": "2017-03-23T09:55:40Z", "description": "Material theme based on Materialize.css for jekyll sites", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/shawnteoh-matjek-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/shawnteoh-matjek-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/shawnteoh-matjek-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/shawnteoh-matjek.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/shawnteoh-matjek.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/shawnteoh-matjek-2x.jpg" } }, - "shenliyang-hexo-theme-snippet-master": { - "theme_key": "shenliyang-hexo-theme-snippet-master", + "shenliyang-hexo-theme-snippet": { + "theme_key": "shenliyang-hexo-theme-snippet", "file": "hexo-theme-snippet.md", "name": "hexo-theme-snippet", "title": "Snippet", "github_username": "shenliyang", "repo": "shenliyang/hexo-theme-snippet", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/shenliyang/hexo-theme-snippet", "demo_url": "https://www.91h5.cc/", - "stars": 970, - "forks": 205, - "open_issues": 12, - "last_commit": "2019-10-09T07:12:10Z", + "stars": 1053, + "forks": 212, + "open_issues": 9, + "last_commit": "2021-08-15T09:32:27Z", "created_at": "2017-07-10T09:26:39Z", "description": "Snippet 简洁而不简单,也许是一款你寻找已久的hexo主题", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/shenliyang-hexo-theme-snippet-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/shenliyang-hexo-theme-snippet-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/shenliyang-hexo-theme-snippet-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/shenliyang-hexo-theme-snippet.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/shenliyang-hexo-theme-snippet.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/shenliyang-hexo-theme-snippet-2x.jpg" } }, - "shenoybr-hugo-goa-master": { - "theme_key": "shenoybr-hugo-goa-master", + "shenoybr-hugo-goa": { + "theme_key": "shenoybr-hugo-goa", "file": "hugo-goa.md", "name": "hugo-goa", "title": "Goa", "github_username": "shenoybr", "repo": "shenoybr/hugo-goa", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/shenoybr/hugo-goa", "demo_url": "https://shenoybr.github.io/hugo-goa-demo/", - "stars": 192, - "forks": 106, - "open_issues": 15, - "last_commit": "2020-09-27T19:50:21Z", + "stars": 212, + "forks": 108, + "open_issues": 14, + "last_commit": "2021-03-19T04:24:46Z", "created_at": "2016-10-08T02:59:24Z", "description": "Simple Minimalistic Theme for Hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/shenoybr-hugo-goa-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/shenoybr-hugo-goa-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/shenoybr-hugo-goa-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/shenoybr-hugo-goa.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/shenoybr-hugo-goa.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/shenoybr-hugo-goa-2x.jpg" } }, - "shobhitchittora-gatsby-starter-fashion-portfolio-master": { - "theme_key": "shobhitchittora-gatsby-starter-fashion-portfolio-master", + "shobhitchittora-gatsby-starter-fashion-portfolio": { + "theme_key": "shobhitchittora-gatsby-starter-fashion-portfolio", "file": "gatsby-starter-fashion-portfolio.md", "name": "gatsby-starter-fashion-portfolio", "title": "Gatsby Fashion Portfolio", "github_username": "shobhitchittora", "repo": "shobhitchittora/gatsby-starter-fashion-portfolio", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/shobhitchittora/gatsby-starter-fashion-portfolio", "demo_url": "https://gatsby-starter-fashion-portfolio.netlify.com/", - "stars": 6, + "stars": 8, "forks": 3, - "open_issues": 8, - "last_commit": "2019-09-15T06:21:05Z", + "open_issues": 15, + "last_commit": "2021-05-08T14:29:06Z", "created_at": "2019-07-19T17:57:04Z", "description": "A Gatsby starter for a professional and minimal fashion portfolio.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/shobhitchittora-gatsby-starter-fashion-portfolio-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/shobhitchittora-gatsby-starter-fashion-portfolio-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/shobhitchittora-gatsby-starter-fashion-portfolio-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/shobhitchittora-gatsby-starter-fashion-portfolio.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/shobhitchittora-gatsby-starter-fashion-portfolio.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/shobhitchittora-gatsby-starter-fashion-portfolio-2x.jpg" } }, - "siawyoung-immaculate-master": { - "theme_key": "siawyoung-immaculate-master", + "siawyoung-immaculate": { + "theme_key": "siawyoung-immaculate", "file": "jekyll-immaculate.md", "name": "immaculate", "title": "Immaculate", "github_username": "siawyoung", "repo": "siawyoung/immaculate", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/siawyoung/immaculate", "demo_url": "https://cdn.ampproject.org/c/siawyoung.com/immaculate/", - "stars": 83, - "forks": 24, - "open_issues": 3, + "stars": 88, + "forks": 25, + "open_issues": 6, "last_commit": "2019-12-05T01:21:30Z", "created_at": "2016-03-30T07:48:59Z", "description": "A beautiful, fast, AMP-compliant Jekyll theme based on Tufte CSS.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/siawyoung-immaculate-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/siawyoung-immaculate-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/siawyoung-immaculate-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/siawyoung-immaculate.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/siawyoung-immaculate.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/siawyoung-immaculate-2x.jpg" } }, - "siegerts-hugo-theme-basic-master": { - "theme_key": "siegerts-hugo-theme-basic-master", + "siegerts-hugo-theme-basic": { + "theme_key": "siegerts-hugo-theme-basic", "file": "hugo-theme-basic.md", "name": "hugo-theme-basic", "title": "Basic", "github_username": "siegerts", "repo": "siegerts/hugo-theme-basic", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/siegerts/hugo-theme-basic", "demo_url": "https://hugo-theme-basic.netlify.com/", - "stars": 85, - "forks": 37, - "open_issues": 1, + "stars": 101, + "forks": 55, + "open_issues": 0, "last_commit": "2020-05-21T13:15:47Z", "created_at": "2019-02-01T18:42:50Z", "description": "Basic site theme styled with minimal tachyons, syntax highlighting, and blog series configuration. 📦", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/siegerts-hugo-theme-basic-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/siegerts-hugo-theme-basic-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/siegerts-hugo-theme-basic-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/siegerts-hugo-theme-basic.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/siegerts-hugo-theme-basic.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/siegerts-hugo-theme-basic-2x.jpg" + } + }, + "simarmannsingh-gatsby-netlifycms-starter-template": { + "theme_key": "simarmannsingh-gatsby-netlifycms-starter-template", + "file": "gatsby-netlifycms-blog-web-app.md", + "name": "gatsby-netlifycms-starter-template", + "title": "Gatsby Netlify CMS Modern blog web-app", + "github_username": "simarmannsingh", + "repo": "simarmannsingh/gatsby-netlifycms-starter-template", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/simarmannsingh/gatsby-netlifycms-starter-template", + "demo_url": "https://gatsby-netlifycms-modern-template.netlify.app/", + "stars": 39, + "forks": 14, + "open_issues": 2, + "last_commit": "2021-10-29T20:19:59Z", + "created_at": "2021-06-21T21:16:31Z", + "description": "All the technologies used are free and open-source. You are free to use this template for a personal hobby blog, a commercial news agency or professional journalist website etc. Don't forget to star the repo if you like this template. NOTE: I would not be able to work further on this project, until Mid November 2022 ", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/simarmannsingh-gatsby-netlifycms-starter-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/simarmannsingh-gatsby-netlifycms-starter-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/simarmannsingh-gatsby-netlifycms-starter-template-2x.jpg" } }, - "simplecode-io-gatsby-crafty-theme-master": { - "theme_key": "simplecode-io-gatsby-crafty-theme-master", + "simplecode-io-gatsby-crafty-theme": { + "theme_key": "simplecode-io-gatsby-crafty-theme", "file": "gatsby-crafty-theme.md", "name": "gatsby-crafty-theme", "title": "Gatsby Crafty Theme", "github_username": "simplecode-io", "repo": "simplecode-io/gatsby-crafty-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/simplecode-io/gatsby-crafty-theme", "demo_url": "https://demos.simplecode.io/gatsby/crafty/", - "stars": 14, + "stars": 25, "forks": 5, - "open_issues": 7, + "open_issues": 27, "last_commit": "2019-08-08T11:29:59Z", "created_at": "2019-08-07T17:16:18Z", "description": null, - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/simplecode-io-gatsby-crafty-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/simplecode-io-gatsby-crafty-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/simplecode-io-gatsby-crafty-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/simplecode-io-gatsby-crafty-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/simplecode-io-gatsby-crafty-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/simplecode-io-gatsby-crafty-theme-2x.jpg" } }, - "simpleyyt-jekyll-jacman-master": { - "theme_key": "simpleyyt-jekyll-jacman-master", + "simpleyyt-jekyll-jacman": { + "theme_key": "simpleyyt-jekyll-jacman", "file": "jekyll-jacman.md", "name": "jekyll-jacman", "title": "Jacman", "github_username": "Simpleyyt", "repo": "Simpleyyt/jekyll-jacman", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Simpleyyt/jekyll-jacman", "demo_url": "https://simpleyyt.github.io/jekyll-jacman", - "stars": 86, - "forks": 92, + "stars": 89, + "forks": 87, "open_issues": 11, "last_commit": "2017-07-22T06:07:16Z", "created_at": "2015-09-20T15:48:19Z", "description": "A fresh looking and responsive theme for Jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/simpleyyt-jekyll-jacman-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/simpleyyt-jekyll-jacman-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/simpleyyt-jekyll-jacman-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/simpleyyt-jekyll-jacman.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/simpleyyt-jekyll-jacman.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/simpleyyt-jekyll-jacman-2x.jpg" } }, - "simpleyyt-jekyll-simpleyyt-master": { - "theme_key": "simpleyyt-jekyll-simpleyyt-master", + "simpleyyt-jekyll-simpleyyt": { + "theme_key": "simpleyyt-jekyll-simpleyyt", "file": "jekyll-simpleyyt.md", "name": "jekyll-simpleyyt", "title": "Simpleyyt", "github_username": "Simpleyyt", "repo": "Simpleyyt/jekyll-simpleyyt", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Simpleyyt/jekyll-simpleyyt", "demo_url": "https://simpleyyt.github.io/jekyll-simpleyyt", - "stars": 43, - "forks": 48, + "stars": 42, + "forks": 44, "open_issues": 1, "last_commit": "2016-04-24T07:50:59Z", "created_at": "2014-04-07T09:01:09Z", "description": "Jekyll theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/simpleyyt-jekyll-simpleyyt-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/simpleyyt-jekyll-simpleyyt-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/simpleyyt-jekyll-simpleyyt-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/simpleyyt-jekyll-simpleyyt.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/simpleyyt-jekyll-simpleyyt.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/simpleyyt-jekyll-simpleyyt-2x.jpg" } }, - "simpleyyt-jekyll-theme-next-master": { - "theme_key": "simpleyyt-jekyll-theme-next-master", + "simpleyyt-jekyll-theme-next": { + "theme_key": "simpleyyt-jekyll-theme-next", "file": "jekyll-next-theme.md", "name": "jekyll-theme-next", "title": "NexT", "github_username": "Simpleyyt", "repo": "Simpleyyt/jekyll-theme-next", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Simpleyyt/jekyll-theme-next", "demo_url": "https://simpleyyt.github.io/jekyll-theme-next/", - "stars": 656, - "forks": 692, - "open_issues": 38, + "stars": 757, + "forks": 757, + "open_issues": 48, "last_commit": "2018-11-21T02:03:20Z", "created_at": "2017-07-21T08:44:59Z", "description": "Elegant theme for Jekyll.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/simpleyyt-jekyll-theme-next-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/simpleyyt-jekyll-theme-next-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/simpleyyt-jekyll-theme-next-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/simpleyyt-jekyll-theme-next.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/simpleyyt-jekyll-theme-next.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/simpleyyt-jekyll-theme-next-2x.jpg" } }, - "simply007-kontent-sample-app-gatsby-intranet-master": { - "theme_key": "simply007-kontent-sample-app-gatsby-intranet-master", + "simply007-kontent-sample-app-gatsby-intranet": { + "theme_key": "simply007-kontent-sample-app-gatsby-intranet", "file": "gatsby-kontent-paperbase.md", "name": "kontent-sample-app-gatsby-intranet", "title": "Gatsby Kontent Paperbase", "github_username": "Simply007", "repo": "Simply007/kontent-sample-app-gatsby-intranet", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Simply007/kontent-sample-app-gatsby-intranet", "demo_url": "https://kontent-sample-app-gatsby-intranet.netlify.app", - "stars": 3, - "forks": 1, + "stars": 9, + "forks": 6, "open_issues": 0, "last_commit": "2020-06-15T08:52:27Z", "created_at": "2019-08-27T05:41:12Z", "description": "Showcase of Kentico Kontent Intranet admin UI using Material design and Gatsby.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/simply007-kontent-sample-app-gatsby-intranet-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/simply007-kontent-sample-app-gatsby-intranet-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/simply007-kontent-sample-app-gatsby-intranet-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/simply007-kontent-sample-app-gatsby-intranet.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/simply007-kontent-sample-app-gatsby-intranet.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/simply007-kontent-sample-app-gatsby-intranet-2x.jpg" } }, - "simply007-kontent-sample-app-svelte-sapper-master": { - "theme_key": "simply007-kontent-sample-app-svelte-sapper-master", + "simply007-kontent-sample-app-svelte-sapper": { + "theme_key": "simply007-kontent-sample-app-svelte-sapper", "file": "sapper-kontent-cafe.md", "name": "kontent-sample-app-svelte-sapper", "title": "Sapper Kontent Café", "github_username": "Simply007", "repo": "Simply007/kontent-sample-app-svelte-sapper", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Simply007/kontent-sample-app-svelte-sapper", "demo_url": "https://kontent-sample-app-svelte-sapper.now.sh/", - "stars": 1, - "forks": 3, + "stars": 2, + "forks": 7, "open_issues": 0, "last_commit": "2020-09-24T06:29:13Z", "created_at": "2019-11-17T13:53:51Z", "description": "Showcase of the Svelte application using Sapper and Kentico Kontent as the content source.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/simply007-kontent-sample-app-svelte-sapper-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/simply007-kontent-sample-app-svelte-sapper-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/simply007-kontent-sample-app-svelte-sapper-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/simply007-kontent-sample-app-svelte-sapper.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/simply007-kontent-sample-app-svelte-sapper.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/simply007-kontent-sample-app-svelte-sapper-2x.jpg" } }, - "simply007-kontent-template-gatsby-landing-page-photon-master": { - "theme_key": "simply007-kontent-template-gatsby-landing-page-photon-master", + "simply007-kontent-template-gatsby-landing-page-photon": { + "theme_key": "simply007-kontent-template-gatsby-landing-page-photon", "file": "gatsby-kontent-photon.md", "name": "kontent-template-gatsby-landing-page-photon", "title": "Gatsby Kontent Photon", "github_username": "Simply007", "repo": "Simply007/kontent-template-gatsby-landing-page-photon", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Simply007/kontent-template-gatsby-landing-page-photon", "demo_url": "https://kontent-template-gatsby-landing-page-photon.netlify.app", - "stars": 9, - "forks": 13, + "stars": 12, + "forks": 16, "open_issues": 0, "last_commit": "2020-06-29T13:59:24Z", "created_at": "2019-05-03T10:39:07Z", "description": "Kentico Kontent web template using Gatsby and Kentico Kontent.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/simply007-kontent-template-gatsby-landing-page-photon-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/simply007-kontent-template-gatsby-landing-page-photon-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/simply007-kontent-template-gatsby-landing-page-photon-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/simply007-kontent-template-gatsby-landing-page-photon.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/simply007-kontent-template-gatsby-landing-page-photon.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/simply007-kontent-template-gatsby-landing-page-photon-2x.jpg" } }, - "smakosh-gatsby-apollo-starter-master": { - "theme_key": "smakosh-gatsby-apollo-starter-master", - "file": "gatsby-apollo-starter.md", - "name": "gatsby-apollo-starter", + "slashformotion-hugo-tufte": { + "theme_key": "slashformotion-hugo-tufte", + "file": "tufte.md", + "name": "hugo-tufte", + "title": "Tufte", + "github_username": "slashformotion", + "repo": "slashformotion/hugo-tufte", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/slashformotion/hugo-tufte", + "demo_url": "https://slashformotion.github.io/hugo-tufte/", + "stars": 85, + "forks": 26, + "open_issues": 2, + "last_commit": "2022-02-18T10:48:26Z", + "created_at": "2021-07-17T20:56:11Z", + "description": "Content centric Hugo blogging theme styled with Tufte-Css", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/slashformotion-hugo-tufte.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/slashformotion-hugo-tufte.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/slashformotion-hugo-tufte-2x.jpg" + } + }, + "smakosh-gatsby-apollo-starter": { + "theme_key": "smakosh-gatsby-apollo-starter", + "file": "gatsby-apollo-starter.md", + "name": "gatsby-apollo-starter", "title": "Gatsby Apollo Starter", "github_username": "smakosh", "repo": "smakosh/gatsby-apollo-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/smakosh/gatsby-apollo-starter", "demo_url": "https://gatsby-starter-apollo.smakosh.com/app/", - "stars": 14, - "forks": 5, + "stars": 16, + "forks": 4, "open_issues": 0, "last_commit": "2019-06-25T12:33:34Z", "created_at": "2019-06-25T12:25:49Z", "description": "Gatsby Apollo starter - with client side routing", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/smakosh-gatsby-apollo-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/smakosh-gatsby-apollo-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/smakosh-gatsby-apollo-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/smakosh-gatsby-apollo-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/smakosh-gatsby-apollo-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/smakosh-gatsby-apollo-starter-2x.jpg" } }, - "smakosh-gatsby-app-starter-rest-api-master": { - "theme_key": "smakosh-gatsby-app-starter-rest-api-master", + "smakosh-gatsby-app-starter-rest-api": { + "theme_key": "smakosh-gatsby-app-starter-rest-api", "file": "gatsby-app-starter-rest-api.md", "name": "gatsby-app-starter-rest-api", "title": "Gatsby App Starter Rest Api", "github_username": "smakosh", "repo": "smakosh/gatsby-app-starter-rest-api", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/smakosh/gatsby-app-starter-rest-api", "demo_url": "https://building-apps-with-gatsby.netlify.com", - "stars": 30, - "forks": 9, - "open_issues": 8, + "stars": 38, + "forks": 13, + "open_issues": 16, "last_commit": "2020-05-07T15:00:54Z", "created_at": "2019-05-14T06:50:04Z", "description": "Not todo Gatsby app for my talk", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/smakosh-gatsby-app-starter-rest-api-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/smakosh-gatsby-app-starter-rest-api-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/smakosh-gatsby-app-starter-rest-api-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/smakosh-gatsby-app-starter-rest-api.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/smakosh-gatsby-app-starter-rest-api.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/smakosh-gatsby-app-starter-rest-api-2x.jpg" } }, - "smakosh-gatsby-portfolio-dev-master": { - "theme_key": "smakosh-gatsby-portfolio-dev-master", + "smakosh-gatsby-portfolio-dev": { + "theme_key": "smakosh-gatsby-portfolio-dev", "file": "gatsby-portfolio-dev.md", "name": "gatsby-portfolio-dev", "title": "Gatsby Portfolio Dev", "github_username": "smakosh", "repo": "smakosh/gatsby-portfolio-dev", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/smakosh/gatsby-portfolio-dev", "demo_url": "https://portfolio.smakosh.com/", - "stars": 521, - "forks": 156, + "stars": 739, + "forks": 187, "open_issues": 0, - "last_commit": "2021-01-06T00:56:39Z", + "last_commit": "2021-10-14T04:05:40Z", "created_at": "2018-12-27T16:25:46Z", "description": "A portfolio for developers", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/smakosh-gatsby-portfolio-dev-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/smakosh-gatsby-portfolio-dev-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/smakosh-gatsby-portfolio-dev-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/smakosh-gatsby-portfolio-dev.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/smakosh-gatsby-portfolio-dev.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/smakosh-gatsby-portfolio-dev-2x.jpg" } }, - "smakosh-gatsby-starter-i18n-master": { - "theme_key": "smakosh-gatsby-starter-i18n-master", + "smakosh-gatsby-starter-i18n": { + "theme_key": "smakosh-gatsby-starter-i18n", "file": "gatsby-starter-i18n.md", "name": "gatsby-starter-i18n", "title": "Gatsby Starter i18n", "github_username": "smakosh", "repo": "smakosh/gatsby-starter-i18n", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/smakosh/gatsby-starter-i18n", "demo_url": "https://i18n.smakosh.com/", - "stars": 31, - "forks": 7, - "open_issues": 7, - "last_commit": "2020-03-24T22:39:20Z", + "stars": 34, + "forks": 6, + "open_issues": 12, + "last_commit": "2020-12-11T05:24:45Z", "created_at": "2018-10-05T23:07:08Z", "description": "Gatsby starter with i18n and some cool features", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/smakosh-gatsby-starter-i18n-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/smakosh-gatsby-starter-i18n-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/smakosh-gatsby-starter-i18n-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/smakosh-gatsby-starter-i18n.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/smakosh-gatsby-starter-i18n.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/smakosh-gatsby-starter-i18n-2x.jpg" } }, - "smallmuou-jekyll-pithy-master": { - "theme_key": "smallmuou-jekyll-pithy-master", + "smallmuou-jekyll-pithy": { + "theme_key": "smallmuou-jekyll-pithy", "file": "jekyll-pithy.md", "name": "Jekyll-Pithy", "title": "Pithy", "github_username": "smallmuou", "repo": "smallmuou/Jekyll-Pithy", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/smallmuou/Jekyll-Pithy", "demo_url": "https://wenva.github.io/", - "stars": 71, - "forks": 61, + "stars": 70, + "forks": 57, "open_issues": 2, "last_commit": "2017-03-24T06:13:34Z", "created_at": "2015-04-10T01:45:07Z", "description": "Pithy Jekyll Theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/smallmuou-jekyll-pithy-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/smallmuou-jekyll-pithy-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/smallmuou-jekyll-pithy-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/smallmuou-jekyll-pithy.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/smallmuou-jekyll-pithy.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/smallmuou-jekyll-pithy-2x.jpg" + } + }, + "smastrom-headless-gatsby-multilang": { + "theme_key": "smastrom-headless-gatsby-multilang", + "file": "headless-gatsby-multilang.md", + "name": "headless-gatsby-multilang", + "title": "Gatsby Headless Multilingual", + "github_username": "smastrom", + "repo": "smastrom/headless-gatsby-multilang", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/smastrom/headless-gatsby-multilang", + "demo_url": "https://headlessmultilingual.gatsbyjs.io/", + "stars": 58, + "forks": 19, + "open_issues": 0, + "last_commit": "2022-08-13T20:18:09Z", + "created_at": "2021-09-20T10:03:30Z", + "description": "Powerful multilanguage starter for Gatsby. Built without any internationalization plugin. Completely headless.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/smastrom-headless-gatsby-multilang.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/smastrom-headless-gatsby-multilang.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/smastrom-headless-gatsby-multilang-2x.jpg" } }, - "smolcodes-twentytwenyonetheme-main": { - "theme_key": "smolcodes-twentytwenyonetheme-main", + "smolcodes-twentytwenyonetheme": { + "theme_key": "smolcodes-twentytwenyonetheme", "file": "twentytwentyone.md", "name": "twentytwenyonetheme", "title": "Twenty Twentyone", "github_username": "smolcodes", "repo": "smolcodes/twentytwenyonetheme", "branch": "main", + "default_branch": "main", "github_url": "https://github.com/smolcodes/twentytwenyonetheme", "demo_url": "https://twentytwenyonetheme.netlify.app/", - "stars": 0, - "forks": 0, + "stars": 4, + "forks": 2, "open_issues": 0, "last_commit": "2021-02-02T04:08:26Z", "created_at": "2021-01-21T20:35:55Z", "description": "A Starter 11ty Theme designed with TailwindCSS with one click install for Netlify", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/smolcodes-twentytwenyonetheme-main.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/smolcodes-twentytwenyonetheme-main.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/smolcodes-twentytwenyonetheme-main-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/smolcodes-twentytwenyonetheme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/smolcodes-twentytwenyonetheme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/smolcodes-twentytwenyonetheme-2x.jpg" } }, - "snipcart-11ty-demo-snipcart-master": { - "theme_key": "snipcart-11ty-demo-snipcart-master", + "snipcart-11ty-demo-snipcart": { + "theme_key": "snipcart-11ty-demo-snipcart", "file": "11ty-demo-snipcart.md", "name": "11ty-demo-snipcart", "title": "Eleventy 2 Snipcart", "github_username": "snipcart", "repo": "snipcart/11ty-demo-snipcart", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/snipcart/11ty-demo-snipcart", "demo_url": "https://snipcart-11ty-demo.netlify.com/", - "stars": 23, - "forks": 3, + "stars": 33, + "forks": 5, "open_issues": 0, "last_commit": "2019-02-25T21:31:29Z", "created_at": "2018-10-03T18:24:48Z", "description": "A demo app built with JavaScript SSG 11ty", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/snipcart-11ty-demo-snipcart-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/snipcart-11ty-demo-snipcart-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/snipcart-11ty-demo-snipcart-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/snipcart-11ty-demo-snipcart.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/snipcart-11ty-demo-snipcart.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/snipcart-11ty-demo-snipcart-2x.jpg" } }, - "snipcart-directus-metalsmith-snipcart-master": { - "theme_key": "snipcart-directus-metalsmith-snipcart-master", + "snipcart-directus-metalsmith-snipcart": { + "theme_key": "snipcart-directus-metalsmith-snipcart", "file": "directus-metalsmith-snipcart.md", "name": "directus-metalsmith-snipcart", "title": "Directus Metalsmith Snipcart", "github_username": "snipcart", "repo": "snipcart/directus-metalsmith-snipcart", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/snipcart/directus-metalsmith-snipcart", "demo_url": "https://snipcart-directus-metalsmith.netlify.com", "stars": 14, @@ -18723,1892 +23154,2321 @@ "last_commit": "2017-03-06T10:24:38Z", "created_at": "2017-03-02T18:16:02Z", "description": "Lookbook web app with Directus' open source headless CMS, Metalsmith, Vue.js & Snipcart", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/snipcart-directus-metalsmith-snipcart-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/snipcart-directus-metalsmith-snipcart-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/snipcart-directus-metalsmith-snipcart-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/snipcart-directus-metalsmith-snipcart.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/snipcart-directus-metalsmith-snipcart.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/snipcart-directus-metalsmith-snipcart-2x.jpg" } }, - "snipcart-snipcart-middleman-integration-master": { - "theme_key": "snipcart-snipcart-middleman-integration-master", + "snipcart-snipcart-middleman-integration": { + "theme_key": "snipcart-snipcart-middleman-integration", "file": "snipcart-middleman-integration.md", "name": "snipcart-middleman-integration", "title": "Snipcart Middleman", "github_username": "snipcart", "repo": "snipcart/snipcart-middleman-integration", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/snipcart/snipcart-middleman-integration", "demo_url": "https://snipcart-middleman.netlify.com/", - "stars": 10, + "stars": 14, "forks": 4, "open_issues": 0, "last_commit": "2017-01-26T21:44:31Z", "created_at": "2015-01-13T23:50:25Z", "description": "Demo code for an e-commerce static site with Snipcart & Middleman.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/snipcart-snipcart-middleman-integration-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/snipcart-snipcart-middleman-integration-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/snipcart-snipcart-middleman-integration-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/snipcart-snipcart-middleman-integration.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/snipcart-snipcart-middleman-integration.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/snipcart-snipcart-middleman-integration-2x.jpg" } }, - "snipcart-stackbit-theme-planty-master": { - "theme_key": "snipcart-stackbit-theme-planty-master", + "snipcart-stackbit-theme-planty": { + "theme_key": "snipcart-stackbit-theme-planty", "file": "planty.md", "name": "stackbit-theme-planty", "title": "Planty", "github_username": "snipcart", "repo": "snipcart/stackbit-theme-planty", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/snipcart/stackbit-theme-planty", "demo_url": "https://stackbit-theme-planty.netlify.com", - "stars": 143, - "forks": 108, - "open_issues": 6, - "last_commit": "2020-11-13T13:41:19Z", + "stars": 254, + "forks": 187, + "open_issues": 8, + "last_commit": "2021-10-29T13:59:08Z", "created_at": "2019-07-05T21:44:11Z", "description": "Planty is an e-commerce ready theme for Stackbit, powered by Snipcart.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/snipcart-stackbit-theme-planty-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/snipcart-stackbit-theme-planty-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/snipcart-stackbit-theme-planty-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/snipcart-stackbit-theme-planty.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/snipcart-stackbit-theme-planty.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/snipcart-stackbit-theme-planty-2x.jpg" } }, - "songroger-murmur-master": { - "theme_key": "songroger-murmur-master", + "songroger-murmur": { + "theme_key": "songroger-murmur", "file": "jekyll-murmur.md", "name": "murmur", "title": "Murmur", "github_username": "songroger", "repo": "songroger/murmur", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/songroger/murmur", "demo_url": "https://songroger.github.io/murmur", - "stars": 16, - "forks": 11, + "stars": 17, + "forks": 12, "open_issues": 1, "last_commit": "2020-05-18T10:07:16Z", "created_at": "2016-11-03T06:46:39Z", "description": "This is another simple theme for jekyll. http://songroger.win/murmur", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/songroger-murmur-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/songroger-murmur-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/songroger-murmur-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/songroger-murmur.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/songroger-murmur.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/songroger-murmur-2x.jpg" } }, - "south-paw-awesome-gatsby-starter-master": { - "theme_key": "south-paw-awesome-gatsby-starter-master", + "south-paw-awesome-gatsby-starter": { + "theme_key": "south-paw-awesome-gatsby-starter", "file": "gatsby-awesome-starter.md", "name": "awesome-gatsby-starter", "title": "Gatsby Awesome Starter", "github_username": "South-Paw", "repo": "South-Paw/awesome-gatsby-starter", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/South-Paw/awesome-gatsby-starter", "demo_url": "https://awesome-gatsby-starter.netlify.com/", - "stars": 31, - "forks": 10, + "stars": 34, + "forks": 9, "open_issues": 0, - "last_commit": "2020-06-19T09:26:07Z", + "last_commit": "2022-10-31T06:38:12Z", "created_at": "2018-12-19T08:58:58Z", - "description": "👌 A starter for GatsbyJS with a preconfigured MDX, Storybook and ESLint environment", - "stale": false, + "description": "👌 A starter for Gatsby 4 with TypeScript, Chakra UI, ESLint and Prettier", "images": { - "hires": "https://www.jamstackthemes.dev/capture/south-paw-awesome-gatsby-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/south-paw-awesome-gatsby-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/south-paw-awesome-gatsby-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/south-paw-awesome-gatsby-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/south-paw-awesome-gatsby-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/south-paw-awesome-gatsby-starter-2x.jpg" } }, - "spaceg-glas-master": { - "theme_key": "spaceg-glas-master", + "spaceg-glas": { + "theme_key": "spaceg-glas", "file": "jekyll-glas.md", "name": "glas", "title": "Glas", "github_username": "SpaceG", "repo": "SpaceG/glas", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/SpaceG/glas", "demo_url": "https://lucasgatsas.ch", - "stars": 63, - "forks": 59, + "stars": 64, + "forks": 60, "open_issues": 1, "last_commit": "2018-10-18T03:31:24Z", "created_at": "2015-03-01T23:39:41Z", "description": ":mortar_board: Glas - Ruby on Rails - Jekyll ", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/spaceg-glas-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/spaceg-glas-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/spaceg-glas-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/spaceg-glas.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/spaceg-glas.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/spaceg-glas-2x.jpg" } }, - "sparanoid-almace-scaffolding-master": { - "theme_key": "sparanoid-almace-scaffolding-master", + "sparanoid-almace-scaffolding": { + "theme_key": "sparanoid-almace-scaffolding", "file": "almace-scaffolding.md", "name": "almace-scaffolding", "title": "Almace Scaffolding", "github_username": "sparanoid", "repo": "sparanoid/almace-scaffolding", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/sparanoid/almace-scaffolding", "demo_url": "https://sparanoid.com/lab/amsf/", - "stars": 271, - "forks": 160, - "open_issues": 3, - "last_commit": "2020-12-11T02:14:48Z", + "stars": 304, + "forks": 180, + "open_issues": 10, + "last_commit": "2022-12-20T16:41:21Z", "created_at": "2013-12-31T11:24:45Z", "description": "AMSF, a.k.a. Almace Scaffolding, a super-fast Jekyll framework fighting against the website obesity.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/sparanoid-almace-scaffolding-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sparanoid-almace-scaffolding-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sparanoid-almace-scaffolding-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sparanoid-almace-scaffolding.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sparanoid-almace-scaffolding.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sparanoid-almace-scaffolding-2x.jpg" } }, - "spech66-bootstrap-bp-hugo-startpage-master": { - "theme_key": "spech66-bootstrap-bp-hugo-startpage-master", + "spech66-bootstrap-bp-hugo-startpage": { + "theme_key": "spech66-bootstrap-bp-hugo-startpage", "file": "hugo-bootstrap-bp-startpage.md", "name": "bootstrap-bp-hugo-startpage", "title": "Bootstrap-BP-Startpage", "github_username": "spech66", "repo": "spech66/bootstrap-bp-hugo-startpage", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/spech66/bootstrap-bp-hugo-startpage", "demo_url": "https://themes.gohugo.io/theme/bootstrap-bp-hugo-startpage/", - "stars": 34, - "forks": 15, + "stars": 41, + "forks": 21, "open_issues": 0, - "last_commit": "2020-11-07T15:03:56Z", + "last_commit": "2021-03-27T06:02:12Z", "created_at": "2019-07-22T09:15:15Z", "description": "Bootstrap based Hugo startpage theme which provides out of the box best practices.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/spech66-bootstrap-bp-hugo-startpage-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/spech66-bootstrap-bp-hugo-startpage-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/spech66-bootstrap-bp-hugo-startpage-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/spech66-bootstrap-bp-hugo-startpage.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/spech66-bootstrap-bp-hugo-startpage.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/spech66-bootstrap-bp-hugo-startpage-2x.jpg" } }, - "spech66-bootstrap-bp-hugo-theme-master": { - "theme_key": "spech66-bootstrap-bp-hugo-theme-master", + "spech66-bootstrap-bp-hugo-theme": { + "theme_key": "spech66-bootstrap-bp-hugo-theme", "file": "hugo-bootstrap-bp.md", "name": "bootstrap-bp-hugo-theme", "title": "Bootstrap-BP", "github_username": "spech66", "repo": "spech66/bootstrap-bp-hugo-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/spech66/bootstrap-bp-hugo-theme", "demo_url": "https://themes.gohugo.io/theme/bootstrap-bp-hugo-theme/", - "stars": 32, - "forks": 16, + "stars": 38, + "forks": 18, "open_issues": 0, - "last_commit": "2020-11-07T13:47:45Z", + "last_commit": "2021-03-27T06:13:13Z", "created_at": "2018-10-27T19:44:58Z", "description": "Bootstrap based Hugo theme which provides out of the box best practices.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/spech66-bootstrap-bp-hugo-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/spech66-bootstrap-bp-hugo-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/spech66-bootstrap-bp-hugo-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/spech66-bootstrap-bp-hugo-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/spech66-bootstrap-bp-hugo-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/spech66-bootstrap-bp-hugo-theme-2x.jpg" } }, - "spf13-hyde-master": { - "theme_key": "spf13-hyde-master", + "spf13-hyde": { + "theme_key": "spf13-hyde", "file": "hugo-hyde-theme.md", "name": "hyde", "title": "Hyde", "github_username": "spf13", "repo": "spf13/hyde", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/spf13/hyde", "demo_url": "https://themes.gohugo.io/theme/hyde/", - "stars": 430, - "forks": 491, - "open_issues": 11, - "last_commit": "2020-02-23T23:14:53Z", + "stars": 461, + "forks": 525, + "open_issues": 10, + "last_commit": "2021-04-02T09:00:43Z", "created_at": "2014-05-23T19:47:51Z", "description": "Port of Mdo's excellent theme to Hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/spf13-hyde-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/spf13-hyde-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/spf13-hyde-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/spf13-hyde.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/spf13-hyde.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/spf13-hyde-2x.jpg" + } + }, + "spinalcms-11ty-docs-template": { + "theme_key": "spinalcms-11ty-docs-template", + "file": "11ty-docs.md", + "name": "11ty-docs-template", + "title": "11ty documentation template using Tailwind CSS", + "github_username": "SpinalCMS", + "repo": "SpinalCMS/11ty-docs-template", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/SpinalCMS/11ty-docs-template", + "demo_url": "https://11ty-docs-theme.spinalcms.com/", + "stars": 9, + "forks": 3, + "open_issues": 0, + "last_commit": "2022-12-13T07:40:06Z", + "created_at": "2022-09-09T10:09:50Z", + "description": "An 11ty + Tailwind CSS theme for your documentation site ", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/spinalcms-11ty-docs-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/spinalcms-11ty-docs-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/spinalcms-11ty-docs-template-2x.jpg" } }, - "spookey-slick-master": { - "theme_key": "spookey-slick-master", + "spookey-slick": { + "theme_key": "spookey-slick", "file": "hugo-slick-theme.md", "name": "slick", "title": "Slick", "github_username": "spookey", "repo": "spookey/slick", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/spookey/slick", "demo_url": "https://themes.gohugo.io/theme/slick/", - "stars": 39, - "forks": 15, + "stars": 42, + "forks": 18, "open_issues": 0, - "last_commit": "2021-01-10T19:56:59Z", + "last_commit": "2021-09-14T17:08:58Z", "created_at": "2018-12-09T14:04:20Z", "description": "A fast, minimal, responsive theme for Hugo which honours your privacy", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/spookey-slick-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/spookey-slick-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/spookey-slick-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/spookey-slick.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/spookey-slick.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/spookey-slick-2x.jpg" } }, - "squidfunk-mkdocs-material-master": { - "theme_key": "squidfunk-mkdocs-material-master", + "squidfunk-mkdocs-material": { + "theme_key": "squidfunk-mkdocs-material", "file": "mkdocs-material.md", "name": "mkdocs-material", "title": "MkDocs Material", "github_username": "squidfunk", "repo": "squidfunk/mkdocs-material", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/squidfunk/mkdocs-material", "demo_url": "https://squidfunk.github.io/mkdocs-material/", - "stars": 5328, - "forks": 1350, - "open_issues": 10, - "last_commit": "2021-01-09T12:43:17Z", + "stars": 12494, + "forks": 2738, + "open_issues": 22, + "last_commit": "2023-01-21T17:04:30Z", "created_at": "2016-01-28T22:09:23Z", - "description": "A Material Design theme for MkDocs", - "stale": false, + "description": "Documentation that simply works", "images": { - "hires": "https://www.jamstackthemes.dev/capture/squidfunk-mkdocs-material-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/squidfunk-mkdocs-material-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/squidfunk-mkdocs-material-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/squidfunk-mkdocs-material.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/squidfunk-mkdocs-material.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/squidfunk-mkdocs-material-2x.jpg" } }, - "ssokurenko-jekyll-smart-material-gh-pages": { - "theme_key": "ssokurenko-jekyll-smart-material-gh-pages", + "ssokurenko-jekyll-smart-material": { + "theme_key": "ssokurenko-jekyll-smart-material", "file": "jekyll-smart-material-theme.md", "name": "jekyll-smart-material", "title": "Smart Material", "github_username": "ssokurenko", "repo": "ssokurenko/jekyll-smart-material", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/ssokurenko/jekyll-smart-material", "demo_url": "https://ssokurenko.github.io/jekyll-smart-material/", - "stars": 12, - "forks": 21, + "stars": 13, + "forks": 20, "open_issues": 0, "last_commit": "2016-09-20T18:43:37Z", "created_at": "2015-10-22T20:08:05Z", "description": "Smart Material Design theme for Jekyll, demo:", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ssokurenko-jekyll-smart-material-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ssokurenko-jekyll-smart-material-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ssokurenko-jekyll-smart-material-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ssokurenko-jekyll-smart-material.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ssokurenko-jekyll-smart-material.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ssokurenko-jekyll-smart-material-2x.jpg" } }, - "st4ple-solid-jekyll-master": { - "theme_key": "st4ple-solid-jekyll-master", + "st4ple-solid-jekyll": { + "theme_key": "st4ple-solid-jekyll", "file": "jekyll-solid.md", "name": "solid-jekyll", "title": "Solid", "github_username": "st4ple", "repo": "st4ple/solid-jekyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/st4ple/solid-jekyll", "demo_url": "https://st4ple.github.io/solid-jekyll/", - "stars": 328, - "forks": 446, - "open_issues": 8, + "stars": 339, + "forks": 452, + "open_issues": 9, "last_commit": "2019-05-07T08:43:03Z", "created_at": "2014-08-15T13:40:18Z", "description": "A Jekyll port of the Solid theme (by blacktie.co). ", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/st4ple-solid-jekyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/st4ple-solid-jekyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/st4ple-solid-jekyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/st4ple-solid-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/st4ple-solid-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/st4ple-solid-jekyll-2x.jpg" } }, - "stackbit-stackbit-theme-ampersand-master": { - "theme_key": "stackbit-stackbit-theme-ampersand-master", + "stackbit-stackbit-theme-ampersand": { + "theme_key": "stackbit-stackbit-theme-ampersand", "file": "stackbit-ampersand-unibit.md", "name": "stackbit-theme-ampersand", "title": "Ampersand", "github_username": "stackbit", "repo": "stackbit/stackbit-theme-ampersand", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/stackbit/stackbit-theme-ampersand", "demo_url": "https://themes.stackbit.com/demos/ampersand?themeBarHidden=true", - "stars": 33, + "stars": 37, "forks": 20, "open_issues": 4, - "last_commit": "2021-01-07T21:19:28Z", + "last_commit": "2021-02-23T09:21:56Z", "created_at": "2019-05-10T13:57:28Z", "description": "Ampersand a Medium inspired blogging theme for Stackbit", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/stackbit-stackbit-theme-ampersand-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-stackbit-theme-ampersand-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-stackbit-theme-ampersand-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/stackbit-stackbit-theme-ampersand.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-stackbit-theme-ampersand.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-stackbit-theme-ampersand-2x.jpg" + } + }, + "stackbit-stackbit-theme-archetype": { + "theme_key": "stackbit-stackbit-theme-archetype", + "file": "stackbit-archetype-unibit.md", + "name": "stackbit-theme-archetype", + "title": "Archetype", + "github_username": "stackbit", + "repo": "stackbit/stackbit-theme-archetype", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/stackbit/stackbit-theme-archetype", + "demo_url": "https://themes.stackbit.com/demos/archetype/blue?themeBarHidden=true", + "stars": 5, + "forks": 8, + "open_issues": 1, + "last_commit": "2020-05-21T19:32:52Z", + "created_at": "2019-05-10T13:59:15Z", + "description": "Archetype a multi-layout theme with posts for Stackbit", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-stackbit-theme-archetype.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-stackbit-theme-archetype.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-stackbit-theme-archetype-2x.jpg" } }, - "stackbit-stackbit-theme-azimuth-master": { - "theme_key": "stackbit-stackbit-theme-azimuth-master", + "stackbit-stackbit-theme-azimuth": { + "theme_key": "stackbit-stackbit-theme-azimuth", "file": "stackbit-azimuth-unibit.md", "name": "stackbit-theme-azimuth", "title": "Azimuth", "github_username": "stackbit", "repo": "stackbit/stackbit-theme-azimuth", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/stackbit/stackbit-theme-azimuth", "demo_url": "https://themes.stackbit.com/demos/azimuth?themeBarHidden=true", - "stars": 87, - "forks": 79, - "open_issues": 5, - "last_commit": "2021-01-27T08:41:47Z", + "stars": 90, + "forks": 83, + "open_issues": 4, + "last_commit": "2021-02-23T09:24:08Z", "created_at": "2019-05-23T18:24:11Z", "description": "Azimuth is a sleek SaaS theme for Stackbit", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/stackbit-stackbit-theme-azimuth-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-stackbit-theme-azimuth-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-stackbit-theme-azimuth-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/stackbit-stackbit-theme-azimuth.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-stackbit-theme-azimuth.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-stackbit-theme-azimuth-2x.jpg" + } + }, + "stackbit-stackbit-theme-construct": { + "theme_key": "stackbit-stackbit-theme-construct", + "file": "stackbit-construct-unibit.md", + "name": "stackbit-theme-construct", + "title": "Construct", + "github_username": "stackbit", + "repo": "stackbit/stackbit-theme-construct", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/stackbit/stackbit-theme-construct", + "demo_url": "https://themes.stackbit.com/demos/construct/blue?themeBarHidden=true", + "stars": 7, + "forks": 4, + "open_issues": 1, + "last_commit": "2020-05-21T19:37:41Z", + "created_at": "2019-05-10T14:33:16Z", + "description": "Construct a multipage theme for Stackbit", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-stackbit-theme-construct.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-stackbit-theme-construct.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-stackbit-theme-construct-2x.jpg" } }, - "stackbit-stackbit-theme-diy-master": { - "theme_key": "stackbit-stackbit-theme-diy-master", + "stackbit-stackbit-theme-diy": { + "theme_key": "stackbit-stackbit-theme-diy", "file": "stackbit-diy-unibit.md", "name": "stackbit-theme-diy", "title": "DIY", "github_username": "stackbit", "repo": "stackbit/stackbit-theme-diy", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/stackbit/stackbit-theme-diy", "demo_url": "https://themes.stackbit.com/demos/diy?themeBarHidden=true", - "stars": 17, - "forks": 9, + "stars": 21, + "forks": 10, "open_issues": 1, - "last_commit": "2021-01-30T22:04:22Z", + "last_commit": "2021-02-23T09:26:26Z", "created_at": "2020-07-29T05:23:25Z", "description": "A \"do it yourself\" Stackbit theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/stackbit-stackbit-theme-diy-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-stackbit-theme-diy-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-stackbit-theme-diy-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/stackbit-stackbit-theme-diy.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-stackbit-theme-diy.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-stackbit-theme-diy-2x.jpg" } }, - "stackbit-stackbit-theme-exto-master": { - "theme_key": "stackbit-stackbit-theme-exto-master", + "stackbit-stackbit-theme-exto": { + "theme_key": "stackbit-stackbit-theme-exto", "file": "stackbit-exto-unibit.md", "name": "stackbit-theme-exto", "title": "Exto", "github_username": "stackbit", "repo": "stackbit/stackbit-theme-exto", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/stackbit/stackbit-theme-exto", "demo_url": "https://themes.stackbit.com/demos/exto?themeBarHidden=true", - "stars": 51, + "stars": 52, "forks": 47, "open_issues": 3, - "last_commit": "2021-01-07T21:24:40Z", + "last_commit": "2021-02-23T11:30:59Z", "created_at": "2019-05-23T18:26:16Z", "description": "Exto is a portfolio theme with a blog for Stackbit", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/stackbit-stackbit-theme-exto-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-stackbit-theme-exto-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-stackbit-theme-exto-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/stackbit-stackbit-theme-exto.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-stackbit-theme-exto.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-stackbit-theme-exto-2x.jpg" } }, - "stackbit-stackbit-theme-fjord-master": { - "theme_key": "stackbit-stackbit-theme-fjord-master", + "stackbit-stackbit-theme-fjord": { + "theme_key": "stackbit-stackbit-theme-fjord", "file": "stackbit-fjord-unibit.md", "name": "stackbit-theme-fjord", "title": "Fjord", "github_username": "stackbit", "repo": "stackbit/stackbit-theme-fjord", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/stackbit/stackbit-theme-fjord", "demo_url": "https://themes.stackbit.com/demos/fjord?themeBarHidden=true", - "stars": 47, - "forks": 56, + "stars": 48, + "forks": 59, "open_issues": 1, - "last_commit": "2021-01-07T21:21:00Z", + "last_commit": "2021-02-23T09:31:58Z", "created_at": "2019-05-10T14:35:02Z", "description": "Fjord is a minimal blogging theme for Stackbit", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/stackbit-stackbit-theme-fjord-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-stackbit-theme-fjord-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-stackbit-theme-fjord-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/stackbit-stackbit-theme-fjord.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-stackbit-theme-fjord.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-stackbit-theme-fjord-2x.jpg" + } + }, + "stackbit-stackbit-theme-fractal": { + "theme_key": "stackbit-stackbit-theme-fractal", + "file": "stackbit-fractal-unibit.md", + "name": "stackbit-theme-fractal", + "title": "Fractal", + "github_username": "stackbit", + "repo": "stackbit/stackbit-theme-fractal", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/stackbit/stackbit-theme-fractal", + "demo_url": "https://themes.stackbit.com/demos/fractal/blue?themeBarHidden=true", + "stars": 6, + "forks": 7, + "open_issues": 1, + "last_commit": "2020-05-21T19:34:07Z", + "created_at": "2019-05-10T14:36:37Z", + "description": "Fractal single page mobile application marketing theme for Stackbit", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-stackbit-theme-fractal.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-stackbit-theme-fractal.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-stackbit-theme-fractal-2x.jpg" } }, - "stackbit-stackbit-theme-fresh-master": { - "theme_key": "stackbit-stackbit-theme-fresh-master", + "stackbit-stackbit-theme-fresh": { + "theme_key": "stackbit-stackbit-theme-fresh", "file": "stackbit-fresh-unibit.md", "name": "stackbit-theme-fresh", "title": "Fresh", "github_username": "stackbit", "repo": "stackbit/stackbit-theme-fresh", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/stackbit/stackbit-theme-fresh", "demo_url": "https://themes.stackbit.com/demos/fresh?themeBarHidden=true", - "stars": 55, - "forks": 66, + "stars": 56, + "forks": 69, "open_issues": 4, - "last_commit": "2021-01-07T21:17:56Z", + "last_commit": "2021-02-23T09:32:39Z", "created_at": "2019-05-10T14:36:46Z", "description": "Fresh a personal theme with a blog for Stackbit", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/stackbit-stackbit-theme-fresh-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-stackbit-theme-fresh-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-stackbit-theme-fresh-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/stackbit-stackbit-theme-fresh.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-stackbit-theme-fresh.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-stackbit-theme-fresh-2x.jpg" + } + }, + "stackbit-stackbit-theme-hyperspace": { + "theme_key": "stackbit-stackbit-theme-hyperspace", + "file": "stackbit-hyperspace-unibit.md", + "name": "stackbit-theme-hyperspace", + "title": "Hyperspace", + "github_username": "stackbit", + "repo": "stackbit/stackbit-theme-hyperspace", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/stackbit/stackbit-theme-hyperspace", + "demo_url": "https://themes.stackbit.com/demos/hyperspace/blue?themeBarHidden=true", + "stars": 10, + "forks": 11, + "open_issues": 1, + "last_commit": "2020-05-21T19:29:13Z", + "created_at": "2019-05-10T14:37:17Z", + "description": "Hyperspace a multi-page theme with scroll-animated home sections for Stackbit", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-stackbit-theme-hyperspace.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-stackbit-theme-hyperspace.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-stackbit-theme-hyperspace-2x.jpg" + } + }, + "stackbit-stackbit-theme-libris": { + "theme_key": "stackbit-stackbit-theme-libris", + "file": "stackbit-libris-unibit.md", + "name": "stackbit-theme-libris", + "title": "Libris", + "github_username": "stackbit", + "repo": "stackbit/stackbit-theme-libris", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/stackbit/stackbit-theme-libris", + "demo_url": "https://themes.stackbit.com/demos/libris?themeBarHidden=true", + "stars": 51, + "forks": 46, + "open_issues": 9, + "last_commit": "2021-02-23T09:34:13Z", + "created_at": "2019-05-23T18:31:33Z", + "description": "Libris is a documentation theme for Stackbit", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-stackbit-theme-libris.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-stackbit-theme-libris.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-stackbit-theme-libris-2x.jpg" + } + }, + "stackbit-stackbit-theme-reflex": { + "theme_key": "stackbit-stackbit-theme-reflex", + "file": "stackbit-reflex-unibit.md", + "name": "stackbit-theme-reflex", + "title": "Reflex", + "github_username": "stackbit", + "repo": "stackbit/stackbit-theme-reflex", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/stackbit/stackbit-theme-reflex", + "demo_url": "https://themes.stackbit.com/demos/reflex?themeBarHidden=true", + "stars": 9, + "forks": 9, + "open_issues": 1, + "last_commit": "2020-05-21T19:26:47Z", + "created_at": "2019-05-10T14:40:09Z", + "description": "Reflex a multipage theme with posts for Stackbit", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-stackbit-theme-reflex.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-stackbit-theme-reflex.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-stackbit-theme-reflex-2x.jpg" + } + }, + "stackbit-stackbit-theme-spectral": { + "theme_key": "stackbit-stackbit-theme-spectral", + "file": "stackbit-spectral-unibit.md", + "name": "stackbit-theme-spectral", + "title": "Spectral", + "github_username": "stackbit", + "repo": "stackbit/stackbit-theme-spectral", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/stackbit/stackbit-theme-spectral", + "demo_url": "https://themes.stackbit.com/demos/spectral/blue?themeBarHidden=true", + "stars": 9, + "forks": 15, + "open_issues": 2, + "last_commit": "2020-05-21T19:27:49Z", + "created_at": "2019-05-10T14:40:45Z", + "description": "Spectral a multipage theme for Stackbit", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-stackbit-theme-spectral.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-stackbit-theme-spectral.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-stackbit-theme-spectral-2x.jpg" } }, - "stackbit-stackbit-theme-starter-master": { - "theme_key": "stackbit-stackbit-theme-starter-master", + "stackbit-stackbit-theme-starter": { + "theme_key": "stackbit-stackbit-theme-starter", "file": "stackbit-starter-unibit.md", "name": "stackbit-theme-starter", "title": "Starter Stackbit", "github_username": "stackbit", "repo": "stackbit/stackbit-theme-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/stackbit/stackbit-theme-starter", "demo_url": "https://themes.stackbit.com/demos/starter?themeBarHidden=true", "stars": 10, - "forks": 6, + "forks": 7, "open_issues": 0, - "last_commit": "2021-01-05T06:05:53Z", + "last_commit": "2021-02-23T09:36:30Z", "created_at": "2020-05-10T16:41:07Z", "description": "Ultra customizable starter. A developers' favorite.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/stackbit-stackbit-theme-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-stackbit-theme-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-stackbit-theme-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/stackbit-stackbit-theme-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-stackbit-theme-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-stackbit-theme-starter-2x.jpg" } }, - "stackbit-stackbit-theme-vanilla-master": { - "theme_key": "stackbit-stackbit-theme-vanilla-master", + "stackbit-stackbit-theme-vanilla": { + "theme_key": "stackbit-stackbit-theme-vanilla", "file": "stackbit-vanilla-unibit.md", "name": "stackbit-theme-vanilla", "title": "Vanilla", "github_username": "stackbit", "repo": "stackbit/stackbit-theme-vanilla", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/stackbit/stackbit-theme-vanilla", "demo_url": "https://themes.stackbit.com/demos/vanilla?themeBarHidden=true", "stars": 23, "forks": 16, "open_issues": 0, - "last_commit": "2021-01-07T21:22:11Z", + "last_commit": "2021-02-23T09:37:44Z", "created_at": "2019-05-10T14:51:58Z", "description": "Vanilla a vanilla theme for Stackbit", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/stackbit-stackbit-theme-vanilla-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-stackbit-theme-vanilla-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-stackbit-theme-vanilla-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/stackbit-stackbit-theme-vanilla.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-stackbit-theme-vanilla.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-stackbit-theme-vanilla-2x.jpg" } }, - "stackbit-themes-azimuth-gatsby-master": { - "theme_key": "stackbit-themes-azimuth-gatsby-master", - "file": "azimuth-gatsby.md", - "name": "azimuth-gatsby", - "title": "Azimuth Gatsby", + "stackbit-themes-agency-nextjs": { + "theme_key": "stackbit-themes-agency-nextjs", + "file": "stackbit-agency-nextjs.md", + "name": "agency-nextjs", + "title": "Nextjs Agency", "github_username": "stackbit-themes", - "repo": "stackbit-themes/azimuth-gatsby", + "repo": "stackbit-themes/agency-nextjs", "branch": "master", - "github_url": "https://github.com/stackbit-themes/azimuth-gatsby", - "demo_url": "https://themes.stackbit.com/demos/azimuth/?demo=jstazimuthgatsby", - "stars": 1, - "forks": 1, + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/agency-nextjs", + "demo_url": "https://themes.stackbit.com/demos/agency/?themeBarHidden=true", + "stars": 7, + "forks": 16, "open_issues": 0, - "last_commit": "2020-11-18T09:08:03Z", - "created_at": "2020-11-18T08:59:05Z", - "description": "Azimuth is a sleek, modern SaaS theme for Gatsby.", - "stale": false + "last_commit": "2021-12-14T15:23:32Z", + "created_at": "2021-02-11T09:22:29Z", + "description": null, + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-agency-nextjs.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-agency-nextjs.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-agency-nextjs-2x.jpg" + } }, - "stackbit-themes-azimuth-hugo-master": { - "theme_key": "stackbit-themes-azimuth-hugo-master", - "file": "azimuth-hugo.md", - "name": "azimuth-hugo", - "title": "Azimuth Hugo", + "stackbit-themes-ampersand-nextjs": { + "theme_key": "stackbit-themes-ampersand-nextjs", + "file": "stackbit-ampersand-nextjs.md", + "name": "ampersand-nextjs", + "title": "Nextjs Ampersand", "github_username": "stackbit-themes", - "repo": "stackbit-themes/azimuth-hugo", + "repo": "stackbit-themes/ampersand-nextjs", "branch": "master", - "github_url": "https://github.com/stackbit-themes/azimuth-hugo", - "demo_url": "https://themes.stackbit.com/demos/azimuth/?demo=jstazimuthhugo", - "stars": 1, - "forks": 0, - "open_issues": 0, - "last_commit": "2020-11-18T09:06:25Z", - "created_at": "2020-11-18T02:00:20Z", - "description": "Azimuth is a sleek, modern SaaS theme for Hugo.", - "stale": false + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/ampersand-nextjs", + "demo_url": "https://themes.stackbit.com/demos/ampersand?themeBarHidden=true", + "stars": 49, + "forks": 29, + "open_issues": 6, + "last_commit": "2021-12-14T15:16:52Z", + "created_at": "2019-05-10T13:57:28Z", + "description": "Ampersand a Medium inspired blogging theme for Stackbit", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-ampersand-nextjs.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-ampersand-nextjs.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-ampersand-nextjs-2x.jpg" + } }, - "stackbit-themes-azimuth-jekyll-master": { - "theme_key": "stackbit-themes-azimuth-jekyll-master", - "file": "azimuth-jekyll.md", - "name": "azimuth-jekyll", - "title": "Azimuth Jekyll", + "stackbit-themes-ampersand-unibit": { + "theme_key": "stackbit-themes-ampersand-unibit", + "file": "stackbit-ampersand-unibit.md", + "name": "ampersand-unibit", + "title": "Ampersand", "github_username": "stackbit-themes", - "repo": "stackbit-themes/azimuth-jekyll", + "repo": "stackbit-themes/ampersand-unibit", "branch": "master", - "github_url": "https://github.com/stackbit-themes/azimuth-jekyll", - "demo_url": "https://themes.stackbit.com/demos/azimuth/?demo=jstazimuthjekyll", - "stars": 1, - "forks": 0, - "open_issues": 0, - "last_commit": "2020-11-18T09:17:49Z", - "created_at": "2020-11-18T09:12:29Z", - "description": "Azimuth is a sleek, modern SaaS site for Jekyll.", - "stale": false + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/ampersand-unibit", + "demo_url": "https://themes.stackbit.com/demos/ampersand?themeBarHidden=true", + "stars": 2, + "forks": 5, + "open_issues": 0, + "last_commit": "2021-06-19T19:56:09Z", + "created_at": "2021-02-08T13:03:26Z", + "description": "Ampersand a Medium inspired blogging theme for Stackbit", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-ampersand-unibit.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-ampersand-unibit.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-ampersand-unibit-2x.jpg" + } + }, + "stackbit-themes-app-nextjs": { + "theme_key": "stackbit-themes-app-nextjs", + "file": "stackbit-app-nextjs.md", + "name": "app-nextjs", + "title": "Nextjs App", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/app-nextjs", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/app-nextjs", + "demo_url": "https://themes.stackbit.com/demos/app/?themeBarHidden=true", + "stars": 23, + "forks": 21, + "open_issues": 6, + "last_commit": "2021-12-14T14:50:19Z", + "created_at": "2020-11-12T15:17:06Z", + "description": "Theme for mobile application.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-app-nextjs.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-app-nextjs.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-app-nextjs-2x.jpg" + } + }, + "stackbit-themes-azimuth-gatsby": { + "theme_key": "stackbit-themes-azimuth-gatsby", + "file": "stackbit-azimuth-gatsby.md", + "name": "azimuth-gatsby", + "title": "Azimuth Gatsby", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/azimuth-gatsby", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/azimuth-gatsby", + "demo_url": "https://themes.stackbit.com/demos/azimuth?themeBarHidden=true", + "stars": 0, + "forks": 0, + "open_issues": 0, + "last_commit": "2021-02-18T14:40:41Z", + "created_at": "2021-02-15T13:54:21Z", + "description": "Azimuth is a sleek SaaS theme for Stackbit", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-azimuth-gatsby.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-azimuth-gatsby.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-azimuth-gatsby-2x.jpg" + } }, - "stackbit-themes-azimuth-nextjs-master": { - "theme_key": "stackbit-themes-azimuth-nextjs-master", - "file": "azimuth-nextjs.md", + "stackbit-themes-azimuth-hugo": { + "theme_key": "stackbit-themes-azimuth-hugo", + "file": "stackbit-azimuth-hugo.md", + "name": "azimuth-hugo", + "title": "Azimuth Hugo", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/azimuth-hugo", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/azimuth-hugo", + "demo_url": "https://themes.stackbit.com/demos/azimuth?themeBarHidden=true", + "stars": 0, + "forks": 0, + "open_issues": 0, + "last_commit": "2021-02-18T14:40:44Z", + "created_at": "2021-02-15T13:54:21Z", + "description": "Azimuth is a sleek SaaS theme for Stackbit", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-azimuth-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-azimuth-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-azimuth-hugo-2x.jpg" + } + }, + "stackbit-themes-azimuth-jekyll": { + "theme_key": "stackbit-themes-azimuth-jekyll", + "file": "stackbit-azimuth-jekyll.md", + "name": "azimuth-jekyll", + "title": "Azimuth Jekyll", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/azimuth-jekyll", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/azimuth-jekyll", + "demo_url": "https://themes.stackbit.com/demos/azimuth/?themeBarHidden=true", + "stars": 0, + "forks": 0, + "open_issues": 0, + "last_commit": "2021-02-18T14:40:47Z", + "created_at": "2021-02-15T13:54:21Z", + "description": "Azimuth is a sleek SaaS theme for Stackbit", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-azimuth-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-azimuth-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-azimuth-jekyll-2x.jpg" + } + }, + "stackbit-themes-azimuth-nextjs": { + "theme_key": "stackbit-themes-azimuth-nextjs", + "file": "stackbit-azimuth-nextjs.md", "name": "azimuth-nextjs", - "title": "Azimuth Nextjs", + "title": "Nextjs Azimuth", "github_username": "stackbit-themes", "repo": "stackbit-themes/azimuth-nextjs", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/stackbit-themes/azimuth-nextjs", - "demo_url": "https://themes.stackbit.com/demos/azimuth/?demo=jstazimuthnextjs", - "stars": 1, - "forks": 0, + "demo_url": "https://themes.stackbit.com/demos/azimuth/?themeBarHidden=true", + "stars": 132, + "forks": 110, + "open_issues": 6, + "last_commit": "2021-12-14T15:23:24Z", + "created_at": "2019-05-23T18:24:11Z", + "description": "Azimuth is a sleek SaaS theme for Stackbit", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-azimuth-nextjs.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-azimuth-nextjs.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-azimuth-nextjs-2x.jpg" + } + }, + "stackbit-themes-azimuth-unibit": { + "theme_key": "stackbit-themes-azimuth-unibit", + "file": "stackbit-azimuth-unibit.md", + "name": "azimuth-unibit", + "title": "Azimuth", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/azimuth-unibit", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/azimuth-unibit", + "demo_url": "https://themes.stackbit.com/demos/azimuth?themeBarHidden=true", + "stars": 15, + "forks": 16, "open_issues": 0, - "last_commit": "2020-11-18T09:25:29Z", - "created_at": "2020-11-18T09:19:17Z", - "description": "Azimuth is a sleek, modern SaaS site for Nextjs.", - "stale": false + "last_commit": "2021-06-19T19:32:47Z", + "created_at": "2021-02-08T13:02:29Z", + "description": "Azimuth is a sleek SaaS theme for Stackbit", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-azimuth-unibit.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-azimuth-unibit.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-azimuth-unibit-2x.jpg" + } + }, + "stackbit-themes-book-nextjs": { + "theme_key": "stackbit-themes-book-nextjs", + "file": "stackbit-book-nextjs.md", + "name": "book-nextjs", + "title": "Nextjs Book", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/book-nextjs", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/book-nextjs", + "demo_url": "https://themes.stackbit.com/demos/book/?themeBarHidden=true", + "stars": 1, + "forks": 1, + "open_issues": 6, + "last_commit": "2021-12-15T15:47:27Z", + "created_at": "2020-11-12T15:13:57Z", + "description": null, + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-book-nextjs.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-book-nextjs.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-book-nextjs-2x.jpg" + } }, - "stackbit-themes-diy-gatsby-master": { - "theme_key": "stackbit-themes-diy-gatsby-master", - "file": "diy-gatsby.md", + "stackbit-themes-diy-gatsby": { + "theme_key": "stackbit-themes-diy-gatsby", + "file": "stackbit-diy-gatsby.md", "name": "diy-gatsby", "title": "DIY Gatsby", "github_username": "stackbit-themes", "repo": "stackbit-themes/diy-gatsby", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/stackbit-themes/diy-gatsby", - "demo_url": "https://themes.stackbit.com/demos/diy/?demo=jstdiygatsby", + "demo_url": "https://themes.stackbit.com/demos/diy?themeBarHidden=true", "stars": 0, "forks": 0, "open_issues": 0, - "last_commit": "2020-11-20T10:09:14Z", - "created_at": "2020-11-20T10:08:52Z", - "description": null, - "stale": false + "last_commit": "2021-02-18T14:40:51Z", + "created_at": "2021-02-15T13:54:20Z", + "description": "A \"do it yourself\" Stackbit theme", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-diy-gatsby.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-diy-gatsby.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-diy-gatsby-2x.jpg" + } }, - "stackbit-themes-diy-hugo-master": { - "theme_key": "stackbit-themes-diy-hugo-master", - "file": "diy-hugo.md", + "stackbit-themes-diy-hugo": { + "theme_key": "stackbit-themes-diy-hugo", + "file": "stackbit-diy-hugo.md", "name": "diy-hugo", "title": "DIY Hugo", "github_username": "stackbit-themes", "repo": "stackbit-themes/diy-hugo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/stackbit-themes/diy-hugo", - "demo_url": "https://themes.stackbit.com/demos/diy/?demo=jstdiyhugo", + "demo_url": "https://themes.stackbit.com/demos/diy?themeBarHidden=true", "stars": 0, "forks": 0, "open_issues": 0, - "last_commit": "2020-11-20T10:07:59Z", - "created_at": "2020-11-20T10:07:40Z", - "description": null, - "stale": false + "last_commit": "2021-02-18T14:40:54Z", + "created_at": "2021-02-15T13:54:20Z", + "description": "A \"do it yourself\" Stackbit theme", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-diy-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-diy-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-diy-hugo-2x.jpg" + } }, - "stackbit-themes-diy-jekyll-master": { - "theme_key": "stackbit-themes-diy-jekyll-master", - "file": "diy-jekyll.md", + "stackbit-themes-diy-jekyll": { + "theme_key": "stackbit-themes-diy-jekyll", + "file": "stackbit-diy-jekyll.md", "name": "diy-jekyll", "title": "DIY Jekyll", "github_username": "stackbit-themes", "repo": "stackbit-themes/diy-jekyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/stackbit-themes/diy-jekyll", - "demo_url": "https://themes.stackbit.com/demos/diy/?demo=jstdiyjekyll", - "stars": 1, + "demo_url": "https://themes.stackbit.com/demos/diy?themeBarHidden=true", + "stars": 0, "forks": 0, "open_issues": 0, - "last_commit": "2020-11-18T10:12:52Z", - "created_at": "2020-11-18T09:57:24Z", - "description": "DIY is a professional marketing theme for Jekyll. ", - "stale": false + "last_commit": "2021-02-18T14:40:57Z", + "created_at": "2021-02-15T13:54:20Z", + "description": "A \"do it yourself\" Stackbit theme", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-diy-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-diy-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-diy-jekyll-2x.jpg" + } + }, + "stackbit-themes-diy-nextjs": { + "theme_key": "stackbit-themes-diy-nextjs", + "file": "stackbit-diy-nextjs.md", + "name": "diy-nextjs", + "title": "Nextjs DIY", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/diy-nextjs", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/diy-nextjs", + "demo_url": "https://themes.stackbit.com/demos/diy/?themeBarHidden=true", + "stars": 40, + "forks": 29, + "open_issues": 8, + "last_commit": "2021-12-14T15:24:35Z", + "created_at": "2020-07-29T05:23:25Z", + "description": "A \"do it yourself\" Stackbit theme", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-diy-nextjs.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-diy-nextjs.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-diy-nextjs-2x.jpg" + } + }, + "stackbit-themes-diy-unibit": { + "theme_key": "stackbit-themes-diy-unibit", + "file": "stackbit-diy-unibit.md", + "name": "diy-unibit", + "title": "DIY", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/diy-unibit", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/diy-unibit", + "demo_url": "https://themes.stackbit.com/demos/diy?themeBarHidden=true", + "stars": 8, + "forks": 5, + "open_issues": 1, + "last_commit": "2021-07-13T09:25:02Z", + "created_at": "2021-02-08T13:02:27Z", + "description": "A \"do it yourself\" Stackbit theme", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-diy-unibit.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-diy-unibit.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-diy-unibit-2x.jpg" + } + }, + "stackbit-themes-event-nextjs": { + "theme_key": "stackbit-themes-event-nextjs", + "file": "stackbit-event-nextjs.md", + "name": "event-nextjs", + "title": "Nextjs Event", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/event-nextjs", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/event-nextjs", + "demo_url": "https://themes.stackbit.com/demos/event/?themeBarHidden=true", + "stars": 5, + "forks": 8, + "open_issues": 0, + "last_commit": "2021-12-14T15:23:37Z", + "created_at": "2021-02-10T07:14:27Z", + "description": null, + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-event-nextjs.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-event-nextjs.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-event-nextjs-2x.jpg" + } }, - "stackbit-themes-exto-gatsby-master": { - "theme_key": "stackbit-themes-exto-gatsby-master", - "file": "exto-gatsby.md", + "stackbit-themes-exto-gatsby": { + "theme_key": "stackbit-themes-exto-gatsby", + "file": "stackbit-exto-gatsby.md", "name": "exto-gatsby", "title": "Exto Gatsby", "github_username": "stackbit-themes", "repo": "stackbit-themes/exto-gatsby", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/stackbit-themes/exto-gatsby", - "demo_url": "https://themes.stackbit.com/demos/exto/?demo=jstextogatsby", + "demo_url": "https://themes.stackbit.com/demos/exto?themeBarHidden=true", "stars": 0, "forks": 0, "open_issues": 0, - "last_commit": "2020-11-20T10:11:39Z", - "created_at": "2020-11-20T10:11:24Z", - "description": null, - "stale": false + "last_commit": "2021-02-18T14:41:00Z", + "created_at": "2021-02-15T13:54:22Z", + "description": "Exto is a portfolio theme with a blog for Stackbit", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-exto-gatsby.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-exto-gatsby.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-exto-gatsby-2x.jpg" + } }, - "stackbit-themes-exto-hugo-master": { - "theme_key": "stackbit-themes-exto-hugo-master", - "file": "exto-hugo.md", + "stackbit-themes-exto-hugo": { + "theme_key": "stackbit-themes-exto-hugo", + "file": "stackbit-exto-hugo.md", "name": "exto-hugo", "title": "Exto Hugo", "github_username": "stackbit-themes", "repo": "stackbit-themes/exto-hugo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/stackbit-themes/exto-hugo", - "demo_url": "https://themes.stackbit.com/demos/exto/?demo=jstextohugo", + "demo_url": "https://themes.stackbit.com/demos/exto?themeBarHidden=true", "stars": 0, "forks": 0, "open_issues": 0, - "last_commit": "2020-11-20T10:10:57Z", - "created_at": "2020-11-20T10:10:41Z", - "description": null, - "stale": false + "last_commit": "2021-02-18T14:41:03Z", + "created_at": "2021-02-15T13:54:22Z", + "description": "Exto is a portfolio theme with a blog for Stackbit", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-exto-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-exto-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-exto-hugo-2x.jpg" + } }, - "stackbit-themes-exto-jekyll-master": { - "theme_key": "stackbit-themes-exto-jekyll-master", - "file": "exto-jekyll.md", + "stackbit-themes-exto-jekyll": { + "theme_key": "stackbit-themes-exto-jekyll", + "file": "stackbit-exto-jekyll.md", "name": "exto-jekyll", "title": "Exto Jekyll", "github_username": "stackbit-themes", "repo": "stackbit-themes/exto-jekyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/stackbit-themes/exto-jekyll", - "demo_url": "https://themes.stackbit.com/demos/exto/?demo=jstextojekyll", + "demo_url": "https://themes.stackbit.com/demos/exto?themeBarHidden=true", "stars": 0, "forks": 0, "open_issues": 0, - "last_commit": "2020-11-20T10:10:10Z", - "created_at": "2020-11-20T10:09:49Z", - "description": null, - "stale": false + "last_commit": "2021-02-18T14:41:06Z", + "created_at": "2021-02-15T13:54:22Z", + "description": "Exto is a portfolio theme with a blog for Stackbit", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-exto-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-exto-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-exto-jekyll-2x.jpg" + } + }, + "stackbit-themes-exto-nextjs": { + "theme_key": "stackbit-themes-exto-nextjs", + "file": "stackbit-exto-nextjs.md", + "name": "exto-nextjs", + "title": "Nextjs Exto", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/exto-nextjs", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/exto-nextjs", + "demo_url": "https://themes.stackbit.com/demos/exto?themeBarHidden=true", + "stars": 81, + "forks": 77, + "open_issues": 6, + "last_commit": "2021-12-14T15:16:36Z", + "created_at": "2019-05-23T18:26:16Z", + "description": "Exto is a portfolio theme with a blog for Stackbit", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-exto-nextjs.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-exto-nextjs.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-exto-nextjs-2x.jpg" + } + }, + "stackbit-themes-exto-unibit": { + "theme_key": "stackbit-themes-exto-unibit", + "file": "stackbit-exto-unibit.md", + "name": "exto-unibit", + "title": "Exto", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/exto-unibit", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/exto-unibit", + "demo_url": "https://themes.stackbit.com/demos/exto?themeBarHidden=true", + "stars": 8, + "forks": 7, + "open_issues": 0, + "last_commit": "2021-06-19T19:56:58Z", + "created_at": "2021-02-08T13:02:31Z", + "description": "Exto is a portfolio theme with a blog for Stackbit", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-exto-unibit.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-exto-unibit.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-exto-unibit-2x.jpg" + } }, - "stackbit-themes-fjord-gatsby-master": { - "theme_key": "stackbit-themes-fjord-gatsby-master", - "file": "fjord-gatsby.md", + "stackbit-themes-fjord-gatsby": { + "theme_key": "stackbit-themes-fjord-gatsby", + "file": "stackbit-fjord-gatsby.md", "name": "fjord-gatsby", "title": "Fjord Gatsby", "github_username": "stackbit-themes", "repo": "stackbit-themes/fjord-gatsby", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/stackbit-themes/fjord-gatsby", - "demo_url": "https://themes.stackbit.com/demos/fjord/?demo=jstfjordgatsby", + "demo_url": "https://themes.stackbit.com/demos/fjord?themeBarHidden=true", "stars": 0, "forks": 0, "open_issues": 0, - "last_commit": "2020-11-20T10:17:36Z", - "created_at": "2020-11-20T10:17:20Z", - "description": null, - "stale": false + "last_commit": "2021-02-18T14:41:10Z", + "created_at": "2021-02-15T13:54:25Z", + "description": "Fjord is a minimal blogging theme for Stackbit", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-fjord-gatsby.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-fjord-gatsby.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-fjord-gatsby-2x.jpg" + } }, - "stackbit-themes-fjord-hugo-master": { - "theme_key": "stackbit-themes-fjord-hugo-master", - "file": "fjord-hugo.md", + "stackbit-themes-fjord-hugo": { + "theme_key": "stackbit-themes-fjord-hugo", + "file": "stackbit-fjord-hugo.md", "name": "fjord-hugo", "title": "Fjord Hugo", "github_username": "stackbit-themes", "repo": "stackbit-themes/fjord-hugo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/stackbit-themes/fjord-hugo", - "demo_url": "https://themes.stackbit.com/demos/fjord/?demo=jstfjordhugo", + "demo_url": "https://themes.stackbit.com/demos/fjord?themeBarHidden=true", "stars": 0, "forks": 0, "open_issues": 0, - "last_commit": "2020-11-20T10:16:51Z", - "created_at": "2020-11-20T10:16:39Z", - "description": null, - "stale": false + "last_commit": "2021-02-18T14:41:12Z", + "created_at": "2021-02-15T13:54:25Z", + "description": "Fjord is a minimal blogging theme for Stackbit", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-fjord-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-fjord-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-fjord-hugo-2x.jpg" + } }, - "stackbit-themes-fjord-jekyll-master": { - "theme_key": "stackbit-themes-fjord-jekyll-master", - "file": "fjord-jekyll.md", + "stackbit-themes-fjord-jekyll": { + "theme_key": "stackbit-themes-fjord-jekyll", + "file": "stackbit-fjord-jekyll.md", "name": "fjord-jekyll", "title": "Fjord Jekyll", "github_username": "stackbit-themes", "repo": "stackbit-themes/fjord-jekyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/stackbit-themes/fjord-jekyll", - "demo_url": "https://themes.stackbit.com/demos/fjord/?demo=jstfjordjekyll", + "demo_url": "https://themes.stackbit.com/demos/fjord?themeBarHidden=true", "stars": 0, "forks": 0, "open_issues": 0, - "last_commit": "2020-11-20T10:16:02Z", - "created_at": "2020-11-20T10:15:39Z", - "description": null, - "stale": false - }, - "stackbit-themes-stackbit-starter-gatsby-master": { - "theme_key": "stackbit-themes-stackbit-starter-gatsby-master", - "file": "stackbit-theme-starter-gatsby.md", - "name": "stackbit-starter-gatsby", - "title": "Stackbit Starter Gatsby", - "github_username": "stackbit-themes", - "repo": "stackbit-themes/stackbit-starter-gatsby", - "branch": "master", - "github_url": "https://github.com/stackbit-themes/stackbit-starter-gatsby", - "demo_url": "https://themes.stackbit.com/demos/starter/features/?demo=jststartergatsby", - "stars": 2, - "forks": 0, - "open_issues": 0, - "last_commit": "2020-11-17T23:20:42Z", - "created_at": "2020-10-28T03:01:40Z", - "description": "Starter is a flexible, multi-purpose Gatsby theme built for developers.", - "stale": false - }, - "stackbit-themes-stackbit-starter-hugo-master": { - "theme_key": "stackbit-themes-stackbit-starter-hugo-master", - "file": "stackbit-theme-starter-hugo.md", - "name": "stackbit-starter-hugo", - "title": "Stackbit Starter Hugo", - "github_username": "stackbit-themes", - "repo": "stackbit-themes/stackbit-starter-hugo", - "branch": "master", - "github_url": "https://github.com/stackbit-themes/stackbit-starter-hugo", - "demo_url": "https://themes.stackbit.com/demos/starter/features/?demo=jststarterhugo", - "stars": 1, - "forks": 0, - "open_issues": 0, - "last_commit": "2020-11-18T00:06:01Z", - "created_at": "2020-10-28T02:55:22Z", - "description": "Starter is a flexible, multi-purpose Hugo theme built for developers.", - "stale": false - }, - "stackbit-themes-stackbit-starter-jekyll-master": { - "theme_key": "stackbit-themes-stackbit-starter-jekyll-master", - "file": "stackbit-theme-starter-jekyll.md", - "name": "stackbit-starter-jekyll", - "title": "Stackbit Starter Jekyll", - "github_username": "stackbit-themes", - "repo": "stackbit-themes/stackbit-starter-jekyll", - "branch": "master", - "github_url": "https://github.com/stackbit-themes/stackbit-starter-jekyll", - "demo_url": "https://themes.stackbit.com/demos/starter/features/?demo=jststarterjekyll", - "stars": 1, - "forks": 1, - "open_issues": 0, - "last_commit": "2020-11-18T00:06:50Z", - "created_at": "2020-10-28T03:04:58Z", - "description": "Starter is a flexible, multi-purpose Jekyll theme built for developers.", - "stale": false - }, - "stackbit-themes-stackbit-starter-nextjs-master": { - "theme_key": "stackbit-themes-stackbit-starter-nextjs-master", - "file": "stackbit-theme-starter-nextjs.md", - "name": "stackbit-starter-nextjs", - "title": "Stackbit Starter Nextjs", - "github_username": "stackbit-themes", - "repo": "stackbit-themes/stackbit-starter-nextjs", - "branch": "master", - "github_url": "https://github.com/stackbit-themes/stackbit-starter-nextjs", - "demo_url": "https://themes.stackbit.com/demos/starter/features?demo=jststarternextjs", - "stars": 1, - "forks": 0, - "open_issues": 0, - "last_commit": "2020-11-17T23:17:21Z", - "created_at": "2020-10-28T03:11:09Z", - "description": "Starter is a flexible, multi-purpose Nextjs theme built for developers.", - "stale": false - }, - "stackbithq-stackbit-theme-ampersand-master": { - "theme_key": "stackbithq-stackbit-theme-ampersand-master", - "file": "stackbit-ampersand-unibit.md", - "name": "stackbit-theme-ampersand", - "title": "Ampersand", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-ampersand", - "branch": "master", - "github_url": "https://github.com/stackbithq/stackbit-theme-ampersand", - "demo_url": "https://themes.stackbit.com/demos/ampersand?themeBarHidden=true", - "stars": 24, - "forks": 19, - "open_issues": 3, - "last_commit": "2021-01-07T21:19:28Z", - "created_at": "2019-05-10T13:57:28Z", - "description": "Ampersand a Medium inspired blogging theme for Stackbit", - "stale": false, - "images": { - "hires": "https://www.jamstackthemes.dev/capture/stackbithq-stackbit-theme-ampersand-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbithq-stackbit-theme-ampersand-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbithq-stackbit-theme-ampersand-master-2x.jpg" - } - }, - "stackbithq-stackbit-theme-archetype-master": { - "theme_key": "stackbithq-stackbit-theme-archetype-master", - "file": "stackbit-archetype-unibit.md", - "name": "stackbit-theme-archetype", - "title": "Archetype", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-archetype", - "branch": "master", - "github_url": "https://github.com/stackbithq/stackbit-theme-archetype", - "demo_url": "https://themes.stackbit.com/demos/archetype/blue?demo=jstarchetypeunibit", - "stars": 3, - "forks": 8, - "open_issues": 1, - "last_commit": "2020-05-21T19:32:52Z", - "created_at": "2019-05-10T13:59:15Z", - "description": "Archetype a multi-layout theme with posts for Stackbit", - "stale": false - }, - "stackbithq-stackbit-theme-azimuth-gatsby": { - "theme_key": "stackbithq-stackbit-theme-azimuth-gatsby", - "file": "stackbit-theme-azimuth-gatsby.md", - "name": "stackbit-theme-azimuth", - "title": "Gatsby Azimuth", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-azimuth", - "branch": "gatsby", - "github_url": "https://github.com/stackbithq/stackbit-theme-azimuth", - "demo_url": "https://themes.stackbit.com/demos/azimuth", - "stars": 64, - "forks": 69, - "open_issues": 8, - "last_commit": "2019-09-24T09:42:49Z", - "created_at": "2019-05-23T18:24:11Z", - "description": "Azimuth is a sleek SaaS theme for Stackbit", - "stale": true - }, - "stackbithq-stackbit-theme-azimuth-hugo": { - "theme_key": "stackbithq-stackbit-theme-azimuth-hugo", - "file": "stackbit-theme-azimuth-hugo.md", - "name": "stackbit-theme-azimuth", - "title": "Hugo Azimuth", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-azimuth", - "branch": "hugo", - "github_url": "https://github.com/stackbithq/stackbit-theme-azimuth", - "demo_url": "https://themes.stackbit.com/demos/azimuth", - "stars": 64, - "forks": 69, - "open_issues": 8, - "last_commit": "2019-09-24T09:44:31Z", - "created_at": "2019-05-23T18:24:11Z", - "description": "Azimuth is a sleek SaaS theme for Stackbit", - "stale": true - }, - "stackbithq-stackbit-theme-azimuth-jekyll": { - "theme_key": "stackbithq-stackbit-theme-azimuth-jekyll", - "file": "stackbit-theme-azimuth-jekyll.md", - "name": "stackbit-theme-azimuth", - "title": "Jekyll Azimuth", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-azimuth", - "branch": "jekyll", - "github_url": "https://github.com/stackbithq/stackbit-theme-azimuth", - "demo_url": "https://themes.stackbit.com/demos/azimuth", - "stars": 64, - "forks": 69, - "open_issues": 8, - "last_commit": "2019-09-24T09:44:58Z", - "created_at": "2019-05-23T18:24:11Z", - "description": "Azimuth is a sleek SaaS theme for Stackbit", - "stale": true - }, - "stackbithq-stackbit-theme-azimuth-master": { - "theme_key": "stackbithq-stackbit-theme-azimuth-master", - "file": "stackbit-azimuth-unibit.md", - "name": "stackbit-theme-azimuth", - "title": "Azimuth", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-azimuth", - "branch": "master", - "github_url": "https://github.com/stackbithq/stackbit-theme-azimuth", - "demo_url": "https://themes.stackbit.com/demos/azimuth?themeBarHidden=true", - "stars": 81, - "forks": 75, - "open_issues": 7, - "last_commit": "2021-01-05T06:01:27Z", - "created_at": "2019-05-23T18:24:11Z", - "description": "Azimuth is a sleek SaaS theme for Stackbit", - "stale": false, + "last_commit": "2021-02-18T14:41:15Z", + "created_at": "2021-02-15T13:54:25Z", + "description": "Fjord is a minimal blogging theme for Stackbit", "images": { - "hires": "https://www.jamstackthemes.dev/capture/stackbithq-stackbit-theme-azimuth-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbithq-stackbit-theme-azimuth-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbithq-stackbit-theme-azimuth-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-fjord-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-fjord-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-fjord-jekyll-2x.jpg" } }, - "stackbithq-stackbit-theme-construct-master": { - "theme_key": "stackbithq-stackbit-theme-construct-master", - "file": "stackbit-construct-unibit.md", - "name": "stackbit-theme-construct", - "title": "Construct", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-construct", - "branch": "master", - "github_url": "https://github.com/stackbithq/stackbit-theme-construct", - "demo_url": "https://themes.stackbit.com/demos/construct/blue?demo=jstconstructunibit", - "stars": 5, - "forks": 4, - "open_issues": 1, - "last_commit": "2020-05-21T19:37:41Z", - "created_at": "2019-05-10T14:33:16Z", - "description": "Construct a multipage theme for Stackbit", - "stale": false - }, - "stackbithq-stackbit-theme-diy-master": { - "theme_key": "stackbithq-stackbit-theme-diy-master", - "file": "stackbit-diy-unibit.md", - "name": "stackbit-theme-diy", - "title": "DIY", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-diy", + "stackbit-themes-fjord-nextjs": { + "theme_key": "stackbit-themes-fjord-nextjs", + "file": "stackbit-fjord-nextjs.md", + "name": "fjord-nextjs", + "title": "Nextjs Fjord", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/fjord-nextjs", "branch": "master", - "github_url": "https://github.com/stackbithq/stackbit-theme-diy", - "demo_url": "https://themes.stackbit.com/demos/diy?themeBarHidden=true", - "stars": 12, - "forks": 6, - "open_issues": 1, - "last_commit": "2021-01-06T09:20:43Z", - "created_at": "2020-07-29T05:23:25Z", - "description": "A \"do it yourself\" Stackbit theme", - "stale": false, - "images": { - "hires": "https://www.jamstackthemes.dev/capture/stackbithq-stackbit-theme-diy-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbithq-stackbit-theme-diy-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbithq-stackbit-theme-diy-master-2x.jpg" - } - }, - "stackbithq-stackbit-theme-exto-gatsby": { - "theme_key": "stackbithq-stackbit-theme-exto-gatsby", - "file": "stackbit-theme-exto-gatsby.md", - "name": "stackbit-theme-exto", - "title": "Gatsby Exto", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-exto", - "branch": "gatsby", - "github_url": "https://github.com/stackbithq/stackbit-theme-exto", - "demo_url": "https://themes.stackbit.com/demos/exto", - "stars": 26, - "forks": 33, - "open_issues": 7, - "last_commit": "2019-09-24T09:18:22Z", - "created_at": "2019-05-23T18:26:16Z", - "description": "Exto is a portfolio theme with a blog for Stackbit", - "stale": true - }, - "stackbithq-stackbit-theme-exto-hugo": { - "theme_key": "stackbithq-stackbit-theme-exto-hugo", - "file": "stackbit-theme-exto-hugo.md", - "name": "stackbit-theme-exto", - "title": "Hugo Exto", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-exto", - "branch": "hugo", - "github_url": "https://github.com/stackbithq/stackbit-theme-exto", - "demo_url": "https://themes.stackbit.com/demos/exto", - "stars": 26, - "forks": 33, - "open_issues": 7, - "last_commit": "2019-09-24T09:07:12Z", - "created_at": "2019-05-23T18:26:16Z", - "description": "Exto is a portfolio theme with a blog for Stackbit", - "stale": true - }, - "stackbithq-stackbit-theme-exto-jekyll": { - "theme_key": "stackbithq-stackbit-theme-exto-jekyll", - "file": "stackbit-theme-exto-jekyll.md", - "name": "stackbit-theme-exto", - "title": "Jekyll Exto", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-exto", - "branch": "jekyll", - "github_url": "https://github.com/stackbithq/stackbit-theme-exto", - "demo_url": "https://themes.stackbit.com/demos/exto", - "stars": 26, - "forks": 33, + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/fjord-nextjs", + "demo_url": "https://themes.stackbit.com/demos/fjord?themeBarHidden=true", + "stars": 66, + "forks": 73, "open_issues": 7, - "last_commit": "2019-09-24T09:14:17Z", - "created_at": "2019-05-23T18:26:16Z", - "description": "Exto is a portfolio theme with a blog for Stackbit", - "stale": true - }, - "stackbithq-stackbit-theme-exto-master": { - "theme_key": "stackbithq-stackbit-theme-exto-master", - "file": "stackbit-exto-unibit.md", - "name": "stackbit-theme-exto", - "title": "Exto", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-exto", - "branch": "master", - "github_url": "https://github.com/stackbithq/stackbit-theme-exto", - "demo_url": "https://themes.stackbit.com/demos/exto?themeBarHidden=true", - "stars": 40, - "forks": 42, - "open_issues": 3, - "last_commit": "2021-01-07T21:24:40Z", - "created_at": "2019-05-23T18:26:16Z", - "description": "Exto is a portfolio theme with a blog for Stackbit", - "stale": false, + "last_commit": "2021-12-14T15:17:45Z", + "created_at": "2019-05-10T14:35:02Z", + "description": "Fjord is a minimal blogging theme for Stackbit", "images": { - "hires": "https://www.jamstackthemes.dev/capture/stackbithq-stackbit-theme-exto-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbithq-stackbit-theme-exto-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbithq-stackbit-theme-exto-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-fjord-nextjs.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-fjord-nextjs.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-fjord-nextjs-2x.jpg" } }, - "stackbithq-stackbit-theme-fjord-master": { - "theme_key": "stackbithq-stackbit-theme-fjord-master", + "stackbit-themes-fjord-unibit": { + "theme_key": "stackbit-themes-fjord-unibit", "file": "stackbit-fjord-unibit.md", - "name": "stackbit-theme-fjord", + "name": "fjord-unibit", "title": "Fjord", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-fjord", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/fjord-unibit", "branch": "master", - "github_url": "https://github.com/stackbithq/stackbit-theme-fjord", + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/fjord-unibit", "demo_url": "https://themes.stackbit.com/demos/fjord?themeBarHidden=true", - "stars": 43, - "forks": 53, - "open_issues": 1, - "last_commit": "2021-01-07T21:21:00Z", - "created_at": "2019-05-10T14:35:02Z", + "stars": 5, + "forks": 4, + "open_issues": 0, + "last_commit": "2021-06-19T19:57:45Z", + "created_at": "2021-02-08T13:03:28Z", "description": "Fjord is a minimal blogging theme for Stackbit", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/stackbithq-stackbit-theme-fjord-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbithq-stackbit-theme-fjord-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbithq-stackbit-theme-fjord-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-fjord-unibit.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-fjord-unibit.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-fjord-unibit-2x.jpg" } }, - "stackbithq-stackbit-theme-fractal-master": { - "theme_key": "stackbithq-stackbit-theme-fractal-master", - "file": "stackbit-fractal-unibit.md", - "name": "stackbit-theme-fractal", - "title": "Fractal", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-fractal", + "stackbit-themes-fresh-nextjs": { + "theme_key": "stackbit-themes-fresh-nextjs", + "file": "stackbit-fresh-nextjs.md", + "name": "fresh-nextjs", + "title": "Nextjs Fresh", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/fresh-nextjs", "branch": "master", - "github_url": "https://github.com/stackbithq/stackbit-theme-fractal", - "demo_url": "https://themes.stackbit.com/demos/fractal/blue?demo=jstfractalunibit", - "stars": 5, - "forks": 7, - "open_issues": 1, - "last_commit": "2020-05-21T19:34:07Z", - "created_at": "2019-05-10T14:36:37Z", - "description": "Fractal single page mobile application marketing theme for Stackbit", - "stale": false - }, - "stackbithq-stackbit-theme-fresh-gatsby": { - "theme_key": "stackbithq-stackbit-theme-fresh-gatsby", - "file": "stackbit-theme-fresh-gatsby.md", - "name": "stackbit-theme-fresh", - "title": "Gatsby Fresh", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-fresh", - "branch": "gatsby", - "github_url": "https://github.com/stackbithq/stackbit-theme-fresh", - "demo_url": "https://themes.stackbit.com/demos/fresh", - "stars": 42, - "forks": 52, - "open_issues": 4, - "last_commit": "2019-09-24T09:30:10Z", - "created_at": "2019-05-10T14:36:46Z", - "description": "Fresh a personal theme with a blog for Stackbit", - "stale": true - }, - "stackbithq-stackbit-theme-fresh-hugo": { - "theme_key": "stackbithq-stackbit-theme-fresh-hugo", - "file": "stackbit-theme-fresh-hugo.md", - "name": "stackbit-theme-fresh", - "title": "Hugo Fresh", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-fresh", - "branch": "hugo", - "github_url": "https://github.com/stackbithq/stackbit-theme-fresh", - "demo_url": "https://themes.stackbit.com/demos/fresh", - "stars": 42, - "forks": 52, - "open_issues": 4, - "last_commit": "2019-09-24T09:23:18Z", - "created_at": "2019-05-10T14:36:46Z", - "description": "Fresh a personal theme with a blog for Stackbit", - "stale": true - }, - "stackbithq-stackbit-theme-fresh-jekyll": { - "theme_key": "stackbithq-stackbit-theme-fresh-jekyll", - "file": "stackbit-theme-fresh-jekyll.md", - "name": "stackbit-theme-fresh", - "title": "Jekyll Fresh", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-fresh", - "branch": "jekyll", - "github_url": "https://github.com/stackbithq/stackbit-theme-fresh", - "demo_url": "https://themes.stackbit.com/demos/fresh", - "stars": 42, - "forks": 52, - "open_issues": 4, - "last_commit": "2019-09-24T09:24:07Z", + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/fresh-nextjs", + "demo_url": "https://themes.stackbit.com/demos/fresh/?themeBarHidden=true", + "stars": 91, + "forks": 89, + "open_issues": 8, + "last_commit": "2021-12-14T15:23:27Z", "created_at": "2019-05-10T14:36:46Z", "description": "Fresh a personal theme with a blog for Stackbit", - "stale": true + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-fresh-nextjs.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-fresh-nextjs.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-fresh-nextjs-2x.jpg" + } }, - "stackbithq-stackbit-theme-fresh-master": { - "theme_key": "stackbithq-stackbit-theme-fresh-master", + "stackbit-themes-fresh-unibit": { + "theme_key": "stackbit-themes-fresh-unibit", "file": "stackbit-fresh-unibit.md", - "name": "stackbit-theme-fresh", + "name": "fresh-unibit", "title": "Fresh", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-fresh", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/fresh-unibit", "branch": "master", - "github_url": "https://github.com/stackbithq/stackbit-theme-fresh", + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/fresh-unibit", "demo_url": "https://themes.stackbit.com/demos/fresh?themeBarHidden=true", - "stars": 52, - "forks": 62, - "open_issues": 3, - "last_commit": "2021-01-07T21:17:56Z", - "created_at": "2019-05-10T14:36:46Z", + "stars": 7, + "forks": 19, + "open_issues": 0, + "last_commit": "2021-06-19T19:58:10Z", + "created_at": "2021-02-08T13:03:36Z", "description": "Fresh a personal theme with a blog for Stackbit", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/stackbithq-stackbit-theme-fresh-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbithq-stackbit-theme-fresh-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbithq-stackbit-theme-fresh-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-fresh-unibit.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-fresh-unibit.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-fresh-unibit-2x.jpg" } }, - "stackbithq-stackbit-theme-hyperspace-master": { - "theme_key": "stackbithq-stackbit-theme-hyperspace-master", - "file": "stackbit-hyperspace-unibit.md", - "name": "stackbit-theme-hyperspace", - "title": "Hyperspace", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-hyperspace", + "stackbit-themes-libris-nextjs": { + "theme_key": "stackbit-themes-libris-nextjs", + "file": "stackbit-libris-nextjs.md", + "name": "libris-nextjs", + "title": "Nextjs Libris", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/libris-nextjs", "branch": "master", - "github_url": "https://github.com/stackbithq/stackbit-theme-hyperspace", - "demo_url": "https://themes.stackbit.com/demos/hyperspace/blue?demo=jsthyperspaceunibit", - "stars": 8, - "forks": 11, - "open_issues": 1, - "last_commit": "2020-05-21T19:29:13Z", - "created_at": "2019-05-10T14:37:17Z", - "description": "Hyperspace a multi-page theme with scroll-animated home sections for Stackbit", - "stale": false + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/libris-nextjs", + "demo_url": "https://themes.stackbit.com/demos/libris/?themeBarHidden=true", + "stars": 63, + "forks": 56, + "open_issues": 14, + "last_commit": "2021-12-14T15:18:26Z", + "created_at": "2019-05-23T18:31:33Z", + "description": "Libris is a documentation theme for Stackbit", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-libris-nextjs.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-libris-nextjs.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-libris-nextjs-2x.jpg" + } }, - "stackbithq-stackbit-theme-libris-master": { - "theme_key": "stackbithq-stackbit-theme-libris-master", + "stackbit-themes-libris-unibit": { + "theme_key": "stackbit-themes-libris-unibit", "file": "stackbit-libris-unibit.md", - "name": "stackbit-theme-libris", + "name": "libris-unibit", "title": "Libris", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-libris", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/libris-unibit", "branch": "master", - "github_url": "https://github.com/stackbithq/stackbit-theme-libris", - "demo_url": "https://themes.stackbit.com/demos/libris/blue?demo=jstlibrisunibit", - "stars": 42, - "forks": 44, - "open_issues": 9, - "last_commit": "2020-12-03T22:34:09Z", - "created_at": "2019-05-23T18:31:33Z", + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/libris-unibit", + "demo_url": "https://themes.stackbit.com/demos/libris?themeBarHidden=true", + "stars": 6, + "forks": 1, + "open_issues": 0, + "last_commit": "2021-06-19T19:58:39Z", + "created_at": "2021-02-08T13:03:31Z", "description": "Libris is a documentation theme for Stackbit", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/stackbithq-stackbit-theme-libris-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbithq-stackbit-theme-libris-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbithq-stackbit-theme-libris-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-libris-unibit.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-libris-unibit.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-libris-unibit-2x.jpg" + } + }, + "stackbit-themes-personal-nextjs": { + "theme_key": "stackbit-themes-personal-nextjs", + "file": "stackbit-personal-nextjs.md", + "name": "personal-nextjs", + "title": "Nextjs Personal", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/personal-nextjs", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/personal-nextjs", + "demo_url": "https://themes.stackbit.com/demos/personal/?themeBarHidden=true", + "stars": 10, + "forks": 19, + "open_issues": 2, + "last_commit": "2021-12-14T15:23:40Z", + "created_at": "2020-11-12T22:14:59Z", + "description": null, + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-personal-nextjs.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-personal-nextjs.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-personal-nextjs-2x.jpg" + } + }, + "stackbit-themes-podcaster-nextjs": { + "theme_key": "stackbit-themes-podcaster-nextjs", + "file": "stackbit-podcaster-nextjs.md", + "name": "podcaster-nextjs", + "title": "Nextjs Podcaster", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/podcaster-nextjs", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/podcaster-nextjs", + "demo_url": "https://themes.stackbit.com/demos/podcaster/?themeBarHidden=true", + "stars": 9, + "forks": 14, + "open_issues": 7, + "last_commit": "2021-12-14T15:18:08Z", + "created_at": "2021-02-10T13:36:23Z", + "description": null, + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-podcaster-nextjs.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-podcaster-nextjs.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-podcaster-nextjs-2x.jpg" + } + }, + "stackbit-themes-stackbit-starter-gatsby": { + "theme_key": "stackbit-themes-stackbit-starter-gatsby", + "file": "stackbit-starter-gatsby.md", + "name": "stackbit-starter-gatsby", + "title": "Stackbit Starter Gatsby", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/stackbit-starter-gatsby", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/stackbit-starter-gatsby", + "demo_url": "https://themes.stackbit.com/demos/starter/features?themeBarHidden=true", + "stars": 3, + "forks": 1, + "open_issues": 0, + "last_commit": "2020-11-17T23:20:42Z", + "created_at": "2020-10-28T03:01:40Z", + "description": "Starter is a flexible, multi-purpose Gatsby theme built for developers.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-stackbit-starter-gatsby.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-stackbit-starter-gatsby.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-stackbit-starter-gatsby-2x.jpg" } }, - "stackbithq-stackbit-theme-phantom-master": { - "theme_key": "stackbithq-stackbit-theme-phantom-master", - "file": "stackbit-theme-phantom.md", - "name": "stackbit-theme-phantom", - "title": "Phantom", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-phantom", + "stackbit-themes-stackbit-starter-hugo": { + "theme_key": "stackbit-themes-stackbit-starter-hugo", + "file": "stackbit-starter-hugo.md", + "name": "stackbit-starter-hugo", + "title": "Stackbit Starter Hugo", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/stackbit-starter-hugo", "branch": "master", - "github_url": "https://github.com/stackbithq/stackbit-theme-phantom", - "demo_url": "https://themes.stackbit.com/demos/phantom", - "stars": 6, - "forks": 8, - "open_issues": 1, - "last_commit": "2020-05-21T19:31:14Z", - "created_at": "2019-05-10T14:39:35Z", - "description": "Phantom a multipage theme with posts for Stackbit", - "stale": false, + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/stackbit-starter-hugo", + "demo_url": "https://themes.stackbit.com/demos/starter/features?themeBarHidden=true", + "stars": 2, + "forks": 0, + "open_issues": 0, + "last_commit": "2020-11-18T00:06:01Z", + "created_at": "2020-10-28T02:55:22Z", + "description": "Starter is a flexible, multi-purpose Hugo theme built for developers.", "images": { - "hires": "https://www.jamstackthemes.dev/capture/stackbithq-stackbit-theme-phantom-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbithq-stackbit-theme-phantom-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbithq-stackbit-theme-phantom-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-stackbit-starter-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-stackbit-starter-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-stackbit-starter-hugo-2x.jpg" } }, - "stackbithq-stackbit-theme-reflex-master": { - "theme_key": "stackbithq-stackbit-theme-reflex-master", - "file": "stackbit-reflex-unibit.md", - "name": "stackbit-theme-reflex", - "title": "Reflex", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-reflex", + "stackbit-themes-stackbit-starter-jekyll": { + "theme_key": "stackbit-themes-stackbit-starter-jekyll", + "file": "stackbit-starter-jekyll.md", + "name": "stackbit-starter-jekyll", + "title": "Starter Jekyll", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/stackbit-starter-jekyll", "branch": "master", - "github_url": "https://github.com/stackbithq/stackbit-theme-reflex", - "demo_url": "https://themes.stackbit.com/demos/reflex", - "stars": 8, - "forks": 9, - "open_issues": 1, - "last_commit": "2020-05-21T19:26:47Z", - "created_at": "2019-05-10T14:40:09Z", - "description": "Reflex a multipage theme with posts for Stackbit", - "stale": false - }, - "stackbithq-stackbit-theme-spectral-hugo": { - "theme_key": "stackbithq-stackbit-theme-spectral-hugo", - "file": "stackbit-theme-spectral-hugo.md", - "name": "stackbit-theme-spectral", - "title": "Spectral Hugo", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-spectral", - "branch": "hugo", - "github_url": "https://github.com/stackbithq/stackbit-theme-spectral", - "demo_url": "https://themes.stackbit.com/demos/spectral/blue", - "stars": 8, - "forks": 15, - "open_issues": 2, - "last_commit": "2020-10-20T19:52:44Z", - "created_at": "2019-05-10T14:40:45Z", - "description": "Spectral a multipage theme for Stackbit", + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/stackbit-starter-jekyll", + "demo_url": "https://themes.stackbit.com/demos/starter/features?themeBarHidden=true", + "stars": 1, + "forks": 1, + "open_issues": 0, + "last_commit": "2020-11-18T00:06:50Z", + "created_at": "2020-10-28T03:04:58Z", + "description": "Starter is a flexible, multi-purpose Jekyll theme built for developers.", "images": { - "hires": "https://www.jamstackthemes.dev/capture/stackbithq-stackbit-theme-spectral-hugo.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbithq-stackbit-theme-spectral-hugo.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbithq-stackbit-theme-spectral-hugo-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-stackbit-starter-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-stackbit-starter-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-stackbit-starter-jekyll-2x.jpg" } }, - "stackbithq-stackbit-theme-spectral-master": { - "theme_key": "stackbithq-stackbit-theme-spectral-master", - "file": "stackbit-spectral-unibit.md", - "name": "stackbit-theme-spectral", - "title": "Spectral", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-spectral", + "stackbit-themes-stackbit-starter-nextjs": { + "theme_key": "stackbit-themes-stackbit-starter-nextjs", + "file": "stackbit-starter-nextjs.md", + "name": "stackbit-starter-nextjs", + "title": "Stackbit Starter Nextjs", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/stackbit-starter-nextjs", "branch": "master", - "github_url": "https://github.com/stackbithq/stackbit-theme-spectral", - "demo_url": "https://themes.stackbit.com/demos/spectral/blue", - "stars": 8, - "forks": 15, - "open_issues": 2, - "last_commit": "2020-05-21T19:27:49Z", - "created_at": "2019-05-10T14:40:45Z", - "description": "Spectral a multipage theme for Stackbit", - "stale": false + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/stackbit-starter-nextjs", + "demo_url": "https://themes.stackbit.com/demos/starter/features?themeBarHidden=true", + "stars": 1, + "forks": 0, + "open_issues": 0, + "last_commit": "2020-11-17T23:17:21Z", + "created_at": "2020-10-28T03:11:09Z", + "description": "Starter is a flexible, multi-purpose Nextjs theme built for developers.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-stackbit-starter-nextjs.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-stackbit-starter-nextjs.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-stackbit-starter-nextjs-2x.jpg" + } }, - "stackbithq-stackbit-theme-starter-master": { - "theme_key": "stackbithq-stackbit-theme-starter-master", + "stackbit-themes-starter-unibit": { + "theme_key": "stackbit-themes-starter-unibit", "file": "stackbit-starter-unibit.md", - "name": "stackbit-theme-starter", + "name": "starter-unibit", "title": "Starter Stackbit", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-starter", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/starter-unibit", "branch": "master", - "github_url": "https://github.com/stackbithq/stackbit-theme-starter", + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/starter-unibit", "demo_url": "https://themes.stackbit.com/demos/starter?themeBarHidden=true", - "stars": 9, - "forks": 5, + "stars": 5, + "forks": 3, "open_issues": 0, - "last_commit": "2021-01-05T06:05:53Z", - "created_at": "2020-05-10T16:41:07Z", + "last_commit": "2021-07-13T14:01:46Z", + "created_at": "2021-02-08T12:57:11Z", "description": "Ultra customizable starter. A developers' favorite.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/stackbithq-stackbit-theme-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbithq-stackbit-theme-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbithq-stackbit-theme-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-starter-unibit.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-starter-unibit.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-starter-unibit-2x.jpg" } }, - "stackbithq-stackbit-theme-universal-master": { - "theme_key": "stackbithq-stackbit-theme-universal-master", - "file": "stackbit-theme-universal.md", - "name": "stackbit-theme-universal", - "title": "Stackbit Universal", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-universal", + "stackbit-themes-startup-nextjs": { + "theme_key": "stackbit-themes-startup-nextjs", + "file": "stackbit-startup-nextjs.md", + "name": "startup-nextjs", + "title": "Nextjs Startup", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/startup-nextjs", "branch": "master", - "github_url": "https://github.com/stackbithq/stackbit-theme-universal", - "demo_url": "https://themes.stackbit.com/demos/universal", - "stars": 14, - "forks": 15, - "open_issues": 4, - "last_commit": "2020-05-21T19:09:36Z", - "created_at": "2019-06-24T23:17:20Z", - "description": "Universal the default starter theme for Unibit", - "stale": false, + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/startup-nextjs", + "demo_url": "https://themes.stackbit.com/demos/startup/themeBarHidden=true", + "stars": 5, + "forks": 8, + "open_issues": 0, + "last_commit": "2021-08-31T12:02:35Z", + "created_at": "2021-02-08T16:57:46Z", + "description": null, "images": { - "hires": "https://www.jamstackthemes.dev/capture/stackbithq-stackbit-theme-universal-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbithq-stackbit-theme-universal-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbithq-stackbit-theme-universal-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-startup-nextjs.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-startup-nextjs.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-startup-nextjs-2x.jpg" } }, - "stackbithq-stackbit-theme-vanilla-gatsby": { - "theme_key": "stackbithq-stackbit-theme-vanilla-gatsby", - "file": "stackbit-theme-vanilla-gatsby.md", - "name": "stackbit-theme-vanilla", - "title": "Gatsby Vanilla", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-vanilla", - "branch": "gatsby", - "github_url": "https://github.com/stackbithq/stackbit-theme-vanilla", - "demo_url": "https://themes.stackbit.com/demos/vanilla", - "stars": 12, - "forks": 10, - "open_issues": 1, - "last_commit": "2019-09-24T04:56:12Z", - "created_at": "2019-05-10T14:51:58Z", - "description": "Vanilla a vanilla theme for Stackbit", - "stale": true - }, - "stackbithq-stackbit-theme-vanilla-hugo": { - "theme_key": "stackbithq-stackbit-theme-vanilla-hugo", - "file": "stackbit-theme-vanilla-hugo.md", - "name": "stackbit-theme-vanilla", - "title": "Hugo Vanilla", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-vanilla", - "branch": "hugo", - "github_url": "https://github.com/stackbithq/stackbit-theme-vanilla", - "demo_url": "https://themes.stackbit.com/demos/vanilla", - "stars": 12, - "forks": 10, - "open_issues": 1, - "last_commit": "2019-09-24T04:35:01Z", - "created_at": "2019-05-10T14:51:58Z", - "description": "Vanilla a vanilla theme for Stackbit", - "stale": true - }, - "stackbithq-stackbit-theme-vanilla-jekyll": { - "theme_key": "stackbithq-stackbit-theme-vanilla-jekyll", - "file": "stackbit-theme-vanilla-jekyll.md", - "name": "stackbit-theme-vanilla", + "stackbit-themes-vanilla-jekyll": { + "theme_key": "stackbit-themes-vanilla-jekyll", + "file": "stackbit-vanilla-jekyll.md", + "name": "vanilla-jekyll", "title": "Jekyll Vanilla", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-vanilla", - "branch": "jekyll", - "github_url": "https://github.com/stackbithq/stackbit-theme-vanilla", - "demo_url": "https://themes.stackbit.com/demos/vanilla", - "stars": 12, - "forks": 10, - "open_issues": 1, - "last_commit": "2019-09-24T04:53:23Z", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/vanilla-jekyll", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/vanilla-jekyll", + "demo_url": "https://themes.stackbit.com/demos/vanilla?themeBarHidden=true", + "stars": 2, + "forks": 0, + "open_issues": 0, + "last_commit": "2021-12-14T15:51:00Z", + "created_at": "2021-02-15T13:54:28Z", + "description": "Vanilla theme for Stackbit", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-vanilla-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-vanilla-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-vanilla-jekyll-2x.jpg" + } + }, + "stackbit-themes-vanilla-nextjs": { + "theme_key": "stackbit-themes-vanilla-nextjs", + "file": "stackbit-vanilla-nextjs.md", + "name": "vanilla-nextjs", + "title": "Nextjs Vanilla", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/vanilla-nextjs", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/vanilla-nextjs", + "demo_url": "https://themes.stackbit.com/demos/vanilla?themeBarHidden=true", + "stars": 31, + "forks": 17, + "open_issues": 6, + "last_commit": "2021-12-14T15:18:41Z", "created_at": "2019-05-10T14:51:58Z", "description": "Vanilla a vanilla theme for Stackbit", - "stale": true + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-vanilla-nextjs.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-vanilla-nextjs.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-vanilla-nextjs-2x.jpg" + } }, - "stackbithq-stackbit-theme-vanilla-master": { - "theme_key": "stackbithq-stackbit-theme-vanilla-master", + "stackbit-themes-vanilla-unibit": { + "theme_key": "stackbit-themes-vanilla-unibit", "file": "stackbit-vanilla-unibit.md", - "name": "stackbit-theme-vanilla", + "name": "vanilla-unibit", "title": "Vanilla", - "github_username": "stackbithq", - "repo": "stackbithq/stackbit-theme-vanilla", + "github_username": "stackbit-themes", + "repo": "stackbit-themes/vanilla-unibit", "branch": "master", - "github_url": "https://github.com/stackbithq/stackbit-theme-vanilla", + "default_branch": "master", + "github_url": "https://github.com/stackbit-themes/vanilla-unibit", "demo_url": "https://themes.stackbit.com/demos/vanilla?themeBarHidden=true", - "stars": 20, - "forks": 12, + "stars": 7, + "forks": 5, "open_issues": 0, - "last_commit": "2021-01-07T21:22:11Z", - "created_at": "2019-05-10T14:51:58Z", - "description": "Vanilla a vanilla theme for Stackbit", - "stale": false, + "last_commit": "2021-06-19T19:40:31Z", + "created_at": "2021-02-08T13:03:34Z", + "description": "Vanilla theme for Stackbit", "images": { - "hires": "https://www.jamstackthemes.dev/capture/stackbithq-stackbit-theme-vanilla-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbithq-stackbit-theme-vanilla-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbithq-stackbit-theme-vanilla-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/stackbit-themes-vanilla-unibit.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackbit-themes-vanilla-unibit.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackbit-themes-vanilla-unibit-2x.jpg" } }, - "stackrole-gatsby-starter-foundation-master": { - "theme_key": "stackrole-gatsby-starter-foundation-master", + "stackrole-gatsby-starter-foundation": { + "theme_key": "stackrole-gatsby-starter-foundation", "file": "gatsby-starter-foundation.md", "name": "gatsby-starter-foundation", "title": "Foundation", "github_username": "stackrole", "repo": "stackrole/gatsby-starter-foundation", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/stackrole/gatsby-starter-foundation", "demo_url": "https://foundation.stackrole.com/", - "stars": 110, - "forks": 56, - "open_issues": 3, - "last_commit": "2020-08-27T09:46:47Z", + "stars": 256, + "forks": 133, + "open_issues": 8, + "last_commit": "2022-12-03T05:42:45Z", "created_at": "2020-05-23T10:03:41Z", "description": "A starter to launch your blazing fast personal website and a blog, Built with Gatsby and Netlify CMS. Made with ❤ by Stackrole", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/stackrole-gatsby-starter-foundation-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackrole-gatsby-starter-foundation-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackrole-gatsby-starter-foundation-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/stackrole-gatsby-starter-foundation.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stackrole-gatsby-starter-foundation.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stackrole-gatsby-starter-foundation-2x.jpg" + } + }, + "startbootstrap-startbootstrap-clean-blog-jekyll": { + "theme_key": "blackrockdigital-startbootstrap-clean-blog-jekyll", + "file": "startbootstrap-clean-blog-jekyll.md", + "name": "startbootstrap-clean-blog-jekyll", + "title": "Start Bootstrap Clean Blog", + "github_username": "StartBootstrap", + "repo": "StartBootstrap/startbootstrap-clean-blog-jekyll", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/StartBootstrap/startbootstrap-clean-blog-jekyll", + "demo_url": "https://blackrockdigital.github.io/startbootstrap-clean-blog-jekyll/", + "stars": 1819, + "forks": 1908, + "open_issues": 5, + "last_commit": "2021-05-09T15:32:18Z", + "created_at": "2014-09-27T08:05:10Z", + "description": "A Jekyll version of the Clean Blog theme by Start Bootstrap", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/blackrockdigital-startbootstrap-clean-blog-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/blackrockdigital-startbootstrap-clean-blog-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/blackrockdigital-startbootstrap-clean-blog-jekyll-2x.jpg" + } + }, + "statichunt-geeky-hugo": { + "theme_key": "statichunt-geeky-hugo", + "file": "hugo-geeky.md", + "name": "geeky-hugo", + "title": "Geeky Hugo", + "github_username": "statichunt", + "repo": "statichunt/geeky-hugo", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/statichunt/geeky-hugo", + "demo_url": "https://demo.statichunt.com/geeky-hugo/", + "stars": 28, + "forks": 22, + "open_issues": 2, + "last_commit": "2022-02-13T10:10:50Z", + "created_at": "2021-08-18T06:46:42Z", + "description": "Geeky is a Personal Hugo blog theme focused on high speed. Geeky is fully responsive, Superfast, and powered by Bootstrap v5.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/statichunt-geeky-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/statichunt-geeky-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/statichunt-geeky-hugo-2x.jpg" + } + }, + "staticmania-blogge-hugo-theme": { + "theme_key": "staticmania-blogge-hugo-theme", + "file": "blogge-hugo.md", + "name": "blogge-hugo-theme", + "title": "Blogge Hugo", + "github_username": "StaticMania", + "repo": "StaticMania/blogge-hugo-theme", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/StaticMania/blogge-hugo-theme", + "demo_url": "https://blogge-hugo.staticmania.com/", + "stars": 37, + "forks": 20, + "open_issues": 1, + "last_commit": "2022-09-04T14:50:28Z", + "created_at": "2021-02-04T11:09:45Z", + "description": "Blogge is a clean and minimal blog hugo theme suitable for someone with easy creative features and effects who wants to create a personal blog site to make readers enjoy the pleasure of reading blog posts and blogs.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/staticmania-blogge-hugo-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/staticmania-blogge-hugo-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/staticmania-blogge-hugo-theme-2x.jpg" + } + }, + "staticmania-hugo-apsho": { + "theme_key": "staticmania-hugo-apsho", + "file": "hugo-apsho.md", + "name": "hugo-apsho", + "title": "Apsho Hugo", + "github_username": "StaticMania", + "repo": "StaticMania/hugo-apsho", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/StaticMania/hugo-apsho", + "demo_url": "https://apsho.staticmania.com/", + "stars": 71, + "forks": 40, + "open_issues": 2, + "last_commit": "2022-09-04T14:51:30Z", + "created_at": "2022-04-06T09:14:47Z", + "description": null, + "images": { + "hires": "https://www.jamstackthemes.dev/capture/staticmania-hugo-apsho.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/staticmania-hugo-apsho.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/staticmania-hugo-apsho-2x.jpg" + } + }, + "staticmania-hugo-cohub": { + "theme_key": "staticmania-hugo-cohub", + "file": "hugo-cohub.md", + "name": "hugo-cohub", + "title": "CoHub Hugo", + "github_username": "StaticMania", + "repo": "StaticMania/hugo-cohub", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/StaticMania/hugo-cohub", + "demo_url": "https://cohub.staticmania.com/", + "stars": 36, + "forks": 35, + "open_issues": 1, + "last_commit": "2022-11-23T09:21:07Z", + "created_at": "2022-04-06T09:41:18Z", + "description": null, + "images": { + "hires": "https://www.jamstackthemes.dev/capture/staticmania-hugo-cohub.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/staticmania-hugo-cohub.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/staticmania-hugo-cohub-2x.jpg" + } + }, + "staticmania-portio-hugo": { + "theme_key": "staticmania-portio-hugo", + "file": "portio-hugo.md", + "name": "portio-hugo", + "title": "Portio Hugo", + "github_username": "StaticMania", + "repo": "StaticMania/portio-hugo", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/StaticMania/portio-hugo", + "demo_url": "https://portio-hugo.staticmania.com/", + "stars": 361, + "forks": 256, + "open_issues": 14, + "last_commit": "2022-09-04T14:50:48Z", + "created_at": "2020-08-25T07:05:28Z", + "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.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/staticmania-portio-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/staticmania-portio-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/staticmania-portio-hugo-2x.jpg" + } + }, + "staticmania-roxo-eleventy": { + "theme_key": "staticmania-roxo-eleventy", + "file": "roxo-eleventy.md", + "name": "roxo-eleventy", + "title": "Roxo | a digital agency template", + "github_username": "StaticMania", + "repo": "StaticMania/roxo-eleventy", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/StaticMania/roxo-eleventy", + "demo_url": "https://roxo-eleventy.staticmania.com/", + "stars": 22, + "forks": 21, + "open_issues": 1, + "last_commit": "2022-10-06T11:36:12Z", + "created_at": "2021-12-26T10:52:59Z", + "description": null, + "images": { + "hires": "https://www.jamstackthemes.dev/capture/staticmania-roxo-eleventy.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/staticmania-roxo-eleventy.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/staticmania-roxo-eleventy-2x.jpg" } }, - "staticmania-roxo-hugo-master": { - "theme_key": "staticmania-roxo-hugo-master", + "staticmania-roxo-hugo": { + "theme_key": "staticmania-roxo-hugo", "file": "roxo-hugo.md", "name": "roxo-hugo", "title": "Roxo Hugo", "github_username": "StaticMania", "repo": "StaticMania/roxo-hugo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/StaticMania/roxo-hugo", "demo_url": "https://roxo-hugo.staticmania.com/", - "stars": 54, - "forks": 58, - "open_issues": 0, - "last_commit": "2020-12-06T16:29:30Z", + "stars": 82, + "forks": 89, + "open_issues": 5, + "last_commit": "2021-04-06T11:06:26Z", "created_at": "2020-03-08T11:52:08Z", "description": null, - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/staticmania-roxo-hugo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/staticmania-roxo-hugo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/staticmania-roxo-hugo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/staticmania-roxo-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/staticmania-roxo-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/staticmania-roxo-hugo-2x.jpg" } }, - "stephen-cloud-gatsby-markdown-material-typescript-starter-master": { - "theme_key": "stephen-cloud-gatsby-markdown-material-typescript-starter-master", + "stavrospanakakis-jekyll-cv": { + "theme_key": "stavrospanakakis-jekyll-cv", + "file": "jekyll-cv.md", + "name": "jekyll-cv", + "title": "Jekyll CV", + "github_username": "Stavrospanakakis", + "repo": "Stavrospanakakis/jekyll-cv", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/Stavrospanakakis/jekyll-cv", + "demo_url": "https://jekyll-cv.stavrospanakakis.com", + "stars": 131, + "forks": 156, + "open_issues": 3, + "last_commit": "2021-08-05T18:41:20Z", + "created_at": "2021-02-26T16:11:24Z", + "description": "Lightweight jekyll theme for your CV with dark mode support", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/stavrospanakakis-jekyll-cv.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stavrospanakakis-jekyll-cv.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stavrospanakakis-jekyll-cv-2x.jpg" + } + }, + "stephen-cloud-gatsby-markdown-material-typescript-starter": { + "theme_key": "stephen-cloud-gatsby-markdown-material-typescript-starter", "file": "gatsby-markdown-material-typescript-starter.md", "name": "gatsby-markdown-material-typescript-starter", "title": "Gatsby Markdown Material TypeScript/TSX Responsive Blog Starter", "github_username": "stephen-cloud", "repo": "stephen-cloud/gatsby-markdown-material-typescript-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/stephen-cloud/gatsby-markdown-material-typescript-starter", "demo_url": "https://gatsby-markdown-material-typescript-starter.stephen.cloud/", - "stars": 5, - "forks": 5, - "open_issues": 0, + "stars": 7, + "forks": 7, + "open_issues": 2, "last_commit": "2020-07-03T15:37:53Z", "created_at": "2020-06-21T17:57:54Z", "description": "A Gatsby theme in Material UI and TypeScript", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/stephen-cloud-gatsby-markdown-material-typescript-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stephen-cloud-gatsby-markdown-material-typescript-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stephen-cloud-gatsby-markdown-material-typescript-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/stephen-cloud-gatsby-markdown-material-typescript-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stephen-cloud-gatsby-markdown-material-typescript-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stephen-cloud-gatsby-markdown-material-typescript-starter-2x.jpg" } }, - "stevelane-hugo-icon-master": { - "theme_key": "stevelane-hugo-icon-master", + "stevelane-hugo-icon": { + "theme_key": "stevelane-hugo-icon", "file": "hugo-icon.md", "name": "hugo-icon", "title": "Hugo Icon", "github_username": "SteveLane", "repo": "SteveLane/hugo-icon", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/SteveLane/hugo-icon", "demo_url": "https://themes.gohugo.io/theme/hugo-icon/", - "stars": 84, - "forks": 72, - "open_issues": 10, + "stars": 88, + "forks": 69, + "open_issues": 9, "last_commit": "2019-03-05T21:23:39Z", "created_at": "2017-09-19T11:24:46Z", "description": "Icon theme for Hugo", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/stevelane-hugo-icon-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stevelane-hugo-icon-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stevelane-hugo-icon-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/stevelane-hugo-icon.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stevelane-hugo-icon.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stevelane-hugo-icon-2x.jpg" } }, - "stijnvc-holo-alfa-master": { - "theme_key": "stijnvc-holo-alfa-master", + "stijnvc-holo-alfa": { + "theme_key": "stijnvc-holo-alfa", "file": "jekyll-holo-alfa.md", "name": "holo-alfa", "title": "Holo Alfa", "github_username": "stijnvc", "repo": "stijnvc/holo-alfa", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/stijnvc/holo-alfa", "demo_url": "https://stijnvc.github.io/holo-alfa/", - "stars": 161, - "forks": 106, + "stars": 171, + "forks": 107, "open_issues": 0, "last_commit": "2019-09-10T20:20:54Z", "created_at": "2015-07-20T19:10:35Z", "description": "A minimalist, mobile first Jekyll theme.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/stijnvc-holo-alfa-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stijnvc-holo-alfa-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stijnvc-holo-alfa-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/stijnvc-holo-alfa.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/stijnvc-holo-alfa.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/stijnvc-holo-alfa-2x.jpg" + } + }, + "storyblok-storyblok-gridsome-boilerplate-moon": { + "theme_key": "storyblok-storyblok-gridsome-boilerplate-moon", + "file": "storyblok-gridsome-boilerplate-moon.md", + "name": "storyblok-gridsome-boilerplate-moon", + "title": "Storyblok's Gridsome Boilerplate (Moon-Theme)", + "github_username": "storyblok", + "repo": "storyblok/storyblok-gridsome-boilerplate-moon", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/storyblok/storyblok-gridsome-boilerplate-moon", + "demo_url": "https://demo.storyblok.com/", + "stars": 13, + "forks": 3, + "open_issues": 17, + "last_commit": "2021-04-27T01:43:31Z", + "created_at": "2020-01-20T14:33:16Z", + "description": "Storyblok's Gridsome Boilerplate (Moon-Theme)", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/storyblok-storyblok-gridsome-boilerplate-moon.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/storyblok-storyblok-gridsome-boilerplate-moon.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/storyblok-storyblok-gridsome-boilerplate-moon-2x.jpg" } }, - "streetturtle-jekyll-clean-dark-gh-pages": { - "theme_key": "streetturtle-jekyll-clean-dark-gh-pages", + "streetturtle-jekyll-clean-dark": { + "theme_key": "streetturtle-jekyll-clean-dark", "file": "jekyll-clean-dark.md", "name": "jekyll-clean-dark", "title": "Jekyll Clean Dark", "github_username": "streetturtle", "repo": "streetturtle/jekyll-clean-dark", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/streetturtle/jekyll-clean-dark", "demo_url": "https://pavelmakhov.com/jekyll-clean-dark/", - "stars": 187, - "forks": 135, - "open_issues": 2, + "stars": 212, + "forks": 139, + "open_issues": 5, "last_commit": "2020-05-27T00:31:17Z", "created_at": "2015-06-29T22:56:56Z", "description": "Dark clean theme for jekyll", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/streetturtle-jekyll-clean-dark-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/streetturtle-jekyll-clean-dark-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/streetturtle-jekyll-clean-dark-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/streetturtle-jekyll-clean-dark.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/streetturtle-jekyll-clean-dark.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/streetturtle-jekyll-clean-dark-2x.jpg" } }, - "styxlab-gatsby-starter-try-ghost-master": { - "theme_key": "styxlab-gatsby-starter-try-ghost-master", + "styxlab-gatsby-starter-try-ghost": { + "theme_key": "styxlab-gatsby-starter-try-ghost", "file": "jamify-starter-ghost.md", "name": "gatsby-starter-try-ghost", "title": "Jamify Starter", "github_username": "styxlab", "repo": "styxlab/gatsby-starter-try-ghost", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/styxlab/gatsby-starter-try-ghost", "demo_url": "https://demo.jamify.org/", - "stars": 125, - "forks": 69, - "open_issues": 0, - "last_commit": "2020-12-15T19:33:34Z", + "stars": 185, + "forks": 92, + "open_issues": 12, + "last_commit": "2021-10-27T19:15:19Z", "created_at": "2020-02-25T16:17:03Z", "description": "Publish flaring fast blogs with Gatsby and Ghost", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/styxlab-gatsby-starter-try-ghost-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/styxlab-gatsby-starter-try-ghost-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/styxlab-gatsby-starter-try-ghost-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/styxlab-gatsby-starter-try-ghost.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/styxlab-gatsby-starter-try-ghost.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/styxlab-gatsby-starter-try-ghost-2x.jpg" } }, - "styxlab-next-cms-ghost-master": { - "theme_key": "styxlab-next-cms-ghost-master", + "styxlab-next-cms-ghost": { + "theme_key": "styxlab-next-cms-ghost", "file": "jamify-next-cms-ghost.md", "name": "next-cms-ghost", "title": "Jamify Blog Starter", "github_username": "styxlab", "repo": "styxlab/next-cms-ghost", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/styxlab/next-cms-ghost", "demo_url": "https://next.jamify.org/", - "stars": 43, - "forks": 15, - "open_issues": 2, - "last_commit": "2021-01-08T09:39:38Z", + "stars": 588, + "forks": 178, + "open_issues": 4, + "last_commit": "2022-10-31T10:05:14Z", "created_at": "2020-11-11T15:39:01Z", "description": "Publish flaring fast blogs with Next.js and Ghost CMS", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/styxlab-next-cms-ghost-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/styxlab-next-cms-ghost-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/styxlab-next-cms-ghost-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/styxlab-next-cms-ghost.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/styxlab-next-cms-ghost.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/styxlab-next-cms-ghost-2x.jpg" } }, - "sudorook-capsule-master": { - "theme_key": "sudorook-capsule-master", + "sudorook-capsule": { + "theme_key": "sudorook-capsule", "file": "hugo-capsule.md", "name": "capsule", "title": "Capsule", "github_username": "sudorook", "repo": "sudorook/capsule", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/sudorook/capsule", "demo_url": "https://themes.gohugo.io/theme/capsule/", - "stars": 16, - "forks": 12, + "stars": 19, + "forks": 10, "open_issues": 0, - "last_commit": "2020-12-13T13:18:29Z", + "last_commit": "2021-06-19T19:49:39Z", "created_at": "2017-09-30T15:29:45Z", "description": "A Hugo theme based on the CSS-only Bulma framework.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/sudorook-capsule-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sudorook-capsule-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sudorook-capsule-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sudorook-capsule.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sudorook-capsule.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sudorook-capsule-2x.jpg" } }, - "suheb-resume-master": { - "theme_key": "suheb-resume-master", + "suheb-resume": { + "theme_key": "suheb-resume", "file": "pelican-resume.md", "name": "resume", "title": "Resume", "github_username": "suheb", "repo": "suheb/resume", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/suheb/resume", "demo_url": "https://suheb.in/resume/", - "stars": 72, - "forks": 10, + "stars": 76, + "forks": 17, "open_issues": 0, "last_commit": "2018-12-18T10:26:44Z", "created_at": "2017-08-13T21:25:23Z", "description": "A minimal pelican theme to host your resume", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/suheb-resume-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/suheb-resume-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/suheb-resume-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/suheb-resume.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/suheb-resume.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/suheb-resume-2x.jpg" } }, - "suits-at-netlifycms-gridsome-master": { - "theme_key": "suits-at-netlifycms-gridsome-master", + "suits-at-netlifycms-gridsome": { + "theme_key": "suits-at-netlifycms-gridsome", "file": "netlifycms-gridsome.md", "name": "netlifycms-gridsome", "title": "Gridsome Netlify CMS", "github_username": "suits-at", "repo": "suits-at/netlifycms-gridsome", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/suits-at/netlifycms-gridsome", "demo_url": "https://netlifycms-gridsome.suits.at", - "stars": 43, - "forks": 24, - "open_issues": 0, - "last_commit": "2020-12-14T22:49:21Z", + "stars": 54, + "forks": 35, + "open_issues": 4, + "last_commit": "2021-05-14T13:57:55Z", "created_at": "2019-04-14T11:51:06Z", "description": "Netlify CMS template for Gridsome", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/suits-at-netlifycms-gridsome-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/suits-at-netlifycms-gridsome-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/suits-at-netlifycms-gridsome-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/suits-at-netlifycms-gridsome.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/suits-at-netlifycms-gridsome.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/suits-at-netlifycms-gridsome-2x.jpg" } }, - "sujaykundu777-devlopr-jekyll-master": { - "theme_key": "sujaykundu777-devlopr-jekyll-master", + "sujaykundu777-devlopr-jekyll": { + "theme_key": "sujaykundu777-devlopr-jekyll", "file": "devlopr.md", "name": "devlopr-jekyll", "title": "devlopr-jekyll", "github_username": "sujaykundu777", "repo": "sujaykundu777/devlopr-jekyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/sujaykundu777/devlopr-jekyll", "demo_url": "https://devlopr.netlify.app", - "stars": 279, - "forks": 480, - "open_issues": 4, - "last_commit": "2020-11-07T12:36:23Z", + "stars": 564, + "forks": 809, + "open_issues": 18, + "last_commit": "2022-12-12T07:33:08Z", "created_at": "2018-07-03T11:38:13Z", - "description": "Build and Deploy your Static Site :rocket: using this beautiful Jekyll Theme built for Developers ", - "stale": false, - "images": { - "hires": "https://www.jamstackthemes.dev/capture/sujaykundu777-devlopr-jekyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sujaykundu777-devlopr-jekyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sujaykundu777-devlopr-jekyll-master-2x.jpg" - } - }, - "sumeetmathpati-tiny-blog-master": { - "theme_key": "sumeetmathpati-tiny-blog-master", - "file": "tiny-blog.md", - "name": "tiny-blog", - "title": "Tiny Blog", - "github_username": "sumeetmathpati", - "repo": "sumeetmathpati/tiny-blog", - "branch": "master", - "github_url": "https://github.com/sumeetmathpati/tiny-blog", - "demo_url": "https://sumeetmathpati.github.io/tiny-blog/", - "stars": 0, - "forks": 0, - "open_issues": 0, - "last_commit": "2020-10-04T03:44:39Z", - "created_at": "2020-09-18T09:27:45Z", - "description": "A simple and minimal theme for jekyll.blog.", - "stale": false, + "description": "(FREE SITE GENERATOR) - A Customizable/Hackable portfolio jekyll theme where you can blog using Markdown or CMS :rocket: in minutes built for developers. (with CMS)", "images": { - "hires": "https://www.jamstackthemes.dev/capture/sumeetmathpati-tiny-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sumeetmathpati-tiny-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sumeetmathpati-tiny-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sujaykundu777-devlopr-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sujaykundu777-devlopr-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sujaykundu777-devlopr-jekyll-2x.jpg" } }, - "sunbliss-photorama-gh-pages": { - "theme_key": "sunbliss-photorama-gh-pages", + "sunbliss-photorama": { + "theme_key": "sunbliss-photorama", "file": "jekyll-photorama.md", "name": "photorama", "title": "PHOTORAMA", "github_username": "sunbliss", "repo": "sunbliss/photorama", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/sunbliss/photorama", "demo_url": "https://sunbliss.github.io/photorama", - "stars": 162, - "forks": 268, - "open_issues": 5, - "last_commit": "2019-09-23T13:49:38Z", + "stars": 213, + "forks": 370, + "open_issues": 3, + "last_commit": "2022-06-08T23:37:39Z", "created_at": "2016-03-27T21:21:59Z", "description": "\"PHOTORAMA\" template for Jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/sunbliss-photorama-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sunbliss-photorama-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sunbliss-photorama-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sunbliss-photorama.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sunbliss-photorama.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sunbliss-photorama-2x.jpg" } }, - "surjithctly-neat-starter-master": { - "theme_key": "surjithctly-neat-starter-master", + "surjithctly-neat-starter": { + "theme_key": "surjithctly-neat-starter", "file": "neat-starter.md", "name": "neat-starter", "title": "Neat Starter", "github_username": "surjithctly", "repo": "surjithctly/neat-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/surjithctly/neat-starter", "demo_url": "https://neat-starter.netlify.app/", - "stars": 65, - "forks": 17, - "open_issues": 0, - "last_commit": "2020-12-23T09:40:33Z", + "stars": 257, + "forks": 81, + "open_issues": 1, + "last_commit": "2022-06-20T16:35:53Z", "created_at": "2020-09-21T06:18:37Z", - "description": "Starter Template for Netlify CMS, Eleventy, Alphine JS & Tailwind CSS", - "stale": false, + "description": "Starter Template for Netlify CMS, Eleventy, Alpine JS & Tailwind CSS", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/surjithctly-neat-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/surjithctly-neat-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/surjithctly-neat-starter-2x.jpg" + } + }, + "suyundukov-hugo-sustain": { + "theme_key": "nurlansu-hugo-sustain", + "file": "hugo-sustain.md", + "name": "hugo-sustain", + "title": "Sustain", + "github_username": "suyundukov", + "repo": "suyundukov/hugo-sustain", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/suyundukov/hugo-sustain", + "demo_url": "https://demo.nurlan.co/hugo-sustain/", + "stars": 203, + "forks": 125, + "open_issues": 7, + "last_commit": "2021-02-13T17:20:29Z", + "created_at": "2016-10-22T07:21:04Z", + "description": "🦁 Personal blog theme built with Bootstrap, powered by Hugo.", "images": { - "hires": "https://www.jamstackthemes.dev/capture/surjithctly-neat-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/surjithctly-neat-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/surjithctly-neat-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/nurlansu-hugo-sustain.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nurlansu-hugo-sustain.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nurlansu-hugo-sustain-2x.jpg" } }, - "svmiller-steve-ngvb-jekyll-template-master": { - "theme_key": "svmiller-steve-ngvb-jekyll-template-master", + "svmiller-steve-ngvb-jekyll-template": { + "theme_key": "svmiller-steve-ngvb-jekyll-template", "file": "jekyll-svm-ngvb.md", "name": "steve-ngvb-jekyll-template", "title": "Steve's NGVB Theme", "github_username": "svmiller", "repo": "svmiller/steve-ngvb-jekyll-template", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/svmiller/steve-ngvb-jekyll-template", "demo_url": "https://svmiller.com/", - "stars": 41, - "forks": 78, + "stars": 42, + "forks": 91, "open_issues": 2, "last_commit": "2018-03-09T00:06:50Z", "created_at": "2015-08-16T21:27:34Z", "description": "This is my no-good-very-bad template for Jekyll (modified from jekyll-new and Alex King's Favepersonal).", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/svmiller-steve-ngvb-jekyll-template-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/svmiller-steve-ngvb-jekyll-template-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/svmiller-steve-ngvb-jekyll-template-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/svmiller-steve-ngvb-jekyll-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/svmiller-steve-ngvb-jekyll-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/svmiller-steve-ngvb-jekyll-template-2x.jpg" } }, - "sw-yx-jamstack-hackathon-starter-master": { - "theme_key": "sw-yx-jamstack-hackathon-starter-master", + "sw-yx-jamstack-hackathon-starter": { + "theme_key": "sw-yx-jamstack-hackathon-starter", "file": "jamstack-hackathon-starter.md", "name": "jamstack-hackathon-starter", "title": "Jamstack Hackathon Starter", "github_username": "Ekwuno", "repo": "Ekwuno/jamstack-hackathon-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Ekwuno/jamstack-hackathon-starter", "demo_url": "https://jamstack-hackathon-starter.netlify.com/", - "stars": 135, - "forks": 42, + "stars": 141, + "forks": 41, "open_issues": 3, "last_commit": "2020-03-25T22:18:25Z", "created_at": "2018-05-09T20:44:36Z", "description": "Make Authenticated, Serverless, Dynamic Clientside JAMstack apps with Gatsby + Netlify Dev (Functions + Identity)", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/sw-yx-jamstack-hackathon-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sw-yx-jamstack-hackathon-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sw-yx-jamstack-hackathon-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sw-yx-jamstack-hackathon-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sw-yx-jamstack-hackathon-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sw-yx-jamstack-hackathon-starter-2x.jpg" } }, - "swanson-lagom-master": { - "theme_key": "swanson-lagom-master", + "swanson-lagom": { + "theme_key": "swanson-lagom", "file": "jekyll-lagom.md", "name": "lagom", "title": "Lagom", "github_username": "swanson", "repo": "swanson/lagom", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/swanson/lagom", "demo_url": "https://lagom.mdswanson.com/", - "stars": 503, - "forks": 452, + "stars": 501, + "forks": 443, "open_issues": 1, "last_commit": "2018-02-07T01:54:03Z", "created_at": "2013-08-24T03:09:43Z", "description": "A Jekyll blog theme with just the right amount of style", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/swanson-lagom-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/swanson-lagom-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/swanson-lagom-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/swanson-lagom.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/swanson-lagom.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/swanson-lagom-2x.jpg" } }, - "swcool-landing-page-theme-master": { - "theme_key": "swcool-landing-page-theme-master", + "swcool-landing-page-theme": { + "theme_key": "swcool-landing-page-theme", "file": "landing-page-theme.md", "name": "landing-page-theme", "title": "Landing Page Jekyll theme", "github_username": "swcool", "repo": "swcool/landing-page-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/swcool/landing-page-theme", "demo_url": "https://shaneweng.com/landing-page-theme/", - "stars": 380, - "forks": 557, + "stars": 403, + "forks": 587, "open_issues": 6, "last_commit": "2015-11-02T17:04:42Z", "created_at": "2014-10-04T15:07:16Z", "description": "Jekyll Bootstrap theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/swcool-landing-page-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/swcool-landing-page-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/swcool-landing-page-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/swcool-landing-page-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/swcool-landing-page-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/swcool-landing-page-theme-2x.jpg" } }, - "sylhare-type-on-strap-master": { - "theme_key": "sylhare-type-on-strap-master", + "sylhare-type-on-strap": { + "theme_key": "sylhare-type-on-strap", "file": "jekyll-Type-on-Strap-theme.md", "name": "Type-on-Strap", "title": "Type on Strap", "github_username": "sylhare", "repo": "sylhare/Type-on-Strap", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/sylhare/Type-on-Strap", "demo_url": "https://sylhare.github.io/Type-on-Strap/", - "stars": 445, - "forks": 707, + "stars": 705, + "forks": 822, "open_issues": 2, - "last_commit": "2020-12-06T15:56:19Z", + "last_commit": "2022-12-10T19:56:18Z", "created_at": "2017-10-02T13:37:28Z", "description": "🎨 Simplistic, responsive jekyll based open source theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/sylhare-type-on-strap-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sylhare-type-on-strap-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sylhare-type-on-strap-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sylhare-type-on-strap.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sylhare-type-on-strap.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sylhare-type-on-strap-2x.jpg" } }, - "syui-hugo-theme-air-master": { - "theme_key": "syui-hugo-theme-air-master", + "syui-hugo-theme-air": { + "theme_key": "syui-hugo-theme-air", "file": "hugo-theme-air.md", "name": "hugo-theme-air", "title": "Air", "github_username": "syui", "repo": "syui/hugo-theme-air", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/syui/hugo-theme-air", "demo_url": "https://themes.gohugo.io/theme/air/", - "stars": 108, - "forks": 53, + "stars": 116, + "forks": 66, "open_issues": 0, "last_commit": "2020-12-16T13:24:09Z", "created_at": "2015-07-24T20:15:24Z", "description": "cname : syui.cf", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/syui-hugo-theme-air-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/syui-hugo-theme-air-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/syui-hugo-theme-air-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/syui-hugo-theme-air.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/syui-hugo-theme-air.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/syui-hugo-theme-air-2x.jpg" } }, - "syui-hugo-theme-wave-master": { - "theme_key": "syui-hugo-theme-wave-master", + "syui-hugo-theme-wave": { + "theme_key": "syui-hugo-theme-wave", "file": "hugo-theme-wave.md", "name": "hugo-theme-wave", "title": "Wave", "github_username": "syui", "repo": "syui/hugo-theme-wave", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/syui/hugo-theme-wave", "demo_url": "https://themes.gohugo.io/theme/hugo-theme-wave/", "stars": 13, @@ -20617,320 +25477,435 @@ "last_commit": "2019-08-18T11:01:01Z", "created_at": "2016-06-03T16:17:46Z", "description": null, - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/syui-hugo-theme-wave-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/syui-hugo-theme-wave-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/syui-hugo-theme-wave-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/syui-hugo-theme-wave.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/syui-hugo-theme-wave.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/syui-hugo-theme-wave-2x.jpg" } }, - "szhielelp-jekylltheme-projectgaia-master": { - "theme_key": "szhielelp-jekylltheme-projectgaia-master", + "szhielelp-jekylltheme-projectgaia": { + "theme_key": "szhielelp-jekylltheme-projectgaia", "file": "jekyll-project-gaia.md", "name": "JekyllTheme-ProjectGaia", "title": "Project Gaia", "github_username": "szhielelp", "repo": "szhielelp/JekyllTheme-ProjectGaia", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/szhielelp/JekyllTheme-ProjectGaia", "demo_url": "https://szhielelp.github.io/JekyllTheme-ProjectGaia/", - "stars": 111, - "forks": 41, + "stars": 110, + "forks": 39, "open_issues": 1, - "last_commit": "2020-07-30T14:51:56Z", + "last_commit": "2021-07-17T05:03:00Z", "created_at": "2017-01-09T07:22:31Z", "description": "Jekyll Theme Project Gaia. V2 Beta Released !! Check it out -> ", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/szhielelp-jekylltheme-projectgaia-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/szhielelp-jekylltheme-projectgaia-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/szhielelp-jekylltheme-projectgaia-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/szhielelp-jekylltheme-projectgaia.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/szhielelp-jekylltheme-projectgaia.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/szhielelp-jekylltheme-projectgaia-2x.jpg" } }, - "sziv2p-jekyll-theme-scaffold-master": { - "theme_key": "sziv2p-jekyll-theme-scaffold-master", + "szhshp-jekylltheme-projectgaia": { + "theme_key": "szhielelp-jekylltheme-projectgaia", + "file": "jekyll-project-gaia.md", + "name": "JekyllTheme-ProjectGaia", + "title": "Project Gaia", + "github_username": "szhshp", + "repo": "szhshp/JekyllTheme-ProjectGaia", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/szhshp/JekyllTheme-ProjectGaia", + "demo_url": "https://szhielelp.github.io/JekyllTheme-ProjectGaia/", + "stars": 110, + "forks": 39, + "open_issues": 1, + "last_commit": "2021-07-17T05:03:00Z", + "created_at": "2017-01-09T07:22:31Z", + "description": "Jekyll Theme Project Gaia. V2 Beta Released !! Check it out -> ", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/szhielelp-jekylltheme-projectgaia.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/szhielelp-jekylltheme-projectgaia.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/szhielelp-jekylltheme-projectgaia-2x.jpg" + } + }, + "sziv2p-jekyll-theme-scaffold": { + "theme_key": "sziv2p-jekyll-theme-scaffold", "file": "scaffold.md", "name": "jekyll-theme-scaffold", "title": "Scaffold", "github_username": "sziv2p", "repo": "sziv2p/jekyll-theme-scaffold", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/sziv2p/jekyll-theme-scaffold", "demo_url": "https://sziv2p.github.io/jekyll-theme-scaffold/", - "stars": 5, - "forks": 8, - "open_issues": 0, - "last_commit": "2021-01-05T14:40:07Z", + "stars": 11, + "forks": 10, + "open_issues": 2, + "last_commit": "2021-02-12T04:39:09Z", "created_at": "2020-10-30T17:39:34Z", "description": "A minimalist yet powerful Jekyll theme for bloggers", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/sziv2p-jekyll-theme-scaffold-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sziv2p-jekyll-theme-scaffold-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sziv2p-jekyll-theme-scaffold-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/sziv2p-jekyll-theme-scaffold.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/sziv2p-jekyll-theme-scaffold.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/sziv2p-jekyll-theme-scaffold-2x.jpg" + } + }, + "szivong-pole": { + "theme_key": "szivong-pole", + "file": "pole.md", + "name": "pole", + "title": "Pole", + "github_username": "szivong", + "repo": "szivong/pole", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/szivong/pole", + "demo_url": "https://szivong.io/pole/", + "stars": 0, + "forks": 0, + "open_issues": 0, + "last_commit": "2021-02-22T16:16:13Z", + "created_at": "2021-02-19T09:08:51Z", + "description": "A one-column minimal responsive Jekyll blog theme", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/szivong-pole.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/szivong-pole.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/szivong-pole-2x.jpg" } }, - "t413-singlepaged-gh-pages": { - "theme_key": "t413-singlepaged-gh-pages", + "t413-singlepaged": { + "theme_key": "t413-singlepaged", "file": "jekyll-singlepaged.md", "name": "SinglePaged", "title": "SinglePaged", "github_username": "t413", "repo": "t413/SinglePaged", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/t413/SinglePaged", "demo_url": "https://t413.com/SinglePaged", - "stars": 774, - "forks": 1074, - "open_issues": 22, + "stars": 807, + "forks": 1132, + "open_issues": 25, "last_commit": "2016-08-04T06:13:56Z", "created_at": "2014-09-19T20:31:46Z", "description": "SinglePaged - Simple Jekyll template", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/t413-singlepaged-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/t413-singlepaged-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/t413-singlepaged-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/t413-singlepaged.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/t413-singlepaged.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/t413-singlepaged-2x.jpg" } }, - "taikii-whiteplain-master": { - "theme_key": "taikii-whiteplain-master", + "taikii-whiteplain": { + "theme_key": "taikii-whiteplain", "file": "hugo-whiteplain-theme.md", "name": "whiteplain", "title": "Whiteplain", "github_username": "taikii", "repo": "taikii/whiteplain", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/taikii/whiteplain", "demo_url": "https://themes.gohugo.io/theme/whiteplain/", - "stars": 74, - "forks": 38, + "stars": 80, + "forks": 36, "open_issues": 7, "last_commit": "2019-10-27T21:44:59Z", "created_at": "2017-12-21T14:43:28Z", "description": "Simple and Functional Hugo theme.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/taikii-whiteplain-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/taikii-whiteplain-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/taikii-whiteplain-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/taikii-whiteplain.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/taikii-whiteplain.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/taikii-whiteplain-2x.jpg" } }, - "taylantatli-halve-master": { - "theme_key": "taylantatli-halve-master", + "tajacks-lightspeed": { + "theme_key": "tajacks-lightspeed", + "file": "jekyll-lightspeed.md", + "name": "lightspeed", + "title": "Lightspeed", + "github_username": "tajacks", + "repo": "tajacks/lightspeed", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/tajacks/lightspeed", + "demo_url": "https://lightspeed.tajacks.com", + "stars": 1, + "forks": 1, + "open_issues": 0, + "last_commit": "2023-02-18T23:36:40Z", + "created_at": "2022-03-27T18:03:18Z", + "description": "A fast, simple, and privacy-respecting Jekyll theme.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/tajacks-lightspeed.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tajacks-lightspeed.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tajacks-lightspeed-2x.jpg" + } + }, + "taylantatli-halve": { + "theme_key": "taylantatli-halve", "file": "jekyll-halve-theme.md", "name": "Halve", "title": "Halve", "github_username": "TaylanTatli", "repo": "TaylanTatli/Halve", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/TaylanTatli/Halve", - "demo_url": "http://taylantatli.github.io/Halve", - "stars": 290, - "forks": 373, + "demo_url": "https://taylantatli.github.io/Halve", + "stars": 287, + "forks": 361, "open_issues": 33, "last_commit": "2019-10-29T14:10:03Z", "created_at": "2016-05-30T18:47:21Z", "description": "Stylish Two-Column Jekyll Theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/taylantatli-halve-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/taylantatli-halve-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/taylantatli-halve-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/taylantatli-halve.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/taylantatli-halve.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/taylantatli-halve-2x.jpg" } }, - "taylantatli-moon-master": { - "theme_key": "taylantatli-moon-master", + "taylantatli-moon": { + "theme_key": "taylantatli-moon", "file": "jekyll-moon.md", "name": "Moon", "title": "Moon", "github_username": "TaylanTatli", "repo": "TaylanTatli/Moon", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/TaylanTatli/Moon", "demo_url": "https://taylantatli.github.io/Moon", - "stars": 2034, - "forks": 1934, - "open_issues": 76, + "stars": 2180, + "forks": 2048, + "open_issues": 75, "last_commit": "2017-02-01T08:28:49Z", "created_at": "2016-04-13T21:13:26Z", "description": "Moon is a minimal, one column jekyll theme.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/taylantatli-moon-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/taylantatli-moon-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/taylantatli-moon-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/taylantatli-moon.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/taylantatli-moon.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/taylantatli-moon-2x.jpg" } }, - "taylantatli-ramme-master": { - "theme_key": "taylantatli-ramme-master", + "taylantatli-ramme": { + "theme_key": "taylantatli-ramme", "file": "jekyll-ramme.md", "name": "Ramme", "title": "Ramme", "github_username": "TaylanTatli", "repo": "TaylanTatli/Ramme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/TaylanTatli/Ramme", "demo_url": "https://taylantatli.github.io/Ramme", - "stars": 33, - "forks": 21, + "stars": 48, + "forks": 32, "open_issues": 0, "last_commit": "2016-04-13T21:06:08Z", "created_at": "2016-03-21T08:53:35Z", - "description": "Just a simple Jekyll theme", - "stale": true, + "description": "Simple retro theme for Jekyll.", "images": { - "hires": "https://www.jamstackthemes.dev/capture/taylantatli-ramme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/taylantatli-ramme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/taylantatli-ramme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/taylantatli-ramme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/taylantatli-ramme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/taylantatli-ramme-2x.jpg" } }, - "tazeg-hugo-blog-jeffprod-master": { - "theme_key": "tazeg-hugo-blog-jeffprod-master", + "tazeg-hugo-blog-jeffprod": { + "theme_key": "tazeg-hugo-blog-jeffprod", "file": "hugo-blog-jeffprod.md", "name": "hugo-blog-jeffprod", "title": "Jeffprod", "github_username": "Tazeg", "repo": "Tazeg/hugo-blog-jeffprod", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Tazeg/hugo-blog-jeffprod", "demo_url": "https://themes.gohugo.io/theme/hugo-blog-jeffprod/", - "stars": 45, + "stars": 50, "forks": 22, "open_issues": 0, "last_commit": "2020-05-28T19:18:10Z", "created_at": "2018-08-10T21:13:26Z", "description": "A free blog theme for HUGO (https://gohugo.io/), with tags, archives, last posts...", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/tazeg-hugo-blog-jeffprod-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tazeg-hugo-blog-jeffprod-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tazeg-hugo-blog-jeffprod-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/tazeg-hugo-blog-jeffprod.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tazeg-hugo-blog-jeffprod.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tazeg-hugo-blog-jeffprod-2x.jpg" } }, - "tblyler-light-hugo-master": { - "theme_key": "tblyler-light-hugo-master", + "tblyler-light-hugo": { + "theme_key": "tblyler-light-hugo", "file": "hugo-light-theme.md", "name": "light-hugo", "title": "Light Hugo", "github_username": "tblyler", "repo": "tblyler/light-hugo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/tblyler/light-hugo", "demo_url": "https://themes.gohugo.io/theme/light-hugo/", - "stars": 7, - "forks": 9, - "open_issues": 1, + "stars": 8, + "forks": 8, + "open_issues": 3, "last_commit": "2020-10-14T19:24:44Z", "created_at": "2016-11-03T03:04:10Z", "description": null, - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/tblyler-light-hugo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tblyler-light-hugo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tblyler-light-hugo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/tblyler-light-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tblyler-light-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tblyler-light-hugo-2x.jpg" + } + }, + "tcbutler320-jek": { + "theme_key": "tcbutler320-jek", + "file": "jekyll-jek.md", + "name": "jek", + "title": "Jek", + "github_username": "tcbutler320", + "repo": "tcbutler320/jek", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/tcbutler320/jek", + "demo_url": "https://jekyll-jek.netlify.app/", + "stars": 28, + "forks": 8, + "open_issues": 5, + "last_commit": "2021-07-01T23:31:37Z", + "created_at": "2021-06-08T14:41:16Z", + "description": "Jek is a minimalist jekyll theme putting the power of color schemes in the user’s hands. Toggle between schemes hassle-free, create new ones on the go, and store settings in-browser.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/tcbutler320-jek.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tcbutler320-jek.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tcbutler320-jek-2x.jpg" } }, - "tcbutler320-jekyll-theme-dumbarton-master": { - "theme_key": "tcbutler320-jekyll-theme-dumbarton-master", + "tcbutler320-jekyll-theme-dumbarton": { + "theme_key": "tcbutler320-jekyll-theme-dumbarton", "file": "jekyll-dumbarton.md", "name": "Jekyll-Theme-Dumbarton", "title": "Dumbarton", "github_username": "tcbutler320", "repo": "tcbutler320/Jekyll-Theme-Dumbarton", - "branch": "master", + "branch": "dev", + "default_branch": "dev", "github_url": "https://github.com/tcbutler320/Jekyll-Theme-Dumbarton", "demo_url": "https://dumbarton.netlify.app/index.html", - "stars": 7, - "forks": 5, + "stars": 43, + "forks": 44, "open_issues": 6, - "last_commit": "2020-11-30T12:49:06Z", + "last_commit": "2021-03-02T00:19:24Z", "created_at": "2020-10-30T02:48:49Z", "description": "Dumbarton is a Jekyll Theme developed by Tyler Butler. The theme is designed for academics and features a simple home page with an about me section, a blog, and an interactive highlights section to describe publications, coursework, courses taught, and projects. UI design with Bootstrap and Animate CSS. Dumbarton is not compatible with Github Pages at this time. ", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/tcbutler320-jekyll-theme-dumbarton-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tcbutler320-jekyll-theme-dumbarton-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tcbutler320-jekyll-theme-dumbarton-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/tcbutler320-jekyll-theme-dumbarton.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tcbutler320-jekyll-theme-dumbarton.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tcbutler320-jekyll-theme-dumbarton-2x.jpg" } }, - "teaware-gatsby-starter-point-master": { - "theme_key": "teaware-gatsby-starter-point-master", + "teaware-gatsby-starter-point": { + "theme_key": "teaware-gatsby-starter-point", "file": "gatsby-starter-point.md", "name": "gatsby-starter-point", "title": "Gatsby Starter Point", "github_username": "teaware", "repo": "teaware/gatsby-starter-point", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/teaware/gatsby-starter-point", "demo_url": "https://gatsby-starter-point.netlify.com/", - "stars": 6, - "forks": 3, - "open_issues": 0, + "stars": 9, + "forks": 4, + "open_issues": 2, "last_commit": "2020-11-26T08:25:43Z", "created_at": "2019-10-24T02:47:15Z", "description": "A humble Gatsby starter with fancy page transitions ✨💫 & perfect performance 💯", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/teaware-gatsby-starter-point-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/teaware-gatsby-starter-point-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/teaware-gatsby-starter-point-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/teaware-gatsby-starter-point.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/teaware-gatsby-starter-point.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/teaware-gatsby-starter-point-2x.jpg" + } + }, + "terabytetiger-gridsome-airtable-starter": { + "theme_key": "12vanblart-gridsome-airtable-starter", + "file": "gridsome-airtable-starter.md", + "name": "gridsome-airtable-starter", + "title": "Gridsome Airtable Starter", + "github_username": "TerabyteTiger", + "repo": "TerabyteTiger/gridsome-airtable-starter", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/TerabyteTiger/gridsome-airtable-starter", + "demo_url": "https://gridsomeairtable.netlify.com/", + "stars": 28, + "forks": 11, + "open_issues": 2, + "last_commit": "2022-12-08T17:34:20Z", + "created_at": "2019-08-06T11:03:14Z", + "description": "A Gridsome starter leveraging Airtable with a minimalist design. ", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/12vanblart-gridsome-airtable-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/12vanblart-gridsome-airtable-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/12vanblart-gridsome-airtable-starter-2x.jpg" } }, - "thakkaryash94-gatsby-github-personal-website-master": { - "theme_key": "thakkaryash94-gatsby-github-personal-website-master", + "thakkaryash94-gatsby-github-personal-website": { + "theme_key": "thakkaryash94-gatsby-github-personal-website", "file": "gatsby-github-personal-website.md", "name": "gatsby-github-personal-website", "title": "Gatsby Github Personal Website", "github_username": "thakkaryash94", "repo": "thakkaryash94/gatsby-github-personal-website", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/thakkaryash94/gatsby-github-personal-website", "demo_url": "https://thakkaryash94.netlify.com/", - "stars": 25, - "forks": 14, - "open_issues": 0, + "stars": 31, + "forks": 19, + "open_issues": 2, "last_commit": "2020-06-03T07:34:27Z", "created_at": "2019-03-01T20:56:53Z", "description": "Repo for github portfolio using gatsby", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/thakkaryash94-gatsby-github-personal-website-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thakkaryash94-gatsby-github-personal-website-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thakkaryash94-gatsby-github-personal-website-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/thakkaryash94-gatsby-github-personal-website.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thakkaryash94-gatsby-github-personal-website.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thakkaryash94-gatsby-github-personal-website-2x.jpg" } }, - "the-development-flex-master": { - "theme_key": "the-development-flex-master", + "the-development-flex": { + "theme_key": "the-development-flex", "file": "jekyll-flex.md", "name": "flex", "title": "Flex", "github_username": "the-development", "repo": "the-development/flex", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/the-development/flex", "demo_url": "https://the-development.github.io/flex/", - "stars": 138, - "forks": 187, - "open_issues": 4, + "stars": 142, + "forks": 188, + "open_issues": 3, "last_commit": "2014-08-26T16:57:45Z", "created_at": "2013-12-09T19:01:22Z", "description": "A responsive, flexible, Jekyll theme based on The Development's first design.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/the-development-flex-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/the-development-flex-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/the-development-flex-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/the-development-flex.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/the-development-flex.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/the-development-flex-2x.jpg" } }, - "the2ne-hugo-frais-master": { - "theme_key": "the2ne-hugo-frais-master", + "the2ne-hugo-frais": { + "theme_key": "the2ne-hugo-frais", "file": "hugo-frais-theme.md", "name": "hugo-frais", "title": "Hugo Frais", "github_username": "the2ne", "repo": "the2ne/hugo-frais", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/the2ne/hugo-frais", "demo_url": "https://themes.gohugo.io/theme/hugo-frais/", "stars": 9, @@ -20939,688 +25914,1056 @@ "last_commit": "2020-01-04T18:01:15Z", "created_at": "2016-10-06T16:42:56Z", "description": "A fresh and french theme for Hugo", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/the2ne-hugo-frais-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/the2ne-hugo-frais-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/the2ne-hugo-frais-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/the2ne-hugo-frais.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/the2ne-hugo-frais.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/the2ne-hugo-frais-2x.jpg" } }, - "thebakerdev-gatsby-starter-zenii-master": { - "theme_key": "thebakerdev-gatsby-starter-zenii-master", + "thebakerdev-gatsby-starter-zenii": { + "theme_key": "thebakerdev-gatsby-starter-zenii", "file": "gatsby-starter-zenii.md", "name": "gatsby-starter-zenii", "title": "Gastby Starter Zenii", "github_username": "thebakerdev", "repo": "thebakerdev/gatsby-starter-zenii", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/thebakerdev/gatsby-starter-zenii", "demo_url": "https://gatsby-starter-zenii.netlify.app/", - "stars": 10, - "forks": 10, + "stars": 33, + "forks": 28, "open_issues": 2, "last_commit": "2021-01-05T11:10:11Z", "created_at": "2020-09-08T11:31:59Z", "description": "A One-page Gatsby starter built with Tailwindcss and Postcss.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/thebakerdev-gatsby-starter-zenii-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thebakerdev-gatsby-starter-zenii-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thebakerdev-gatsby-starter-zenii-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/thebakerdev-gatsby-starter-zenii.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thebakerdev-gatsby-starter-zenii.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thebakerdev-gatsby-starter-zenii-2x.jpg" } }, - "thecodemint-gatsby-starter-simple-master": { - "theme_key": "thecodemint-gatsby-starter-simple-master", + "thecodemint-gatsby-starter-simple": { + "theme_key": "thecodemint-gatsby-starter-simple", "file": "gatsby-starter-simple.md", "name": "gatsby-starter-simple", "title": "Gastsby Simple Blog", - "github_username": "thecodemint", - "repo": "thecodemint/gatsby-starter-simple", + "github_username": "0xunorthod", + "repo": "0xunorthod/gatsby-starter-simple", "branch": "master", - "github_url": "https://github.com/thecodemint/gatsby-starter-simple", + "default_branch": "master", + "github_url": "https://github.com/0xunorthod/gatsby-starter-simple", "demo_url": "https://thecodemint.github.io/gatsby-starter-simple/", - "stars": 12, + "stars": 13, "forks": 2, "open_issues": 0, "last_commit": "2020-05-10T15:40:43Z", "created_at": "2020-04-12T18:31:25Z", "description": "A simple blogging Gatsby starter", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/thecodemint-gatsby-starter-simple-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thecodemint-gatsby-starter-simple-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thecodemint-gatsby-starter-simple-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/thecodemint-gatsby-starter-simple.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thecodemint-gatsby-starter-simple.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thecodemint-gatsby-starter-simple-2x.jpg" } }, - "thedevslot-whatatheme-master": { - "theme_key": "thedevslot-whatatheme-master", + "thedevslot-whatatheme": { + "theme_key": "thedevslot-whatatheme", "file": "jekyll-what-a-theme.md", "name": "WhatATheme", "title": "What A Theme", "github_username": "thedevslot", "repo": "thedevslot/WhatATheme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/thedevslot/WhatATheme", "demo_url": "https://thedevslot.github.io/WhatATheme/", - "stars": 29, - "forks": 65, - "open_issues": 0, - "last_commit": "2021-01-09T09:14:32Z", + "stars": 169, + "forks": 392, + "open_issues": 2, + "last_commit": "2022-09-05T15:14:18Z", "created_at": "2020-05-14T20:06:26Z", "description": "A customizable Jekyll Portfolio theme which supports blogging.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/thedevslot-whatatheme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thedevslot-whatatheme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thedevslot-whatatheme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/thedevslot-whatatheme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thedevslot-whatatheme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thedevslot-whatatheme-2x.jpg" } }, - "thelehhman-plainwhite-jekyll-master": { - "theme_key": "thelehhman-plainwhite-jekyll-master", + "thelehhman-plainwhite-jekyll": { + "theme_key": "thelehhman-plainwhite-jekyll", "file": "jekyll-theme-PlainWhite.md", "name": "plainwhite-jekyll", "title": "Plainwhite", "github_username": "samarsault", "repo": "samarsault/plainwhite-jekyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/samarsault/plainwhite-jekyll", "demo_url": "https://thelehhman.com/", - "stars": 283, - "forks": 397, - "open_issues": 11, - "last_commit": "2020-09-27T16:35:18Z", + "stars": 306, + "forks": 418, + "open_issues": 12, + "last_commit": "2021-01-15T16:54:36Z", "created_at": "2019-03-24T16:00:17Z", "description": "A configurable portfolio-style jekyll theme for writers.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/thelehhman-plainwhite-jekyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thelehhman-plainwhite-jekyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thelehhman-plainwhite-jekyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/thelehhman-plainwhite-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thelehhman-plainwhite-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thelehhman-plainwhite-jekyll-2x.jpg" } }, - "thelehhman-texture-master": { - "theme_key": "thelehhman-texture-master", + "thelehhman-texture": { + "theme_key": "thelehhman-texture", "file": "jekyll-theme-Texture-Theme.md", "name": "texture", "title": "Texture", "github_username": "samarsault", "repo": "samarsault/texture", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/samarsault/texture", "demo_url": "https://thelehhman.com/texture/", - "stars": 173, - "forks": 318, + "stars": 185, + "forks": 331, "open_issues": 2, "last_commit": "2020-11-03T03:31:04Z", "created_at": "2019-06-29T14:05:37Z", "description": "A configurable jekyll theme for simply beautiful blogs.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/thelehhman-texture-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thelehhman-texture-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thelehhman-texture-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/thelehhman-texture.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thelehhman-texture.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thelehhman-texture-2x.jpg" + } + }, + "themefisher-academia-hugo": { + "theme_key": "themefisher-academia-hugo", + "file": "hugo-academia.md", + "name": "academia-hugo", + "title": "Academia Hugo", + "github_username": "themefisher", + "repo": "themefisher/academia-hugo", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/themefisher/academia-hugo", + "demo_url": "https://demo.gethugothemes.com/academia/site/", + "stars": 132, + "forks": 150, + "open_issues": 6, + "last_commit": "2022-02-14T10:46:22Z", + "created_at": "2019-07-02T07:37:20Z", + "description": "Academia is a Hugo resume theme. You can showcase your academic resume, publications and talks using this theme.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/themefisher-academia-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-academia-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-academia-hugo-2x.jpg" } }, - "themefisher-airspace-hugo-master": { - "theme_key": "themefisher-airspace-hugo-master", - "file": "airspace-hugo.md", + "themefisher-airspace-hugo": { + "theme_key": "themefisher-airspace-hugo", + "file": "hugo-airspace.md", "name": "airspace-hugo", "title": "Airspace Hugo", "github_username": "themefisher", "repo": "themefisher/airspace-hugo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/themefisher/airspace-hugo", - "demo_url": "https://demo.themefisher.com/airspace-hugo/", - "stars": 181, - "forks": 355, - "open_issues": 1, - "last_commit": "2020-12-29T06:51:50Z", + "demo_url": "https://demo.gethugothemes.com/airspace/site/", + "stars": 274, + "forks": 501, + "open_issues": 0, + "last_commit": "2022-02-15T03:54:27Z", "created_at": "2018-01-09T22:28:21Z", - "description": "Airspace theme (Hugo version)", - "stale": false, + "description": "Airspace Hugo theme for multipurpose use, like Portfolio, Blog, Business.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/themefisher-airspace-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-airspace-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-airspace-hugo-2x.jpg" + } + }, + "themefisher-bigspring-light": { + "theme_key": "themefisher-bigspring-light", + "file": "hugo-bigspring.md", + "name": "bigspring-light", + "title": "Bigspring", + "github_username": "themefisher", + "repo": "themefisher/bigspring-light", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/themefisher/bigspring-light", + "demo_url": "https://demo.gethugothemes.com/bigspring-light/site/", + "stars": 125, + "forks": 268, + "open_issues": 0, + "last_commit": "2022-02-15T03:56:32Z", + "created_at": "2020-09-28T10:58:13Z", + "description": "Bigspring is a Hugo startup theme. It has a clean, minimal, fresh UI. ", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/themefisher-bigspring-light.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-bigspring-light.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-bigspring-light-2x.jpg" + } + }, + "themefisher-dot-hugo": { + "theme_key": "themefisher-dot-hugo", + "file": "hugo-dot.md", + "name": "dot-hugo", + "title": "Dot", + "github_username": "themefisher", + "repo": "themefisher/dot-hugo", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/themefisher/dot-hugo", + "demo_url": "https://demo.gethugothemes.com/dot/site/", + "stars": 208, + "forks": 146, + "open_issues": 0, + "last_commit": "2022-02-15T03:58:25Z", + "created_at": "2019-01-05T09:42:06Z", + "description": "Dot - Hugo Documentation Theme", "images": { - "hires": "https://www.jamstackthemes.dev/capture/themefisher-airspace-hugo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-airspace-hugo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-airspace-hugo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/themefisher-dot-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-dot-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-dot-hugo-2x.jpg" } }, - "themefisher-dot-hugo-documentation-theme-master": { - "theme_key": "themefisher-dot-hugo-documentation-theme-master", + "themefisher-dot-hugo-documentation-theme": { + "theme_key": "themefisher-dot-hugo-documentation-theme", "file": "dot-hugo-documentation-theme.md", "name": "dot-hugo-documentation-theme", "title": "Dot", "github_username": "themefisher", "repo": "themefisher/dot-hugo-documentation-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/themefisher/dot-hugo-documentation-theme", "demo_url": "https://themes.gohugo.io/theme/dot-hugo-documentation-theme/", - "stars": 151, - "forks": 114, + "stars": 174, + "forks": 134, "open_issues": 1, - "last_commit": "2021-01-03T03:07:37Z", + "last_commit": "2021-07-05T08:26:25Z", "created_at": "2019-01-05T09:42:06Z", "description": "Dot - Hugo Documentation Theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/themefisher-dot-hugo-documentation-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-dot-hugo-documentation-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-dot-hugo-documentation-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/themefisher-dot-hugo-documentation-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-dot-hugo-documentation-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-dot-hugo-documentation-theme-2x.jpg" + } + }, + "themefisher-educenter-hugo": { + "theme_key": "themefisher-educenter-hugo", + "file": "hugo-educenter.md", + "name": "educenter-hugo", + "title": "Educenter Hugo", + "github_username": "themefisher", + "repo": "themefisher/educenter-hugo", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/themefisher/educenter-hugo", + "demo_url": "https://demo.gethugothemes.com/educenter/site/", + "stars": 146, + "forks": 278, + "open_issues": 0, + "last_commit": "2022-02-15T03:59:18Z", + "created_at": "2020-01-19T09:18:03Z", + "description": "Educenter is an educational website template powered by Hugo. It can be used as an online teaching platform, school and university website.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/themefisher-educenter-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-educenter-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-educenter-hugo-2x.jpg" + } + }, + "themefisher-hargo-hugo": { + "theme_key": "themefisher-hargo-hugo", + "file": "hugo-hargo.md", + "name": "hargo-hugo", + "title": "Hargo Hugo", + "github_username": "themefisher", + "repo": "themefisher/hargo-hugo", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/themefisher/hargo-hugo", + "demo_url": "https://demo.gethugothemes.com/hargo/site/", + "stars": 76, + "forks": 128, + "open_issues": 0, + "last_commit": "2022-02-15T04:00:19Z", + "created_at": "2019-10-20T04:33:46Z", + "description": "Hargo is an E-commerce theme powered by Hugo and Snipcart. It's fully functional, users can order items and also payments throw this theme.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/themefisher-hargo-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-hargo-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-hargo-hugo-2x.jpg" } }, - "themefisher-infinity-hugo-master": { - "theme_key": "themefisher-infinity-hugo-master", + "themefisher-infinity-hugo": { + "theme_key": "themefisher-infinity-hugo", "file": "hugo-infinity.md", "name": "infinity-hugo", "title": "Infinity", "github_username": "gethugothemes", "repo": "gethugothemes/infinity-hugo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/gethugothemes/infinity-hugo", "demo_url": "https://themes.gohugo.io/theme/infinity-hugo/", "stars": 31, - "forks": 40, + "forks": 43, "open_issues": 0, "last_commit": "2020-12-29T07:38:46Z", "created_at": "2018-07-04T11:01:47Z", "description": "Infinity Coming Soon Template Hugo Version by themefisher", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/themefisher-infinity-hugo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-infinity-hugo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-infinity-hugo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/themefisher-infinity-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-infinity-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-infinity-hugo-2x.jpg" + } + }, + "themefisher-kross-hugo": { + "theme_key": "themefisher-kross-hugo", + "file": "hugo-kross.md", + "name": "kross-hugo", + "title": "Kross", + "github_username": "themefisher", + "repo": "themefisher/kross-hugo", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/themefisher/kross-hugo", + "demo_url": "https://demo.gethugothemes.com/kross/site/", + "stars": 242, + "forks": 375, + "open_issues": 0, + "last_commit": "2022-02-15T04:19:25Z", + "created_at": "2019-05-13T08:18:18Z", + "description": "Kross is a creative, sleek and modern personal portfolio Hugo theme with a gorgeous appearance.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/themefisher-kross-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-kross-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-kross-hugo-2x.jpg" } }, - "themefisher-kross-hugo-portfolio-template-master": { - "theme_key": "themefisher-kross-hugo-portfolio-template-master", + "themefisher-kross-hugo-portfolio-template": { + "theme_key": "themefisher-kross-hugo-portfolio-template", "file": "kross-hugo-portfolio-template.md", "name": "kross-hugo", "title": "Kross", "github_username": "themefisher", "repo": "themefisher/kross-hugo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/themefisher/kross-hugo", "demo_url": "https://themes.gohugo.io/theme/kross-hugo-portfolio-template/", - "stars": 164, - "forks": 305, + "stars": 167, + "forks": 312, "open_issues": 0, "last_commit": "2020-12-29T09:33:47Z", "created_at": "2019-05-13T08:18:18Z", "description": "Kross Creative Portfolio Template", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/themefisher-kross-hugo-portfolio-template-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-kross-hugo-portfolio-template-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-kross-hugo-portfolio-template-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/themefisher-kross-hugo-portfolio-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-kross-hugo-portfolio-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-kross-hugo-portfolio-template-2x.jpg" } }, - "themefisher-meghna-hugo-master": { - "theme_key": "themefisher-meghna-hugo-master", - "file": "meghna-hugo.md", + "themefisher-meghna-hugo": { + "theme_key": "themefisher-meghna-hugo", + "file": "hugo-meghna.md", "name": "meghna-hugo", "title": "Meghna Hugo", "github_username": "themefisher", "repo": "themefisher/meghna-hugo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/themefisher/meghna-hugo", "demo_url": "https://themes.gohugo.io/theme/meghna-hugo/", - "stars": 230, - "forks": 853, - "open_issues": 2, - "last_commit": "2021-01-09T03:51:56Z", + "stars": 292, + "forks": 1123, + "open_issues": 1, + "last_commit": "2021-09-07T07:43:28Z", "created_at": "2018-09-12T09:09:05Z", "description": "Meghna Hugo is a responsive one-page business template built with HTML5/CSS3, Hugo, JavaScript, and JQuery. The template is minimalist, lightweight, and fast loading.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/themefisher-meghna-hugo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-meghna-hugo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-meghna-hugo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/themefisher-meghna-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-meghna-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-meghna-hugo-2x.jpg" } }, - "themefisher-navigator-hugo-master": { - "theme_key": "themefisher-navigator-hugo-master", + "themefisher-navigator-hugo": { + "theme_key": "themefisher-navigator-hugo", "file": "hugo-navigator.md", "name": "navigator-hugo", "title": "Navigator Hugo", "github_username": "gethugothemes", "repo": "gethugothemes/navigator-hugo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/gethugothemes/navigator-hugo", "demo_url": "https://themes.gohugo.io/theme/navigator-hugo/en", - "stars": 92, - "forks": 105, + "stars": 94, + "forks": 112, "open_issues": 0, - "last_commit": "2021-01-02T04:34:24Z", + "last_commit": "2021-01-23T03:15:04Z", "created_at": "2018-07-08T10:28:35Z", "description": "Navigator Template Hugo Version by themefisher . ", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/themefisher-navigator-hugo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-navigator-hugo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-navigator-hugo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/themefisher-navigator-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-navigator-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-navigator-hugo-2x.jpg" + } + }, + "themefisher-parsa-hugo": { + "theme_key": "themefisher-parsa-hugo", + "file": "hugo-parsa.md", + "name": "parsa-hugo", + "title": "Parsa Hugo", + "github_username": "themefisher", + "repo": "themefisher/parsa-hugo", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/themefisher/parsa-hugo", + "demo_url": "https://demo.gethugothemes.com/parsa/site/", + "stars": 127, + "forks": 333, + "open_issues": 0, + "last_commit": "2022-02-15T04:25:19Z", + "created_at": "2019-05-15T08:33:57Z", + "description": "Parsa is a personal blog theme powered by Hugo. It also can be used for portfolio website.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/themefisher-parsa-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-parsa-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-parsa-hugo-2x.jpg" } }, - "themefisher-parsa-hugo-personal-blog-theme-master": { - "theme_key": "themefisher-parsa-hugo-personal-blog-theme-master", + "themefisher-parsa-hugo-personal-blog-theme": { + "theme_key": "themefisher-parsa-hugo-personal-blog-theme", "file": "parsa-hugo-personal-blog-theme.md", "name": "parsa-hugo", "title": "Parsa Hugo", "github_username": "themefisher", "repo": "themefisher/parsa-hugo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/themefisher/parsa-hugo", "demo_url": "https://themes.gohugo.io/theme/parsa-hugo-personal-blog-theme/", - "stars": 67, - "forks": 222, + "stars": 80, + "forks": 262, "open_issues": 0, - "last_commit": "2020-11-04T02:54:44Z", + "last_commit": "2021-02-14T03:59:16Z", "created_at": "2019-05-15T08:33:57Z", "description": "Parsa hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/themefisher-parsa-hugo-personal-blog-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-parsa-hugo-personal-blog-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-parsa-hugo-personal-blog-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/themefisher-parsa-hugo-personal-blog-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-parsa-hugo-personal-blog-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-parsa-hugo-personal-blog-theme-2x.jpg" } }, - "themefisher-restaurant-hugo-master": { - "theme_key": "themefisher-restaurant-hugo-master", + "themefisher-restaurant-hugo": { + "theme_key": "themefisher-restaurant-hugo", "file": "hugo-restaurant.md", "name": "restaurant-hugo", "title": "Restaurant", "github_username": "gethugothemes", "repo": "gethugothemes/restaurant-hugo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/gethugothemes/restaurant-hugo", "demo_url": "https://themes.gohugo.io/theme/restaurant-hugo/", "stars": 31, - "forks": 43, - "open_issues": 1, + "forks": 42, + "open_issues": 0, "last_commit": "2020-12-29T09:59:02Z", "created_at": "2019-03-17T09:52:58Z", "description": null, - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/themefisher-restaurant-hugo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-restaurant-hugo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-restaurant-hugo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/themefisher-restaurant-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-restaurant-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-restaurant-hugo-2x.jpg" + } + }, + "themefisher-timer-hugo": { + "theme_key": "themefisher-timer-hugo", + "file": "hugo-timer.md", + "name": "timer-hugo", + "title": "Timer", + "github_username": "themefisher", + "repo": "themefisher/timer-hugo", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/themefisher/timer-hugo", + "demo_url": "https://demo.gethugothemes.com/timer/site/", + "stars": 121, + "forks": 114, + "open_issues": 0, + "last_commit": "2022-02-15T04:39:00Z", + "created_at": "2018-07-15T10:07:51Z", + "description": "Timer is a personal portfolio theme powered by Hugo. It also can be use as a landing page theme. ", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/themefisher-timer-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-timer-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-timer-hugo-2x.jpg" } }, - "themefisher-timer-hugo-master": { - "theme_key": "themefisher-timer-hugo-master", - "file": "timer-hugo.md", - "name": "timer-hugo", - "title": "Timer", + "themefisher-twenty-twenty-hugo": { + "theme_key": "themefisher-twenty-twenty-hugo", + "file": "hugo-twenty-twenty.md", + "name": "twenty-twenty-hugo", + "title": "Twenty Twenty Hugo", "github_username": "themefisher", - "repo": "themefisher/timer-hugo", + "repo": "themefisher/twenty-twenty-hugo", "branch": "master", - "github_url": "https://github.com/themefisher/timer-hugo", - "demo_url": "https://themes.gohugo.io/theme/timer-hugo/", - "stars": 102, - "forks": 90, + "default_branch": "master", + "github_url": "https://github.com/themefisher/twenty-twenty-hugo", + "demo_url": "https://demo.gethugothemes.com/twenty-twenty/site/", + "stars": 38, + "forks": 77, "open_issues": 0, - "last_commit": "2020-12-29T10:00:40Z", - "created_at": "2018-07-15T10:07:51Z", - "description": "Timer Template Hugo Version by themefisher", - "stale": false, + "last_commit": "2022-02-15T04:40:01Z", + "created_at": "2020-04-26T09:24:13Z", + "description": "Twenty Twenty Hugo is forked from WordPress Twenty Twenty theme. It's fully functional like the WordPress theme.", "images": { - "hires": "https://www.jamstackthemes.dev/capture/themefisher-timer-hugo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-timer-hugo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-timer-hugo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/themefisher-twenty-twenty-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-twenty-twenty-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-twenty-twenty-hugo-2x.jpg" } }, - "themefisher-vex-hugo-master": { - "theme_key": "themefisher-vex-hugo-master", + "themefisher-vex-hugo": { + "theme_key": "themefisher-vex-hugo", "file": "hugo-vex.md", "name": "vex-hugo", "title": "Vex", "github_username": "themefisher", "repo": "themefisher/vex-hugo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/themefisher/vex-hugo", - "demo_url": "https://themes.gohugo.io/theme/vex-hugo/", - "stars": 89, - "forks": 172, + "demo_url": "https://demo.gethugothemes.com/vex/site/", + "stars": 132, + "forks": 247, "open_issues": 1, - "last_commit": "2020-12-29T10:04:22Z", + "last_commit": "2022-02-15T04:40:59Z", "created_at": "2018-01-09T21:59:07Z", - "description": "Vex is a product landing page theme/template created by Themefisher based on the latest Bootstrap 4 framework. It is fully responsive and beautifully crafted with Product Showcase, Testimonials, and Email Subscription sections", - "stale": false, + "description": "Vex is a product landing page Hugo theme. It is fully responsive and beautifully crafted with Product Showcase, Testimonials, and Email Subscription sections.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/themefisher-vex-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-vex-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-vex-hugo-2x.jpg" + } + }, + "themeselection-materio-mui-react-nextjs-admin-template-free": { + "theme_key": "themeselection-materio-mui-react-nextjs-admin-template-free", + "file": "materio-free-react-nextjs-admin-template.md", + "name": "materio-mui-react-nextjs-admin-template-free", + "title": "Materio React NextJS Admin Template Free", + "github_username": "themeselection", + "repo": "themeselection/materio-mui-react-nextjs-admin-template-free", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/themeselection/materio-mui-react-nextjs-admin-template-free", + "demo_url": "https://demos.themeselection.com/materio-mui-react-nextjs-admin-template-free/", + "stars": 617, + "forks": 202, + "open_issues": 2, + "last_commit": "2022-10-07T13:57:04Z", + "created_at": "2022-03-14T09:50:59Z", + "description": "Materio is the Most Powerful & Comprehensive free Next.js React admin template based on MUI !! 🚀", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/themeselection-materio-mui-react-nextjs-admin-template-free.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themeselection-materio-mui-react-nextjs-admin-template-free.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themeselection-materio-mui-react-nextjs-admin-template-free-2x.jpg" + } + }, + "thenewdynamic-gohugo-theme-ananke": { + "theme_key": "thenewdynamic-gohugo-theme-ananke", + "file": "gohugo-theme-ananke.md", + "name": "gohugo-theme-ananke", + "title": "Ananke", + "github_username": "theNewDynamic", + "repo": "theNewDynamic/gohugo-theme-ananke", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/theNewDynamic/gohugo-theme-ananke", + "demo_url": "https://gohugo-ananke-theme-demo.netlify.app/", + "stars": 849, + "forks": 936, + "open_issues": 71, + "last_commit": "2022-12-14T16:04:41Z", + "created_at": "2017-04-11T01:24:05Z", + "description": "Ananke: A theme for Hugo Sites", "images": { - "hires": "https://www.jamstackthemes.dev/capture/themefisher-vex-hugo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/themefisher-vex-hugo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/themefisher-vex-hugo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/thenewdynamic-gohugo-theme-ananke.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thenewdynamic-gohugo-theme-ananke.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thenewdynamic-gohugo-theme-ananke-2x.jpg" } }, - "thephuse-strange_case-gh-pages": { - "theme_key": "thephuse-strange_case-gh-pages", + "thephuse-strange_case": { + "theme_key": "thephuse-strange_case", "file": "jekyll-strangecase.md", "name": "strange_case", "title": "Strange Case", "github_username": "thephuse", "repo": "thephuse/strange_case", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/thephuse/strange_case", "demo_url": "https://thephuse.github.io/strange_case/", - "stars": 60, - "forks": 40, + "stars": 65, + "forks": 44, "open_issues": 1, "last_commit": "2014-12-12T14:46:33Z", "created_at": "2014-01-07T18:39:42Z", "description": "A theme for Jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/thephuse-strange_case-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thephuse-strange_case-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thephuse-strange_case-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/thephuse-strange_case.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thephuse-strange_case.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thephuse-strange_case-2x.jpg" + } + }, + "thesowah-gridgallery": { + "theme_key": "nadjetey-gridgallery", + "file": "jekyll-gridgallery.md", + "name": "GridGallery", + "title": "GridGallery", + "github_username": "thesowah", + "repo": "thesowah/GridGallery", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/thesowah/GridGallery", + "demo_url": "https://nadjetey.github.io/GridGallery", + "stars": 57, + "forks": 60, + "open_issues": 0, + "last_commit": "2016-04-22T12:00:36Z", + "created_at": "2014-04-07T01:26:30Z", + "description": "A responsive grid gallery based on the [Google Chromebook getting started](https://gweb-gettingstartedguide.appspot.com/) guide gallery. ", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/nadjetey-gridgallery.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nadjetey-gridgallery.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nadjetey-gridgallery-2x.jpg" + } + }, + "thesowah-redcup": { + "theme_key": "nadjetey-redcup", + "file": "jekyll-redcup.md", + "name": "redcup", + "title": "redcup", + "github_username": "thesowah", + "repo": "thesowah/redcup", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/thesowah/redcup", + "demo_url": "https://nadjetey.github.io/redcup/", + "stars": 24, + "forks": 19, + "open_issues": 0, + "last_commit": "2016-04-22T11:31:41Z", + "created_at": "2014-01-26T21:40:33Z", + "description": "This is a Jekyll Theme", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/nadjetey-redcup.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nadjetey-redcup.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nadjetey-redcup-2x.jpg" + } + }, + "thesowah-wangana": { + "theme_key": "nadjetey-wangana", + "file": "jekyll-wangana.md", + "name": "wangana", + "title": "Wangana", + "github_username": "thesowah", + "repo": "thesowah/wangana", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/thesowah/wangana", + "demo_url": "https://thesowah.github.io/wangana/", + "stars": 51, + "forks": 42, + "open_issues": 0, + "last_commit": "2018-06-03T11:27:49Z", + "created_at": "2014-02-09T16:41:40Z", + "description": "Wangana is a responsive Jekyll theme, perfect for powering your GitHub hosted blog.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/nadjetey-wangana.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/nadjetey-wangana.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/nadjetey-wangana-2x.jpg" } }, - "thetrevorharmon-gatsby-starter-typescript-sass-master": { - "theme_key": "thetrevorharmon-gatsby-starter-typescript-sass-master", + "thetrevorharmon-gatsby-starter-typescript-sass": { + "theme_key": "thetrevorharmon-gatsby-starter-typescript-sass", "file": "gatsby-starter-typescript-sass.md", "name": "gatsby-starter-typescript-sass", "title": "Gatsby Typescript Sass", "github_username": "thetrevorharmon", "repo": "thetrevorharmon/gatsby-starter-typescript-sass", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/thetrevorharmon/gatsby-starter-typescript-sass", "demo_url": "https://gatsby-starter-typescript-sass.netlify.com", - "stars": 18, - "forks": 4, + "stars": 19, + "forks": 5, "open_issues": 1, - "last_commit": "2020-12-14T20:25:36Z", + "last_commit": "2022-02-28T15:08:08Z", "created_at": "2018-09-04T20:48:42Z", "description": "A starter repo for using Gatsby with Typescript and SASS.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/thetrevorharmon-gatsby-starter-typescript-sass-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thetrevorharmon-gatsby-starter-typescript-sass-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thetrevorharmon-gatsby-starter-typescript-sass-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/thetrevorharmon-gatsby-starter-typescript-sass.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thetrevorharmon-gatsby-starter-typescript-sass.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thetrevorharmon-gatsby-starter-typescript-sass-2x.jpg" } }, - "thiagorossener-jekflix-template-master": { - "theme_key": "thiagorossener-jekflix-template-master", + "thiagorossener-jekflix-template": { + "theme_key": "thiagorossener-jekflix-template", "file": "jekyll-jekflix-theme.md", "name": "jekflix-template", "title": "Jekflix", "github_username": "thiagorossener", "repo": "thiagorossener/jekflix-template", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/thiagorossener/jekflix-template", "demo_url": "https://jekflix.rossener.com/", - "stars": 477, - "forks": 688, - "open_issues": 37, - "last_commit": "2020-09-26T20:00:18Z", + "stars": 691, + "forks": 915, + "open_issues": 29, + "last_commit": "2022-09-27T19:26:57Z", "created_at": "2017-09-09T15:29:54Z", "description": "A Jekyll theme inspired by Netflix. 🎬", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/thiagorossener-jekflix-template-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thiagorossener-jekflix-template-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thiagorossener-jekflix-template-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/thiagorossener-jekflix-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thiagorossener-jekflix-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thiagorossener-jekflix-template-2x.jpg" + } + }, + "thien-blueface": { + "theme_key": "tnguyen-blueface", + "file": "jekyll-blueface.md", + "name": "blueface", + "title": "blueface", + "github_username": "thien", + "repo": "thien/blueface", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/thien/blueface", + "demo_url": "https://thien.github.io/blueface/", + "stars": 26, + "forks": 33, + "open_issues": 0, + "last_commit": "2018-07-13T17:11:58Z", + "created_at": "2016-03-23T10:49:06Z", + "description": "A minimalist Jekyll theme.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/tnguyen-blueface.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tnguyen-blueface.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tnguyen-blueface-2x.jpg" } }, - "thingsym-hugo-theme-techdoc-master": { - "theme_key": "thingsym-hugo-theme-techdoc-master", + "thingsym-hugo-theme-techdoc": { + "theme_key": "thingsym-hugo-theme-techdoc", "file": "hugo-theme-techdoc.md", "name": "hugo-theme-techdoc", "title": "Techdoc", "github_username": "thingsym", "repo": "thingsym/hugo-theme-techdoc", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/thingsym/hugo-theme-techdoc", "demo_url": "https://themes.gohugo.io/theme/hugo-theme-techdoc/", - "stars": 114, - "forks": 93, - "open_issues": 9, - "last_commit": "2020-11-22T08:19:40Z", + "stars": 133, + "forks": 107, + "open_issues": 18, + "last_commit": "2021-03-08T11:51:04Z", "created_at": "2018-03-04T09:42:33Z", "description": "The Techdoc is a Hugo Theme for technical documentation.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/thingsym-hugo-theme-techdoc-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thingsym-hugo-theme-techdoc-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thingsym-hugo-theme-techdoc-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/thingsym-hugo-theme-techdoc.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thingsym-hugo-theme-techdoc.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thingsym-hugo-theme-techdoc-2x.jpg" } }, - "thinker3197-ink-master": { - "theme_key": "thinker3197-ink-master", + "thinker3197-ink": { + "theme_key": "thinker3197-ink", "file": "jekyll-ink.md", "name": "ink", "title": "Ink", "github_username": "thinker3197", "repo": "thinker3197/ink", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/thinker3197/ink", "demo_url": "https://thinker3197.github.io/ink", - "stars": 27, - "forks": 57, + "stars": 26, + "forks": 54, "open_issues": 2, "last_commit": "2016-12-02T08:23:36Z", "created_at": "2016-06-07T05:57:55Z", "description": "A jekyll theme for humans", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/thinker3197-ink-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thinker3197-ink-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thinker3197-ink-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/thinker3197-ink.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thinker3197-ink.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thinker3197-ink-2x.jpg" } }, - "thomasheller-crab-master": { - "theme_key": "thomasheller-crab-master", + "thomasheller-crab": { + "theme_key": "thomasheller-crab", "file": "hugo-crab-theme.md", "name": "crab", "title": "Crab", "github_username": "thomasheller", "repo": "thomasheller/crab", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/thomasheller/crab", "demo_url": "https://themes.gohugo.io/theme/crab/", - "stars": 25, - "forks": 25, + "stars": 27, + "forks": 24, "open_issues": 2, "last_commit": "2020-09-24T17:36:45Z", "created_at": "2017-03-18T10:48:37Z", "description": "Crab theme for Hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/thomasheller-crab-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thomasheller-crab-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thomasheller-crab-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/thomasheller-crab.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thomasheller-crab.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thomasheller-crab-2x.jpg" } }, - "thomasvaeth-trophy-jekyll-master": { - "theme_key": "thomasvaeth-trophy-jekyll-master", + "thomasvaeth-trophy-jekyll": { + "theme_key": "thomasvaeth-trophy-jekyll", "file": "jekyll-trophy.md", "name": "trophy-jekyll", "title": "Trophy", "github_username": "thomasvaeth", "repo": "thomasvaeth/trophy-jekyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/thomasvaeth/trophy-jekyll", "demo_url": "https://thomasvaeth.com/trophy/", - "stars": 286, - "forks": 230, - "open_issues": 4, + "stars": 288, + "forks": 226, + "open_issues": 3, "last_commit": "2019-02-24T00:35:48Z", "created_at": "2016-08-29T04:37:02Z", "description": "🏆 – A blog theme for Jekyll.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/thomasvaeth-trophy-jekyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thomasvaeth-trophy-jekyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thomasvaeth-trophy-jekyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/thomasvaeth-trophy-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thomasvaeth-trophy-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thomasvaeth-trophy-jekyll-2x.jpg" } }, - "thomaswangio-gatsby-personal-starter-blog-master": { - "theme_key": "thomaswangio-gatsby-personal-starter-blog-master", + "thomaswang-gatsby-personal-starter-blog": { + "theme_key": "thomaswangio-gatsby-personal-starter-blog", "file": "gatsby-personal-starter-blog.md", "name": "gatsby-personal-starter-blog", "title": "Gatsby Personal Starter Blog", - "github_username": "thomaswang", - "repo": "thomaswang/gatsby-personal-starter-blog", + "github_username": "ThomasWang", + "repo": "ThomasWang/gatsby-personal-starter-blog", "branch": "master", - "github_url": "https://github.com/thomaswang/gatsby-personal-starter-blog", + "default_branch": "master", + "github_url": "https://github.com/ThomasWang/gatsby-personal-starter-blog", "demo_url": "https://gatsby-personal-starter-blog.netlify.com/", - "stars": 148, + "stars": 159, "forks": 63, - "open_issues": 7, - "last_commit": "2020-08-15T02:28:04Z", + "open_issues": 8, + "last_commit": "2021-02-24T17:59:17Z", "created_at": "2019-04-22T00:28:28Z", "description": "Gatsby starter for a personal site & blog", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/thomaswangio-gatsby-personal-starter-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thomaswangio-gatsby-personal-starter-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thomaswangio-gatsby-personal-starter-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/thomaswangio-gatsby-personal-starter-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thomaswangio-gatsby-personal-starter-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thomaswangio-gatsby-personal-starter-blog-2x.jpg" } }, - "thomaswangio-gatsby-starter-primer-master": { - "theme_key": "thomaswangio-gatsby-starter-primer-master", + "thomaswang-gatsby-starter-primer": { + "theme_key": "thomaswangio-gatsby-starter-primer", "file": "gatsby-starter-primer.md", "name": "gatsby-starter-primer", "title": "Gatsby Starter Primer", - "github_username": "thomaswang", - "repo": "thomaswang/gatsby-starter-primer", + "github_username": "ThomasWang", + "repo": "ThomasWang/gatsby-starter-primer", "branch": "master", - "github_url": "https://github.com/thomaswang/gatsby-starter-primer", + "default_branch": "master", + "github_url": "https://github.com/ThomasWang/gatsby-starter-primer", "demo_url": "https://gatsby-starter-primer.netlify.com/", - "stars": 13, + "stars": 12, "forks": 3, "open_issues": 0, - "last_commit": "2020-03-26T22:29:58Z", + "last_commit": "2021-02-17T04:35:02Z", "created_at": "2019-05-06T15:26:58Z", "description": "A Gatsby starter featuring GitHub Primer Design System and React components 🐙⚪️", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/thomaswangio-gatsby-starter-primer-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thomaswangio-gatsby-starter-primer-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thomaswangio-gatsby-starter-primer-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/thomaswangio-gatsby-starter-primer.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thomaswangio-gatsby-starter-primer.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thomaswangio-gatsby-starter-primer-2x.jpg" + } + }, + "thomaswangio-gatsby-personal-starter-blog": { + "theme_key": "thomaswangio-gatsby-personal-starter-blog", + "file": "gatsby-personal-starter-blog.md", + "name": "gatsby-personal-starter-blog", + "title": "Gatsby Personal Starter Blog", + "github_username": "thomaswangio", + "repo": "thomaswangio/gatsby-personal-starter-blog", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/thomaswangio/gatsby-personal-starter-blog", + "demo_url": "https://gatsby-personal-starter-blog.netlify.com/", + "stars": 166, + "forks": 67, + "open_issues": 8, + "last_commit": "2021-02-24T17:59:17Z", + "created_at": "2019-04-22T00:28:28Z", + "description": "Gatsby starter for a personal site & blog", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/thomaswangio-gatsby-personal-starter-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thomaswangio-gatsby-personal-starter-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thomaswangio-gatsby-personal-starter-blog-2x.jpg" + } + }, + "thomaswangio-gatsby-starter-primer": { + "theme_key": "thomaswangio-gatsby-starter-primer", + "file": "gatsby-starter-primer.md", + "name": "gatsby-starter-primer", + "title": "Gatsby Starter Primer", + "github_username": "thomaswangio", + "repo": "thomaswangio/gatsby-starter-primer", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/thomaswangio/gatsby-starter-primer", + "demo_url": "https://gatsby-starter-primer.netlify.com/", + "stars": 13, + "forks": 1, + "open_issues": 0, + "last_commit": "2021-02-17T04:35:02Z", + "created_at": "2019-05-06T15:26:58Z", + "description": "A Gatsby starter featuring GitHub Primer Design System", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/thomaswangio-gatsby-starter-primer.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thomaswangio-gatsby-starter-primer.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thomaswangio-gatsby-starter-primer-2x.jpg" } }, - "thriveweb-yellowcake-master": { - "theme_key": "thriveweb-yellowcake-master", + "thriveweb-yellowcake": { + "theme_key": "thriveweb-yellowcake", "file": "gatsby-yellowcake.md", "name": "yellowcake", "title": "Yellowcake", "github_username": "thriveweb", "repo": "thriveweb/yellowcake", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/thriveweb/yellowcake", "demo_url": "https://yellowcake.netlify.com/", - "stars": 252, - "forks": 117, - "open_issues": 3, - "last_commit": "2021-01-03T23:38:57Z", + "stars": 307, + "forks": 136, + "open_issues": 36, + "last_commit": "2022-05-12T05:16:52Z", "created_at": "2018-10-15T04:47:58Z", "description": "A starter project for creating lightning-fast websites with Gatsby v2 and Netlify-CMS v2 + Uploadcare intergration.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/thriveweb-yellowcake-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thriveweb-yellowcake-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thriveweb-yellowcake-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/thriveweb-yellowcake.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thriveweb-yellowcake.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thriveweb-yellowcake-2x.jpg" } }, - "thundermiracle-gatsby-simple-blog-master": { - "theme_key": "thundermiracle-gatsby-simple-blog-master", + "thundermiracle-gatsby-simple-blog": { + "theme_key": "thundermiracle-gatsby-simple-blog", "file": "gatsby-simple-blog.md", "name": "gatsby-simple-blog", "title": "Gatsby Simple Blog", "github_username": "thundermiracle", "repo": "thundermiracle/gatsby-simple-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/thundermiracle/gatsby-simple-blog", "demo_url": "https://gatsby-simple-blog.thundermiracle.com/", - "stars": 37, - "forks": 19, - "open_issues": 1, - "last_commit": "2020-12-15T09:38:07Z", + "stars": 51, + "forks": 22, + "open_issues": 11, + "last_commit": "2022-11-01T18:05:34Z", "created_at": "2019-05-14T11:18:12Z", - "description": "an easily configurable gatsby-starter-blog with overreacted looking and tags, breadcrumbs, disqus, i18n, eslint supported", - "stale": false, + "description": "an easily configurable gatsby-starter-blog with overreacted looking and tags, breadcrumbs, disqus, i18n, eslint, algolia supported", "images": { - "hires": "https://www.jamstackthemes.dev/capture/thundermiracle-gatsby-simple-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thundermiracle-gatsby-simple-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thundermiracle-gatsby-simple-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/thundermiracle-gatsby-simple-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/thundermiracle-gatsby-simple-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/thundermiracle-gatsby-simple-blog-2x.jpg" } }, - "tigefa4u-jekmdl-gh-pages": { - "theme_key": "tigefa4u-jekmdl-gh-pages", + "tigefa4u-jekmdl": { + "theme_key": "tigefa4u-jekmdl", "file": "jekyll-jekmdl.md", "name": "jekmdl", "title": "Jekmdl", "github_username": "tigefa4u", "repo": "tigefa4u/jekmdl", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/tigefa4u/jekmdl", "demo_url": "https://tigefa4u.github.io/jekmdl/", - "stars": 9, - "forks": 4, + "stars": 10, + "forks": 5, "open_issues": 0, "last_commit": "2017-02-02T06:20:19Z", "created_at": "2015-12-31T23:50:44Z", "description": ":+1: Jekyll themes use Material Design Lite", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/tigefa4u-jekmdl-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tigefa4u-jekmdl-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tigefa4u-jekmdl-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/tigefa4u-jekmdl.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tigefa4u-jekmdl.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tigefa4u-jekmdl-2x.jpg" } }, - "timlrx-tailwind-nextjs-starter-blog-master": { - "theme_key": "timlrx-tailwind-nextjs-starter-blog-master", + "timlrx-tailwind-nextjs-starter-blog": { + "theme_key": "timlrx-tailwind-nextjs-starter-blog", "file": "nextjs-tailwind-starter-blog.md", "name": "tailwind-nextjs-starter-blog", "title": "Next.js Tailwind Starter Blog", "github_username": "timlrx", "repo": "timlrx/tailwind-nextjs-starter-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/timlrx/tailwind-nextjs-starter-blog", "demo_url": "https://tailwind-nextjs-starter-blog.vercel.app", - "stars": 53, - "forks": 12, - "open_issues": 1, - "last_commit": "2021-01-31T02:13:31Z", + "stars": 3993, + "forks": 988, + "open_issues": 34, + "last_commit": "2022-11-05T06:07:06Z", "created_at": "2021-01-09T09:41:22Z", "description": "This is a Next.js, Tailwind CSS blogging starter template. Comes out of the box configured with the latest technologies to make technical writing a breeze. Easily configurable and customizable. Perfect as a replacement to existing Jekyll and Hugo individual blogs.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/timlrx-tailwind-nextjs-starter-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/timlrx-tailwind-nextjs-starter-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/timlrx-tailwind-nextjs-starter-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/timlrx-tailwind-nextjs-starter-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/timlrx-tailwind-nextjs-starter-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/timlrx-tailwind-nextjs-starter-blog-2x.jpg" } }, - "tnguyen-blueface-master": { - "theme_key": "tnguyen-blueface-master", + "tnguyen-blueface": { + "theme_key": "tnguyen-blueface", "file": "jekyll-blueface.md", "name": "blueface", "title": "blueface", "github_username": "thien", "repo": "thien/blueface", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/thien/blueface", "demo_url": "https://thien.github.io/blueface/", "stars": 29, - "forks": 32, + "forks": 31, "open_issues": 0, "last_commit": "2018-07-13T17:11:58Z", "created_at": "2016-03-23T10:49:06Z", "description": "A minimalist Jekyll theme.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/tnguyen-blueface-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tnguyen-blueface-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tnguyen-blueface-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/tnguyen-blueface.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tnguyen-blueface.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tnguyen-blueface-2x.jpg" } }, - "tnwhitwell-hugo-startpage-theme-master": { - "theme_key": "tnwhitwell-hugo-startpage-theme-master", + "tnwhitwell-hugo-startpage-theme": { + "theme_key": "tnwhitwell-hugo-startpage-theme", "file": "hugo-startpage-theme.md", "name": "hugo-startpage-theme", "title": "Startpage", "github_username": "whi-tw", "repo": "whi-tw/hugo-startpage-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/whi-tw/hugo-startpage-theme", "demo_url": "https://themes.gohugo.io/theme/hugo-startpage-theme/", "stars": 17, @@ -21629,504 +26972,642 @@ "last_commit": "2018-07-04T20:48:29Z", "created_at": "2018-04-23T09:40:29Z", "description": "Hugo start page theme, link listing built from yaml", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/tnwhitwell-hugo-startpage-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tnwhitwell-hugo-startpage-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tnwhitwell-hugo-startpage-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/tnwhitwell-hugo-startpage-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tnwhitwell-hugo-startpage-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tnwhitwell-hugo-startpage-theme-2x.jpg" } }, - "toboko-gatsby-starter-fine-master": { - "theme_key": "toboko-gatsby-starter-fine-master", + "toboko-gatsby-starter-fine": { + "theme_key": "toboko-gatsby-starter-fine", "file": "gatsby-starter-fine.md", "name": "gatsby-starter-fine", "title": "Gatsby Starter Fine", "github_username": "toboko", "repo": "toboko/gatsby-starter-fine", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/toboko/gatsby-starter-fine", "demo_url": "https://gatsby-starter-fine.netlify.com/", - "stars": 7, - "forks": 2, + "stars": 10, + "forks": 4, "open_issues": 0, "last_commit": "2019-04-19T10:50:05Z", "created_at": "2019-04-18T17:56:10Z", "description": "A fine blog starter for Gatsby ", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/toboko-gatsby-starter-fine-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/toboko-gatsby-starter-fine-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/toboko-gatsby-starter-fine-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/toboko-gatsby-starter-fine.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/toboko-gatsby-starter-fine.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/toboko-gatsby-starter-fine-2x.jpg" } }, - "tocttou-hacker-blog-master": { - "theme_key": "tocttou-hacker-blog-master", + "tocttou-hacker-blog": { + "theme_key": "tocttou-hacker-blog", "file": "jekyll-theme-hacker-blog.md", "name": "hacker-blog", "title": "Hacker Blog", "github_username": "tocttou", "repo": "tocttou/hacker-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/tocttou/hacker-blog", "demo_url": "https://ashishchaudhary.in/hacker-blog/", - "stars": 147, - "forks": 219, - "open_issues": 3, + "stars": 246, + "forks": 453, + "open_issues": 9, "last_commit": "2020-02-01T08:25:29Z", "created_at": "2017-12-12T21:51:39Z", "description": "Hacker-Blog is a minimalistic, responsive jekyll theme built for hackers. https://ashishchaudhary.in/hacker-blog", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/tocttou-hacker-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tocttou-hacker-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tocttou-hacker-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/tocttou-hacker-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tocttou-hacker-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tocttou-hacker-blog-2x.jpg" } }, - "tolking-vuepress-theme-ououe-master": { - "theme_key": "tolking-vuepress-theme-ououe-master", + "tolking-vuepress-theme-ououe": { + "theme_key": "tolking-vuepress-theme-ououe", "file": "vuepress-theme-ououe.md", "name": "vuepress-theme-ououe", "title": "Ououe", "github_username": "tolking", "repo": "tolking/vuepress-theme-ououe", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/tolking/vuepress-theme-ououe", "demo_url": "https://ououe.com/", - "stars": 64, - "forks": 15, + "stars": 77, + "forks": 23, "open_issues": 0, "last_commit": "2020-12-02T06:49:27Z", "created_at": "2019-02-23T04:18:48Z", "description": "A blog theme for VuePress", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/tolking-vuepress-theme-ououe-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tolking-vuepress-theme-ououe-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tolking-vuepress-theme-ououe-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/tolking-vuepress-theme-ououe.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tolking-vuepress-theme-ououe.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tolking-vuepress-theme-ououe-2x.jpg" } }, - "tomanistor-osprey-master": { - "theme_key": "tomanistor-osprey-master", + "tomanistor-osprey": { + "theme_key": "tomanistor-osprey", "file": "hugo-osprey-theme.md", "name": "osprey", "title": "Osprey", "github_username": "tomanistor", "repo": "tomanistor/osprey", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/tomanistor/osprey", "demo_url": "https://tomanistor.com/", - "stars": 146, - "forks": 88, - "open_issues": 14, + "stars": 176, + "forks": 83, + "open_issues": 13, "last_commit": "2019-12-09T04:30:31Z", "created_at": "2017-05-15T05:32:08Z", "description": "Simple, clean, and fast one-page Hugo portfolio theme accompanied by a blog", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/tomanistor-osprey-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tomanistor-osprey-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tomanistor-osprey-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/tomanistor-osprey.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tomanistor-osprey.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tomanistor-osprey-2x.jpg" } }, - "tomekskuta-gatsby-starter-intl-master": { - "theme_key": "tomekskuta-gatsby-starter-intl-master", + "tomekskuta-gatsby-starter-intl": { + "theme_key": "tomekskuta-gatsby-starter-intl", "file": "gatsby-starter-intl.md", "name": "gatsby-starter-intl", "title": "Gatsby Starter Intl", "github_username": "tomekskuta", "repo": "tomekskuta/gatsby-starter-intl", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/tomekskuta/gatsby-starter-intl", "demo_url": "https://gatsby-starter-intl.tomekskuta.pl/en/", "stars": 11, "forks": 1, - "open_issues": 2, + "open_issues": 1, "last_commit": "2019-03-07T20:11:05Z", "created_at": "2019-02-09T20:41:57Z", "description": "Gatsby v2 i18n starter which makes static pages for every locale and detect your browsers lang.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/tomekskuta-gatsby-starter-intl-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tomekskuta-gatsby-starter-intl-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tomekskuta-gatsby-starter-intl-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/tomekskuta-gatsby-starter-intl.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tomekskuta-gatsby-starter-intl.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tomekskuta-gatsby-starter-intl-2x.jpg" } }, - "tomjohnson1492-documentation-theme-jekyll-gh-pages": { - "theme_key": "tomjohnson1492-documentation-theme-jekyll-gh-pages", + "tomjohnson1492-documentation-theme-jekyll": { + "theme_key": "tomjohnson1492-documentation-theme-jekyll", "file": "jekyll-documentation-theme-.md", "name": "documentation-theme-jekyll", "title": "Documentation Theme for Jekyll", "github_username": "tomjoht", "repo": "tomjoht/documentation-theme-jekyll", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/tomjoht/documentation-theme-jekyll", "demo_url": "https://idratherbewriting.com/documentation-theme-jekyll/", - "stars": 919, - "forks": 867, - "open_issues": 44, + "stars": 925, + "forks": 877, + "open_issues": 45, "last_commit": "2020-01-02T04:58:22Z", "created_at": "2015-02-13T22:56:26Z", "description": "A Jekyll-based theme designed for documentation and help systems. See the link for detailed instructions on setting up and configuring everything.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/tomjohnson1492-documentation-theme-jekyll-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tomjohnson1492-documentation-theme-jekyll-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tomjohnson1492-documentation-theme-jekyll-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/tomjohnson1492-documentation-theme-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tomjohnson1492-documentation-theme-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tomjohnson1492-documentation-theme-jekyll-2x.jpg" + } + }, + "tomjoht-documentation-theme-jekyll": { + "theme_key": "tomjohnson1492-documentation-theme-jekyll", + "file": "jekyll-documentation-theme-.md", + "name": "documentation-theme-jekyll", + "title": "Documentation Theme for Jekyll", + "github_username": "tomjoht", + "repo": "tomjoht/documentation-theme-jekyll", + "branch": "gh-pages", + "default_branch": "gh-pages", + "github_url": "https://github.com/tomjoht/documentation-theme-jekyll", + "demo_url": "https://idratherbewriting.com/documentation-theme-jekyll/", + "stars": 1083, + "forks": 1120, + "open_issues": 39, + "last_commit": "2022-05-21T23:28:50Z", + "created_at": "2015-02-13T22:56:26Z", + "description": "A Jekyll-based theme designed for documentation and help systems. See the link for detailed instructions on setting up and configuring everything.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/tomjohnson1492-documentation-theme-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tomjohnson1492-documentation-theme-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tomjohnson1492-documentation-theme-jekyll-2x.jpg" } }, - "tomoyukikashiro-gatsby-starter-blog-amp-to-pwa-master": { - "theme_key": "tomoyukikashiro-gatsby-starter-blog-amp-to-pwa-master", + "tomoyukikashiro-gatsby-starter-blog-amp-to-pwa": { + "theme_key": "tomoyukikashiro-gatsby-starter-blog-amp-to-pwa", "file": "gatsby-starter-blog-amp-to-pwa.md", "name": "gatsby-starter-blog-amp-to-pwa", "title": "Gatsby Blog AMP to PWA", "github_username": "tomoyukikashiro", "repo": "tomoyukikashiro/gatsby-starter-blog-amp-to-pwa", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/tomoyukikashiro/gatsby-starter-blog-amp-to-pwa", "demo_url": "https://gatsby-starter-blog-amp-to-pwa.netlify.com/", - "stars": 23, + "stars": 25, "forks": 10, "open_issues": 1, "last_commit": "2019-02-21T12:11:46Z", "created_at": "2019-02-20T13:07:57Z", "description": "Gatsby starter for creating a blog which support AMP and PWA", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/tomoyukikashiro-gatsby-starter-blog-amp-to-pwa-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tomoyukikashiro-gatsby-starter-blog-amp-to-pwa-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tomoyukikashiro-gatsby-starter-blog-amp-to-pwa-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/tomoyukikashiro-gatsby-starter-blog-amp-to-pwa.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tomoyukikashiro-gatsby-starter-blog-amp-to-pwa.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tomoyukikashiro-gatsby-starter-blog-amp-to-pwa-2x.jpg" } }, - "tomrutgers-middleman-starter-netlify-cms-master": { - "theme_key": "tomrutgers-middleman-starter-netlify-cms-master", + "tomrutgers-middleman-starter-netlify-cms": { + "theme_key": "tomrutgers-middleman-starter-netlify-cms", "file": "middleman-starter-netlify-cms.md", "name": "middleman-starter-netlify-cms", "title": "Middleman Starter Netlify CMS", "github_username": "tomrutgers", "repo": "tomrutgers/middleman-starter-netlify-cms", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/tomrutgers/middleman-starter-netlify-cms", "demo_url": "https://middleman-netlify-cms.netlify.com/", - "stars": 32, - "forks": 27, - "open_issues": 0, - "last_commit": "2021-01-07T17:28:10Z", + "stars": 36, + "forks": 31, + "open_issues": 3, + "last_commit": "2021-09-22T12:06:18Z", "created_at": "2018-08-14T21:03:30Z", "description": "A simple example to get started with Middleman and Netlify CMS", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/tomrutgers-middleman-starter-netlify-cms-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tomrutgers-middleman-starter-netlify-cms-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tomrutgers-middleman-starter-netlify-cms-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/tomrutgers-middleman-starter-netlify-cms.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tomrutgers-middleman-starter-netlify-cms.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tomrutgers-middleman-starter-netlify-cms-2x.jpg" } }, - "tosi29-inkblotty-master": { - "theme_key": "tosi29-inkblotty-master", + "tosi29-inkblotty": { + "theme_key": "tosi29-inkblotty", "file": "hugo-inkblotty.md", "name": "inkblotty", "title": "Inkblotty", "github_username": "tosi29", "repo": "tosi29/inkblotty", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/tosi29/inkblotty", "demo_url": "https://themes.gohugo.io/theme/inkblotty/", - "stars": 26, - "forks": 18, - "open_issues": 1, - "last_commit": "2021-01-01T03:43:19Z", + "stars": 29, + "forks": 21, + "open_issues": 0, + "last_commit": "2021-03-29T14:26:30Z", "created_at": "2019-03-19T14:10:18Z", "description": "Responsive Hugo theme based on Inkblot of WordPress theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/tosi29-inkblotty-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tosi29-inkblotty-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tosi29-inkblotty-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/tosi29-inkblotty.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tosi29-inkblotty.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tosi29-inkblotty-2x.jpg" } }, - "track3-hermit-master": { - "theme_key": "track3-hermit-master", + "track3-hermit": { + "theme_key": "track3-hermit", "file": "hugo-theme-hermit.md", "name": "hermit", "title": "Hermit", "github_username": "Track3", "repo": "Track3/hermit", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Track3/hermit", "demo_url": "https://themes.gohugo.io/theme/hermit", - "stars": 728, - "forks": 252, - "open_issues": 47, + "stars": 865, + "forks": 282, + "open_issues": 50, "last_commit": "2020-06-08T14:30:36Z", "created_at": "2018-10-23T04:59:56Z", "description": "A minimal & fast Hugo theme for bloggers", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/track3-hermit-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/track3-hermit-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/track3-hermit-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/track3-hermit.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/track3-hermit.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/track3-hermit-2x.jpg" + } + }, + "tradly-platform-butterflies": { + "theme_key": "tradly-platform-butterflies", + "file": "tradly.md", + "name": "Butterflies", + "title": "Butterflies", + "github_username": "TRADLY-PLATFORM", + "repo": "TRADLY-PLATFORM/Butterflies", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/TRADLY-PLATFORM/Butterflies", + "demo_url": "https://watchtracker.vercel.app/", + "stars": 15, + "forks": 11, + "open_issues": 0, + "last_commit": "2022-08-27T05:31:47Z", + "created_at": "2021-08-20T17:15:51Z", + "description": "Marketplace Kit built on NextJS + Tailwind. It connects Tradly API to provide features like Ticket types, schedules, booking, collection api, add events, etc. ", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/tradly-platform-butterflies.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tradly-platform-butterflies.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tradly-platform-butterflies-2x.jpg" } }, - "tryghost-eleventy-starter-ghost-master": { - "theme_key": "tryghost-eleventy-starter-ghost-master", + "transitive-bullshit-nextjs-notion-starter-kit": { + "theme_key": "transitive-bullshit-nextjs-notion-starter-kit", + "file": "nextjs-notion-starter-kit.md", + "name": "nextjs-notion-starter-kit", + "title": "Next.js Notion Starter Kit", + "github_username": "transitive-bullshit", + "repo": "transitive-bullshit/nextjs-notion-starter-kit", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/transitive-bullshit/nextjs-notion-starter-kit", + "demo_url": "https://nextjs-notion-starter-kit.transitivebullsh.it/", + "stars": 3768, + "forks": 3323, + "open_issues": 95, + "last_commit": "2023-01-02T22:48:47Z", + "created_at": "2021-01-15T16:56:21Z", + "description": "Deploy your own Notion-powered website in minutes with Next.js and Vercel.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/transitive-bullshit-nextjs-notion-starter-kit.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/transitive-bullshit-nextjs-notion-starter-kit.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/transitive-bullshit-nextjs-notion-starter-kit-2x.jpg" + } + }, + "tryghost-eleventy-starter-ghost": { + "theme_key": "tryghost-eleventy-starter-ghost", "file": "eleventy-starter-ghost.md", "name": "eleventy-starter-ghost", "title": "Eleventy Starter Ghost", "github_username": "TryGhost", "repo": "TryGhost/eleventy-starter-ghost", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/TryGhost/eleventy-starter-ghost", "demo_url": "https://eleventy.ghost.org/", - "stars": 165, - "forks": 96, - "open_issues": 5, - "last_commit": "2021-01-04T00:07:18Z", + "stars": 306, + "forks": 143, + "open_issues": 16, + "last_commit": "2022-01-11T09:28:24Z", "created_at": "2019-07-15T11:43:52Z", "description": "A starter template to build websites with Ghost & Eleventy", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/tryghost-eleventy-starter-ghost-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tryghost-eleventy-starter-ghost-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tryghost-eleventy-starter-ghost-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/tryghost-eleventy-starter-ghost.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tryghost-eleventy-starter-ghost.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tryghost-eleventy-starter-ghost-2x.jpg" } }, - "tryghost-gatsby-starter-ghost-master": { - "theme_key": "tryghost-gatsby-starter-ghost-master", + "tryghost-gatsby-starter-ghost": { + "theme_key": "tryghost-gatsby-starter-ghost", "file": "gatsby-starter-ghost.md", "name": "gatsby-starter-ghost", "title": "Gatsby Starter Ghost", "github_username": "TryGhost", "repo": "TryGhost/gatsby-starter-ghost", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/TryGhost/gatsby-starter-ghost", "demo_url": "https://gatsby.ghost.org/", - "stars": 714, - "forks": 551, + "stars": 971, + "forks": 853, "open_issues": 18, - "last_commit": "2021-01-10T22:29:21Z", + "last_commit": "2023-01-16T21:25:53Z", "created_at": "2018-11-13T05:04:05Z", "description": "A starter template to build lightning fast websites with Ghost & Gatsby", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/tryghost-gatsby-starter-ghost-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tryghost-gatsby-starter-ghost-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tryghost-gatsby-starter-ghost-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/tryghost-gatsby-starter-ghost.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tryghost-gatsby-starter-ghost.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tryghost-gatsby-starter-ghost-2x.jpg" + } + }, + "ttntm-11ty-landing-page": { + "theme_key": "ttntm-11ty-landing-page", + "file": "11ty-landing-page.md", + "name": "11ty-landing-page", + "title": "11ty Landing Page", + "github_username": "ttntm", + "repo": "ttntm/11ty-landing-page", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/ttntm/11ty-landing-page", + "demo_url": "https://awesome11ty.ttntm.me", + "stars": 89, + "forks": 40, + "open_issues": 1, + "last_commit": "2021-07-13T08:30:58Z", + "created_at": "2021-03-31T08:33:39Z", + "description": "A simple landing page built with 11ty and Tailwind CSS.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/ttntm-11ty-landing-page.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ttntm-11ty-landing-page.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ttntm-11ty-landing-page-2x.jpg" + } + }, + "ttntm-hugo-landing-page": { + "theme_key": "ttntm-hugo-landing-page", + "file": "hugo-landing-page.md", + "name": "hugo-landing-page", + "title": "Hugo Landing Page", + "github_username": "ttntm", + "repo": "ttntm/hugo-landing-page", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/ttntm/hugo-landing-page", + "demo_url": "https://awesome.ttntm.me", + "stars": 69, + "forks": 28, + "open_issues": 4, + "last_commit": "2021-11-28T18:03:01Z", + "created_at": "2020-07-15T14:14:40Z", + "description": "A simple landing page built with Hugo and Tailwind CSS", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/ttntm-hugo-landing-page.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ttntm-hugo-landing-page.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ttntm-hugo-landing-page-2x.jpg" } }, - "ttskch-jekyll-ttskch-theme-master": { - "theme_key": "ttskch-jekyll-ttskch-theme-master", + "ttskch-jekyll-ttskch-theme": { + "theme_key": "ttskch-jekyll-ttskch-theme", "file": "jekyll-ttskch-theme.md", "name": "jekyll-ttskch-theme", "title": "TtskchTheme", "github_username": "ttskch", "repo": "ttskch/jekyll-ttskch-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ttskch/jekyll-ttskch-theme", "demo_url": "https://ttskch.github.io/jekyll-ttskch-theme/", - "stars": 29, - "forks": 64, - "open_issues": 6, + "stars": 32, + "forks": 67, + "open_issues": 5, "last_commit": "2019-08-07T05:05:44Z", "created_at": "2015-01-23T10:41:56Z", "description": "A simple and customizable theme for Jekyll.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ttskch-jekyll-ttskch-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ttskch-jekyll-ttskch-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ttskch-jekyll-ttskch-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ttskch-jekyll-ttskch-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ttskch-jekyll-ttskch-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ttskch-jekyll-ttskch-theme-2x.jpg" } }, - "tummychow-lanyon-hugo-master": { - "theme_key": "tummychow-lanyon-hugo-master", + "tummychow-lanyon-hugo": { + "theme_key": "tummychow-lanyon-hugo", "file": "hugo-lanyon-theme.md", "name": "lanyon-hugo", "title": "Lanyon", "github_username": "tummychow", "repo": "tummychow/lanyon-hugo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/tummychow/lanyon-hugo", "demo_url": "https://tummychow.github.io/lanyon-hugo/", - "stars": 143, - "forks": 70, + "stars": 159, + "forks": 75, "open_issues": 2, - "last_commit": "2021-01-04T00:26:42Z", + "last_commit": "2021-01-23T04:37:23Z", "created_at": "2014-03-14T05:52:03Z", "description": "Port of poole/lanyon, to spf13/hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/tummychow-lanyon-hugo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tummychow-lanyon-hugo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tummychow-lanyon-hugo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/tummychow-lanyon-hugo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tummychow-lanyon-hugo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tummychow-lanyon-hugo-2x.jpg" } }, - "tybenz-exemplar-master": { - "theme_key": "tybenz-exemplar-master", + "tybenz-exemplar": { + "theme_key": "tybenz-exemplar", "file": "jekyll-exemplar.md", "name": "exemplar", "title": "Exemplar", "github_username": "tybenz", "repo": "tybenz/exemplar", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/tybenz/exemplar", "demo_url": "https://tybenz.github.io/exemplar/", - "stars": 67, - "forks": 39, + "stars": 71, + "forks": 40, "open_issues": 3, "last_commit": "2016-08-09T16:03:22Z", "created_at": "2013-02-20T21:38:22Z", "description": "Jekyll site template", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/tybenz-exemplar-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tybenz-exemplar-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tybenz-exemplar-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/tybenz-exemplar.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tybenz-exemplar.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tybenz-exemplar-2x.jpg" } }, - "tybenz-otter-pop-gh-pages": { - "theme_key": "tybenz-otter-pop-gh-pages", + "tybenz-otter-pop": { + "theme_key": "tybenz-otter-pop", "file": "jekyll-otter-pop.md", "name": "otter-pop", "title": "Otter Pop", "github_username": "tybenz", "repo": "tybenz/otter-pop", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/tybenz/otter-pop", "demo_url": "https://tybenz.com/otter-pop", - "stars": 27, - "forks": 22, + "stars": 32, + "forks": 23, "open_issues": 2, "last_commit": "2019-05-10T20:43:52Z", "created_at": "2014-05-10T16:43:23Z", "description": "The world's greatest jekyll theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/tybenz-otter-pop-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tybenz-otter-pop-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tybenz-otter-pop-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/tybenz-otter-pop.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tybenz-otter-pop.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tybenz-otter-pop-2x.jpg" } }, - "tylergreulich-gatsby-typescript-mdx-prismjs-starter-master": { - "theme_key": "tylergreulich-gatsby-typescript-mdx-prismjs-starter-master", + "tylergreulich-gatsby-typescript-mdx-prismjs-starter": { + "theme_key": "tylergreulich-gatsby-typescript-mdx-prismjs-starter", "file": "gatsby-typescript-mdx-prismjs-starter.md", "name": "gatsby-typescript-mdx-prismjs-starter", "title": "Typescript Mdx Prismjs", "github_username": "tylergreulich", "repo": "tylergreulich/gatsby-typescript-mdx-prismjs-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/tylergreulich/gatsby-typescript-mdx-prismjs-starter", "demo_url": "https://infallible-brown-28846b.netlify.com", "stars": 15, - "forks": 10, + "forks": 8, "open_issues": 1, "last_commit": "2019-03-12T22:30:13Z", "created_at": "2018-12-18T15:30:09Z", "description": null, - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/tylergreulich-gatsby-typescript-mdx-prismjs-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tylergreulich-gatsby-typescript-mdx-prismjs-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tylergreulich-gatsby-typescript-mdx-prismjs-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/tylergreulich-gatsby-typescript-mdx-prismjs-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tylergreulich-gatsby-typescript-mdx-prismjs-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tylergreulich-gatsby-typescript-mdx-prismjs-starter-2x.jpg" + } + }, + "tylermroderick-fernfolio-11ty-template": { + "theme_key": "tylermroderick-fernfolio-11ty-template", + "file": "fernfolio.md", + "name": "fernfolio-11ty-template", + "title": "Fernfolio", + "github_username": "TylerMRoderick", + "repo": "TylerMRoderick/fernfolio-11ty-template", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/TylerMRoderick/fernfolio-11ty-template", + "demo_url": "https://fernfolio.netlify.app/", + "stars": 63, + "forks": 29, + "open_issues": 0, + "last_commit": "2023-01-23T01:00:34Z", + "created_at": "2021-02-18T18:21:50Z", + "description": "The super simple portfolio template built with Eleventy and Netlify CMS", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/tylermroderick-fernfolio-11ty-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tylermroderick-fernfolio-11ty-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tylermroderick-fernfolio-11ty-template-2x.jpg" } }, - "tzuehlke-jekyll-uno-timeline-master": { - "theme_key": "tzuehlke-jekyll-uno-timeline-master", + "tzuehlke-jekyll-uno-timeline": { + "theme_key": "tzuehlke-jekyll-uno-timeline", "file": "jekyll-uno-timeline.md", "name": "jekyll-uno-timeline", "title": "Jekyll-Uno-Timeline", "github_username": "tzuehlke", "repo": "tzuehlke/jekyll-uno-timeline", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/tzuehlke/jekyll-uno-timeline", "demo_url": "https://thomas.zuehlke.family/", - "stars": 42, - "forks": 61, - "open_issues": 0, - "last_commit": "2020-01-12T20:10:07Z", + "stars": 66, + "forks": 96, + "open_issues": 1, + "last_commit": "2021-03-14T20:31:27Z", "created_at": "2020-01-04T20:46:19Z", "description": "A Jekyll Theme, based on the Uno-Theme with some adjustments.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/tzuehlke-jekyll-uno-timeline-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tzuehlke-jekyll-uno-timeline-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tzuehlke-jekyll-uno-timeline-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/tzuehlke-jekyll-uno-timeline.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tzuehlke-jekyll-uno-timeline.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tzuehlke-jekyll-uno-timeline-2x.jpg" } }, - "ueno-llc-ueno-gatsby-starter-master": { - "theme_key": "ueno-llc-ueno-gatsby-starter-master", + "ueno-llc-ueno-gatsby-starter": { + "theme_key": "ueno-llc-ueno-gatsby-starter", "file": "ueno-gatsby-starter.md", "name": "ueno-gatsby-starter", "title": "Ueno Gatsby Starter", "github_username": "ueno-llc", "repo": "ueno-llc/ueno-gatsby-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ueno-llc/ueno-gatsby-starter", "demo_url": "https://create-ueno-app.netlify.com/", - "stars": 119, + "stars": 116, "forks": 20, "open_issues": 0, "last_commit": "2020-11-09T19:11:38Z", "created_at": "2018-10-03T14:38:07Z", "description": "Opinionated Gatsby starter by Ueno.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ueno-llc-ueno-gatsby-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ueno-llc-ueno-gatsby-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ueno-llc-ueno-gatsby-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ueno-llc-ueno-gatsby-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ueno-llc-ueno-gatsby-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ueno-llc-ueno-gatsby-starter-2x.jpg" } }, - "ugglr-gatsby-clean-portfolio-master": { - "theme_key": "ugglr-gatsby-clean-portfolio-master", + "ugglr-gatsby-clean-portfolio": { + "theme_key": "ugglr-gatsby-clean-portfolio", "file": "gatsby-clean-portfolio.md", "name": "gatsby-clean-portfolio", "title": "Gatsby Clean Portfolio", "github_username": "ugglr", "repo": "ugglr/gatsby-clean-portfolio", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/ugglr/gatsby-clean-portfolio", "demo_url": "https://ugglr.github.io/gatsby-clean-portfolio/", - "stars": 11, - "forks": 4, - "open_issues": 3, - "last_commit": "2020-09-06T05:16:54Z", + "stars": 12, + "forks": 3, + "open_issues": 15, + "last_commit": "2022-06-26T05:08:19Z", "created_at": "2019-03-31T12:27:43Z", "description": "Official Gatsby.js Clean portfolio starter! Get a clean looking portfolio up and running in no time using gatsby.js starters. ", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/ugglr-gatsby-clean-portfolio-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ugglr-gatsby-clean-portfolio-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ugglr-gatsby-clean-portfolio-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/ugglr-gatsby-clean-portfolio.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ugglr-gatsby-clean-portfolio.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ugglr-gatsby-clean-portfolio-2x.jpg" } }, - "uicardiodev-hugo-lime-master": { - "theme_key": "uicardiodev-hugo-lime-master", + "uicardiodev-hugo-lime": { + "theme_key": "uicardiodev-hugo-lime", "file": "hugo-lime.md", "name": "hugo-lime", "title": "Hugo Lime", "github_username": "uicardiodev", "repo": "uicardiodev/hugo-lime", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/uicardiodev/hugo-lime", "demo_url": "https://themes.gohugo.io/theme/hugo-lime/", "stars": 30, - "forks": 22, + "forks": 23, "open_issues": 1, "last_commit": "2018-09-16T13:49:33Z", "created_at": "2018-08-25T17:12:50Z", "description": "Hugo Lime is a business theme for GoHugo by https://uicard.io", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/uicardiodev-hugo-lime-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/uicardiodev-hugo-lime-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/uicardiodev-hugo-lime-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/uicardiodev-hugo-lime.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/uicardiodev-hugo-lime.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/uicardiodev-hugo-lime-2x.jpg" } }, - "uicardiodev-hugo-sodium-theme-master": { - "theme_key": "uicardiodev-hugo-sodium-theme-master", + "uicardiodev-hugo-sodium-theme": { + "theme_key": "uicardiodev-hugo-sodium-theme", "file": "hugo-sodium-theme.md", "name": "hugo-sodium-theme", "title": "Sodium", "github_username": "uicardiodev", "repo": "uicardiodev/hugo-sodium-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/uicardiodev/hugo-sodium-theme", "demo_url": "https://themes.gohugo.io/theme/hugo-sodium-theme/", "stars": 37, @@ -22135,936 +27616,1125 @@ "last_commit": "2018-11-19T12:20:14Z", "created_at": "2018-06-28T04:01:56Z", "description": null, - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/uicardiodev-hugo-sodium-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/uicardiodev-hugo-sodium-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/uicardiodev-hugo-sodium-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/uicardiodev-hugo-sodium-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/uicardiodev-hugo-sodium-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/uicardiodev-hugo-sodium-theme-2x.jpg" } }, - "uicardiodev-hugo-uilite-master": { - "theme_key": "uicardiodev-hugo-uilite-master", + "uicardiodev-hugo-uilite": { + "theme_key": "uicardiodev-hugo-uilite", "file": "hugo-uilite.md", "name": "hugo-uilite", "title": "UILite", "github_username": "uicardiodev", "repo": "uicardiodev/hugo-uilite", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/uicardiodev/hugo-uilite", "demo_url": "https://themes.gohugo.io/theme/hugo-uilite/", - "stars": 73, - "forks": 49, + "stars": 77, + "forks": 52, "open_issues": 8, "last_commit": "2019-06-19T16:43:41Z", "created_at": "2018-09-21T11:31:46Z", "description": null, - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/uicardiodev-hugo-uilite-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/uicardiodev-hugo-uilite-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/uicardiodev-hugo-uilite-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/uicardiodev-hugo-uilite.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/uicardiodev-hugo-uilite.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/uicardiodev-hugo-uilite-2x.jpg" + } + }, + "uicardiohq-hugo-lime": { + "theme_key": "uicardiodev-hugo-lime", + "file": "hugo-lime.md", + "name": "hugo-lime", + "title": "Hugo Lime", + "github_username": "uicardioHQ", + "repo": "uicardioHQ/hugo-lime", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/uicardioHQ/hugo-lime", + "demo_url": "https://themes.gohugo.io/theme/hugo-lime/", + "stars": 31, + "forks": 24, + "open_issues": 1, + "last_commit": "2018-09-16T13:49:33Z", + "created_at": "2018-08-25T17:12:50Z", + "description": "Hugo Lime is a business theme for GoHugo by https://uicard.io", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/uicardiodev-hugo-lime.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/uicardiodev-hugo-lime.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/uicardiodev-hugo-lime-2x.jpg" + } + }, + "uicardiohq-hugo-sodium-theme": { + "theme_key": "uicardiodev-hugo-sodium-theme", + "file": "hugo-sodium-theme.md", + "name": "hugo-sodium-theme", + "title": "Sodium", + "github_username": "uicardioHQ", + "repo": "uicardioHQ/hugo-sodium-theme", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/uicardioHQ/hugo-sodium-theme", + "demo_url": "https://themes.gohugo.io/theme/hugo-sodium-theme/", + "stars": 38, + "forks": 27, + "open_issues": 2, + "last_commit": "2018-11-19T12:20:14Z", + "created_at": "2018-06-28T04:01:56Z", + "description": null, + "images": { + "hires": "https://www.jamstackthemes.dev/capture/uicardiodev-hugo-sodium-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/uicardiodev-hugo-sodium-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/uicardiodev-hugo-sodium-theme-2x.jpg" + } + }, + "uicardiohq-hugo-uilite": { + "theme_key": "uicardiodev-hugo-uilite", + "file": "hugo-uilite.md", + "name": "hugo-uilite", + "title": "UILite", + "github_username": "uicardioHQ", + "repo": "uicardioHQ/hugo-uilite", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/uicardioHQ/hugo-uilite", + "demo_url": "https://themes.gohugo.io/theme/hugo-uilite/", + "stars": 84, + "forks": 59, + "open_issues": 7, + "last_commit": "2021-06-08T16:11:42Z", + "created_at": "2018-09-21T11:31:46Z", + "description": null, + "images": { + "hires": "https://www.jamstackthemes.dev/capture/uicardiodev-hugo-uilite.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/uicardiodev-hugo-uilite.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/uicardiodev-hugo-uilite-2x.jpg" } }, - "unifreak-unifreak.github.io-master": { - "theme_key": "unifreak-unifreak.github.io-master", + "unifreak-unifreak.github.io": { + "theme_key": "unifreak-unifreak.github.io", "file": "jekyll-idk.md", "name": "unifreak.github.io", "title": "idk", - "github_username": "UniFreak", - "repo": "UniFreak/unifreak.github.io", + "github_username": "unifreak", + "repo": "unifreak/unifreak.github.io", "branch": "master", - "github_url": "https://github.com/UniFreak/unifreak.github.io", + "default_branch": "master", + "github_url": "https://github.com/unifreak/unifreak.github.io", "demo_url": "https://unifreak.github.io", - "stars": 20, - "forks": 38, + "stars": 21, + "forks": 40, "open_issues": 1, - "last_commit": "2021-01-10T22:16:32Z", + "last_commit": "2022-12-24T15:20:11Z", "created_at": "2015-07-22T02:24:05Z", "description": "FangHao's blog", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/unifreak-unifreak.github.io-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/unifreak-unifreak.github.io-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/unifreak-unifreak.github.io-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/unifreak-unifreak.github.io.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/unifreak-unifreak.github.io.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/unifreak-unifreak.github.io-2x.jpg" } }, - "upagge-ublogger-master": { - "theme_key": "upagge-ublogger-master", + "upagge-ublogger": { + "theme_key": "upagge-ublogger", "file": "hugo-ublogger.md", "name": "uBlogger", "title": "uBlogger", "github_username": "uPagge", "repo": "uPagge/uBlogger", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/uPagge/uBlogger", "demo_url": "https://ublogger.netlify.app", - "stars": 36, - "forks": 14, - "open_issues": 3, - "last_commit": "2021-01-10T09:12:19Z", + "stars": 245, + "forks": 109, + "open_issues": 29, + "last_commit": "2021-09-14T04:20:02Z", "created_at": "2020-11-23T09:02:15Z", - "description": ":heart: A clean, elegant but advanced blog theme for Hugo", - "stale": false, + "description": "A template designed with your readers in mind :heart:", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/upagge-ublogger.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/upagge-ublogger.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/upagge-ublogger-2x.jpg" + } + }, + "usernamehasbeenchanged100times-alway5.github.io": { + "theme_key": "minhhuy150894-minhhuy150894.github.io", + "file": "jekyll-HPSTRversion2.md", + "name": "alway5.github.io", + "title": "HPSTR Version 2 - Vietnamese", + "github_username": "UsernameHasBeenChanged100Times", + "repo": "UsernameHasBeenChanged100Times/alway5.github.io", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/UsernameHasBeenChanged100Times/alway5.github.io", + "demo_url": "https://minhhuy150894.github.io", + "stars": 18, + "forks": 39, + "open_issues": 0, + "last_commit": "2018-02-07T04:55:13Z", + "created_at": "2015-05-11T13:24:51Z", + "description": null, "images": { - "hires": "https://www.jamstackthemes.dev/capture/upagge-ublogger-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/upagge-ublogger-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/upagge-ublogger-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/minhhuy150894-minhhuy150894.github.io.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/minhhuy150894-minhhuy150894.github.io.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/minhhuy150894-minhhuy150894.github.io-2x.jpg" } }, - "v4iv-gatsby-starter-business-master": { - "theme_key": "v4iv-gatsby-starter-business-master", + "v4iv-gatsby-starter-business": { + "theme_key": "v4iv-gatsby-starter-business", "file": "gatsby-starter-business.md", "name": "gatsby-starter-business", "title": "Gatsby Starter Business", "github_username": "v4iv", "repo": "v4iv/gatsby-starter-business", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/v4iv/gatsby-starter-business", "demo_url": "https://gatsby-starter-business.netlify.com/", - "stars": 231, - "forks": 101, - "open_issues": 0, + "stars": 245, + "forks": 102, + "open_issues": 8, "last_commit": "2020-12-18T07:43:00Z", "created_at": "2018-03-31T13:20:45Z", "description": "Gatsby Business Website Starter", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/v4iv-gatsby-starter-business-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/v4iv-gatsby-starter-business-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/v4iv-gatsby-starter-business-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/v4iv-gatsby-starter-business.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/v4iv-gatsby-starter-business.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/v4iv-gatsby-starter-business-2x.jpg" } }, - "vaga-hugo-theme-m10c-master": { - "theme_key": "vaga-hugo-theme-m10c-master", + "vaga-hugo-theme-m10c": { + "theme_key": "vaga-hugo-theme-m10c", "file": "hugo-m10c-theme.md", "name": "hugo-theme-m10c", "title": "M10c", "github_username": "vaga", "repo": "vaga/hugo-theme-m10c", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/vaga/hugo-theme-m10c", "demo_url": "https://themes.gohugo.io/theme/hugo-theme-m10c/", - "stars": 203, - "forks": 129, - "open_issues": 0, - "last_commit": "2021-01-05T13:50:39Z", + "stars": 279, + "forks": 176, + "open_issues": 1, + "last_commit": "2021-03-07T22:45:02Z", "created_at": "2019-01-19T09:43:35Z", "description": "A minimalistic (m10c) blog theme for Hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/vaga-hugo-theme-m10c-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vaga-hugo-theme-m10c-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vaga-hugo-theme-m10c-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/vaga-hugo-theme-m10c.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vaga-hugo-theme-m10c.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vaga-hugo-theme-m10c-2x.jpg" } }, - "vagr9k-gatsby-advanced-starter-master": { - "theme_key": "vagr9k-gatsby-advanced-starter-master", + "vagr9k-gatsby-advanced-starter": { + "theme_key": "vagr9k-gatsby-advanced-starter", "file": "gatsby-advanced-starter.md", "name": "gatsby-advanced-starter", "title": "Gatsby Advanced Starter", "github_username": "Vagr9K", "repo": "Vagr9K/gatsby-advanced-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Vagr9K/gatsby-advanced-starter", - "demo_url": "https://vagr9k.github.io/gatsby-advanced-starter/", - "stars": 1154, - "forks": 276, - "open_issues": 4, - "last_commit": "2020-10-29T01:27:02Z", + "demo_url": "https://advanced-demo.netlify.app/", + "stars": 1513, + "forks": 403, + "open_issues": 29, + "last_commit": "2022-07-17T20:24:37Z", "created_at": "2017-07-18T20:18:32Z", - "description": "A high performance skeleton starter for GatsbyJS that focuses on SEO/Social features/development environment.", - "stale": false, + "description": "A high performance skeleton starter for GatsbyJS with an advanced feature set.", "images": { - "hires": "https://www.jamstackthemes.dev/capture/vagr9k-gatsby-advanced-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vagr9k-gatsby-advanced-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vagr9k-gatsby-advanced-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/vagr9k-gatsby-advanced-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vagr9k-gatsby-advanced-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vagr9k-gatsby-advanced-starter-2x.jpg" } }, - "vagr9k-gatsby-material-starter-master": { - "theme_key": "vagr9k-gatsby-material-starter-master", + "vagr9k-gatsby-material-starter": { + "theme_key": "vagr9k-gatsby-material-starter", "file": "gatsby-material-starter.md", "name": "gatsby-material-starter", "title": "Gatsby Material Starter", "github_username": "Vagr9K", "repo": "Vagr9K/gatsby-material-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Vagr9K/gatsby-material-starter", - "demo_url": "https://vagr9k.github.io/gatsby-material-starter/", - "stars": 450, - "forks": 152, - "open_issues": 3, - "last_commit": "2020-11-19T07:23:50Z", + "demo_url": "https://gatsby-theme-material.netlify.app/", + "stars": 509, + "forks": 174, + "open_issues": 20, + "last_commit": "2022-07-06T16:33:19Z", "created_at": "2017-07-02T14:02:13Z", "description": "A high performance blog starter with Material design in mind for GatsbyJS.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/vagr9k-gatsby-material-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vagr9k-gatsby-material-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vagr9k-gatsby-material-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/vagr9k-gatsby-material-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vagr9k-gatsby-material-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vagr9k-gatsby-material-starter-2x.jpg" } }, - "vantagedesign-ace-documentation-master": { - "theme_key": "vantagedesign-ace-documentation-master", + "vantagedesign-ace-documentation": { + "theme_key": "vantagedesign-ace-documentation", "file": "ace-documentation.md", "name": "ace-documentation", "title": "Ace documentation", "github_username": "vantagedesign", "repo": "vantagedesign/ace-documentation", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/vantagedesign/ace-documentation", "demo_url": "https://docs.vantage-design.com/ace", - "stars": 57, - "forks": 34, - "open_issues": 3, - "last_commit": "2020-11-26T08:33:00Z", + "stars": 91, + "forks": 67, + "open_issues": 6, + "last_commit": "2022-11-14T10:01:10Z", "created_at": "2020-01-23T22:48:08Z", "description": "A free documentation theme for Hugo, powered by Bootstrap 4. Repsonsive, search, code highlighting and more.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/vantagedesign-ace-documentation-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vantagedesign-ace-documentation-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vantagedesign-ace-documentation-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/vantagedesign-ace-documentation.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vantagedesign-ace-documentation.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vantagedesign-ace-documentation-2x.jpg" } }, - "vercel-next.js-master": { - "theme_key": "vercel-next.js-master", + "vercel-next.js": { + "theme_key": "vercel-next.js", "file": "next-static-blog.md", "name": "next.js", "title": "Next.js Static Blog", "github_username": "vercel", "repo": "vercel/next.js", - "branch": "master", + "branch": "canary", + "default_branch": "canary", "github_url": "https://github.com/vercel/next.js", "demo_url": "https://cosmic-next-blog.vercel.app", - "stars": 56639, - "forks": 9415, - "open_issues": 856, - "last_commit": "2020-10-27T15:45:51Z", + "stars": 99565, + "forks": 22093, + "open_issues": 1481, + "last_commit": "2023-01-23T18:40:13Z", "created_at": "2016-10-05T23:32:51Z", "description": "The React Framework", - "stale": false + "images": { + "hires": "https://www.jamstackthemes.dev/capture/vercel-next.js.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vercel-next.js.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vercel-next.js-2x.jpg" + } }, - "vfalanis-taken-master": { - "theme_key": "vfalanis-taken-master", + "vfalanis-taken": { + "theme_key": "vfalanis-taken", "file": "jekyll-taken-theme.md", "name": "taken", "title": "Taken", "github_username": "vfalanis", "repo": "vfalanis/taken", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/vfalanis/taken", "demo_url": "https://vfalanis.me/taken/", "stars": 28, - "forks": 62, + "forks": 60, "open_issues": 2, "last_commit": "2019-05-31T16:22:12Z", "created_at": "2016-04-28T04:46:31Z", "description": "Minimalist two-column jekyll theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/vfalanis-taken-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vfalanis-taken-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vfalanis-taken-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/vfalanis-taken.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vfalanis-taken.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vfalanis-taken-2x.jpg" + } + }, + "vfvong-jekyll-theme-quartz": { + "theme_key": "vfvong-jekyll-theme-quartz", + "file": "quartz.md", + "name": "jekyll-theme-quartz", + "title": "Quartz", + "github_username": "vfvong", + "repo": "vfvong/jekyll-theme-quartz", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/vfvong/jekyll-theme-quartz", + "demo_url": "https://vfvong.blog/jekyll-theme-quartz/", + "stars": 0, + "forks": 0, + "open_issues": 0, + "last_commit": "2022-10-19T12:26:25Z", + "created_at": "2022-08-31T12:00:44Z", + "description": "A crystalline Jekyll theme for blog", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/vfvong-jekyll-theme-quartz.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vfvong-jekyll-theme-quartz.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vfvong-jekyll-theme-quartz-2x.jpg" + } + }, + "vfvong-jekyll-theme-tao": { + "theme_key": "vfvong-jekyll-theme-tao", + "file": "tao.md", + "name": "jekyll-theme-tao", + "title": "Tao", + "github_username": "vfvong", + "repo": "vfvong/jekyll-theme-tao", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/vfvong/jekyll-theme-tao", + "demo_url": "https://vfvong.blog/jekyll-theme-tao/", + "stars": 19, + "forks": 8, + "open_issues": 0, + "last_commit": "2022-07-21T09:20:37Z", + "created_at": "2022-03-20T10:11:00Z", + "description": "A content-first minimalist Jekyll theme for blogs", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/vfvong-jekyll-theme-tao.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vfvong-jekyll-theme-tao.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vfvong-jekyll-theme-tao-2x.jpg" } }, - "victoriadrake-hugo-theme-introduction-master": { - "theme_key": "victoriadrake-hugo-theme-introduction-master", + "victoriadrake-hugo-theme-introduction": { + "theme_key": "victoriadrake-hugo-theme-introduction", "file": "hugo-theme-introduction.md", "name": "hugo-theme-introduction", "title": "Introduction", "github_username": "victoriadrake", "repo": "victoriadrake/hugo-theme-introduction", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/victoriadrake/hugo-theme-introduction", "demo_url": "https://hugo-introduction.netlify.com/", - "stars": 423, - "forks": 188, - "open_issues": 6, - "last_commit": "2021-01-08T01:43:48Z", + "stars": 601, + "forks": 266, + "open_issues": 3, + "last_commit": "2022-09-06T00:17:17Z", "created_at": "2017-03-13T06:50:23Z", "description": "Minimal, single page, smooth-scrolling theme for Hugo static site generator.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/victoriadrake-hugo-theme-introduction-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/victoriadrake-hugo-theme-introduction-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/victoriadrake-hugo-theme-introduction-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/victoriadrake-hugo-theme-introduction.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/victoriadrake-hugo-theme-introduction.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/victoriadrake-hugo-theme-introduction-2x.jpg" } }, - "victoriadrake-hugo-theme-sam-master": { - "theme_key": "victoriadrake-hugo-theme-sam-master", + "victoriadrake-hugo-theme-sam": { + "theme_key": "victoriadrake-hugo-theme-sam", "file": "hugo-theme-sam.md", "name": "hugo-theme-sam", "title": "Call me Sam", "github_username": "victoriadrake", "repo": "victoriadrake/hugo-theme-sam", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/victoriadrake/hugo-theme-sam", "demo_url": "https://hugo-sam.netlify.com", - "stars": 300, - "forks": 143, - "open_issues": 1, - "last_commit": "2020-10-16T01:57:09Z", + "stars": 348, + "forks": 165, + "open_issues": 2, + "last_commit": "2021-06-04T09:28:06Z", "created_at": "2018-02-14T16:37:53Z", "description": "A Simple and Minimalist theme for Hugo with a focus on typography and content.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/victoriadrake-hugo-theme-sam-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/victoriadrake-hugo-theme-sam-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/victoriadrake-hugo-theme-sam-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/victoriadrake-hugo-theme-sam.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/victoriadrake-hugo-theme-sam.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/victoriadrake-hugo-theme-sam-2x.jpg" } }, - "victorvoid-space-jekyll-template-master": { - "theme_key": "victorvoid-space-jekyll-template-master", + "victorvoid-space-jekyll-template": { + "theme_key": "victorvoid-space-jekyll-template", "file": "jekyll-space-theme.md", "name": "space-jekyll-template", "title": "Space", "github_username": "victorvoid", "repo": "victorvoid/space-jekyll-template", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/victorvoid/space-jekyll-template", "demo_url": "https://victorvoid.me/space-jekyll-template/", - "stars": 369, - "forks": 319, + "stars": 388, + "forks": 317, "open_issues": 6, - "last_commit": "2019-02-14T12:12:46Z", + "last_commit": "2022-06-29T18:34:16Z", "created_at": "2016-09-12T16:49:05Z", "description": "A simple spacemacs template on jekyll. https://victorvoid.github.io/space-jekyll-template/", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/victorvoid-space-jekyll-template-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/victorvoid-space-jekyll-template-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/victorvoid-space-jekyll-template-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/victorvoid-space-jekyll-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/victorvoid-space-jekyll-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/victorvoid-space-jekyll-template-2x.jpg" } }, - "vietanhdev-benice17-master": { - "theme_key": "vietanhdev-benice17-master", + "vietanhdev-benice17": { + "theme_key": "vietanhdev-benice17", "file": "jekyll-beNice17.md", "name": "beNice17", "title": "beNice17", "github_username": "vietanhdev", "repo": "vietanhdev/beNice17", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/vietanhdev/beNice17", "demo_url": "https://www.vietanhdev.com/beNice17/", "stars": 2, "forks": 2, - "open_issues": 1, - "last_commit": "2019-07-08T04:32:15Z", + "open_issues": 2, + "last_commit": "2021-10-03T16:10:27Z", "created_at": "2016-12-30T13:15:34Z", "description": "A Jekyll theme for my personal website", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/vietanhdev-benice17-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vietanhdev-benice17-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vietanhdev-benice17-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/vietanhdev-benice17.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vietanhdev-benice17.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vietanhdev-benice17-2x.jpg" + } + }, + "vietanhdev-hugo-curious": { + "theme_key": "vietanhdev-hugo-curious", + "file": "hugo-curious.md", + "name": "hugo-curious", + "title": "Hugo Curious", + "github_username": "vietanhdev", + "repo": "vietanhdev/hugo-curious", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/vietanhdev/hugo-curious", + "demo_url": "https://hugo-curious.aicurious.io/", + "stars": 20, + "forks": 16, + "open_issues": 2, + "last_commit": "2021-12-25T05:30:21Z", + "created_at": "2021-04-24T16:03:04Z", + "description": "Hugo theme for AICurious blog. Based on Hugo Clarity: https://github.com/chipzoller/hugo-clarity", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/vietanhdev-hugo-curious.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vietanhdev-hugo-curious.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vietanhdev-hugo-curious-2x.jpg" } }, - "viko16-vuepress-theme-simple-master": { - "theme_key": "viko16-vuepress-theme-simple-master", + "viko16-vuepress-theme-simple": { + "theme_key": "viko16-vuepress-theme-simple", "file": "vuepress-theme-simple.md", "name": "vuepress-theme-simple", "title": "Simple Vuepress Theme", "github_username": "viko16", "repo": "viko16/vuepress-theme-simple", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/viko16/vuepress-theme-simple", "demo_url": "https://ukn.me/", - "stars": 77, - "forks": 7, - "open_issues": 1, + "stars": 92, + "forks": 13, + "open_issues": 3, "last_commit": "2020-12-15T06:45:58Z", "created_at": "2019-02-02T03:15:40Z", "description": "✏️ Very Simple Blog Theme for VuePress", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/viko16-vuepress-theme-simple-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/viko16-vuepress-theme-simple-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/viko16-vuepress-theme-simple-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/viko16-vuepress-theme-simple.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/viko16-vuepress-theme-simple.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/viko16-vuepress-theme-simple-2x.jpg" } }, - "vimux-binario-master": { - "theme_key": "vimux-binario-master", + "vimux-binario": { + "theme_key": "vimux-binario", "file": "hugo-binario.md", "name": "Binario", "title": "Binario", "github_username": "Vimux", "repo": "Vimux/Binario", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Vimux/Binario", "demo_url": "https://themes.gohugo.io/theme/binario/", - "stars": 51, - "forks": 23, - "open_issues": 4, - "last_commit": "2021-01-08T17:24:38Z", + "stars": 63, + "forks": 28, + "open_issues": 3, + "last_commit": "2021-09-03T17:22:38Z", "created_at": "2018-04-27T06:39:54Z", "description": "Responsive card-based & code-light Hugo theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/vimux-binario-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vimux-binario-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vimux-binario-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/vimux-binario.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vimux-binario.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vimux-binario-2x.jpg" } }, - "vimux-blank-master": { - "theme_key": "vimux-blank-master", + "vimux-blank": { + "theme_key": "vimux-blank", "file": "hugo-blank.md", "name": "blank", "title": "Blank", "github_username": "Vimux", "repo": "Vimux/blank", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Vimux/blank", "demo_url": "https://themes.gohugo.io/theme/blank/", - "stars": 121, - "forks": 66, - "open_issues": 0, - "last_commit": "2020-01-09T17:07:19Z", + "stars": 144, + "forks": 74, + "open_issues": 1, + "last_commit": "2021-07-23T16:23:55Z", "created_at": "2016-10-14T20:36:04Z", "description": "Starter Hugo theme for use as a template for building custom themes", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/vimux-blank-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vimux-blank-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vimux-blank-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/vimux-blank.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vimux-blank.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vimux-blank-2x.jpg" } }, - "vimux-mainroad-master": { - "theme_key": "vimux-mainroad-master", + "vimux-mainroad": { + "theme_key": "vimux-mainroad", "file": "hugo-mainroad.md", "name": "Mainroad", "title": "Mainroad", "github_username": "Vimux", "repo": "Vimux/Mainroad", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Vimux/Mainroad", "demo_url": "https://mainroad-demo.netlify.app/", - "stars": 474, - "forks": 290, + "stars": 713, + "forks": 409, "open_issues": 13, - "last_commit": "2021-01-09T17:31:06Z", + "last_commit": "2023-01-09T18:10:40Z", "created_at": "2016-12-15T13:21:09Z", "description": "Responsive, simple, clean and content-focused Hugo theme based on the MH Magazine lite WordPress theme", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/vimux-mainroad-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vimux-mainroad-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vimux-mainroad-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/vimux-mainroad.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vimux-mainroad.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vimux-mainroad-2x.jpg" } }, - "vincentchan-mickey-master": { - "theme_key": "vincentchan-mickey-master", + "vincentchan-mickey": { + "theme_key": "vincentchan-mickey", "file": "jekyll-mickey.md", "name": "mickey", "title": "Mickey", "github_username": "vincentchan", "repo": "vincentchan/mickey", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/vincentchan/mickey", "demo_url": "https://vincentchan.github.io/mickey/", - "stars": 324, - "forks": 209, + "stars": 334, + "forks": 225, "open_issues": 11, "last_commit": "2015-10-02T07:09:25Z", "created_at": "2015-07-24T04:55:37Z", "description": "A minimal one-column theme for Jekyll. ", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/vincentchan-mickey-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vincentchan-mickey-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vincentchan-mickey-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/vincentchan-mickey.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vincentchan-mickey.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vincentchan-mickey-2x.jpg" } }, - "vinitkumar-white-paper-gh-pages": { - "theme_key": "vinitkumar-white-paper-gh-pages", + "vinitkumar-white-paper": { + "theme_key": "vinitkumar-white-paper", "file": "jekyll-white-paper.md", "name": "white-paper", "title": "White Paper", "github_username": "vinitkumar", "repo": "vinitkumar/white-paper", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/vinitkumar/white-paper", "demo_url": "https://vinitkumar.github.io/white-paper/", - "stars": 196, - "forks": 149, - "open_issues": 0, - "last_commit": "2020-07-26T01:20:15Z", + "stars": 215, + "forks": 151, + "open_issues": 9, + "last_commit": "2021-09-03T19:18:22Z", "created_at": "2014-06-30T14:56:52Z", "description": "Simple, elegant and clean jekyll theme.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/vinitkumar-white-paper-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vinitkumar-white-paper-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vinitkumar-white-paper-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/vinitkumar-white-paper.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vinitkumar-white-paper.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vinitkumar-white-paper-2x.jpg" } }, - "vividvilla-ezhil-master": { - "theme_key": "vividvilla-ezhil-master", + "vividvilla-ezhil": { + "theme_key": "vividvilla-ezhil", "file": "hugo-ezhil.md", "name": "ezhil", "title": "Ezhil", "github_username": "vividvilla", "repo": "vividvilla/ezhil", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/vividvilla/ezhil", "demo_url": "https://ezhil-hugo.netlify.com/", - "stars": 249, - "forks": 136, - "open_issues": 11, - "last_commit": "2020-05-24T06:49:43Z", + "stars": 365, + "forks": 176, + "open_issues": 12, + "last_commit": "2021-04-28T11:14:00Z", "created_at": "2019-04-09T20:57:27Z", "description": "Clean and minimal personal blog theme for Hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/vividvilla-ezhil-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vividvilla-ezhil-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vividvilla-ezhil-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/vividvilla-ezhil.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vividvilla-ezhil.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vividvilla-ezhil-2x.jpg" } }, - "volny-creative-theme-jekyll-master": { - "theme_key": "volny-creative-theme-jekyll-master", + "volny-creative-theme-jekyll": { + "theme_key": "volny-creative-theme-jekyll", "file": "jekyll-creative-theme.md", "name": "creative-theme-jekyll", "title": "creative theme", "github_username": "volny", "repo": "volny/creative-theme-jekyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/volny/creative-theme-jekyll", "demo_url": "https://volny.github.io/creative-theme-jekyll", - "stars": 366, - "forks": 677, - "open_issues": 18, + "stars": 464, + "forks": 878, + "open_issues": 22, "last_commit": "2018-11-16T23:57:37Z", "created_at": "2015-09-13T04:48:49Z", "description": null, - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/volny-creative-theme-jekyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/volny-creative-theme-jekyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/volny-creative-theme-jekyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/volny-creative-theme-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/volny-creative-theme-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/volny-creative-theme-jekyll-2x.jpg" } }, - "volny-stylish-portfolio-jekyll-master": { - "theme_key": "volny-stylish-portfolio-jekyll-master", + "volny-stylish-portfolio-jekyll": { + "theme_key": "volny-stylish-portfolio-jekyll", "file": "jekyll-stylish-portfolio.md", "name": "stylish-portfolio-jekyll", "title": "Stylish Portfolio", "github_username": "volny", "repo": "volny/stylish-portfolio-jekyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/volny/stylish-portfolio-jekyll", "demo_url": "https://volny.github.io/stylish-portfolio-jekyll/", - "stars": 219, - "forks": 194, + "stars": 229, + "forks": 207, "open_issues": 3, "last_commit": "2018-11-17T00:01:55Z", "created_at": "2015-09-07T11:16:39Z", "description": "A Jekyll implementation of the Stylish Portfolio template by Start Bootstrap", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/volny-stylish-portfolio-jekyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/volny-stylish-portfolio-jekyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/volny-stylish-portfolio-jekyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/volny-stylish-portfolio-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/volny-stylish-portfolio-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/volny-stylish-portfolio-jekyll-2x.jpg" } }, - "vormwald-joon-master": { - "theme_key": "vormwald-joon-master", + "vormwald-joon": { + "theme_key": "vormwald-joon", "file": "jekyll-joon.md", "name": "joon", "title": "Joon", "github_username": "vormwald", "repo": "vormwald/joon", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/vormwald/joon", "demo_url": "https://vormwald.github.io/joon/", - "stars": 39, + "stars": 37, "forks": 31, "open_issues": 0, - "last_commit": "2020-03-12T19:53:58Z", + "last_commit": "2023-01-18T22:22:32Z", "created_at": "2015-08-10T03:11:53Z", "description": "Roon theme for Jekyll", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/vormwald-joon-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vormwald-joon-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vormwald-joon-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/vormwald-joon.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vormwald-joon.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vormwald-joon-2x.jpg" } }, - "vszhub-not-pure-poole-master": { - "theme_key": "vszhub-not-pure-poole-master", + "vszhub-not-pure-poole": { + "theme_key": "vszhub-not-pure-poole", "file": "not-pure-poole.md", "name": "not-pure-poole", "title": "Not Pure Poole", "github_username": "vszhub", "repo": "vszhub/not-pure-poole", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/vszhub/not-pure-poole", "demo_url": "https://vszhub.github.io/not-pure-poole/", - "stars": 8, - "forks": 14, + "stars": 77, + "forks": 265, "open_issues": 0, "last_commit": "2020-10-08T12:10:04Z", "created_at": "2020-09-27T09:52:35Z", "description": "A simple, beautiful, and powerful Jekyll theme for blogs.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/vszhub-not-pure-poole-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vszhub-not-pure-poole-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vszhub-not-pure-poole-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/vszhub-not-pure-poole.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vszhub-not-pure-poole.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vszhub-not-pure-poole-2x.jpg" } }, - "vvalchev-creative-theme-jekyll-new-master": { - "theme_key": "vvalchev-creative-theme-jekyll-new-master", + "vvalchev-creative-theme-jekyll-new": { + "theme_key": "vvalchev-creative-theme-jekyll-new", "file": "jekyll-creative-theme-new.md", "name": "creative-theme-jekyll-new", "title": "Creative Theme - New", "github_username": "vvalchev", "repo": "vvalchev/creative-theme-jekyll-new", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/vvalchev/creative-theme-jekyll-new", "demo_url": "https://vvalchev.github.io/creative-theme-jekyll-new/", - "stars": 36, - "forks": 49, - "open_issues": 1, + "stars": 49, + "forks": 57, + "open_issues": 5, "last_commit": "2020-12-04T16:04:56Z", "created_at": "2020-03-03T00:48:35Z", "description": "This is an updated version of creative-theme-jekyll that also features pure markdown site creation.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/vvalchev-creative-theme-jekyll-new-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vvalchev-creative-theme-jekyll-new-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vvalchev-creative-theme-jekyll-new-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/vvalchev-creative-theme-jekyll-new.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vvalchev-creative-theme-jekyll-new.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vvalchev-creative-theme-jekyll-new-2x.jpg" } }, - "vvelox-hugo-dusky-neon-potato-master": { - "theme_key": "vvelox-hugo-dusky-neon-potato-master", + "vvelox-hugo-dusky-neon-potato": { + "theme_key": "vvelox-hugo-dusky-neon-potato", "file": "hugo-dusky-neon-potato.md", "name": "hugo-dusky-neon-potato", "title": "Dusky Neon Potato", "github_username": "VVelox", "repo": "VVelox/hugo-dusky-neon-potato", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/VVelox/hugo-dusky-neon-potato", "demo_url": "https://themes.gohugo.io/theme/hugo-dusky-neon-potato/", "stars": 12, - "forks": 4, - "open_issues": 1, + "forks": 5, + "open_issues": 2, "last_commit": "2019-08-18T21:14:51Z", "created_at": "2018-09-04T04:55:12Z", "description": "a merging of the dusk and potato-dark themes for hugo", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/vvelox-hugo-dusky-neon-potato-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vvelox-hugo-dusky-neon-potato-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vvelox-hugo-dusky-neon-potato-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/vvelox-hugo-dusky-neon-potato.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/vvelox-hugo-dusky-neon-potato.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/vvelox-hugo-dusky-neon-potato-2x.jpg" } }, - "w3layouts-gatsby-starter-delog-master": { - "theme_key": "w3layouts-gatsby-starter-delog-master", + "w3layouts-gatsby-starter-delog": { + "theme_key": "w3layouts-gatsby-starter-delog", "file": "delog-gatsby-netlifycms.md", "name": "gatsby-starter-delog", "title": "Delog GatsbyJS", "github_username": "W3Layouts", "repo": "W3Layouts/gatsby-starter-delog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/W3Layouts/gatsby-starter-delog", "demo_url": "https://delog-w3layouts.netlify.com/", - "stars": 127, - "forks": 77, - "open_issues": 14, + "stars": 189, + "forks": 99, + "open_issues": 20, "last_commit": "2020-05-18T11:47:47Z", "created_at": "2020-03-02T13:01:51Z", "description": "A blog for designers and developer, built with Gatsby and Netlfiy CMS. Live demo https://delog-w3layouts.netlify.com/", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/w3layouts-gatsby-starter-delog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/w3layouts-gatsby-starter-delog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/w3layouts-gatsby-starter-delog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/w3layouts-gatsby-starter-delog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/w3layouts-gatsby-starter-delog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/w3layouts-gatsby-starter-delog-2x.jpg" } }, - "wangchucheng-hugo-eureka-master": { - "theme_key": "wangchucheng-hugo-eureka-master", + "wangchucheng-hugo-eureka": { + "theme_key": "wangchucheng-hugo-eureka", "file": "hugo-eureka.md", "name": "hugo-eureka", "title": "Eureka", "github_username": "wangchucheng", "repo": "wangchucheng/hugo-eureka", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/wangchucheng/hugo-eureka", "demo_url": "https://themes.gohugo.io/theme/hugo-eureka/", - "stars": 122, - "forks": 30, - "open_issues": 4, - "last_commit": "2021-01-09T15:32:20Z", + "stars": 441, + "forks": 116, + "open_issues": 21, + "last_commit": "2021-08-28T23:45:37Z", "created_at": "2020-05-07T06:17:49Z", "description": "Eureka is a feature-rich and highly customizable Hugo theme.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/wangchucheng-hugo-eureka-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wangchucheng-hugo-eureka-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wangchucheng-hugo-eureka-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/wangchucheng-hugo-eureka.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wangchucheng-hugo-eureka.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wangchucheng-hugo-eureka-2x.jpg" } }, - "wangonya-flexible-gatsby-master": { - "theme_key": "wangonya-flexible-gatsby-master", + "wangonya-flexible-gatsby": { + "theme_key": "wangonya-flexible-gatsby", "file": "gatsby-flexible.md", "name": "flexible-gatsby", "title": "Flexible Gatsby", "github_username": "wangonya", "repo": "wangonya/flexible-gatsby", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/wangonya/flexible-gatsby", "demo_url": "https://flexible-gatsby.netlify.com/", - "stars": 24, - "forks": 26, - "open_issues": 0, - "last_commit": "2020-07-28T05:35:24Z", + "stars": 43, + "forks": 33, + "open_issues": 1, + "last_commit": "2023-01-13T06:25:29Z", "created_at": "2019-10-08T09:53:49Z", "description": "Flexible-Gatsby is a simple and clean theme for Gatsby", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/wangonya-flexible-gatsby-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wangonya-flexible-gatsby-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wangonya-flexible-gatsby-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/wangonya-flexible-gatsby.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wangonya-flexible-gatsby.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wangonya-flexible-gatsby-2x.jpg" } }, - "wangonya-the-plain-gatsby-master": { - "theme_key": "wangonya-the-plain-gatsby-master", + "wangonya-the-plain-gatsby": { + "theme_key": "wangonya-the-plain-gatsby", "file": "gatsby-the-plain.md", "name": "the-plain-gatsby", "title": "The Plain Gatsby", "github_username": "wangonya", "repo": "wangonya/the-plain-gatsby", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/wangonya/the-plain-gatsby", "demo_url": "https://the-plain-gatsby.netlify.com/", - "stars": 16, - "forks": 10, - "open_issues": 12, - "last_commit": "2019-11-02T04:55:39Z", + "stars": 26, + "forks": 12, + "open_issues": 3, + "last_commit": "2021-03-18T03:22:55Z", "created_at": "2019-05-25T12:43:28Z", "description": "A minimalist GatsbyJs starter for your personal blog.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/wangonya-the-plain-gatsby-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wangonya-the-plain-gatsby-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wangonya-the-plain-gatsby-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/wangonya-the-plain-gatsby.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wangonya-the-plain-gatsby.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wangonya-the-plain-gatsby-2x.jpg" } }, - "wannaxiao-vuepress-theme-resume-master": { - "theme_key": "wannaxiao-vuepress-theme-resume-master", + "wannaxiao-vuepress-theme-resume": { + "theme_key": "wannaxiao-vuepress-theme-resume", "file": "vuepress-theme-resume.md", "name": "vuepress-theme-resume", "title": "Resume", "github_username": "wannaxiao", "repo": "wannaxiao/vuepress-theme-resume", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/wannaxiao/vuepress-theme-resume", "demo_url": "https://wannaxiao.github.io/vuepress-theme-resume/example/dist/", - "stars": 194, - "forks": 77, - "open_issues": 2, + "stars": 254, + "forks": 102, + "open_issues": 3, "last_commit": "2020-02-12T08:13:17Z", "created_at": "2018-06-03T07:19:01Z", "description": "🐈 书写简洁优雅的前端程序员 markdown 简历,由 vuepress 驱动", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/wannaxiao-vuepress-theme-resume-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wannaxiao-vuepress-theme-resume-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wannaxiao-vuepress-theme-resume-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/wannaxiao-vuepress-theme-resume.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wannaxiao-vuepress-theme-resume.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wannaxiao-vuepress-theme-resume-2x.jpg" } }, - "wd-hugo-fabric-master": { - "theme_key": "wd-hugo-fabric-master", + "wd-hugo-fabric": { + "theme_key": "wd-hugo-fabric", "file": "hugo-fabric-theme.md", "name": "hugo-fabric", "title": "Hugo Fabric", "github_username": "wd", "repo": "wd/hugo-fabric", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/wd/hugo-fabric", "demo_url": "https://themes.gohugo.io/theme/hugo-fabric/", - "stars": 9, - "forks": 4, + "stars": 10, + "forks": 5, "open_issues": 0, "last_commit": "2019-12-02T00:23:09Z", "created_at": "2017-03-08T10:25:13Z", "description": "Hugo Fabric Theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/wd-hugo-fabric-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wd-hugo-fabric-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wd-hugo-fabric-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/wd-hugo-fabric.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wd-hugo-fabric.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wd-hugo-fabric-2x.jpg" } }, - "webcu-gatsby-material-kit-react-master": { - "theme_key": "webcu-gatsby-material-kit-react-master", + "webcu-gatsby-material-kit-react": { + "theme_key": "webcu-gatsby-material-kit-react", "file": "gatsby-material-kit-react.md", "name": "gatsby-material-kit-react", "title": "gatsby-material-kit-react", "github_username": "WebCu", "repo": "WebCu/gatsby-material-kit-react", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/WebCu/gatsby-material-kit-react", "demo_url": "https://amazing-jones-e61bda.netlify.com/", - "stars": 64, - "forks": 32, - "open_issues": 10, - "last_commit": "2020-05-05T02:19:55Z", + "stars": 85, + "forks": 37, + "open_issues": 23, + "last_commit": "2021-04-27T21:30:04Z", "created_at": "2019-03-10T21:21:12Z", "description": "Adapt Material Kit React to Gatsby", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/webcu-gatsby-material-kit-react-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/webcu-gatsby-material-kit-react-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/webcu-gatsby-material-kit-react-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/webcu-gatsby-material-kit-react.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/webcu-gatsby-material-kit-react.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/webcu-gatsby-material-kit-react-2x.jpg" } }, - "wemake-services-jekyll-theme-hackcss-gh-pages": { - "theme_key": "wemake-services-jekyll-theme-hackcss-gh-pages", + "wemake-services-jekyll-theme-hackcss": { + "theme_key": "wemake-services-jekyll-theme-hackcss", "file": "jekyll-theme-hackcss.md", "name": "jekyll-theme-hackcss", "title": "Jekyll theme HackCSS", "github_username": "wemake-services", "repo": "wemake-services/jekyll-theme-hackcss", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/wemake-services/jekyll-theme-hackcss", "demo_url": "https://wemake.services/jekyll-theme-hackcss/", - "stars": 103, - "forks": 52, + "stars": 109, + "forks": 60, "open_issues": 3, "last_commit": "2019-09-12T13:10:00Z", "created_at": "2016-07-29T19:17:30Z", "description": "Dead simple CSS framework now with Jekyll.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/wemake-services-jekyll-theme-hackcss-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wemake-services-jekyll-theme-hackcss-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wemake-services-jekyll-theme-hackcss-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/wemake-services-jekyll-theme-hackcss.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wemake-services-jekyll-theme-hackcss.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wemake-services-jekyll-theme-hackcss-2x.jpg" } }, - "wgao19-docusaurus-theme-no-style-master": { - "theme_key": "wgao19-docusaurus-theme-no-style-master", + "wgao19-docusaurus-theme-no-style": { + "theme_key": "wgao19-docusaurus-theme-no-style", "file": "docusaurus-theme-no-style.md", "name": "docusaurus-theme-no-style", "title": "Docusaurus Theme No Style", "github_username": "wgao19", "repo": "wgao19/docusaurus-theme-no-style", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/wgao19/docusaurus-theme-no-style", "demo_url": "https://docusaurus-theme-no-style.netlify.com/", - "stars": 2, - "forks": 0, - "open_issues": 9, + "stars": 5, + "forks": 2, + "open_issues": 26, "last_commit": "2019-07-28T11:59:48Z", "created_at": "2019-07-27T17:59:04Z", "description": "🦖 Opinionated minimum style theme for Docusaurus 2", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/wgao19-docusaurus-theme-no-style-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wgao19-docusaurus-theme-no-style-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wgao19-docusaurus-theme-no-style-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/wgao19-docusaurus-theme-no-style.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wgao19-docusaurus-theme-no-style.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wgao19-docusaurus-theme-no-style-2x.jpg" + } + }, + "whi-tw-hugo-startpage-theme": { + "theme_key": "tnwhitwell-hugo-startpage-theme", + "file": "hugo-startpage-theme.md", + "name": "hugo-startpage-theme", + "title": "Startpage", + "github_username": "whi-tw", + "repo": "whi-tw/hugo-startpage-theme", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/whi-tw/hugo-startpage-theme", + "demo_url": "https://themes.gohugo.io/theme/hugo-startpage-theme/", + "stars": 19, + "forks": 8, + "open_issues": 2, + "last_commit": "2018-07-04T20:48:29Z", + "created_at": "2018-04-23T09:40:29Z", + "description": "Hugo start page theme, link listing built from yaml", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/tnwhitwell-hugo-startpage-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tnwhitwell-hugo-startpage-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tnwhitwell-hugo-startpage-theme-2x.jpg" } }, - "whoan-vuepress-theme-canvas-master": { - "theme_key": "whoan-vuepress-theme-canvas-master", + "whoan-vuepress-theme-canvas": { + "theme_key": "whoan-vuepress-theme-canvas", "file": "vuepress-theme-canvas.md", "name": "vuepress-theme-canvas", "title": "Vuepress Canvas", "github_username": "whoan", "repo": "whoan/vuepress-theme-canvas", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/whoan/vuepress-theme-canvas", "demo_url": "https://whoan.me/", - "stars": 24, - "forks": 2, - "open_issues": 1, - "last_commit": "2020-12-15T10:38:58Z", + "stars": 23, + "forks": 3, + "open_issues": 0, + "last_commit": "2022-12-09T08:49:11Z", "created_at": "2018-05-09T06:14:00Z", - "description": ":pencil2: Vuepress custom theme for blogging. See my blog as an example!", - "stale": false, + "description": ":pencil2: Vuepress custom theme for blogging", "images": { - "hires": "https://www.jamstackthemes.dev/capture/whoan-vuepress-theme-canvas-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/whoan-vuepress-theme-canvas-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/whoan-vuepress-theme-canvas-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/whoan-vuepress-theme-canvas.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/whoan-vuepress-theme-canvas.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/whoan-vuepress-theme-canvas-2x.jpg" } }, - "whoisryosuke-gatsby-documentation-starter-master": { - "theme_key": "whoisryosuke-gatsby-documentation-starter-master", + "whoisryosuke-gatsby-documentation-starter": { + "theme_key": "whoisryosuke-gatsby-documentation-starter", "file": "gatsby-documentation-starter.md", "name": "gatsby-documentation-starter", "title": "Gatsby Documentation Starter", "github_username": "whoisryosuke", "repo": "whoisryosuke/gatsby-documentation-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/whoisryosuke/gatsby-documentation-starter", "demo_url": "https://gatsby-documentation-starter.netlify.com/", - "stars": 89, - "forks": 12, - "open_issues": 3, + "stars": 91, + "forks": 13, + "open_issues": 5, "last_commit": "2018-09-24T16:29:50Z", "created_at": "2018-09-21T00:04:42Z", "description": "Automatically generate docs for React components using MDX, react-docgen, and GatsbyJS", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/whoisryosuke-gatsby-documentation-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/whoisryosuke-gatsby-documentation-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/whoisryosuke-gatsby-documentation-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/whoisryosuke-gatsby-documentation-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/whoisryosuke-gatsby-documentation-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/whoisryosuke-gatsby-documentation-starter-2x.jpg" } }, - "wild-flame-jekyll-simple-master": { - "theme_key": "wild-flame-jekyll-simple-master", + "wild-flame-jekyll-simple": { + "theme_key": "wild-flame-jekyll-simple", "file": "jekyll-simple.md", "name": "jekyll-simple", "title": "jekyll-simple", "github_username": "wild-flame", "repo": "wild-flame/jekyll-simple", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/wild-flame/jekyll-simple", "demo_url": "https://wild-flame.github.io/jekyll-simple", - "stars": 127, - "forks": 138, - "open_issues": 7, + "stars": 149, + "forks": 144, + "open_issues": 5, "last_commit": "2019-02-27T15:48:27Z", "created_at": "2016-06-28T03:38:47Z", "description": "a simple jekyll theme", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/wild-flame-jekyll-simple-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wild-flame-jekyll-simple-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wild-flame-jekyll-simple-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/wild-flame-jekyll-simple.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wild-flame-jekyll-simple.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wild-flame-jekyll-simple-2x.jpg" } }, - "wildhaber-gohugo-amp-develop": { - "theme_key": "wildhaber-gohugo-amp-develop", + "wildhaber-gohugo-amp": { + "theme_key": "wildhaber-gohugo-amp", "file": "gohugo-amp.md", "name": "gohugo-amp", "title": "Gohugo Amp", "github_username": "wildhaber", "repo": "wildhaber/gohugo-amp", "branch": "develop", + "default_branch": "develop", "github_url": "https://github.com/wildhaber/gohugo-amp", "demo_url": "https://gohugo-amp.gohugohq.com/", - "stars": 203, - "forks": 60, + "stars": 222, + "forks": 61, "open_issues": 6, "last_commit": "2018-07-04T20:38:41Z", "created_at": "2016-11-13T01:26:33Z", "description": "⚡ AMP starter theme for gohugo https://gohugo-amp.gohugohq.com", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/wildhaber-gohugo-amp-develop.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wildhaber-gohugo-amp-develop.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wildhaber-gohugo-amp-develop-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/wildhaber-gohugo-amp.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wildhaber-gohugo-amp.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wildhaber-gohugo-amp-2x.jpg" } }, - "wileybaba-hugo-theme-robotico-master": { - "theme_key": "wileybaba-hugo-theme-robotico-master", + "wileybaba-hugo-theme-robotico": { + "theme_key": "wileybaba-hugo-theme-robotico", "file": "hugo-theme-robotico.md", "name": "hugo-theme-robotico", "title": "Robotico", "github_username": "wileybaba", "repo": "wileybaba/hugo-theme-robotico", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/wileybaba/hugo-theme-robotico", "demo_url": "https://themes.gohugo.io/theme/hugo-theme-robotico/", "stars": 4, @@ -23073,895 +28743,1148 @@ "last_commit": "2019-01-28T02:53:38Z", "created_at": "2018-10-31T06:02:08Z", "description": "A minimal hugo theme based on Ala Geek", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/wileybaba-hugo-theme-robotico-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wileybaba-hugo-theme-robotico-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wileybaba-hugo-theme-robotico-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/wileybaba-hugo-theme-robotico.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wileybaba-hugo-theme-robotico.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wileybaba-hugo-theme-robotico-2x.jpg" } }, - "willcode4food-gatsby-starter-paperbase-master": { - "theme_key": "willcode4food-gatsby-starter-paperbase-master", + "willcode4food-gatsby-starter-paperbase": { + "theme_key": "willcode4food-gatsby-starter-paperbase", "file": "gatsby-starter-paperbase.md", "name": "gatsby-starter-paperbase", "title": "Gatsby Starter Paperbase", "github_username": "willcode4food", "repo": "willcode4food/gatsby-starter-paperbase", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/willcode4food/gatsby-starter-paperbase", "demo_url": "https://gatsby-starter-paperbase.netlify.com/", - "stars": 43, - "forks": 11, - "open_issues": 9, + "stars": 44, + "forks": 12, + "open_issues": 25, "last_commit": "2020-03-09T13:04:44Z", "created_at": "2019-03-26T17:33:45Z", "description": "A Gatsby starter that implements the Paperbase Premium Theme from Material UI", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/willcode4food-gatsby-starter-paperbase-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/willcode4food-gatsby-starter-paperbase-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/willcode4food-gatsby-starter-paperbase-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/willcode4food-gatsby-starter-paperbase.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/willcode4food-gatsby-starter-paperbase.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/willcode4food-gatsby-starter-paperbase-2x.jpg" } }, - "williamcanin-typing-jekyll-template-master": { - "theme_key": "williamcanin-typing-jekyll-template-master", + "williamcanin-typing-jekyll-template": { + "theme_key": "williamcanin-typing-jekyll-template", "file": "jekyll-typing-theme.md", "name": "typing-jekyll-template", "title": "Typing", "github_username": "williamcanin", "repo": "williamcanin/typing-jekyll-template", - "branch": "master", + "branch": "main", + "default_branch": "main", "github_url": "https://github.com/williamcanin/typing-jekyll-template", "demo_url": "https://williamcanin.github.io/typing-jekyll-template/", - "stars": 73, - "forks": 49, - "open_issues": 0, - "last_commit": "2020-05-09T17:54:38Z", + "stars": 87, + "forks": 52, + "open_issues": 2, + "last_commit": "2022-07-27T06:55:31Z", "created_at": "2017-04-20T17:36:16Z", "description": ":syringe: Typing, is a template for Jekyll built especially for those who want to have a blog and pages quickly and lightly.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/williamcanin-typing-jekyll-template-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/williamcanin-typing-jekyll-template-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/williamcanin-typing-jekyll-template-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/williamcanin-typing-jekyll-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/williamcanin-typing-jekyll-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/williamcanin-typing-jekyll-template-2x.jpg" } }, - "willianjusten-cards-jekyll-template-gh-pages": { - "theme_key": "willianjusten-cards-jekyll-template-gh-pages", + "willianjusten-cards-jekyll-template": { + "theme_key": "willianjusten-cards-jekyll-template", "file": "jekyll-cards-theme.md", "name": "cards-jekyll-template", "title": "Cards", "github_username": "willianjusten", "repo": "willianjusten/cards-jekyll-template", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/willianjusten/cards-jekyll-template", "demo_url": "https://willianjusten.github.io/cards-jekyll-template/", - "stars": 303, - "forks": 284, - "open_issues": 5, + "stars": 312, + "forks": 283, + "open_issues": 6, "last_commit": "2020-09-30T16:30:55Z", "created_at": "2016-05-09T00:02:43Z", "description": "A simple Jekyll Template Card Based.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/willianjusten-cards-jekyll-template-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/willianjusten-cards-jekyll-template-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/willianjusten-cards-jekyll-template-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/willianjusten-cards-jekyll-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/willianjusten-cards-jekyll-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/willianjusten-cards-jekyll-template-2x.jpg" } }, - "willianjusten-will-jekyll-template-gh-pages": { - "theme_key": "willianjusten-will-jekyll-template-gh-pages", + "willianjusten-will-jekyll-template": { + "theme_key": "willianjusten-will-jekyll-template", "file": "will-jekyll-template.md", "name": "will-jekyll-template", "title": "Will", "github_username": "willianjusten", "repo": "willianjusten/will-jekyll-template", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/willianjusten/will-jekyll-template", "demo_url": "https://willianjusten.github.io/will-jekyll-template/", - "stars": 361, - "forks": 430, + "stars": 375, + "forks": 438, "open_issues": 4, "last_commit": "2020-10-05T15:31:49Z", "created_at": "2015-08-04T06:35:46Z", "description": "A simple Jekyll theme.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/willianjusten-will-jekyll-template-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/willianjusten-will-jekyll-template-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/willianjusten-will-jekyll-template-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/willianjusten-will-jekyll-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/willianjusten-will-jekyll-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/willianjusten-will-jekyll-template-2x.jpg" } }, - "willjw3-gatsby-starter-developer-diary-master": { - "theme_key": "willjw3-gatsby-starter-developer-diary-master", + "willjw3-gatsby-starter-developer-diary": { + "theme_key": "willjw3-gatsby-starter-developer-diary", "file": "gatsby-starter-developer-diary.md", "name": "gatsby-starter-developer-diary", "title": "Gatsby Developer Diary", "github_username": "willjw3", "repo": "willjw3/gatsby-starter-developer-diary", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/willjw3/gatsby-starter-developer-diary", "demo_url": "https://developer-diary.netlify.com/", - "stars": 58, - "forks": 22, - "open_issues": 3, + "stars": 77, + "forks": 27, + "open_issues": 21, "last_commit": "2020-11-23T02:00:30Z", "created_at": "2019-05-27T14:26:21Z", "description": "An official Gatsby blog template designed for web developers. Blazing fast, it includes beautful web developer topic tags and social-media links", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/willjw3-gatsby-starter-developer-diary-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/willjw3-gatsby-starter-developer-diary-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/willjw3-gatsby-starter-developer-diary-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/willjw3-gatsby-starter-developer-diary.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/willjw3-gatsby-starter-developer-diary.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/willjw3-gatsby-starter-developer-diary-2x.jpg" } }, - "windedge-gatsby-tailwind-serif-master": { - "theme_key": "windedge-gatsby-tailwind-serif-master", + "windedge-gatsby-tailwind-serif": { + "theme_key": "windedge-gatsby-tailwind-serif", "file": "gatsby-tailwind-serif.md", "name": "gatsby-tailwind-serif", "title": "Gatsby Tailwind Serif", "github_username": "windedge", "repo": "windedge/gatsby-tailwind-serif", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/windedge/gatsby-tailwind-serif", "demo_url": "https://gatsby-tailwind-serif.netlify.com/", - "stars": 21, - "forks": 17, - "open_issues": 3, - "last_commit": "2020-12-17T00:35:58Z", + "stars": 29, + "forks": 20, + "open_issues": 16, + "last_commit": "2022-04-09T16:18:12Z", "created_at": "2019-07-08T15:05:18Z", "description": "A Gatsby theme based on gatsby-serif-theme, rewrite with Tailwind CSS.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/windedge-gatsby-tailwind-serif-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/windedge-gatsby-tailwind-serif-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/windedge-gatsby-tailwind-serif-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/windedge-gatsby-tailwind-serif.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/windedge-gatsby-tailwind-serif.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/windedge-gatsby-tailwind-serif-2x.jpg" } }, - "wiredcraft-carte-gh-pages": { - "theme_key": "wiredcraft-carte-gh-pages", + "wiredcraft-carte": { + "theme_key": "wiredcraft-carte", "file": "jekyll-carte.md", "name": "carte", "title": "Carte", "github_username": "Wiredcraft", "repo": "Wiredcraft/carte", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/Wiredcraft/carte", "demo_url": "https://wiredcraft.github.io/carte/", - "stars": 698, - "forks": 231, + "stars": 730, + "forks": 249, "open_issues": 7, "last_commit": "2020-05-02T02:44:30Z", "created_at": "2012-12-26T11:06:28Z", "description": "Simple Jekyll-based documentation site for APIs.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/wiredcraft-carte-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wiredcraft-carte-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wiredcraft-carte-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/wiredcraft-carte.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wiredcraft-carte.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wiredcraft-carte-2x.jpg" + } + }, + "wjc9011-renge": { + "theme_key": "billyfish152-renge", + "file": "jekyll-Renge.md", + "name": "Renge", + "title": "Renge", + "github_username": "wjc9011", + "repo": "wjc9011/Renge", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/wjc9011/Renge", + "demo_url": "https://junchaowang.com", + "stars": 14, + "forks": 6, + "open_issues": 0, + "last_commit": "2016-06-22T23:18:13Z", + "created_at": "2016-06-14T22:25:56Z", + "description": "A Jekyll theme by Junchao", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/billyfish152-renge.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/billyfish152-renge.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/billyfish152-renge-2x.jpg" } }, - "wkocjan-gatsby-airtable-listing-master": { - "theme_key": "wkocjan-gatsby-airtable-listing-master", + "wkocjan-gatsby-airtable-listing": { + "theme_key": "wkocjan-gatsby-airtable-listing", "file": "gatsby-airtable-listing.md", "name": "gatsby-airtable-listing", "title": "Airtable listing theme for Gatsby", "github_username": "wkocjan", "repo": "wkocjan/gatsby-airtable-listing", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/wkocjan/gatsby-airtable-listing", "demo_url": "https://gatsby-airtable-listing.netlify.com/", - "stars": 42, - "forks": 24, - "open_issues": 0, + "stars": 78, + "forks": 40, + "open_issues": 13, "last_commit": "2020-12-16T10:33:17Z", "created_at": "2020-03-13T11:06:07Z", "description": "Airtable theme for Gatsby", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/wkocjan-gatsby-airtable-listing-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wkocjan-gatsby-airtable-listing-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wkocjan-gatsby-airtable-listing-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/wkocjan-gatsby-airtable-listing.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wkocjan-gatsby-airtable-listing.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wkocjan-gatsby-airtable-listing-2x.jpg" } }, - "wkocjan-gatsby-contentful-portfolio-master": { - "theme_key": "wkocjan-gatsby-contentful-portfolio-master", + "wkocjan-gatsby-contentful-portfolio": { + "theme_key": "wkocjan-gatsby-contentful-portfolio", "file": "gatsby-contentful-portfolio.md", "name": "gatsby-contentful-portfolio", "title": "Portfolio theme for Gatsby", "github_username": "wkocjan", "repo": "wkocjan/gatsby-contentful-portfolio", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/wkocjan/gatsby-contentful-portfolio", "demo_url": "https://gatsby-contentful-portfolio.netlify.com/", - "stars": 62, - "forks": 26, - "open_issues": 0, - "last_commit": "2020-05-04T15:14:54Z", + "stars": 107, + "forks": 73, + "open_issues": 4, + "last_commit": "2021-02-22T08:37:41Z", "created_at": "2020-03-11T20:50:55Z", "description": "Portfolio theme for Gatsby", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/wkocjan-gatsby-contentful-portfolio-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wkocjan-gatsby-contentful-portfolio-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wkocjan-gatsby-contentful-portfolio-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/wkocjan-gatsby-contentful-portfolio.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wkocjan-gatsby-contentful-portfolio.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wkocjan-gatsby-contentful-portfolio-2x.jpg" } }, - "wkocjan-gatsby-theme-intro-master": { - "theme_key": "wkocjan-gatsby-theme-intro-master", + "wkocjan-gatsby-theme-intro": { + "theme_key": "wkocjan-gatsby-theme-intro", "file": "gatsby-theme-intro.md", "name": "gatsby-theme-intro", "title": "Intro.", "github_username": "wkocjan", "repo": "wkocjan/gatsby-theme-intro", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/wkocjan/gatsby-theme-intro", "demo_url": "https://weeby.studio/intro/preview", - "stars": 126, - "forks": 55, - "open_issues": 2, - "last_commit": "2020-08-13T10:37:31Z", + "stars": 303, + "forks": 152, + "open_issues": 12, + "last_commit": "2021-05-05T15:50:31Z", "created_at": "2020-04-10T09:58:21Z", "description": "Personal branding theme for developers", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/wkocjan-gatsby-theme-intro-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wkocjan-gatsby-theme-intro-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wkocjan-gatsby-theme-intro-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/wkocjan-gatsby-theme-intro.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wkocjan-gatsby-theme-intro.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wkocjan-gatsby-theme-intro-2x.jpg" + } + }, + "wowchemy-wowchemy-hugo-modules": { + "theme_key": "gcushen-hugo-academic", + "file": "hugo-academic.md", + "name": "wowchemy-hugo-modules", + "title": "Academic", + "github_username": "wowchemy", + "repo": "wowchemy/wowchemy-hugo-modules", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/wowchemy/wowchemy-hugo-modules", + "demo_url": "https://academic-demo.netlify.com/", + "stars": 5756, + "forks": 2495, + "open_issues": 43, + "last_commit": "2021-07-25T20:21:42Z", + "created_at": "2016-04-26T22:09:15Z", + "description": "🔥 The website builder for Hugo. No code, build with widgets! 创建在线课程,学术简历或初创网站。", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/gcushen-hugo-academic.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gcushen-hugo-academic.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gcushen-hugo-academic-2x.jpg" + } + }, + "wowchemy-wowchemy-hugo-themes": { + "theme_key": "gcushen-hugo-academic", + "file": "hugo-academic.md", + "name": "wowchemy-hugo-themes", + "title": "Academic", + "github_username": "wowchemy", + "repo": "wowchemy/wowchemy-hugo-themes", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/wowchemy/wowchemy-hugo-themes", + "demo_url": "https://academic-demo.netlify.com/", + "stars": 6944, + "forks": 2776, + "open_issues": 16, + "last_commit": "2023-01-06T13:44:35Z", + "created_at": "2016-04-26T22:09:15Z", + "description": "🔥 Hugo website builder, Hugo themes & Hugo CMS. No code, easily build with blocks! 创建在线课程,学术简历或初创网站。#OpenScience", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/gcushen-hugo-academic.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/gcushen-hugo-academic.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/gcushen-hugo-academic-2x.jpg" } }, - "wowthemesnet-affiliates-jekyll-theme-master": { - "theme_key": "wowthemesnet-affiliates-jekyll-theme-master", + "wowthemesnet-affiliates-jekyll-theme": { + "theme_key": "wowthemesnet-affiliates-jekyll-theme", "file": "affiliates-jekyll-theme.md", "name": "affiliates-jekyll-theme", "title": "Affiliates Jekyll", "github_username": "wowthemesnet", "repo": "wowthemesnet/affiliates-jekyll-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/wowthemesnet/affiliates-jekyll-theme", "demo_url": "https://wowthemesnet.github.io/affiliates-jekyll-theme/", - "stars": 140, - "forks": 188, - "open_issues": 4, - "last_commit": "2020-03-02T14:43:37Z", + "stars": 246, + "forks": 309, + "open_issues": 5, + "last_commit": "2021-10-31T15:32:41Z", "created_at": "2018-02-01T16:37:57Z", "description": "Affiliates - Jekyll Blogging Theme for Affiliate Marketers", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/wowthemesnet-affiliates-jekyll-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wowthemesnet-affiliates-jekyll-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wowthemesnet-affiliates-jekyll-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/wowthemesnet-affiliates-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wowthemesnet-affiliates-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wowthemesnet-affiliates-jekyll-theme-2x.jpg" } }, - "wowthemesnet-jekyll-theme-memoirs-master": { - "theme_key": "wowthemesnet-jekyll-theme-memoirs-master", + "wowthemesnet-jekyll-theme-memoirs": { + "theme_key": "wowthemesnet-jekyll-theme-memoirs", "file": "jekyll-memoirs.md", "name": "jekyll-theme-memoirs", "title": "Memoirs", "github_username": "wowthemesnet", "repo": "wowthemesnet/jekyll-theme-memoirs", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/wowthemesnet/jekyll-theme-memoirs", "demo_url": "https://wowthemesnet.github.io/jekyll-theme-memoirs", - "stars": 138, - "forks": 165, - "open_issues": 12, - "last_commit": "2020-05-06T13:37:54Z", + "stars": 298, + "forks": 307, + "open_issues": 17, + "last_commit": "2021-10-31T15:32:15Z", "created_at": "2020-04-04T17:09:06Z", "description": "Memoirs is a free minimalist Jekyll theme for those who love the beauty of simplicity.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/wowthemesnet-jekyll-theme-memoirs-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wowthemesnet-jekyll-theme-memoirs-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wowthemesnet-jekyll-theme-memoirs-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/wowthemesnet-jekyll-theme-memoirs.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wowthemesnet-jekyll-theme-memoirs.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wowthemesnet-jekyll-theme-memoirs-2x.jpg" } }, - "wowthemesnet-mediumish-theme-jekyll-master": { - "theme_key": "wowthemesnet-mediumish-theme-jekyll-master", + "wowthemesnet-mediumish-theme-jekyll": { + "theme_key": "wowthemesnet-mediumish-theme-jekyll", "file": "mediumish-theme-jekyll.md", "name": "mediumish-theme-jekyll", "title": "Mediumish Theme Jekyll", "github_username": "wowthemesnet", "repo": "wowthemesnet/mediumish-theme-jekyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/wowthemesnet/mediumish-theme-jekyll", "demo_url": "https://wowthemesnet.github.io/mediumish-theme-jekyll/", - "stars": 726, - "forks": 786, - "open_issues": 42, - "last_commit": "2020-03-02T14:41:45Z", + "stars": 1089, + "forks": 1251, + "open_issues": 62, + "last_commit": "2021-10-31T15:31:51Z", "created_at": "2018-01-12T23:01:51Z", "description": "Jekyll Template - Mediumish", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/wowthemesnet-mediumish-theme-jekyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wowthemesnet-mediumish-theme-jekyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wowthemesnet-mediumish-theme-jekyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/wowthemesnet-mediumish-theme-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wowthemesnet-mediumish-theme-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wowthemesnet-mediumish-theme-jekyll-2x.jpg" } }, - "wowthemesnet-mediumish-vuepress-blog-theme-master": { - "theme_key": "wowthemesnet-mediumish-vuepress-blog-theme-master", + "wowthemesnet-mediumish-vuepress-blog-theme": { + "theme_key": "wowthemesnet-mediumish-vuepress-blog-theme", "file": "vuepress-theme-mediumish.md", "name": "mediumish-vuepress-blog-theme", "title": "Mediumish", "github_username": "wowthemesnet", "repo": "wowthemesnet/mediumish-vuepress-blog-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/wowthemesnet/mediumish-vuepress-blog-theme", "demo_url": "https://wowthemesnet.github.io/vuepress-theme-mediumish/", - "stars": 47, - "forks": 29, - "open_issues": 6, - "last_commit": "2020-03-19T11:56:09Z", + "stars": 99, + "forks": 56, + "open_issues": 9, + "last_commit": "2021-10-31T15:27:04Z", "created_at": "2020-03-01T19:54:03Z", "description": "VuePress Medimish Theme - Free Theme for VuePress Blog", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/wowthemesnet-mediumish-vuepress-blog-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wowthemesnet-mediumish-vuepress-blog-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wowthemesnet-mediumish-vuepress-blog-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/wowthemesnet-mediumish-vuepress-blog-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wowthemesnet-mediumish-vuepress-blog-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wowthemesnet-mediumish-vuepress-blog-theme-2x.jpg" } }, - "wowthemesnet-mundana-theme-jekyll-master": { - "theme_key": "wowthemesnet-mundana-theme-jekyll-master", + "wowthemesnet-mundana-theme-jekyll": { + "theme_key": "wowthemesnet-mundana-theme-jekyll", "file": "jekyll-theme-mundana.md", "name": "mundana-theme-jekyll", "title": "Mundana Jekyll Theme", "github_username": "wowthemesnet", "repo": "wowthemesnet/mundana-theme-jekyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/wowthemesnet/mundana-theme-jekyll", "demo_url": "https://wowthemesnet.github.io/mundana-theme-jekyll/", - "stars": 373, - "forks": 469, - "open_issues": 26, - "last_commit": "2020-03-02T14:42:47Z", + "stars": 596, + "forks": 666, + "open_issues": 35, + "last_commit": "2021-10-31T15:33:14Z", "created_at": "2019-02-08T19:25:42Z", "description": "Mundana is a free Jekyll theme, Medium styled.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/wowthemesnet-mundana-theme-jekyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wowthemesnet-mundana-theme-jekyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wowthemesnet-mundana-theme-jekyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/wowthemesnet-mundana-theme-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wowthemesnet-mundana-theme-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wowthemesnet-mundana-theme-jekyll-2x.jpg" + } + }, + "wrappixel-flexy-admin-nextjs-free": { + "theme_key": "wrappixel-flexy-admin-nextjs-free", + "file": "Flexy-mui-free-nextjs-admin.md", + "name": "Flexy-admin-Nextjs-Free", + "title": "Flexy Material Ui Admin Template", + "github_username": "wrappixel", + "repo": "wrappixel/Flexy-admin-Nextjs-Free", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/wrappixel/Flexy-admin-Nextjs-Free", + "demo_url": "https://flexy-admin-nextjs-free.vercel.app/", + "stars": 11, + "forks": 8, + "open_issues": 1, + "last_commit": "2022-07-18T05:55:19Z", + "created_at": "2022-01-20T09:54:11Z", + "description": "Looking for more Free Next js templates? click the below Link to get More free Templates", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/wrappixel-flexy-admin-nextjs-free.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wrappixel-flexy-admin-nextjs-free.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wrappixel-flexy-admin-nextjs-free-2x.jpg" + } + }, + "wrappixel-materialpro-nuxtjs-free": { + "theme_key": "wrappixel-materialpro-nuxtjs-free", + "file": "materialpro-free-nuxtjs-template", + "name": "materialpro-nuxtjs-free", + "title": "MaterialPro Free NuxtJs Admin Template", + "github_username": "wrappixel", + "repo": "wrappixel/materialpro-nuxtjs-free", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/wrappixel/materialpro-nuxtjs-free", + "demo_url": "https://materialpro-free-nuxtjs.netlify.app/", + "stars": 13, + "forks": 2, + "open_issues": 0, + "last_commit": "2022-07-26T09:39:43Z", + "created_at": "2022-07-16T12:15:34Z", + "description": "Free NuxtJs 3 + Vuetify3 Admin Dashboard Template", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/wrappixel-materialpro-nuxtjs-free.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wrappixel-materialpro-nuxtjs-free.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wrappixel-materialpro-nuxtjs-free-2x.jpg" + } + }, + "wrappixel-xtreme-admin-nextjs-free": { + "theme_key": "wrappixel-xtreme-admin-nextjs-free", + "file": "Xtreme-free-nextjs-admin.md", + "name": "xtreme-admin-nextjs-free", + "title": "Xtreme NextJs Free Admin Template", + "github_username": "wrappixel", + "repo": "wrappixel/xtreme-admin-nextjs-free", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/wrappixel/xtreme-admin-nextjs-free", + "demo_url": "https://xtreme-admin-nextjs-free.vercel.app/", + "stars": 13, + "forks": 7, + "open_issues": 0, + "last_commit": "2022-05-30T06:31:52Z", + "created_at": "2022-01-17T10:33:07Z", + "description": "Free next js admin template.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/wrappixel-xtreme-admin-nextjs-free.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wrappixel-xtreme-admin-nextjs-free.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wrappixel-xtreme-admin-nextjs-free-2x.jpg" } }, - "wu-kan-wu-kan.github.io-master": { - "theme_key": "wu-kan-wu-kan.github.io-master", + "wu-kan-wu-kan.github.io": { + "theme_key": "wu-kan-wu-kan.github.io", "file": "jekyll-theme-wu-kan.md", "name": "wu-kan.github.io", "title": "wu-kan", "github_username": "wu-kan", "repo": "wu-kan/wu-kan.github.io", - "branch": "master", + "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/wu-kan/wu-kan.github.io", "demo_url": "https://wu-kan.github.io", - "stars": 167, - "forks": 305, + "stars": 211, + "forks": 346, "open_issues": 1, - "last_commit": "2020-12-25T09:18:32Z", + "last_commit": "2022-12-24T07:54:45Z", "created_at": "2019-02-22T21:33:42Z", "description": ":sparkles: my homepage & template for jekyll-theme-WuK", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/wu-kan-wu-kan.github.io-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wu-kan-wu-kan.github.io-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wu-kan-wu-kan.github.io-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/wu-kan-wu-kan.github.io.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/wu-kan-wu-kan.github.io.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/wu-kan-wu-kan.github.io-2x.jpg" } }, - "xaprb-story-master": { - "theme_key": "xaprb-story-master", + "xaprb-story": { + "theme_key": "xaprb-story", "file": "story.md", "name": "story", "title": "Story", "github_username": "xaprb", "repo": "xaprb/story", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/xaprb/story", "demo_url": "https://story.xaprb.com/", - "stars": 132, - "forks": 48, - "open_issues": 42, - "last_commit": "2019-06-03T13:58:30Z", + "stars": 156, + "forks": 59, + "open_issues": 0, + "last_commit": "2022-03-22T14:49:12Z", "created_at": "2018-04-14T23:17:41Z", "description": "Beautiful responsive Hugo blog theme focused on simplicity and elegance, with many extra features including presentations, math typesetting, music notation, and search.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/xaprb-story-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/xaprb-story-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/xaprb-story-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/xaprb-story.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/xaprb-story.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/xaprb-story-2x.jpg" } }, - "xaviablaza-hugo-lodi-theme-master": { - "theme_key": "xaviablaza-hugo-lodi-theme-master", + "xaviablaza-hugo-lodi-theme": { + "theme_key": "xaviablaza-hugo-lodi-theme", "file": "hugo-lodi-theme.md", "name": "hugo-lodi-theme", "title": "Hugo Lodi Theme", "github_username": "xaviablaza", "repo": "xaviablaza/hugo-lodi-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/xaviablaza/hugo-lodi-theme", "demo_url": "https://themes.gohugo.io/theme/hugo-lodi-theme/", - "stars": 35, - "forks": 34, + "stars": 44, + "forks": 35, "open_issues": 0, "last_commit": "2019-02-15T05:08:35Z", "created_at": "2017-10-15T09:52:43Z", "description": "Lodi theme for Hugo", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/xaviablaza-hugo-lodi-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/xaviablaza-hugo-lodi-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/xaviablaza-hugo-lodi-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/xaviablaza-hugo-lodi-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/xaviablaza-hugo-lodi-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/xaviablaza-hugo-lodi-theme-2x.jpg" } }, - "xdesro-nuxt-netlify-cms-starter-master": { - "theme_key": "xdesro-nuxt-netlify-cms-starter-master", + "xdesro-nuxt-netlify-cms-starter": { + "theme_key": "xdesro-nuxt-netlify-cms-starter", "file": "nuxt-starter-netlify-cms.md", "name": "nuxt-netlify-cms-starter", "title": "Nuxt Netlify CMS Boilerplate", "github_username": "xdesro", "repo": "xdesro/nuxt-netlify-cms-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/xdesro/nuxt-netlify-cms-starter", "demo_url": "https://nuxt-netlify-cms-starter.netlify.com", - "stars": 55, - "forks": 19, - "open_issues": 2, - "last_commit": "2021-01-06T16:17:06Z", + "stars": 67, + "forks": 21, + "open_issues": 17, + "last_commit": "2021-04-19T16:21:58Z", "created_at": "2019-08-27T17:59:19Z", "description": "🏞 A very spartan starter for using Nuxt.js with Netlify CMS.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/xdesro-nuxt-netlify-cms-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/xdesro-nuxt-netlify-cms-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/xdesro-nuxt-netlify-cms-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/xdesro-nuxt-netlify-cms-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/xdesro-nuxt-netlify-cms-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/xdesro-nuxt-netlify-cms-starter-2x.jpg" } }, - "xianmin-hugo-theme-jane-master": { - "theme_key": "xianmin-hugo-theme-jane-master", + "xianmin-hugo-theme-jane": { + "theme_key": "xianmin-hugo-theme-jane", "file": "hugo-theme-jane.md", "name": "hugo-theme-jane", "title": "Jane", "github_username": "xianmin", "repo": "xianmin/hugo-theme-jane", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/xianmin/hugo-theme-jane", "demo_url": "https://www.xianmin.org/hugo-theme-jane/", - "stars": 643, - "forks": 230, - "open_issues": 60, - "last_commit": "2021-01-08T23:54:32Z", + "stars": 812, + "forks": 271, + "open_issues": 69, + "last_commit": "2022-12-22T00:55:39Z", "created_at": "2018-03-06T11:48:50Z", "description": "A readable & concise theme for Hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/xianmin-hugo-theme-jane-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/xianmin-hugo-theme-jane-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/xianmin-hugo-theme-jane-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/xianmin-hugo-theme-jane.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/xianmin-hugo-theme-jane.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/xianmin-hugo-theme-jane-2x.jpg" } }, - "xukimseven-hardcandy-jekyll-master": { - "theme_key": "xukimseven-hardcandy-jekyll-master", + "xukimseven-hardcandy-jekyll": { + "theme_key": "xukimseven-hardcandy-jekyll", "file": "jekyll-theme-HardCandy.md", "name": "HardCandy-Jekyll", "title": "HardCandy-Jekyll", "github_username": "xukimseven", "repo": "xukimseven/HardCandy-Jekyll", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/xukimseven/HardCandy-Jekyll", "demo_url": "https://ww1.xseven.me/", - "stars": 198, - "forks": 136, - "open_issues": 15, + "stars": 210, + "forks": 145, + "open_issues": 16, "last_commit": "2019-05-29T10:48:24Z", "created_at": "2018-05-28T12:09:01Z", "description": "一款清新 糖果色🍬 的 ‘Jekyll’ 主题。A candy-colored 🍬 ‘Jekyll’ theme.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/xukimseven-hardcandy-jekyll-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/xukimseven-hardcandy-jekyll-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/xukimseven-hardcandy-jekyll-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/xukimseven-hardcandy-jekyll.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/xukimseven-hardcandy-jekyll.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/xukimseven-hardcandy-jekyll-2x.jpg" } }, - "xydac-xylo-gatsby-bulma-starter-master": { - "theme_key": "xydac-xylo-gatsby-bulma-starter-master", + "xydac-xylo-gatsby-bulma-starter": { + "theme_key": "xydac-xylo-gatsby-bulma-starter", "file": "gatsby-xylo-bulma-starter.md", "name": "xylo-gatsby-bulma-starter", "title": "Gatsby Xylo Bulma", "github_username": "xydac", "repo": "xydac/xylo-gatsby-bulma-starter", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/xydac/xylo-gatsby-bulma-starter", "demo_url": "https://xylo-gatsby-bulma-starter.netlify.com/", "stars": 5, - "forks": 2, + "forks": 1, "open_issues": 0, "last_commit": "2018-10-07T16:32:10Z", "created_at": "2018-10-07T03:53:26Z", "description": "Gatsby v2 Starter with Bulma based on default starter.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/xydac-xylo-gatsby-bulma-starter-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/xydac-xylo-gatsby-bulma-starter-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/xydac-xylo-gatsby-bulma-starter-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/xydac-xylo-gatsby-bulma-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/xydac-xylo-gatsby-bulma-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/xydac-xylo-gatsby-bulma-starter-2x.jpg" } }, - "xzya-hugo-material-blog-master": { - "theme_key": "xzya-hugo-material-blog-master", + "xzya-hugo-material-blog": { + "theme_key": "xzya-hugo-material-blog", "file": "hugo-material-blog.md", "name": "hugo-material-blog", "title": "Hugo Material Blog", "github_username": "Xzya", "repo": "Xzya/hugo-material-blog", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Xzya/hugo-material-blog", "demo_url": "https://themes.gohugo.io/theme/hugo-material-blog/", - "stars": 22, - "forks": 18, + "stars": 23, + "forks": 21, "open_issues": 2, "last_commit": "2018-11-04T10:34:51Z", "created_at": "2018-04-21T15:43:28Z", "description": "Clean Material Design blog theme for Hugo.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/xzya-hugo-material-blog-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/xzya-hugo-material-blog-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/xzya-hugo-material-blog-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/xzya-hugo-material-blog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/xzya-hugo-material-blog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/xzya-hugo-material-blog-2x.jpg" } }, - "y7kim-agency-jekyll-theme-gh-pages": { - "theme_key": "y7kim-agency-jekyll-theme-gh-pages", + "y7kim-agency-jekyll-theme": { + "theme_key": "y7kim-agency-jekyll-theme", "file": "agency-jekyll-theme.md", "name": "agency-jekyll-theme", "title": "Agency Jekyll", "github_username": "y7kim", "repo": "y7kim/agency-jekyll-theme", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/y7kim/agency-jekyll-theme", "demo_url": "https://y7kim.github.io/agency-jekyll-theme/", - "stars": 707, - "forks": 1493, - "open_issues": 25, + "stars": 799, + "forks": 1781, + "open_issues": 30, "last_commit": "2017-02-27T18:44:56Z", "created_at": "2014-08-20T19:54:22Z", "description": "Agency Theme for Jekyll", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/y7kim-agency-jekyll-theme-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/y7kim-agency-jekyll-theme-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/y7kim-agency-jekyll-theme-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/y7kim-agency-jekyll-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/y7kim-agency-jekyll-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/y7kim-agency-jekyll-theme-2x.jpg" } }, - "yelog-hexo-theme-3-hexo-master": { - "theme_key": "yelog-hexo-theme-3-hexo-master", + "yelog-hexo-theme-3-hexo": { + "theme_key": "yelog-hexo-theme-3-hexo", "file": "hexo-theme-3-hexo.md", "name": "hexo-theme-3-hexo", "title": "3-Hexo", "github_username": "yelog", "repo": "yelog/hexo-theme-3-hexo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/yelog/hexo-theme-3-hexo", "demo_url": "https://yelog.org/", - "stars": 410, - "forks": 163, - "open_issues": 9, - "last_commit": "2020-12-28T16:52:37Z", + "stars": 561, + "forks": 181, + "open_issues": 21, + "last_commit": "2022-06-27T09:10:08Z", "created_at": "2017-02-05T09:26:14Z", "description": "hexo主题:三段式设计、极简、方便 Hexo theme: three-stage design", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/yelog-hexo-theme-3-hexo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yelog-hexo-theme-3-hexo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yelog-hexo-theme-3-hexo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/yelog-hexo-theme-3-hexo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yelog-hexo-theme-3-hexo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yelog-hexo-theme-3-hexo-2x.jpg" } }, - "yenyuhsuan-hexo-theme-beantech-master": { - "theme_key": "yenyuhsuan-hexo-theme-beantech-master", + "yenyuhsuan-hexo-theme-beantech": { + "theme_key": "yenyuhsuan-hexo-theme-beantech", "file": "hexo-theme-beantech.md", "name": "hexo-theme-beantech", "title": "Beantech", "github_username": "YenYuHsuan", "repo": "YenYuHsuan/hexo-theme-beantech", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/YenYuHsuan/hexo-theme-beantech", "demo_url": "https://beantech.org/", - "stars": 412, - "forks": 103, + "stars": 426, + "forks": 105, "open_issues": 19, "last_commit": "2017-09-24T04:40:20Z", "created_at": "2017-03-21T02:57:50Z", "description": ":sparkles: Ported theme of Hux Blog by Kaijun, Modified by YuHsuan :sparkles:", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/yenyuhsuan-hexo-theme-beantech-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yenyuhsuan-hexo-theme-beantech-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yenyuhsuan-hexo-theme-beantech-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/yenyuhsuan-hexo-theme-beantech.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yenyuhsuan-hexo-theme-beantech.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yenyuhsuan-hexo-theme-beantech-2x.jpg" + } + }, + "ygoex-yetty": { + "theme_key": "ygoex-yetty", + "file": "11ty-yetty.md", + "name": "yetty", + "title": "Eleventy Yetty", + "github_username": "ygoex", + "repo": "ygoex/yetty", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/ygoex/yetty", + "demo_url": "https://yetty.netlify.app/", + "stars": 42, + "forks": 12, + "open_issues": 1, + "last_commit": "2021-11-01T10:59:11Z", + "created_at": "2021-03-13T14:07:34Z", + "description": "Yet another 11ty boilerplate to start a new website with optional blog. This boilerplate is based on eleventy-base-blog et al.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/ygoex-yetty.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ygoex-yetty.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ygoex-yetty-2x.jpg" } }, - "yihui-hugo-xmag-master": { - "theme_key": "yihui-hugo-xmag-master", + "yihui-hugo-xmag": { + "theme_key": "yihui-hugo-xmag", "file": "hugo-xmag-theme.md", "name": "hugo-xmag", "title": "XMag", "github_username": "yihui", "repo": "yihui/hugo-xmag", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/yihui/hugo-xmag", "demo_url": "https://xmag.yihui.name/", - "stars": 49, - "forks": 32, - "open_issues": 8, - "last_commit": "2020-10-11T21:15:47Z", + "stars": 80, + "forks": 46, + "open_issues": 6, + "last_commit": "2022-11-09T15:05:52Z", "created_at": "2017-07-10T05:09:20Z", "description": "A minimal magazine theme for Hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/yihui-hugo-xmag-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yihui-hugo-xmag-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yihui-hugo-xmag-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/yihui-hugo-xmag.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yihui-hugo-xmag.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yihui-hugo-xmag-2x.jpg" } }, - "yihui-hugo-xmin-master": { - "theme_key": "yihui-hugo-xmin-master", + "yihui-hugo-xmin": { + "theme_key": "yihui-hugo-xmin", "file": "hugo-xmin-theme.md", "name": "hugo-xmin", "title": "XMin", "github_username": "yihui", "repo": "yihui/hugo-xmin", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/yihui/hugo-xmin", "demo_url": "https://xmin.yihui.name/", - "stars": 338, - "forks": 217, - "open_issues": 17, - "last_commit": "2020-10-16T02:04:46Z", + "stars": 532, + "forks": 293, + "open_issues": 22, + "last_commit": "2022-08-08T14:40:20Z", "created_at": "2017-06-16T04:13:22Z", "description": "eXtremely Minimal Hugo theme: about 150 lines of code in total, including HTML and CSS (with no dependencies)", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/yihui-hugo-xmin-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yihui-hugo-xmin-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yihui-hugo-xmin-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/yihui-hugo-xmin.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yihui-hugo-xmin.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yihui-hugo-xmin-2x.jpg" + } + }, + "yiichou-hugo-theme-vec": { + "theme_key": "ivanchou-hugo-theme-vec", + "file": "hugo-theme-vec.md", + "name": "hugo-theme-vec", + "title": "Vec", + "github_username": "yiichou", + "repo": "yiichou/hugo-theme-vec", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/yiichou/hugo-theme-vec", + "demo_url": "https://themes.gohugo.io/theme/hugo-theme-vec/", + "stars": 36, + "forks": 24, + "open_issues": 3, + "last_commit": "2019-01-10T12:52:57Z", + "created_at": "2016-09-08T14:50:26Z", + "description": "Vec is a minimal, clean and beautiful theme for Hugo.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/ivanchou-hugo-theme-vec.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ivanchou-hugo-theme-vec.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ivanchou-hugo-theme-vec-2x.jpg" } }, - "yiluyanxia-hexo-theme-antiquity-master": { - "theme_key": "yiluyanxia-hexo-theme-antiquity-master", + "yiluyanxia-hexo-theme-antiquity": { + "theme_key": "yiluyanxia-hexo-theme-antiquity", "file": "hexo-theme-antiquity.md", "name": "hexo-theme-antiquity", "title": "Antiquity", "github_username": "yiluyanxia", "repo": "yiluyanxia/hexo-theme-antiquity", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/yiluyanxia/hexo-theme-antiquity", "demo_url": "https://yiluyanxia.site/", - "stars": 98, - "forks": 22, + "stars": 101, + "forks": 21, "open_issues": 9, "last_commit": "2020-07-04T14:58:29Z", "created_at": "2019-01-12T09:22:31Z", "description": "一个有点古风的Hexo主题,来自一个不会设计不会配色的前端渣渣。点击这里预览-->", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/yiluyanxia-hexo-theme-antiquity-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yiluyanxia-hexo-theme-antiquity-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yiluyanxia-hexo-theme-antiquity-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/yiluyanxia-hexo-theme-antiquity.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yiluyanxia-hexo-theme-antiquity.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yiluyanxia-hexo-theme-antiquity-2x.jpg" } }, - "yinkakun-eleventy-duo-master": { - "theme_key": "yinkakun-eleventy-duo-master", + "yinkakun-eleventy-duo": { + "theme_key": "yinkakun-eleventy-duo", "file": "eleventy-duo.md", "name": "eleventy-duo", "title": "Eleventy Duo", "github_username": "yinkakun", "repo": "yinkakun/eleventy-duo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/yinkakun/eleventy-duo", "demo_url": "https://eleventyduo.netlify.app", - "stars": 25, - "forks": 1, + "stars": 175, + "forks": 40, + "open_issues": 2, + "last_commit": "2022-10-07T22:09:17Z", + "created_at": "2020-12-27T02:29:57Z", + "description": "Eleventy Duo is a minimal and beautiful Eleventy theme for personal blogs.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/yinkakun-eleventy-duo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yinkakun-eleventy-duo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yinkakun-eleventy-duo-2x.jpg" + } + }, + "yinkakun-gatsby-starter-glass": { + "theme_key": "yinkakun-gatsby-starter-glass", + "file": "gatsby-starter-glass.md", + "name": "gatsby-starter-glass", + "title": "Gatsby Starter Glass", + "github_username": "yinkakun", + "repo": "yinkakun/gatsby-starter-glass", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/yinkakun/gatsby-starter-glass", + "demo_url": "https://gatsbyglass.netlify.app", + "stars": 140, + "forks": 79, "open_issues": 0, - "last_commit": "2021-01-07T21:56:59Z", - "created_at": "2020-12-27T02:29:57Z", - "description": "Eleventy Duo is a minimal and beautiful Eleventy theme for personal blogs.", - "stale": false, + "last_commit": "2022-10-07T21:36:33Z", + "created_at": "2021-03-23T11:47:33Z", + "description": "A Minimal & Beautiful Gatsby Personal Blog Starter With Nice Glassmorphism UI", "images": { - "hires": "https://www.jamstackthemes.dev/capture/yinkakun-eleventy-duo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yinkakun-eleventy-duo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yinkakun-eleventy-duo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/yinkakun-gatsby-starter-glass.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yinkakun-gatsby-starter-glass.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yinkakun-gatsby-starter-glass-2x.jpg" } }, - "yizeng-jekyll-theme-simple-texture-master": { - "theme_key": "yizeng-jekyll-theme-simple-texture-master", + "yizeng-jekyll-theme-simple-texture": { + "theme_key": "yizeng-jekyll-theme-simple-texture", "file": "jekyll-simple-texture-theme.md", "name": "jekyll-theme-simple-texture", "title": "Simple Texture", "github_username": "yizeng", "repo": "yizeng/jekyll-theme-simple-texture", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/yizeng/jekyll-theme-simple-texture", "demo_url": "https://yizeng.github.io/jekyll-theme-simple-texture/", - "stars": 168, - "forks": 214, + "stars": 184, + "forks": 223, "open_issues": 6, - "last_commit": "2019-12-20T10:50:43Z", + "last_commit": "2021-04-04T10:51:19Z", "created_at": "2017-05-27T10:52:29Z", "description": "A gem-based responsive simple texture styled Jekyll theme.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/yizeng-jekyll-theme-simple-texture-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yizeng-jekyll-theme-simple-texture-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yizeng-jekyll-theme-simple-texture-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/yizeng-jekyll-theme-simple-texture.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yizeng-jekyll-theme-simple-texture.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yizeng-jekyll-theme-simple-texture-2x.jpg" + } + }, + "yjpl-supply": { + "theme_key": "yjpl-supply", + "file": "supply.md", + "name": "Supply", + "title": "Supply", + "github_username": "YJPL", + "repo": "YJPL/Supply", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/YJPL/Supply", + "demo_url": "https://supply.templates.supply", + "stars": 24, + "forks": 3, + "open_issues": 3, + "last_commit": "2023-01-17T17:24:33Z", + "created_at": "2020-01-27T10:33:49Z", + "description": "🛍 Supply is a free e-commerce Jekyll theme with Gumroad integration.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/yjpl-supply.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yjpl-supply.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yjpl-supply-2x.jpg" } }, - "yonojoy-yax-coming-soon-jekyll-template-master": { - "theme_key": "yonojoy-yax-coming-soon-jekyll-template-master", + "yonojoy-yax-coming-soon-jekyll-template": { + "theme_key": "yonojoy-yax-coming-soon-jekyll-template", "file": "jekyll-YAX-Coming-soon.md", "name": "YAX-Coming-soon-Jekyll-Template", "title": "YAX-Coming-soon", "github_username": "yonojoy", "repo": "yonojoy/YAX-Coming-soon-Jekyll-Template", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/yonojoy/YAX-Coming-soon-Jekyll-Template", "demo_url": "https://www.behance.net/gallery/18421675/Free-Bootstrap-Psd-Coming-Soon-Template", - "stars": 26, + "stars": 29, "forks": 41, "open_issues": 0, "last_commit": "2016-01-17T17:00:34Z", "created_at": "2015-11-16T11:42:40Z", "description": "Free HTML5 CSS3 Coming Soon Jekyll Template", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/yonojoy-yax-coming-soon-jekyll-template-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yonojoy-yax-coming-soon-jekyll-template-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yonojoy-yax-coming-soon-jekyll-template-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/yonojoy-yax-coming-soon-jekyll-template.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yonojoy-yax-coming-soon-jekyll-template.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yonojoy-yax-coming-soon-jekyll-template-2x.jpg" + } + }, + "yourfreebies-sciblog": { + "theme_key": "airrayagroupwebdesign-sciblog", + "file": "jekyll-sciblog.md", + "name": "sciblog", + "title": "Sciblog", + "github_username": "yourfreebies", + "repo": "yourfreebies/sciblog", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/yourfreebies/sciblog", + "demo_url": "https://sciblog.yourfreebies.org/", + "stars": 15, + "forks": 17, + "open_issues": 1, + "last_commit": "2018-06-19T22:55:41Z", + "created_at": "2016-02-10T04:25:25Z", + "description": "Sci Blog jekyll theme", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/airrayagroupwebdesign-sciblog.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/airrayagroupwebdesign-sciblog.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/airrayagroupwebdesign-sciblog-2x.jpg" } }, - "yous-whiteglass-master": { - "theme_key": "yous-whiteglass-master", + "yous-whiteglass": { + "theme_key": "yous-whiteglass", "file": "jekyll-whiteglass.md", "name": "whiteglass", "title": "whiteglass", "github_username": "yous", "repo": "yous/whiteglass", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/yous/whiteglass", "demo_url": "https://yous.github.io/whiteglass/", - "stars": 486, - "forks": 170, - "open_issues": 4, - "last_commit": "2021-01-03T17:57:14Z", + "stars": 609, + "forks": 192, + "open_issues": 6, + "last_commit": "2023-01-09T08:02:46Z", "created_at": "2017-01-06T17:13:03Z", "description": "Minimal, responsive Jekyll theme for hackers", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/yous-whiteglass-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yous-whiteglass-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yous-whiteglass-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/yous-whiteglass.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yous-whiteglass.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yous-whiteglass-2x.jpg" } }, - "youssefraafatnasry-portfolyou-master": { - "theme_key": "youssefraafatnasry-portfolyou-master", + "youssefraafatnasry-portfolyou": { + "theme_key": "youssefraafatnasry-portfolyou", "file": "portfolYOU.md", "name": "portfolYOU", "title": "portfolYOU", "github_username": "YoussefRaafatNasry", "repo": "YoussefRaafatNasry/portfolYOU", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/YoussefRaafatNasry/portfolYOU", "demo_url": "https://youssefraafatnasry.github.io/portfolYOU/", - "stars": 300, - "forks": 236, - "open_issues": 7, - "last_commit": "2020-12-22T08:54:16Z", + "stars": 761, + "forks": 460, + "open_issues": 14, + "last_commit": "2022-05-22T15:00:19Z", "created_at": "2019-02-09T10:06:09Z", "description": "A beautiful portfolio Jekyll theme that works with GitHub Pages.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/youssefraafatnasry-portfolyou-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/youssefraafatnasry-portfolyou-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/youssefraafatnasry-portfolyou-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/youssefraafatnasry-portfolyou.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/youssefraafatnasry-portfolyou.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/youssefraafatnasry-portfolyou-2x.jpg" } }, - "yscoder-vuepress-theme-indigo-master": { - "theme_key": "yscoder-vuepress-theme-indigo-master", + "yscoder-vuepress-theme-indigo": { + "theme_key": "yscoder-vuepress-theme-indigo", "file": "vuepress-theme-indigo.md", "name": "vuepress-theme-indigo", "title": "Vuepress Indigo", "github_username": "yscoder", "repo": "yscoder/vuepress-theme-indigo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/yscoder/vuepress-theme-indigo", "demo_url": "https://yscoder.github.io/vuepress-theme-indigo/", - "stars": 86, - "forks": 25, - "open_issues": 4, + "stars": 90, + "forks": 24, + "open_issues": 3, "last_commit": "2018-05-04T03:45:55Z", "created_at": "2018-04-14T08:21:05Z", "description": "A blog theme for VuePress.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/yscoder-vuepress-theme-indigo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yscoder-vuepress-theme-indigo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yscoder-vuepress-theme-indigo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/yscoder-vuepress-theme-indigo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yscoder-vuepress-theme-indigo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yscoder-vuepress-theme-indigo-2x.jpg" } }, - "yubisaki-vuepress-theme-yubisaki-master": { - "theme_key": "yubisaki-vuepress-theme-yubisaki-master", + "yubisaki-vuepress-theme-yubisaki": { + "theme_key": "yubisaki-vuepress-theme-yubisaki", "file": "vuepress-theme-yubisaki.md", "name": "vuepress-theme-yubisaki", "title": "Yubisaki", "github_username": "Yubisaki", "repo": "Yubisaki/vuepress-theme-yubisaki", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/Yubisaki/vuepress-theme-yubisaki", "demo_url": "https://wuwaki.me/yubisaki/intro.html", - "stars": 195, - "forks": 16, + "stars": 197, + "forks": 15, "open_issues": 0, "last_commit": "2019-10-08T06:42:09Z", "created_at": "2018-04-21T17:50:17Z", "description": ":sparkles: A blog theme for vuepress", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/yubisaki-vuepress-theme-yubisaki-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yubisaki-vuepress-theme-yubisaki-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yubisaki-vuepress-theme-yubisaki-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/yubisaki-vuepress-theme-yubisaki.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yubisaki-vuepress-theme-yubisaki.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yubisaki-vuepress-theme-yubisaki-2x.jpg" } }, - "yulijia-freshman21-master": { - "theme_key": "yulijia-freshman21-master", + "yulijia-freshman21": { + "theme_key": "yulijia-freshman21", "file": "jekyll-freshman21.md", "name": "freshman21", "title": "Freshman21", "github_username": "yulijia", "repo": "yulijia/freshman21", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/yulijia/freshman21", "demo_url": "https://yulijia.net/freshman21/", - "stars": 118, - "forks": 88, - "open_issues": 2, + "stars": 126, + "forks": 91, + "open_issues": 3, "last_commit": "2018-06-09T13:21:19Z", "created_at": "2014-12-13T08:04:22Z", "description": "Welcome to use Jekyll theme Freshman21. ", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/yulijia-freshman21-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yulijia-freshman21-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yulijia-freshman21-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/yulijia-freshman21.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yulijia-freshman21.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yulijia-freshman21-2x.jpg" } }, - "yursan9-manis-hugo-theme-master": { - "theme_key": "yursan9-manis-hugo-theme-master", + "yursan9-manis-hugo-theme": { + "theme_key": "yursan9-manis-hugo-theme", "file": "hugo-manis.md", "name": "manis-hugo-theme", "title": "Manis", "github_username": "yursan9", "repo": "yursan9/manis-hugo-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/yursan9/manis-hugo-theme", "demo_url": "https://themes.gohugo.io/theme/manis-hugo-theme/", - "stars": 70, - "forks": 36, - "open_issues": 4, - "last_commit": "2020-05-07T11:37:11Z", + "stars": 80, + "forks": 40, + "open_issues": 3, + "last_commit": "2021-07-03T10:28:44Z", "created_at": "2017-06-24T04:21:19Z", "description": "Sweet little Hugo's theme for personal website", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/yursan9-manis-hugo-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yursan9-manis-hugo-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yursan9-manis-hugo-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/yursan9-manis-hugo-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yursan9-manis-hugo-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yursan9-manis-hugo-theme-2x.jpg" } }, - "yvesespinosa-jekyll-html5up-fractal-master": { - "theme_key": "yvesespinosa-jekyll-html5up-fractal-master", + "yvesespinosa-jekyll-html5up-fractal": { + "theme_key": "yvesespinosa-jekyll-html5up-fractal", "file": "jekyll-Fractal-theme.md", "name": "jekyll-html5up-fractal", "title": "Jekflix", "github_username": "yveszenne", "repo": "yveszenne/jekyll-html5up-fractal", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/yveszenne/jekyll-html5up-fractal", "demo_url": "https://yvesespinosa.github.io/jekyll-html5up-fractal/", "stars": 8, @@ -23970,332 +29893,631 @@ "last_commit": "2020-05-01T04:51:33Z", "created_at": "2017-11-10T23:43:31Z", "description": "An awesome jekyll-fractal theme for the html5 fractal template", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/yvesespinosa-jekyll-html5up-fractal-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yvesespinosa-jekyll-html5up-fractal-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yvesespinosa-jekyll-html5up-fractal-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/yvesespinosa-jekyll-html5up-fractal.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yvesespinosa-jekyll-html5up-fractal.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yvesespinosa-jekyll-html5up-fractal-2x.jpg" + } + }, + "yveszenne-jekyll-html5up-fractal": { + "theme_key": "yvesespinosa-jekyll-html5up-fractal", + "file": "jekyll-Fractal-theme.md", + "name": "jekyll-html5up-fractal", + "title": "Jekflix", + "github_username": "yveszenne", + "repo": "yveszenne/jekyll-html5up-fractal", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/yveszenne/jekyll-html5up-fractal", + "demo_url": "https://yvesespinosa.github.io/jekyll-html5up-fractal/", + "stars": 10, + "forks": 13, + "open_issues": 0, + "last_commit": "2020-05-01T04:51:33Z", + "created_at": "2017-11-10T23:43:31Z", + "description": "An awesome jekyll-fractal theme for the html5 fractal template", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/yvesespinosa-jekyll-html5up-fractal.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/yvesespinosa-jekyll-html5up-fractal.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/yvesespinosa-jekyll-html5up-fractal-2x.jpg" + } + }, + "zeespire-one-free": { + "theme_key": "zeespire-one-free", + "file": "jekyll-zeespre-one.md", + "name": "one-free", + "title": "ZeeSpire One", + "github_username": "ZeeSpire", + "repo": "ZeeSpire/one-free", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/ZeeSpire/one-free", + "demo_url": "https://one-free.zeespire.com/", + "stars": 0, + "forks": 0, + "open_issues": 1, + "last_commit": "2021-12-29T10:55:13Z", + "created_at": "2021-12-14T20:26:54Z", + "description": "Free and paid Jekyll theme. Multi-purpose, multi-layout theme.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/zeespire-one-free.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zeespire-one-free.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zeespire-one-free-2x.jpg" + } + }, + "zerostaticthemes-gatsby-serif-theme": { + "theme_key": "jugglerx-gatsby-serif-theme", + "file": "gatsby-serif-theme.md", + "name": "gatsby-serif-theme", + "title": "Gatsby Serif Theme", + "github_username": "zerostaticthemes", + "repo": "zerostaticthemes/gatsby-serif-theme", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/zerostaticthemes/gatsby-serif-theme", + "demo_url": "https://gatsby-serif.netlify.com/", + "stars": 191, + "forks": 80, + "open_issues": 1, + "last_commit": "2022-01-03T00:49:39Z", + "created_at": "2018-12-12T04:58:52Z", + "description": "Serif is a beautiful small business theme for Gatsby.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/jugglerx-gatsby-serif-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jugglerx-gatsby-serif-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jugglerx-gatsby-serif-theme-2x.jpg" + } + }, + "zerostaticthemes-hugo-atlantic-theme": { + "theme_key": "zerostaticthemes-hugo-atlantic-theme", + "file": "hugo-atlantic.md", + "name": "hugo-atlantic-theme", + "title": "Hugo Atlantic Tailwind Blog", + "github_username": "zerostaticthemes", + "repo": "zerostaticthemes/hugo-atlantic-theme", + "branch": "main", + "default_branch": "main", + "github_url": "https://github.com/zerostaticthemes/hugo-atlantic-theme", + "demo_url": "https://hugo-atlantic.netlify.app/", + "stars": 36, + "forks": 11, + "open_issues": 1, + "last_commit": "2022-06-21T06:50:52Z", + "created_at": "2021-07-09T10:16:34Z", + "description": "A Tailwind 3 starter blog for Hugo", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/zerostaticthemes-hugo-atlantic-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zerostaticthemes-hugo-atlantic-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zerostaticthemes-hugo-atlantic-theme-2x.jpg" + } + }, + "zerostaticthemes-hugo-hero-theme": { + "theme_key": "jugglerx-hugo-hero-theme", + "file": "hugo-hero-theme.md", + "name": "hugo-hero-theme", + "title": "Hero", + "github_username": "zerostaticthemes", + "repo": "zerostaticthemes/hugo-hero-theme", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/zerostaticthemes/hugo-hero-theme", + "demo_url": "https://hugo-hero.netlify.com/", + "stars": 281, + "forks": 217, + "open_issues": 8, + "last_commit": "2022-03-24T04:48:09Z", + "created_at": "2018-12-05T23:22:47Z", + "description": "A multi-page Hugo theme with fullscreen hero images and fullwidth sections.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/jugglerx-hugo-hero-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jugglerx-hugo-hero-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jugglerx-hugo-hero-theme-2x.jpg" } }, - "zerostaticthemes-hugo-serif-theme-master": { - "theme_key": "zerostaticthemes-hugo-serif-theme-master", + "zerostaticthemes-hugo-serif-theme": { + "theme_key": "zerostaticthemes-hugo-serif-theme", "file": "hugo-serif.md", "name": "hugo-serif-theme", "title": "Hugo Serif", "github_username": "zerostaticthemes", "repo": "zerostaticthemes/hugo-serif-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/zerostaticthemes/hugo-serif-theme", "demo_url": "https://hugo-serif.netlify.app", - "stars": 156, - "forks": 140, - "open_issues": 2, - "last_commit": "2020-11-08T01:28:58Z", + "stars": 351, + "forks": 222, + "open_issues": 5, + "last_commit": "2023-01-23T10:50:53Z", "created_at": "2018-11-28T07:14:22Z", "description": "Serif is a modern business theme for Hugo.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/zerostaticthemes-hugo-serif-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zerostaticthemes-hugo-serif-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zerostaticthemes-hugo-serif-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/zerostaticthemes-hugo-serif-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zerostaticthemes-hugo-serif-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zerostaticthemes-hugo-serif-theme-2x.jpg" + } + }, + "zerostaticthemes-hugo-whisper-theme": { + "theme_key": "jugglerx-hugo-whisper-theme", + "file": "hugo-whisper-theme.md", + "name": "hugo-whisper-theme", + "title": "Whisper", + "github_username": "zerostaticthemes", + "repo": "zerostaticthemes/hugo-whisper-theme", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/zerostaticthemes/hugo-whisper-theme", + "demo_url": "https://hugo-whisper.netlify.com/", + "stars": 220, + "forks": 116, + "open_issues": 6, + "last_commit": "2022-01-03T00:50:35Z", + "created_at": "2019-02-17T06:32:03Z", + "description": "Whisper is a minimal documentation theme for Hugo.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/jugglerx-hugo-whisper-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/jugglerx-hugo-whisper-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/jugglerx-hugo-whisper-theme-2x.jpg" + } + }, + "zerostaticthemes-hugo-winston-theme": { + "theme_key": "zerostaticthemes-hugo-winston-theme", + "file": "hugo-winston.md", + "name": "hugo-winston-theme", + "title": "Hugo Winston", + "github_username": "zerostaticthemes", + "repo": "zerostaticthemes/hugo-winston-theme", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/zerostaticthemes/hugo-winston-theme", + "demo_url": "https://hugo-winston.netlify.app/", + "stars": 159, + "forks": 70, + "open_issues": 3, + "last_commit": "2022-10-20T23:58:35Z", + "created_at": "2020-09-21T01:16:08Z", + "description": "A minimal and bold blog theme for Hugo", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/zerostaticthemes-hugo-winston-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zerostaticthemes-hugo-winston-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zerostaticthemes-hugo-winston-theme-2x.jpg" + } + }, + "zerostaticthemes-jekyll-atlantic-theme": { + "theme_key": "zerostaticthemes-jekyll-atlantic-theme", + "file": "jekyll-atlantic.md", + "name": "jekyll-atlantic-theme", + "title": "Jekyll Atlantic Tailwind Blog", + "github_username": "zerostaticthemes", + "repo": "zerostaticthemes/jekyll-atlantic-theme", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/zerostaticthemes/jekyll-atlantic-theme", + "demo_url": "https://jekyll-atlantic.netlify.app/", + "stars": 56, + "forks": 49, + "open_issues": 0, + "last_commit": "2022-09-13T00:27:18Z", + "created_at": "2021-07-09T10:04:57Z", + "description": "Jekyll + Tailwind Starter Theme. Jekyll Atlantic is a beautiful blog theme for Jekyll", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/zerostaticthemes-jekyll-atlantic-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zerostaticthemes-jekyll-atlantic-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zerostaticthemes-jekyll-atlantic-theme-2x.jpg" } }, - "zerostaticthemes-jekyll-serif-theme-master": { - "theme_key": "zerostaticthemes-jekyll-serif-theme-master", + "zerostaticthemes-jekyll-serif-theme": { + "theme_key": "zerostaticthemes-jekyll-serif-theme", "file": "jekyll-serif.md", "name": "jekyll-serif-theme", "title": "Jekyll Serif", "github_username": "zerostaticthemes", "repo": "zerostaticthemes/jekyll-serif-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/zerostaticthemes/jekyll-serif-theme", "demo_url": "https://jekyll-serif.netlify.app/", - "stars": 198, - "forks": 222, - "open_issues": 5, - "last_commit": "2020-11-08T01:24:51Z", + "stars": 528, + "forks": 559, + "open_issues": 3, + "last_commit": "2022-10-21T00:23:49Z", "created_at": "2018-12-09T07:20:46Z", - "description": "Serif is a beautiful business theme for Jekyll.", - "stale": false, + "description": "Serif is a multi page business theme for Jekyll.", "images": { - "hires": "https://www.jamstackthemes.dev/capture/zerostaticthemes-jekyll-serif-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zerostaticthemes-jekyll-serif-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zerostaticthemes-jekyll-serif-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/zerostaticthemes-jekyll-serif-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zerostaticthemes-jekyll-serif-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zerostaticthemes-jekyll-serif-theme-2x.jpg" } }, - "zhaohuabing-hugo-theme-cleanwhite-master": { - "theme_key": "zhaohuabing-hugo-theme-cleanwhite-master", + "zhaohuabing-hugo-theme-cleanwhite": { + "theme_key": "zhaohuabing-hugo-theme-cleanwhite", "file": "hugo-theme-cleanwhite.md", "name": "hugo-theme-cleanwhite", "title": "Hugo Clean White", "github_username": "zhaohuabing", "repo": "zhaohuabing/hugo-theme-cleanwhite", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/zhaohuabing/hugo-theme-cleanwhite", "demo_url": "https://zhaohuabing.com/", - "stars": 277, - "forks": 131, + "stars": 525, + "forks": 257, "open_issues": 4, - "last_commit": "2020-12-28T03:31:24Z", + "last_commit": "2023-01-18T05:14:47Z", "created_at": "2018-06-16T13:57:14Z", "description": "A clean, elegant blog theme for hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/zhaohuabing-hugo-theme-cleanwhite-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zhaohuabing-hugo-theme-cleanwhite-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zhaohuabing-hugo-theme-cleanwhite-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/zhaohuabing-hugo-theme-cleanwhite.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zhaohuabing-hugo-theme-cleanwhite.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zhaohuabing-hugo-theme-cleanwhite-2x.jpg" } }, - "zhe-hugo-theme-slim-master": { - "theme_key": "zhe-hugo-theme-slim-master", + "zhe-hugo-theme-slim": { + "theme_key": "zhe-hugo-theme-slim", "file": "hugo-theme-slim.md", "name": "hugo-theme-slim", "title": "Slim", "github_username": "zhe", "repo": "zhe/hugo-theme-slim", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/zhe/hugo-theme-slim", "demo_url": "https://themes.gohugo.io/theme/slim/", - "stars": 98, - "forks": 56, + "stars": 106, + "forks": 55, "open_issues": 8, "last_commit": "2019-08-17T17:28:00Z", "created_at": "2015-04-24T14:33:33Z", "description": "Hugo theme—Slim", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/zhe-hugo-theme-slim-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zhe-hugo-theme-slim-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zhe-hugo-theme-slim-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/zhe-hugo-theme-slim.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zhe-hugo-theme-slim.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zhe-hugo-theme-slim-2x.jpg" + } + }, + "zhonger-jekyll-theme-h2o-ac": { + "theme_key": "zhonger-jekyll-theme-h2o-ac", + "file": "jekyll-h2o-ac.md", + "name": "jekyll-theme-H2O-ac", + "title": "H2O-ac", + "github_username": "zhonger", + "repo": "zhonger/jekyll-theme-H2O-ac", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/zhonger/jekyll-theme-H2O-ac", + "demo_url": "https://h2o-ac.pages.dev", + "stars": 9, + "forks": 11, + "open_issues": 1, + "last_commit": "2022-11-24T04:03:58Z", + "created_at": "2021-03-26T02:32:22Z", + "description": " 🎉 A Jekyll theme for researchers and maintainers based on H2O theme.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/zhonger-jekyll-theme-h2o-ac.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zhonger-jekyll-theme-h2o-ac.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zhonger-jekyll-theme-h2o-ac-2x.jpg" } }, - "zhouyuexie-gatsby-starter-quiet-master": { - "theme_key": "zhouyuexie-gatsby-starter-quiet-master", + "zhouyuexie-gatsby-starter-quiet": { + "theme_key": "zhouyuexie-gatsby-starter-quiet", "file": "gatsby-starter-quiet.md", "name": "gatsby-starter-quiet", "title": "Gatsby Starter Quiet", "github_username": "zhouyuexie", "repo": "zhouyuexie/gatsby-starter-quiet", "branch": "master", - "url": "https://github.com/zhouyuexie/gatsby-starter-quiet", + "default_branch": "master", + "github_url": "https://github.com/zhouyuexie/gatsby-starter-quiet", + "demo_url": "https://www.quietboy.net/", "stars": 3, "forks": 0, "open_issues": 0, "last_commit": "2019-11-09T01:59:42Z", "created_at": "2019-06-17T09:17:32Z", "description": "开箱即用的Gastby脚手架,支持系统级主题切换、MarkDown草稿、TypeScript、自定义主题...", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/zhouyuexie-gatsby-starter-quiet-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zhouyuexie-gatsby-starter-quiet-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zhouyuexie-gatsby-starter-quiet-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/zhouyuexie-gatsby-starter-quiet.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zhouyuexie-gatsby-starter-quiet.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zhouyuexie-gatsby-starter-quiet-2x.jpg" + } + }, + "zivhub-jekyll-theme-hamilton": { + "theme_key": "ngzhio-jekyll-theme-hamilton", + "file": "hamilton.md", + "name": "jekyll-theme-hamilton", + "title": "Hamilton", + "github_username": "zivhub", + "repo": "zivhub/jekyll-theme-hamilton", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/zivhub/jekyll-theme-hamilton", + "demo_url": "https://ngzhio.github.io/jekyll-theme-hamilton/", + "stars": 58, + "forks": 106, + "open_issues": 1, + "last_commit": "2021-03-27T15:36:05Z", + "created_at": "2020-04-04T11:56:55Z", + "description": "A minimal and beautiful Jekyll theme best for writing and note-taking.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/ngzhio-jekyll-theme-hamilton.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/ngzhio-jekyll-theme-hamilton.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/ngzhio-jekyll-theme-hamilton-2x.jpg" + } + }, + "zivong-jekyll-theme-hamilton": { + "theme_key": "zivhub-jekyll-theme-hamilton", + "file": "hamilton.md", + "name": "jekyll-theme-hamilton", + "title": "Hamilton", + "github_username": "zivong", + "repo": "zivong/jekyll-theme-hamilton", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/zivong/jekyll-theme-hamilton", + "demo_url": "https://zivlog.io/jekyll-theme-hamilton/", + "stars": 88, + "forks": 130, + "open_issues": 4, + "last_commit": "2021-05-02T03:13:37Z", + "created_at": "2020-04-04T11:56:55Z", + "description": "A minimal and beautiful Jekyll theme best for writing and note-taking.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/zivhub-jekyll-theme-hamilton.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zivhub-jekyll-theme-hamilton.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zivhub-jekyll-theme-hamilton-2x.jpg" + } + }, + "zivong-jekyll-theme-hydure": { + "theme_key": "zivong-jekyll-theme-hydure", + "file": "hydure.md", + "name": "jekyll-theme-hydure", + "title": "Hydure", + "github_username": "zivong", + "repo": "zivong/jekyll-theme-hydure", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/zivong/jekyll-theme-hydure", + "demo_url": "https://zivong.blog/jekyll-theme-hydure/", + "stars": 29, + "forks": 80, + "open_issues": 0, + "last_commit": "2021-09-04T16:48:40Z", + "created_at": "2021-04-26T12:07:53Z", + "description": "A concise two-column blog theme for Jekyll.", + "images": { + "hires": "https://www.jamstackthemes.dev/capture/zivong-jekyll-theme-hydure.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zivong-jekyll-theme-hydure.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zivong-jekyll-theme-hydure-2x.jpg" + } + }, + "zougotsx-gatsby-typescript-mdx-prismjs-starter": { + "theme_key": "tylergreulich-gatsby-typescript-mdx-prismjs-starter", + "file": "gatsby-typescript-mdx-prismjs-starter.md", + "name": "gatsby-typescript-mdx-prismjs-starter", + "title": "Typescript Mdx Prismjs", + "github_username": "zougotsx", + "repo": "zougotsx/gatsby-typescript-mdx-prismjs-starter", + "branch": "master", + "default_branch": "master", + "github_url": "https://github.com/zougotsx/gatsby-typescript-mdx-prismjs-starter", + "demo_url": "https://infallible-brown-28846b.netlify.com", + "stars": 15, + "forks": 8, + "open_issues": 1, + "last_commit": "2019-03-12T22:30:13Z", + "created_at": "2018-12-18T15:30:09Z", + "description": null, + "images": { + "hires": "https://www.jamstackthemes.dev/capture/tylergreulich-gatsby-typescript-mdx-prismjs-starter.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/tylergreulich-gatsby-typescript-mdx-prismjs-starter.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/tylergreulich-gatsby-typescript-mdx-prismjs-starter-2x.jpg" } }, - "zwbetz-gh-cayman-hugo-theme-master": { - "theme_key": "zwbetz-gh-cayman-hugo-theme-master", + "zwbetz-gh-cayman-hugo-theme": { + "theme_key": "zwbetz-gh-cayman-hugo-theme", "file": "hugo-cayman-theme.md", "name": "cayman-hugo-theme", "title": "Cayman", "github_username": "zwbetz-gh", "repo": "zwbetz-gh/cayman-hugo-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/zwbetz-gh/cayman-hugo-theme", "demo_url": "https://cayman-hugo-theme.netlify.com/", - "stars": 24, - "forks": 22, - "open_issues": 1, - "last_commit": "2020-11-25T03:18:14Z", + "stars": 40, + "forks": 28, + "open_issues": 0, + "last_commit": "2023-01-03T05:41:15Z", "created_at": "2019-03-26T19:37:52Z", "description": "Cayman is a clean, responsive theme for Hugo, ported from the original Jekyll Cayman Theme.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/zwbetz-gh-cayman-hugo-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zwbetz-gh-cayman-hugo-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zwbetz-gh-cayman-hugo-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/zwbetz-gh-cayman-hugo-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zwbetz-gh-cayman-hugo-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zwbetz-gh-cayman-hugo-theme-2x.jpg" } }, - "zwbetz-gh-cupper-hugo-theme-master": { - "theme_key": "zwbetz-gh-cupper-hugo-theme-master", + "zwbetz-gh-cupper-hugo-theme": { + "theme_key": "zwbetz-gh-cupper-hugo-theme", "file": "cupper-hugo-theme.md", "name": "cupper-hugo-theme", "title": "Cupper", "github_username": "zwbetz-gh", "repo": "zwbetz-gh/cupper-hugo-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/zwbetz-gh/cupper-hugo-theme", "demo_url": "https://cupper-hugo-theme.netlify.com/", - "stars": 165, - "forks": 123, - "open_issues": 1, - "last_commit": "2021-01-10T19:36:21Z", + "stars": 269, + "forks": 176, + "open_issues": 0, + "last_commit": "2023-01-04T03:34:49Z", "created_at": "2019-01-29T19:16:57Z", "description": "An accessibility-friendly Hugo theme, ported from the original Cupper project.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/zwbetz-gh-cupper-hugo-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zwbetz-gh-cupper-hugo-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zwbetz-gh-cupper-hugo-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/zwbetz-gh-cupper-hugo-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zwbetz-gh-cupper-hugo-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zwbetz-gh-cupper-hugo-theme-2x.jpg" } }, - "zwbetz-gh-minimal-bootstrap-hugo-theme-master": { - "theme_key": "zwbetz-gh-minimal-bootstrap-hugo-theme-master", + "zwbetz-gh-minimal-bootstrap-hugo-theme": { + "theme_key": "zwbetz-gh-minimal-bootstrap-hugo-theme", "file": "hugo-minial-bootstrap-theme.md", "name": "minimal-bootstrap-hugo-theme", "title": "Minimal Bootstrap", "github_username": "zwbetz-gh", "repo": "zwbetz-gh/minimal-bootstrap-hugo-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/zwbetz-gh/minimal-bootstrap-hugo-theme", "demo_url": "https://minimal-bootstrap-hugo-theme.netlify.com/", - "stars": 71, - "forks": 26, + "stars": 88, + "forks": 38, "open_issues": 0, - "last_commit": "2020-11-25T03:15:37Z", + "last_commit": "2023-01-03T05:40:08Z", "created_at": "2018-10-08T04:39:24Z", "description": "A minimal hugo theme made with bootstrap", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/zwbetz-gh-minimal-bootstrap-hugo-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zwbetz-gh-minimal-bootstrap-hugo-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zwbetz-gh-minimal-bootstrap-hugo-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/zwbetz-gh-minimal-bootstrap-hugo-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zwbetz-gh-minimal-bootstrap-hugo-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zwbetz-gh-minimal-bootstrap-hugo-theme-2x.jpg" } }, - "zwbetz-gh-papercss-hugo-theme-master": { - "theme_key": "zwbetz-gh-papercss-hugo-theme-master", + "zwbetz-gh-papercss-hugo-theme": { + "theme_key": "zwbetz-gh-papercss-hugo-theme", "file": "hugo-papercss-theme.md", "name": "papercss-hugo-theme", "title": "PaperCSS", "github_username": "zwbetz-gh", "repo": "zwbetz-gh/papercss-hugo-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/zwbetz-gh/papercss-hugo-theme", "demo_url": "https://papercss-hugo-theme.netlify.com/", - "stars": 50, - "forks": 30, + "stars": 74, + "forks": 45, "open_issues": 0, - "last_commit": "2020-12-01T13:33:09Z", + "last_commit": "2023-01-03T05:43:38Z", "created_at": "2019-02-21T21:33:54Z", "description": "A Hugo theme made with PaperCSS, the less formal CSS framework.", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/zwbetz-gh-papercss-hugo-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zwbetz-gh-papercss-hugo-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zwbetz-gh-papercss-hugo-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/zwbetz-gh-papercss-hugo-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zwbetz-gh-papercss-hugo-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zwbetz-gh-papercss-hugo-theme-2x.jpg" } }, - "zwbetz-gh-vanilla-bootstrap-hugo-theme-master": { - "theme_key": "zwbetz-gh-vanilla-bootstrap-hugo-theme-master", + "zwbetz-gh-vanilla-bootstrap-hugo-theme": { + "theme_key": "zwbetz-gh-vanilla-bootstrap-hugo-theme", "file": "hugo-vanilla-bootstrap-theme.md", "name": "vanilla-bootstrap-hugo-theme", "title": "Vanilla Bootstrap", "github_username": "zwbetz-gh", "repo": "zwbetz-gh/vanilla-bootstrap-hugo-theme", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/zwbetz-gh/vanilla-bootstrap-hugo-theme", "demo_url": "https://vanilla-bootstrap-hugo-theme.netlify.com/", - "stars": 49, - "forks": 32, + "stars": 68, + "forks": 44, "open_issues": 0, - "last_commit": "2020-11-25T03:19:58Z", + "last_commit": "2023-01-03T05:46:36Z", "created_at": "2018-12-15T06:31:19Z", "description": "A vanilla Bootstrap theme for Hugo", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/zwbetz-gh-vanilla-bootstrap-hugo-theme-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zwbetz-gh-vanilla-bootstrap-hugo-theme-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zwbetz-gh-vanilla-bootstrap-hugo-theme-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/zwbetz-gh-vanilla-bootstrap-hugo-theme.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zwbetz-gh-vanilla-bootstrap-hugo-theme.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zwbetz-gh-vanilla-bootstrap-hugo-theme-2x.jpg" } }, - "zxixia-jekyll-xixia-gh-pages": { - "theme_key": "zxixia-jekyll-xixia-gh-pages", + "zxixia-jekyll-xixia": { + "theme_key": "zxixia-jekyll-xixia", "file": "jekyll-xixia-theme.md", "name": "jekyll-xixia", "title": "Xixia", "github_username": "zxixia", "repo": "zxixia/jekyll-xixia", "branch": "gh-pages", + "default_branch": "gh-pages", "github_url": "https://github.com/zxixia/jekyll-xixia", "demo_url": "https://xixia.info/jekyll-xixia/", - "stars": 30, - "forks": 72, + "stars": 33, + "forks": 70, "open_issues": 3, "last_commit": "2017-09-29T02:11:16Z", "created_at": "2017-09-19T06:00:06Z", "description": "A Jekyll theme.", - "stale": true, "images": { - "hires": "https://www.jamstackthemes.dev/capture/zxixia-jekyll-xixia-gh-pages.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zxixia-jekyll-xixia-gh-pages.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zxixia-jekyll-xixia-gh-pages-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/zxixia-jekyll-xixia.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zxixia-jekyll-xixia.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zxixia-jekyll-xixia-2x.jpg" } }, - "zzossig-hugo-theme-zdoc-master": { - "theme_key": "zzossig-hugo-theme-zdoc-master", + "zzossig-hugo-theme-zdoc": { + "theme_key": "zzossig-hugo-theme-zdoc", "file": "hugo-theme-zdoc.md", "name": "hugo-theme-zdoc", "title": "Hugo Theme Zdoc", "github_username": "zzossig", "repo": "zzossig/hugo-theme-zdoc", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/zzossig/hugo-theme-zdoc", "demo_url": "https://themes.gohugo.io//theme/hugo-theme-zdoc/", - "stars": 104, - "forks": 42, - "open_issues": 8, + "stars": 131, + "forks": 51, + "open_issues": 18, "last_commit": "2020-11-05T14:36:06Z", "created_at": "2020-01-29T12:56:32Z", "description": "Make a documentation with hugo zdoc theme!", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/zzossig-hugo-theme-zdoc-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zzossig-hugo-theme-zdoc-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zzossig-hugo-theme-zdoc-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/zzossig-hugo-theme-zdoc.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zzossig-hugo-theme-zdoc.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zzossig-hugo-theme-zdoc-2x.jpg" } }, - "zzossig-hugo-theme-zzo-master": { - "theme_key": "zzossig-hugo-theme-zzo-master", + "zzossig-hugo-theme-zzo": { + "theme_key": "zzossig-hugo-theme-zzo", "file": "hugo-theme-zzo.md", "name": "hugo-theme-zzo", "title": "Hugo Theme Zzo", "github_username": "zzossig", "repo": "zzossig/hugo-theme-zzo", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/zzossig/hugo-theme-zzo", "demo_url": "https://themes.gohugo.io/theme/hugo-theme-zzo/en/", - "stars": 398, - "forks": 165, - "open_issues": 29, - "last_commit": "2021-01-02T03:11:55Z", + "stars": 529, + "forks": 220, + "open_issues": 65, + "last_commit": "2021-05-23T14:26:17Z", "created_at": "2019-11-04T13:08:32Z", "description": "Make a blog with hugo zzo theme!", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/zzossig-hugo-theme-zzo-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zzossig-hugo-theme-zzo-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zzossig-hugo-theme-zzo-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/zzossig-hugo-theme-zzo.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zzossig-hugo-theme-zzo.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zzossig-hugo-theme-zzo-2x.jpg" } }, - "zzzmisa-hugo-theme-doors-master": { - "theme_key": "zzzmisa-hugo-theme-doors-master", + "zzzmisa-hugo-theme-doors": { + "theme_key": "zzzmisa-hugo-theme-doors", "file": "hugo-theme-doors.md", "name": "hugo-theme-doors", "title": "Doors", "github_username": "zzzmisa", "repo": "zzzmisa/hugo-theme-doors", "branch": "master", + "default_branch": "master", "github_url": "https://github.com/zzzmisa/hugo-theme-doors", "demo_url": "https://zzzmisa.com/", - "stars": 9, - "forks": 8, + "stars": 13, + "forks": 9, "open_issues": 0, - "last_commit": "2020-04-10T13:07:28Z", + "last_commit": "2022-02-05T06:06:44Z", "created_at": "2019-08-05T14:40:43Z", "description": "🚪Single page theme for links to your works", - "stale": false, "images": { - "hires": "https://www.jamstackthemes.dev/capture/zzzmisa-hugo-theme-doors-master.png", - "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zzzmisa-hugo-theme-doors-master.jpg", - "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zzzmisa-hugo-theme-doors-master-2x.jpg" + "hires": "https://www.jamstackthemes.dev/capture/zzzmisa-hugo-theme-doors.png", + "thumbnail": "https://www.jamstackthemes.dev/images/theme/thumbnail/zzzmisa-hugo-theme-doors.jpg", + "screenshot": "https://www.jamstackthemes.dev/images/theme/thumbnail/2x/zzzmisa-hugo-theme-doors-2x.jpg" } } } \ No newline at end of file diff --git a/package.json b/package.json index 6314f328d..3274d027d 100644 --- a/package.json +++ b/package.json @@ -1,28 +1,26 @@ { "scripts": { - "build": "node ./scripts/generate-github.js && node ./scripts/capture-screenshots.js && node ./scripts/generate-thumbnails.js && node ./scripts/generate-stackbit.js && hugo", - "deploy": "node ./scripts/generate-github.js --latest && node ./scripts/capture-screenshots.js && node ./scripts/generate-thumbnails.js && node ./scripts/generate-stackbit.js && hugo", - "deploy:branch": "npm run deploy && echo 'User-agent: *\nDisallow: /' > public/robots.txt", - "fetch": "node ./scripts/generate-github.js --latest", - "generate-github": "node ./scripts/generate-github.js", - "capture-screenshots": "node ./scripts/capture-screenshots.js", - "generate-thumbnails": "node ./scripts/generate-thumbnails.js", - "scrub-themes": "node ./scripts/scrub-themes.js" + "build": "node ./scripts/build.js && hugo --minify", + "deploy": "node ./scripts/build.js --latest && hugo --minify", + "stackbit": "node ./scripts/build.js --github=false --demos=false --images=false && hugo --minify", + "images": "node ./scripts/build.js --github=false --demos=false --stackbit=false && hugo --minify", + "deploy:branch": "npm run deploy && echo 'User-agent: *\nDisallow: /' > public/robots.txt" }, "dependencies": { "axios": "^0.21.1", "axios-rate-limit": "^1.3.0", + "cli-spinners": "^2.5.0", "date-fns": "^2.16.1", "front-matter": "^4.0.2", "fs-extra": "^9.1.0", "js-yaml": "^4.0.0", + "ora": "^5.3.0", "pageres": "^6.1.0", "parse-github-url": "^1.0.2", "promise.allsettled": "^1.0.4", - "sharp": "^0.27.1", + "sharp": "^0.30.5", "url-slug": "^3.0.1", "yaml-front-matter": "^4.1.1", "yargs": "^16.2.0" - }, - "devDependencies": {} + } } diff --git a/scripts/build.js b/scripts/build.js new file mode 100644 index 000000000..e92a21f94 --- /dev/null +++ b/scripts/build.js @@ -0,0 +1,59 @@ +#!/usr/bin/env node +const yargs = require('yargs/yargs') +const { hideBin } = require('yargs/helpers') +const argv = yargs(hideBin(process.argv)).argv +const {generateGithubData} = require('./build/github'); +const {generateMarkdownData} = require('./build/markdown'); +const {testDemoUrls} = require('./build/demo'); +const {writeThemesFile, writeErrorFile, writeStackbitFile} = require('./build/write') +const {generateStackbitData} = require('./build/stackbit') +const {generateScreenshots, generateThumbnails} = require('./build/screenshot') +const config = require('./build/config'); +const {errorLog} = require('./build/errors'); + +const build = async (options) => { + const themesMarkdown = await generateMarkdownData(config.themesMarkdownFiles, options) + + if (options.github) { + // Updates themes.json + const themesGithub = await generateGithubData(themesMarkdown) + writeThemesFile(themesGithub) + } + if (options.stackbit) { + // Updates stackbit.json + const stackbit = generateStackbitData(themesMarkdown) + writeStackbitFile(stackbit); + } + + if (options.demos) { + // Visits each demo URL with a headless browser and if the site cannot be reached sets the markdown file to disabled=true + await testDemoUrls(themesMarkdown) + } + + if (options.images) { + await generateScreenshots(themesMarkdown, options.recaptureImage) + await generateThumbnails(themesMarkdown, options.regenerateImage) + } + + writeErrorFile(errorLog) + console.log("Build Successful") + console.log("Error Log") + process.exit(0) +} + +const options = { + github: argv.github !== "false", // generates `data/themes.json` which is used for github stars, commits meta data etc + stackbit: argv.stackbit !== "false", // generates `data/stackbit.json` which is used for the "create site" button + demos: argv.demos !== "false", // tests the themes demo url using headless browser and disables the theme if the url does not resolve + images: argv.images !== "false", // captures screenshots and generates thumbnails + + disabled: argv.disabled !== "false", // Skip processing themes that have front-matter `disabled: true` + draft: argv.draft !== "false", // Skip processing themes that have front-matter `draft: true` + latest: argv.latest || false, // Only process themes which don't already exist in `data/themes.json` + file: argv.file || false, // Only process a single file ie --file=gatsby-starter-advanced.md + all: argv.all || false, // process all themes + recaptureImage: argv.recaptureImage || false, + regenerateImage: argv.regenerateImage || false +} + +build(options); \ No newline at end of file diff --git a/scripts/build/cleanup.js b/scripts/build/cleanup.js new file mode 100644 index 000000000..886e93e84 --- /dev/null +++ b/scripts/build/cleanup.js @@ -0,0 +1,23 @@ +#!/usr/bin/env node +const fs = require('fs'); +const path = require('path'); +const yamlFront = require('yaml-front-matter'); +const yaml = require('js-yaml'); +const isBefore = require('date-fns/isBefore'); +const parseISO = require('date-fns/parseISO'); +const subYears = require('date-fns/subYears'); +const {getThemeKey} = require('./utils'); +const {themeMap} = require('./write'); +const {generateMarkdownData} = require('./markdown') +const config = require('./config'); +const staleBeforeDate = subYears(new Date(), 1); + +const deleteOldThemes = async (themesMarkdown, themesGithub) => { + const themesMarkdown = await generateMarkdownData(config.themesMarkdownFiles) + const themesMarkdownMap = themeMap(themesMarkdown) +} + +module.exports = { + deleteOldThemes +} + diff --git a/scripts/build/config.js b/scripts/build/config.js new file mode 100644 index 000000000..e48700c91 --- /dev/null +++ b/scripts/build/config.js @@ -0,0 +1,30 @@ +#!/usr/bin/env node +const fs = require('fs'); +const path = require('path'); +const subYears = require('date-fns/subYears'); + +const errorJsonFile = path.join(process.cwd(), '/data/errors.json'); +const stackbitJsonFile = path.join(process.cwd(), '/data/stackbit.json'); +const stackbitJsonData = fs.existsSync(stackbitJsonFile) ? JSON.parse(fs.readFileSync(stackbitJsonFile)) : {}; +const themesMarkdownFolder = path.join(process.cwd(), '/content/theme') +const themesMarkdownFiles = fs.readdirSync(themesMarkdownFolder).map(relFilename => path.resolve(themesMarkdownFolder, relFilename)) +const themesJsonFile = path.join(process.cwd(), '/data/themes.json'); +const themesJsonData = fs.existsSync(themesJsonFile) ? JSON.parse(fs.readFileSync(themesJsonFile)) : {}; +const hiresImagesFolder = path.join(process.cwd(), '/static/capture'); +const thumbnailImagesFolder = path.join(process.cwd(), '/static/images/theme/thumbnail') +const thumbnailImagesFolder2x = path.join(process.cwd(), '/static/images/theme/thumbnail/2x') +const staleBeforeDate = subYears(new Date(), 1); + +module.exports = { + errorJsonFile, + themesJsonFile, + themesMarkdownFolder, + themesMarkdownFiles, + themesJsonData, + stackbitJsonFile, + stackbitJsonData, + hiresImagesFolder, + thumbnailImagesFolder, + thumbnailImagesFolder2x, + staleBeforeDate +} \ No newline at end of file diff --git a/scripts/build/demo.js b/scripts/build/demo.js new file mode 100644 index 000000000..3ffb3881c --- /dev/null +++ b/scripts/build/demo.js @@ -0,0 +1,67 @@ +#!/usr/bin/env node +const axios = require('axios'); +const allSettled = require('promise.allsettled'); +const {errorLog} = require('./errors') +const ora = require('ora'); +const {getThemeKey, getRepoName} = require('./utils'); +const {updateFrontmatter} = require('./markdown'); +const spinner = ora('Loading') + +const testDemo = (frontmatter) => { + const themeKey = getThemeKey(frontmatter.github) + + return axios.get(frontmatter.demo).then((res) => { + spinner.text = `${frontmatter.demo} => checking Demo URL - ${res.status}`; + if (frontmatter.disabled) { + updateFrontmatter(frontmatter.file, { + disabled: false, + disabled_reason: "" + }) + } + return true; + }).catch(err => { + let error = "error checking demo url" + if (err) { + if (err.code === "ENOTFOUND") { + error = "demo url not found" + } + if (err.code === "ECONNREFUSED") { + error = "demo url connection refused" + } + if (err.response) { + if (err.response.status === 404) { + error = "demo url not found" + } + if (err.response.data) { + if (err.response.data.message) { + error = err.response.data.message; + } + } + + } + } + updateFrontmatter(frontmatter.file, { + disabled: true, + disabled_reason: error + }) + spinner.text = `${frontmatter.demo} => checking Demo URL - ${error}`; + errorLog.push({ + theme_key: themeKey, + file: frontmatter.file, + repoUrl: frontmatter.github, + demoUrl: frontmatter.demo, + error + }) + }); +} + +const testDemoUrls = async (themesMarkdown) => { + spinner.start("Testing Demo URL's"); + await allSettled(themesMarkdown.map(theme => testDemo(theme))) + spinner.succeed("Success - Testing Demo URL's"); +} + + +module.exports = { + testDemoUrls +} \ No newline at end of file diff --git a/scripts/build/errors.js b/scripts/build/errors.js new file mode 100644 index 000000000..d807214d4 --- /dev/null +++ b/scripts/build/errors.js @@ -0,0 +1,6 @@ +#!/usr/bin/env node +let errorLog = [] + +module.exports = { + errorLog +} diff --git a/scripts/build/github.js b/scripts/build/github.js new file mode 100755 index 000000000..31a081184 --- /dev/null +++ b/scripts/build/github.js @@ -0,0 +1,135 @@ +#!/usr/bin/env node +const axios = require('axios'); +const allSettled = require('promise.allsettled'); +const rateLimit = require('axios-rate-limit'); +const isBefore = require('date-fns/isBefore'); +const parseISO = require('date-fns/parseISO'); +const formatDistanceToNow = require('date-fns/formatDistanceToNow') +const ora = require('ora'); +const {errorLog} = require('./errors'); +const {getThemeKey, getRepoName} = require('./utils'); +const {updateFrontmatter} = require('./markdown') +const config = require('./config'); + +if (!process.env.GITHUB_TOKEN) { + throw new Error( + 'Cannot access Github API - environment variable "GITHUB_TOKEN" is missing' + ) +} + +const token = process.env.GITHUB_TOKEN; +const axiosLimit = rateLimit(axios.create(), {maxRequests: 2, perMilliseconds: 200}) +const spinner = ora('Loading') + +const fetchRepoData = async (frontmatter) => { + + const themeKey = getThemeKey(frontmatter.github) + const repoName = getRepoName(frontmatter.github) + + try { + const res = await axiosLimit.get( + `https://api.github.com/repos/${repoName}`, + { + headers: { + Authorization: `Token ${token}`, + }, + }) + spinner.text = `${frontmatter.file} => ${res.data.html_url} - ${res.status}` + const lastCommit = await fetchBranchData(repoName, res.data.default_branch); + updateFrontmatter(frontmatter.file, { + stale: isBefore(parseISO(lastCommit), config.staleBeforeDate) + }) + if (frontmatter.disabled) { + updateFrontmatter(frontmatter.file, { + disabled: false, + disabled_reason: "" + }) + } + + return { + theme_key: themeKey, + file: frontmatter.file, + name: res.data.name, + title: frontmatter.title, + github_username: res.data.owner.login, + repo: res.data.full_name, + branch: res.data.default_branch, + default_branch: res.data.default_branch, + github_url: res.data.html_url, + demo_url: frontmatter.demo, + stars: res.data.stargazers_count, + forks: res.data.forks_count, + open_issues: res.data.open_issues_count, + last_commit: lastCommit, + created_at: res.data.created_at, + description: res.data.description, + images: { + hires: `https://www.jamstackthemes.dev/capture/${themeKey}.png`, + thumbnail: `https://www.jamstackthemes.dev/images/theme/thumbnail/${themeKey}.jpg`, + screenshot: `https://www.jamstackthemes.dev/images/theme/thumbnail/2x/${themeKey}-2x.jpg` + } + } + } catch (err) { + const status = err.response?.status; + let error = `Github repo not found, status: ${status}`; + if (status === 404) { + updateFrontmatter(frontmatter.file, { + disabled: true, + disabled_reason: error + }) + } + spinner.text = `${frontmatter.file} => ${error}` + errorLog.push({ + theme_key: themeKey, + file: frontmatter.file, + repoUrl: frontmatter.github, + error + }) + throw err + } +} + +const fetchBranchData = (repo, branch) => { + return axiosLimit.get( + `https://api.github.com/repos/${repo}/branches/${branch}`, + { + headers: { + Authorization: `Token ${token}`, + }, + }).then((res) => { + const lastCommit = res.data.commit.commit.author.date; + const lastCommitToNow = formatDistanceToNow(parseISO(lastCommit)); + spinner.text = `${repo} => last commit to branch '${branch}' ${lastCommitToNow}` + return lastCommit; + }).catch((err) => { + throw err + }); +} + +const generateGithubData = async (markdownData, themesJsonData) => { + spinner.start("Fetching Github Data"); + const initalThemes = config.themesJsonData; + const update = await allSettled(markdownData.map(frontmatter => fetchRepoData(frontmatter))) + const updatedThemesArray = update.filter(res => res.status === 'fulfilled').map(res => res.value) + const mergedThemesMap = updatedThemesArray.reduce((accumulator, theme) => { + if (theme === undefined) { + // TODO find root cause + console.log("undefined theme detected"); + return { + ...accumulator + }; + } + const themeKey = getThemeKey(theme.github_url) + return { + ...accumulator, + [themeKey]: theme + }; + }, initalThemes); + + spinner.succeed("Success - Fetching Github Data"); + return mergedThemesMap +} + +module.exports = { + generateGithubData +} \ No newline at end of file diff --git a/scripts/build/markdown.js b/scripts/build/markdown.js new file mode 100644 index 000000000..aa53276dd --- /dev/null +++ b/scripts/build/markdown.js @@ -0,0 +1,133 @@ +#!/usr/bin/env node +const fs = require('fs'); +const path = require('path'); +const yamlFront = require('yaml-front-matter'); +const yaml = require('js-yaml'); +const {getThemeKey} = require('./utils'); +const config = require('./config'); + +const updateFrontmatter = (file, update = {}) => { + const absFilepath = path.resolve(config.themesMarkdownFolder, file) + const fileData = fs.existsSync(absFilepath) ? fs.readFileSync(absFilepath) : null; + + let frontmatter = yamlFront.loadFront(fileData); + let content = frontmatter.__content; + delete frontmatter.__content; + + Object.keys(update).forEach((key, index) => { + frontmatter[key] = update[key] + }); + + const fm = `---\n${yaml.dump(frontmatter)}---${content}`; + + fs.writeFileSync(absFilepath, fm); +} + +const loadThemeFrontMatter = absFilename => { + const fileData = fs.readFileSync(absFilename); + const frontmatter = yamlFront.loadFront(fileData); + + if (!frontmatter.github) { + const file = path.parse(absFilename).base; + if (file === ".DS_Store") { + fs.unlinkSync(absFilename) + throw new Error(`${absFilename} invalid file. This file was deleted, try again...`) + } + throw new Error(`${absFilename} invalid github frontmatter`) + } + + let title = frontmatter.title; + let description = frontmatter.description; + let draft = frontmatter.draft; + let disabled = frontmatter.disabled; + let github = frontmatter.github; + let demo = frontmatter.demo; + let github_branch = frontmatter.github_branch; + let file = path.parse(absFilename).base; + let absFile = absFilename + let ssg = frontmatter.ssg + let cms = frontmatter.cms + return { + title, + description, + draft, + disabled, + github, + demo, + github_branch, + file, + absFile, + ssg, + cms + } + +}; + +const generateMarkdownData = async (markdownFiles, options = {}) => { + + let filterCounts = { + draft: 0, + disabled: 0, + latest: 0, + skipped: 0 + } + + const markdownData = markdownFiles.map(absFilename => loadThemeFrontMatter(absFilename)).filter(frontmatter => { + + if (options.file) { + // if the cli command --file=hugo-swift-theme.md is used, only fetch that specific theme + if (options.file !== frontmatter.file) { + filterCounts.skipped += 1 + return false + } + return true; + } + + if (options.latest) { + // if the cli command --latest is used, only fetch new themes which don't already exist in `data/themes.json` + const themeKey = getThemeKey(frontmatter.github) + if (config.themesJsonData[themeKey]) { + filterCounts.latest += 1 + return false + } + return true + } + + if (options.disabled) { + if (frontmatter.disabled) { + filterCounts.disabled += 1 + return false; + } + } + if (options.draft) { + if (frontmatter.draft) { + filterCounts.draft += 1 + return false; + } + } + + return true; + }); + + + if (options.file) { + console.log(`Processing single theme - ${options.file}`) + } else if (options.latest) { + console.log(`Processing latest themes`) + } else { + console.log(`Processing all themes`) + console.log(`Total ${markdownFiles.length} themes`) + console.log(`Skipping ${filterCounts.disabled} disabled themes`) + console.log(`Skipping ${filterCounts.draft} draft themes`) + console.log(`Skipping ${filterCounts.latest} existing themes`) + console.log(`Processing ${markdownData.length}/${markdownFiles.length} themes...`) + } + + return markdownData; +} + +module.exports = { + generateMarkdownData, + updateFrontmatter +} + diff --git a/scripts/build/screenshot.js b/scripts/build/screenshot.js new file mode 100644 index 000000000..56bb0ce03 --- /dev/null +++ b/scripts/build/screenshot.js @@ -0,0 +1,99 @@ +#!/usr/bin/env node +const fs = require('fs-extra'); +const path = require('path'); +const Pageres = require('pageres'); +const sharp = require('sharp') +const {getThemeKey} = require('./utils'); +const config = require('./config'); +const ora = require('ora'); +const spinner = ora('Loading') + +const captureScreenshot = async (frontmatter, overwrite = false) => { + const themeKey = getThemeKey(frontmatter.github) + const themeImage = `${themeKey}.png` + + if (!overwrite && fs.existsSync(path.join(config.hiresImagesFolder, themeImage))) { + return false + } + + try { + const page = await new Pageres({delay: 2, filename: themeKey}) + .src(frontmatter.demo, ['1280x960'], {crop: true}) + .dest(config.hiresImagesFolder) + .run(); + spinner.text = `${frontmatter.demo} => capturing` + return page + } catch { + spinner.text = `${frontmatter.demo} => failed capturing` + return false; + } +}; + +const generateThumbnail = async (frontmatter, overwrite = false) => { + const themeKey = getThemeKey(frontmatter.github) + const hiresImage = path.join(config.hiresImagesFolder, `${themeKey}.png`) + const imageName = path.parse(hiresImage).name + const outputImage = path.join(config.thumbnailImagesFolder, `${imageName}.jpg`) + const outputImage2x = path.join(config.thumbnailImagesFolder2x, `${imageName}-2x.jpg`) + + if (!hiresImage) { + return false; + } + if (!overwrite && fs.existsSync(outputImage) && fs.existsSync(outputImage2x)) { + return false; + } + fs.ensureDirSync(config.thumbnailImagesFolder); + fs.ensureDirSync(config.thumbnailImagesFolder2x); + + try { + spinner.text = `${imageName} => processing thumbnail` + await sharp(hiresImage) + .resize({ + width: 280, + height: 210, + fit: 'cover', + position: 'top', + }) + .jpeg({ + quality: 85, + }) + .toFile(outputImage) + + spinner.text = `${imageName} => processing thumbnail@2x` + await sharp(hiresImage) + .resize({ + width: 560, + height: 420, + fit: 'cover', + position: 'top', + }) + .jpeg({ + quality: 85, + }) + .toFile(outputImage2x) + } catch { + spinner.text = `${imageName} => processing failed` + return false; + } +}; + +const generateThumbnails = async (markdownData, overwrite) => { + spinner.start("Generating Thumbnails"); + for (const theme of markdownData) { + await generateThumbnail(theme, overwrite) + } + spinner.succeed("Success - Generating Thumbnails"); +}; + +const generateScreenshots = async (markdownData, overwrite) => { + spinner.start("Capturing Screenshots"); + for (const theme of markdownData) { + await captureScreenshot(theme, overwrite) + } + spinner.succeed("Success - Capturing Screenshots"); +} + +module.exports = { + generateScreenshots, + generateThumbnails +} \ No newline at end of file diff --git a/scripts/build/stackbit.js b/scripts/build/stackbit.js new file mode 100755 index 000000000..1ac49369b --- /dev/null +++ b/scripts/build/stackbit.js @@ -0,0 +1,91 @@ +#!/usr/bin/env node +const urlSlug = require('url-slug'); +const {getThemeKey, getRepoName} = require('./utils'); +const ora = require('ora'); +const spinner = ora('Loading') +const allowedSsg = [] +const allowedCms = [] + +const generateStackbit = (frontmatter) => { + const themeKey = getThemeKey(frontmatter.github) + + spinner.text = `${frontmatter.file}` + + let stackbitData = { + theme_key: themeKey + }; + + const ssgArray = frontmatter.ssg || [] + const cmsArray = frontmatter.cms || [] + + if (ssgArray.some(ssg => allowedSsg.includes(urlSlug(ssg))) && cmsArray.some(cms => allowedCms.includes(urlSlug(cms)))) { + if (ssgArray.length > 1) { + stackbitData.createUrl = `https://app.stackbit.com/create?theme=${frontmatter.github}` + } else { + stackbitData.createUrl = `https://app.stackbit.com/create?theme=${frontmatter.github}&ssg=${urlSlug(ssgArray)}` + } + } else { + stackbitData.createUrl = null; + } + + // manual overrides + const manualDisabled = [ + 'https://github.com/runbytech/gatsby-theme-ultronele', + 'https://github.com/YoussefRaafatNasry/portfolYOU', + 'https://github.com/qwtel/hydejack', + 'https://github.com/joshgerdes/jekyll-uno', + 'https://github.com/GDGToulouse/devfest-theme-hugo', + 'https://github.com/h-enk/doks', + 'https://github.com/ahmadiqbal1/jekyll-webpack-boilerplate', + 'https://github.com/SupunKavinda/jekyll-theme-leaf.git', + 'https://github.com/techonomics69/gatsby-netlify-form-example', + 'https://github.com/lawrencecchen/headless-comments', + 'https://github.com/Joy3Luo/Joy3luo.github.io', + 'https://github.com/chrisbobbe/jekyll-theme-prologue', + 'https://github.com/adityatelange/hugo-PaperMod/', + 'https://github.com/Kentico/kontent-jekyll-blog', + 'https://github.com/longpdo/neumorphism', + 'https://github.com/puresyntax71/hugo-theme-chunky-poster', + 'https://github.com/sharadcodes/jekyll-theme-dark-reader', + 'https://github.com/wkocjan/gatsby-theme-intro', + 'https://github.com/jameshamann/jekyll-material-theme', + 'https://github.com/fncnt/vncnt-hugo', + 'https://github.com/wizlee/gatsby-portfolio', + 'https://github.com/EmaSuriano/gatsby-starter-mate', + 'https://github.com/guangmean/Niello', + 'https://github.com/fabien0102/gatsby-starter', + 'https://github.com/netlify-templates/one-click-hugo-cms' + + ]; + manualDisabled.forEach(url => { + if (url === frontmatter.github) { + if (stackbitData.createUrl) { + delete stackbitData.createUrl + } + } + }) + const manualEnabled = ['https://github.com/stackbit-themes/minimal-nextjs-theme'] + manualEnabled.forEach(url => { + if (url === frontmatter.github) { + stackbitData.createUrl = `https://app.stackbit.com/create?theme=${frontmatter.github}&ssg=${urlSlug(frontmatter.ssg)}&cms=${urlSlug(frontmatter.cms)}` + } + }) + if (stackbitData.createUrl) { + return stackbitData; + } + return false; + +}; + +const generateStackbitData = (markdownData) => { + spinner.start("Fetching Stackbit Data"); + const stackbitData = markdownData.map(theme => { + return generateStackbit(theme) + }).filter(stackbit => stackbit.createUrl); + spinner.succeed("Success - Fetching Stackbit Data"); + return stackbitData; +}; + +module.exports = { + generateStackbitData +} \ No newline at end of file diff --git a/scripts/build/utils.js b/scripts/build/utils.js new file mode 100644 index 000000000..301e4920c --- /dev/null +++ b/scripts/build/utils.js @@ -0,0 +1,20 @@ +#!/usr/bin/env node +const parseGithubUrl = require('parse-github-url'); + +const getRepoName = (repoUrl) => { + return parseGithubUrl(repoUrl).repo; // stackbithq/stackbit-theme-fresh +} + +const getThemeKey = (repoUrl) => { + if (!repoUrl) { + throw Error("Unable to generate themeKey") + } + const repoName = getRepoName(repoUrl) + const themeKey = repoName.replace("/", "-").toLowerCase(); + return themeKey +} + +module.exports = { + getThemeKey, + getRepoName +} \ No newline at end of file diff --git a/scripts/build/write.js b/scripts/build/write.js new file mode 100644 index 000000000..124b4097f --- /dev/null +++ b/scripts/build/write.js @@ -0,0 +1,53 @@ +#!/usr/bin/env node +const fs = require('fs'); +const config = require('./config') +const {getThemeKey} = require('./utils'); + +const writeThemesFile = (themes) => { + // Load existing themes.json and update it + let themesData = themes + // themes.forEach(theme => { + // themesData[theme.theme_key] = theme; + // }) + let sortedThemesData = {} + Object.keys(themesData).sort().forEach(key => { + sortedThemesData[key] = themesData[key]; + }); + console.log(`Writing ${config.themesJsonFile}...`); + fs.writeFileSync(config.themesJsonFile, JSON.stringify(sortedThemesData, null, 2)); +} + +const writeErrorFile = (errorLog) => { + console.log(`Writing ${config.errorJsonFile}...`); + fs.writeFileSync(config.errorJsonFile, JSON.stringify(errorLog, null, 2)); +} + +const writeStackbitFile = (stackbit) => { + let stackbitData = config.stackbitJsonData + stackbit.forEach(theme => { + stackbitData[theme.theme_key] = theme; + }) + let sortedStackbitData = {} + Object.keys(stackbitData).sort().forEach(key => { + sortedStackbitData[key] = stackbitData[key]; + }); + console.log(`Writing ${config.stackbitJsonFile}...`); + fs.writeFileSync(config.stackbitJsonFile, JSON.stringify(sortedStackbitData, null, 2)); +} + +const themeMap = (themes) => { + return themes.reduce((accumulator, theme) => { + const themeKey = getThemeKey(theme.github) + return { + ...accumulator, + [themeKey]: theme + }; + }); +} + +module.exports = { + writeThemesFile, + writeErrorFile, + writeStackbitFile, + themeMap +} diff --git a/scripts/capture-screenshots.js b/scripts/capture-screenshots.js deleted file mode 100644 index 3ddaf230a..000000000 --- a/scripts/capture-screenshots.js +++ /dev/null @@ -1,61 +0,0 @@ -#!/usr/bin/env node -const Pageres = require('pageres'); -const fs = require('fs'); -const path = require('path'); -const yamlFront = require('yaml-front-matter'); -const gh = require('parse-github-url'); -const argv = require('yargs').argv - -const themesFolder = path.join(__dirname, '../content/theme'); -const hiresImagesFolder = path.join(__dirname, '../static/capture'); - -const themeFiles = fs.readdirSync(themesFolder); - -console.log("******************") -console.log("Taking Screenshots") -console.log("******************") - -captureWebScreenshot = async (theme, overwrite = false) => { - const data = fs.readFileSync(path.join(themesFolder, theme)); - const frontmatter = yamlFront.loadFront(data); - let github = gh(frontmatter.github); - let branch = frontmatter.github_branch; - - if (frontmatter.disabled) { - return false - } - - if (github) { - let themeKey = github.repo.replace("/", "-").toLowerCase() + "-" + branch; - let themeImage = `${themeKey}.png` - const url = frontmatter.demo - - if (!overwrite && fs.existsSync(path.join(hiresImagesFolder, themeImage))) { - return false - } else { - console.log(`${theme} capturing`); - const page = await new Pageres({delay: 2, filename: themeKey}) - .src(url, ['1280x960'], {crop: true}) - .dest(hiresImagesFolder) - .run(); - return page - } - } - return false; -}; - -const captureAll = async () => { - for(const theme of themeFiles) { - await captureWebScreenshot(theme) - } -} - -// if the cli command --theme=hugo-swift-theme.md is used, only capture that specific theme -if (argv.theme) { - const theme = argv.theme; - console.log(`Capturing screenshot for ${theme}`) - captureWebScreenshot(theme, true) -} else { - captureAll() -} - diff --git a/scripts/generate-github.js b/scripts/generate-github.js deleted file mode 100755 index c431bc67c..000000000 --- a/scripts/generate-github.js +++ /dev/null @@ -1,268 +0,0 @@ -#!/usr/bin/env node -const fs = require('fs'); -const path = require('path'); -const yamlFront = require('yaml-front-matter'); -const gh = require('parse-github-url'); -const axios = require('axios'); -const allSettled = require('promise.allsettled'); -const rateLimit = require('axios-rate-limit'); -const isBefore = require('date-fns/isBefore'); -const parseISO = require('date-fns/parseISO'); -const subYears = require('date-fns/subYears'); -const formatDistanceToNow = require('date-fns/formatDistanceToNow') -const argv = require('yargs').argv -const updateMarkdown = require('./update-markdown.js'); - -const themesDataFile = path.join(__dirname, '../data/themes.json'); -const themesContentFolder = path.join(__dirname, '../content/theme'); - -let themesFiles = fs.readdirSync(themesContentFolder); -let themesData = fs.existsSync(themesDataFile) ? JSON.parse(fs.readFileSync(themesDataFile)) : {}; -let githubErrors = {} - -const token = process.env.GITHUB_TOKEN; -const axiosLimit = rateLimit(axios.create(), { maxRequests: 2, perMilliseconds: 200 }) - -// Themes with no commits after a certain time period are marked as `stale` -const staleBeforeDate = subYears(new Date(), 1); - -if (!process.env.GITHUB_TOKEN) { - throw new Error( - 'Cannot access Github API - environment variable "GITHUB_TOKEN" is missing' - ) -} - -console.log("***********************************") -console.log("Fetching Github data for each theme") -console.log("***********************************") -console.log(`themesDataFile ${themesDataFile}`) -console.log(`themesContentFolder ${themesContentFolder}\n`) - -const loadThemeFrontMatter = fileName => { - const fileData = fs.readFileSync(path.join(themesContentFolder, fileName)); - const frontmatter = yamlFront.loadFront(fileData); - - try { - let title = frontmatter.title; - let description = frontmatter.description; - let draft = frontmatter.draft; - let disabled = frontmatter.disabled; - let repoUrl = frontmatter.github; - let repoName = gh(frontmatter.github).repo; // stackbithq/stackbit-theme-fresh - let demoUrl = frontmatter.demo; - let branch = frontmatter.github_branch; - let themeKey = repoName.replace("/", "-").toLowerCase() + "-" + branch; - let file = fileName; - return { title, description, file, repoUrl, repoName, demoUrl, branch, themeKey, disabled, draft } - } - catch { - throw new Error(`${fileName} invalid github frontmatter`) - } -}; - -const getBranchCommit = (theme) => { - return axiosLimit.get( - `https://api.github.com/repos/${theme.repoName}/branches/${theme.branch}`, - { - headers: { - Authorization: `Token ${token}`, - }, - }).then((res) => { - const lastCommit = res.data.commit.commit.author.date; - const lastCommitToNow = formatDistanceToNow(parseISO(lastCommit)); - const isStale = isBefore(parseISO(lastCommit), staleBeforeDate) - console.log(`${theme.file} => last commit to branch '${theme.branch}' ${lastCommitToNow}`) - themesData[theme.themeKey].last_commit = lastCommit; - themesData[theme.themeKey].stale = isStale; - if (theme.stale != isStale) { - updateMarkdown.updateFrontmatter(theme.file, { - stale: isStale - }) - } - return lastCommit; - }).catch((err) => { - console.log(theme.file, err.message) - githubErrors[theme.repo] = { - file: theme.file, - repoUrl: theme.repoUrl, - error: err.response.data - } - throw err - }); -} - -const getThemeGithubData = (theme) => { - return axiosLimit.get( - `https://api.github.com/repos/${theme.repoName}`, - { - headers: { - Authorization: `Token ${token}`, - }, - }).then((res) => { - console.log(`${theme.file} => ${res.data.html_url} - ${res.status}`); - const defaultBranch = theme.branch ? theme.branch : res.data.default_branch; - const themeKey = theme.repoName.replace("/", "-").toLowerCase() + "-" + defaultBranch; - themesData[themeKey] = { - theme_key: themeKey, - file: theme.file, - name: res.data.name, - title: theme.title, - github_username: res.data.owner.login, - repo: res.data.full_name, - branch: defaultBranch, - github_url: res.data.html_url, - demo_url: theme.demoUrl, - stars: res.data.stargazers_count, - forks: res.data.forks_count, - open_issues: res.data.open_issues_count, - last_commit: res.data.updated_at, - created_at: res.data.created_at, - description: res.data.description - } - return themesData[themeKey] - }).catch(err => { - console.log(theme.file, err.message) - if (err.response.status === 401) { - - } - if (err.response.status === 404) { - updateMarkdown.updateFrontmatter(theme.file, { - disabled: true, - disabled_reason: err.response.data.message - }); - } - githubErrors[theme.repoName] = { - file: theme.file, - repoUrl: theme.repoUrl, - error: err.response.data - } - throw err - }); -} - - -const checkDemoUrl = (theme) => { - return axios.get(theme.demoUrl).then((res) => { - console.log(`${theme.demoUrl} => checking Demo URL - ${res.status}`); - return true; - }).catch(err => { - if (err) { - if (err.response) { - if (err.response.status === 404) { - console.log(`${theme.demoUrl} => checking Demo URL - ${err.response.status}`); - updateMarkdown.updateFrontmatter(theme.file, { - disabled: true, - disabled_reason: "demo url not found" - }); - } - } else if (err.code === "ENOTFOUND") { - console.log(`${theme.demoUrl} => checking Demo URL - ${err.response.status}`); - updateMarkdown.updateFrontmatter(theme.file, { - disabled: true, - disabled_reason: "demo url not found" - }); - } - } - }); -} - -const getImages = (theme) => { - themesData[theme.themeKey].images = {} - themesData[theme.themeKey].images.hires = `https://www.jamstackthemes.dev/capture/${theme.themeKey}.png` - themesData[theme.themeKey].images.thumbnail = `https://www.jamstackthemes.dev/images/theme/thumbnail/${theme.themeKey}.jpg` - themesData[theme.themeKey].images.screenshot = `https://www.jamstackthemes.dev/images/theme/thumbnail/2x/${theme.themeKey}-2x.jpg` -} - -const getThemes = async () => { - - const themesFrontMatter = themesFiles.map(fileName => { - return loadThemeFrontMatter(fileName) - }) - - const filter = { - draft: true, - disabled: true - }; - - let filterCounts = { - draft: 0, - disabled: 0, - latest: 0, - skipped: 0 - } - - // Filter themes before fetching from Github - let filteredThemesFrontMatter = themesFrontMatter.filter(theme => { - // Don't fetch themes with draft or disabled in the frontmatter - for (let key in filter) { - if (theme[key]) { - filterCounts[key] += 1 - return false; - } - } - // if the cli command --latest is used, only fetch new themes which don't already exist in `data/themes.json` - if (argv.latest) { - if (themesData[theme.themeKey]) { - filterCounts.latest += 1 - return false - } - } - // if the cli command --file=hugo-swift-theme.md is used, only fetch that specific theme - if (argv.file) { - if (argv.file !== theme.file) { - filterCounts.skipped += 1 - return false - } - } - return true; - }); - - console.log(`Loading (${filteredThemesFrontMatter.length}/${themesFrontMatter.length}) themes`) - console.log("Disabled ", themesFrontMatter.filter(theme => theme.disabled).length) - console.log("Drafts ", themesFrontMatter.filter(theme => theme.draft).length) - console.log("Latest ", filterCounts.latest) - console.log("Skipped ", filterCounts.skipped) - - const results = await allSettled(filteredThemesFrontMatter.map(theme => { - return getThemeGithubData(theme) - })) - - if (!argv.skipBranchCommits) { - await allSettled(filteredThemesFrontMatter.map(theme => { - return getBranchCommit(theme) - })) - } - - filteredThemesFrontMatter.map(theme => { - return checkDemoUrl(theme) - }) - - filteredThemesFrontMatter.map(theme => { - return getImages(theme) - }) - - // Check if any of the allSettled promises failed. - const errors = results.filter(error => error.status === 'rejected'); - - if (errors.length) { - console.log(`${Object.keys(errors).length} Errors Founds`); - console.log(githubErrors); - throw new Error("Error fetching github data..."); - } - - // Sort data - let sortedThemesData = {} - Object.keys(themesData).sort().forEach(key => { - sortedThemesData[key] = themesData[key]; - }); - - return sortedThemesData; -} - -getThemes().then(res => { - console.log("Success") - console.log("Writing data/themes.json...") - fs.writeFileSync(themesDataFile, JSON.stringify(res, null, 2)); -}).catch(err => { - console.log(err); -}) diff --git a/scripts/generate-stackbit.js b/scripts/generate-stackbit.js deleted file mode 100755 index 14ae5f8c0..000000000 --- a/scripts/generate-stackbit.js +++ /dev/null @@ -1,122 +0,0 @@ -#!/usr/bin/env node -const fs = require('fs'); -const path = require('path'); -const yamlFront = require('yaml-front-matter'); -const gh = require('parse-github-url'); -const urlSlug = require('url-slug'); - -const stackbitDataFile = path.join(__dirname, '../data/stackbit.json'); -const themesContentFolder = path.join(__dirname, '../content/theme'); -const themesFiles = fs.readdirSync(themesContentFolder); - -console.log("Generating Stackbit") -console.log(`stackbitDataFile ${stackbitDataFile}`) -console.log(`themesContentFolder ${themesContentFolder}\n`) - -let stackbitData = {}; - -const generateStackbit = (fileName) => { - const fileData = fs.readFileSync(path.join(themesContentFolder, fileName)); - const frontmatter = yamlFront.loadFront(fileData); - const repoName = gh(frontmatter.github).repo; - const defaultBranch = frontmatter.branch ? frontmatter.branch : "master"; - const themeKey = repoName.replace("/", "-").toLowerCase() + "-" + defaultBranch; - - // SSG - if (frontmatter.ssg) { - if (frontmatter.ssg.some(ssg => ["hugo", "jekyll", "gatsby", "unibit"].includes(urlSlug(ssg)))) { - if (frontmatter.ssg.length > 1) { - stackbitData[themeKey] = { - createUrl: `https://app.stackbit.com/create?theme=${frontmatter.github}` - }; - } else { - stackbitData[themeKey] = { - createUrl: `https://app.stackbit.com/create?theme=${frontmatter.github}&ssg=${urlSlug(frontmatter.ssg)}` - }; - } - } - } - - // CMS - if (frontmatter.cms) { - if (frontmatter.cms.some(cms => ["netlifycms", "forestry"].includes(urlSlug(cms)))) { - if (frontmatter.cms.length === 1) { - if (stackbitData[themeKey]) { - stackbitData[themeKey].createUrl += `&cms=${urlSlug(frontmatter.cms)}` - } - } - } - if (frontmatter.cms.some(cms => ["airtable", "contentful", "datocms", "firebase", "ghost", "kontent", "prismic", "sanity", "wordpress"].includes(urlSlug(cms)))) { - if (frontmatter.ssg.some(ssg => ["unibit"].includes(urlSlug(ssg)))) { - - } else { - delete stackbitData[themeKey] - } - } - } - - // manual overrides - const manualDisabled = [ - 'https://github.com/runbytech/gatsby-theme-ultronele', - 'https://github.com/YoussefRaafatNasry/portfolYOU', - 'https://github.com/qwtel/hydejack', - 'https://github.com/joshgerdes/jekyll-uno', - 'https://github.com/GDGToulouse/devfest-theme-hugo', - 'https://github.com/h-enk/doks', - 'https://github.com/ahmadiqbal1/jekyll-webpack-boilerplate', - 'https://github.com/SupunKavinda/jekyll-theme-leaf.git', - 'https://github.com/techonomics69/gatsby-netlify-form-example', - 'https://github.com/lawrencecchen/headless-comments', - 'https://github.com/Joy3Luo/Joy3luo.github.io', - 'https://github.com/chrisbobbe/jekyll-theme-prologue', - 'https://github.com/adityatelange/hugo-PaperMod/', - 'https://github.com/Kentico/kontent-jekyll-blog', - 'https://github.com/longpdo/neumorphism', - 'https://github.com/puresyntax71/hugo-theme-chunky-poster', - 'https://github.com/sharadcodes/jekyll-theme-dark-reader', - 'https://github.com/wkocjan/gatsby-theme-intro', - 'https://github.com/jameshamann/jekyll-material-theme', - 'https://github.com/fncnt/vncnt-hugo', - 'https://github.com/wizlee/gatsby-portfolio', - 'https://github.com/EmaSuriano/gatsby-starter-mate', - 'https://github.com/guangmean/Niello' - ]; - manualDisabled.forEach(url => { - if (url === frontmatter.github) { - if (stackbitData[themeKey]) { - delete stackbitData[themeKey] - } - } - }) - const manualEnabled = ['https://github.com/rohitguptab/rg-portfolio', 'https://github.com/narative/gatsby-theme-novela'] - manualEnabled.forEach(url => { - if (url === frontmatter.github) { - stackbitData[themeKey] = { - createUrl: `https://app.stackbit.com/create?theme=${frontmatter.github}&ssg=${urlSlug(frontmatter.ssg)}&cms=${urlSlug(frontmatter.cms)}` - }; - } - }) - return false; -}; - -const getThemes = async () => { - themesFiles.forEach(fileName => { - generateStackbit(fileName) - }); - - // Sort data - let sortedThemesData = {}; - Object.keys(stackbitData).sort().forEach(key => { - sortedThemesData[key] = stackbitData[key]; - }); - - return sortedThemesData; -}; - -getThemes().then(res => { - console.log("Success"); - console.log("Writing data/stackbit.json..."); - fs.writeFileSync(stackbitDataFile, JSON.stringify(res, null, 2)); -}).catch(err => { - console.log(err); -}); diff --git a/scripts/generate-thumbnails.js b/scripts/generate-thumbnails.js deleted file mode 100644 index 67544119d..000000000 --- a/scripts/generate-thumbnails.js +++ /dev/null @@ -1,77 +0,0 @@ -#!/usr/bin/env node -const fs = require('fs'); -const path = require('path'); -const sharp = require('sharp') -const argv = require('yargs').argv - -const hiresImagesFolder = path.join(__dirname, '../static/capture'); -const outputFolder = path.join(__dirname, '../static/images/theme/thumbnail') -const outputFolder2x = path.join(__dirname, '../static/images/theme/thumbnail/2x') -const imageFiles = fs.readdirSync(hiresImagesFolder); - -console.log("******************************************************") -console.log(`Generating thumbnails from images in ${hiresImagesFolder}`) -console.log("******************************************************") - -generateThumbnails = (image, overwrite = false) => { - const inputImage = path.join(hiresImagesFolder, image) - const imageName = path.parse(image).name - const imageExtension = path.parse(image).ext - const outputImage = path.join(outputFolder, `${imageName}.jpg`) - const outputImage2x = path.join(outputFolder2x, `${imageName}-2x.jpg`) - - if (!overwrite && fs.existsSync(outputImage) && fs.existsSync(outputImage2x)) { - return false - } else { - console.log(`processing ${inputImage}`) - sharp(inputImage) - .resize({ - width: 280, - height: 210, - fit: 'cover', - position: 'top', - }) - .jpeg({ - quality: 85, - }) - .toFile(outputImage) - .then( (ImageResult) => { - console.log(ImageResult); - }).catch((err) => { - console.log(err); - }) - - sharp(inputImage) - .resize({ - width: 560, - height: 420, - fit: 'cover', - position: 'top', - }) - .jpeg({ - quality: 85, - }) - .toFile(outputImage2x) - .then( (ImageResult) => { - console.log(ImageResult); - }).catch((err) => { - console.log(inputImage) - console.log(err); - }) - } -}; - -const generateThumbnailsAll = () => { - imageFiles.forEach(image => { - generateThumbnails(image); - }); -}; - -// if the cli command --theme=hugo-swift-theme.md is used, only capture that specific theme -if (argv.image) { - const image = argv.image; - console.log(`Generating thumbnails for ${image}`) - generateThumbnails(image, true) -} else { - generateThumbnailsAll() -} diff --git a/scripts/scrub-themes.js b/scripts/scrub-themes.js deleted file mode 100644 index c9d7b4a32..000000000 --- a/scripts/scrub-themes.js +++ /dev/null @@ -1,106 +0,0 @@ -#!/usr/bin/env node -const fs = require('fs'); -const path = require('path'); -const yamlFront = require('yaml-front-matter'); -const isAfter = require('date-fns/isAfter'); -const parseISO = require('date-fns/parseISO'); -const subMonths = require('date-fns/subMonths'); - -// Set this to the date you want to consider themes stale if there have been no commits since. -const staleBeforeDate = subMonths(new Date(), 12); - -const themesDataFile = path.join(__dirname, '../data/themes.json'); -const themesFolder = './content/theme'; -const themesData = fs.existsSync(themesDataFile) ? JSON.parse(fs.readFileSync(themesDataFile)) : {}; - -var filesUpdated = 0; - -function loadFrontmatter(dir, file, themeKey) { - const fileData = fs.existsSync(path.join(dir, file)) ? fs.readFileSync(path.join(dir, file)) : null; - - if (!fileData) { - console.log("file not found", file, themesData[themeKey]); - delete themesData[themeKey]; - console.log(`entry deleted from ${themesDataFile}`); - fs.writeFileSync(themesDataFile, JSON.stringify(themesData, null, 2)); - return {fileData: null, frontmatter: null}; - } - - var frontmatter = yamlFront.loadFront(fileData); - - if (frontmatter.stale === undefined) { - // Assume not stale if stale status is missing from frontmatter. - frontmatter.stale = false; - } - - return { fileData, frontmatter }; -} - -console.log("***********************************") -console.log("Scrubbing Themes") -console.log("***********************************") - -const themeKeys = Object.keys(themesData); - -for (const themeKey of themeKeys) { - const theme = themesData[themeKey]; - const { fileData, frontmatter } = loadFrontmatter(themesFolder, theme.file, themeKey); - const newFrontmatterEntries = []; - - const isThemeStale = !isAfter(parseISO(theme.last_commit), staleBeforeDate); - - if (!fileData) { - return false; - } - - if (frontmatter.description === undefined) { - - if (theme.description) { - let description = theme.description.replace(/["]/g, "'") - newFrontmatterEntries.push(`description: "${description}"`); - console.log('update description: ' + theme.file + " - " + description); - } - } - - if (frontmatter.date === undefined) { - if (frontmatter.date != theme.created_at) { - newFrontmatterEntries.push('date: ' + theme.created_at); - console.log('update date: ' + theme.file + " - " + theme.created_at); - } - } - - // If there is a change in the stale state, generate new frontmatter - // entry for stale setting. - if (isThemeStale != frontmatter.stale) { - newFrontmatterEntries.push('stale: ' + isThemeStale); - console.log('update stale: ' + theme.file + " - " + isThemeStale); - } - - // If the github branch is missing, generate new frontmatter entry - // for github branch setting. - if (frontmatter.github_branch === undefined) { - newFrontmatterEntries.push('github_branch: ' + theme.branch); - console.log('update github branch: ' + theme.file + " - " + theme.branch); - } - - // When there are new frontmatter entries re-write the theme markdown file - // with those new entries. - if (newFrontmatterEntries.length > 0) { - var frontmatterLines; - - if (frontmatter.stale != undefined) { - frontmatterLines = fileData.toString().split('\n').filter((entry) => !/^\s*stale:/.test(entry)); - // frontmatterLines = fileData.toString().split('\n').filter((entry) => !/^\s*draft:/.test(entry)); - } else { - frontmatterLines = fileData.toString().split('\n'); - } - const idx = frontmatterLines.indexOf('---', frontmatterLines.indexOf('---') +1 ); - frontmatterLines.splice(idx, 0, ...newFrontmatterEntries); - // console.log('Updating: ' + theme.file); - fs.writeFileSync(path.join(themesFolder, theme.file), frontmatterLines.join("\n")); - filesUpdated++; - } -} -const numberOfThemes = themeKeys.length; -console.log(numberOfThemes + " files checked."); -console.log(filesUpdated + " files updated."); diff --git a/scripts/update-markdown.js b/scripts/update-markdown.js deleted file mode 100644 index 9d629b2ca..000000000 --- a/scripts/update-markdown.js +++ /dev/null @@ -1,31 +0,0 @@ -#!/usr/bin/env node -const fs = require('fs'); -const path = require('path'); -const yamlFront = require('yaml-front-matter'); -const yaml = require('js-yaml'); - -function updateFrontmatter(file, update = {}) { - const themeFilePath = path.join(__dirname, '../content/theme/', file) - const fileData = fs.existsSync(themeFilePath) ? fs.readFileSync(themeFilePath) : null; - - if (!fileData) { - console.log("file not found", file); - return; - } - - let frontmatter = yamlFront.loadFront(fileData); - let content = frontmatter.__content; - delete frontmatter.__content; - - Object.keys(update).forEach((key, index) => { - frontmatter[key] = update[key] - }); - - const fm = `---\n${yaml.safeDump(frontmatter)}---${content}`; - - fs.writeFileSync(themeFilePath, fm); -} - -module.exports = { - updateFrontmatter, -}; diff --git a/static/_redirects b/static/_redirects index f504a3def..8c39bdb73 100644 --- a/static/_redirects +++ b/static/_redirects @@ -1,2 +1 @@ https://jamstackthemes.netlify.app/* https://jamstackthemes.dev/:splat 301! -https://jamstackthemes.dev/themes/ https://jamstackthemes.dev/theme 301! diff --git a/static/capture/11ty-eleventy-base-blog-master.png b/static/capture/11ty-eleventy-base-blog-master.png deleted file mode 100644 index 6469c30a8..000000000 Binary files a/static/capture/11ty-eleventy-base-blog-master.png and /dev/null differ diff --git a/static/capture/11ty-eleventy-base-blog.png b/static/capture/11ty-eleventy-base-blog.png new file mode 100644 index 000000000..2b2913266 Binary files /dev/null and b/static/capture/11ty-eleventy-base-blog.png differ diff --git a/static/capture/12vanblart-gridsome-airtable-starter-master.png b/static/capture/12vanblart-gridsome-airtable-starter-master.png deleted file mode 100644 index 0d102e04d..000000000 Binary files a/static/capture/12vanblart-gridsome-airtable-starter-master.png and /dev/null differ diff --git a/static/capture/12vanblart-gridsome-airtable-starter.png b/static/capture/12vanblart-gridsome-airtable-starter.png new file mode 100644 index 000000000..0c19b807a Binary files /dev/null and b/static/capture/12vanblart-gridsome-airtable-starter.png differ diff --git a/static/capture/2-rec-hugo-myportfolio-theme-master.png b/static/capture/2-rec-hugo-myportfolio-theme-master.png deleted file mode 100644 index 0183e8c58..000000000 Binary files a/static/capture/2-rec-hugo-myportfolio-theme-master.png and /dev/null differ diff --git a/static/capture/416serg-gatsby-starter-lightbox-master.png b/static/capture/416serg-gatsby-starter-lightbox-master.png deleted file mode 100644 index 5d58bc440..000000000 Binary files a/static/capture/416serg-gatsby-starter-lightbox-master.png and /dev/null differ diff --git a/static/capture/416serg-gatsby-starter-lightbox.png b/static/capture/416serg-gatsby-starter-lightbox.png new file mode 100644 index 000000000..ac45fee5a Binary files /dev/null and b/static/capture/416serg-gatsby-starter-lightbox.png differ diff --git a/static/capture/526avijitgupta-gokarna.png b/static/capture/526avijitgupta-gokarna.png new file mode 100644 index 000000000..1ec34ceff Binary files /dev/null and b/static/capture/526avijitgupta-gokarna.png differ diff --git a/static/capture/a9kitkumar-gatsby-ecommerce-master.png b/static/capture/a9kitkumar-gatsby-ecommerce-master.png deleted file mode 100644 index 6c882d6f2..000000000 Binary files a/static/capture/a9kitkumar-gatsby-ecommerce-master.png and /dev/null differ diff --git a/static/capture/a9kitkumar-gatsby-ecommerce.png b/static/capture/a9kitkumar-gatsby-ecommerce.png new file mode 100644 index 000000000..9be4aa874 Binary files /dev/null and b/static/capture/a9kitkumar-gatsby-ecommerce.png differ diff --git a/static/capture/aanupam23-hugo-sugoi-master.png b/static/capture/aanupam23-hugo-sugoi-master.png deleted file mode 100644 index 28e8806e3..000000000 Binary files a/static/capture/aanupam23-hugo-sugoi-master.png and /dev/null differ diff --git a/static/capture/aanupam23-hugo-sugoi.png b/static/capture/aanupam23-hugo-sugoi.png new file mode 100644 index 000000000..7305617d3 Binary files /dev/null and b/static/capture/aanupam23-hugo-sugoi.png differ diff --git a/static/capture/abhaynikam-gatsby-nice-blog-master.png b/static/capture/abhaynikam-gatsby-nice-blog-master.png deleted file mode 100644 index 0fbc944b4..000000000 Binary files a/static/capture/abhaynikam-gatsby-nice-blog-master.png and /dev/null differ diff --git a/static/capture/abhaynikam-gatsby-nice-blog.png b/static/capture/abhaynikam-gatsby-nice-blog.png new file mode 100644 index 000000000..becf95ad6 Binary files /dev/null and b/static/capture/abhaynikam-gatsby-nice-blog.png differ diff --git a/static/capture/abhinavs-cookie.png b/static/capture/abhinavs-cookie.png new file mode 100644 index 000000000..96029ca06 Binary files /dev/null and b/static/capture/abhinavs-cookie.png differ diff --git a/static/capture/abhinavs-moonwalk-master.png b/static/capture/abhinavs-moonwalk-master.png deleted file mode 100644 index 99a6b7b5a..000000000 Binary files a/static/capture/abhinavs-moonwalk-master.png and /dev/null differ diff --git a/static/capture/abhinavs-moonwalk.png b/static/capture/abhinavs-moonwalk.png new file mode 100644 index 000000000..655c3cdf4 Binary files /dev/null and b/static/capture/abhinavs-moonwalk.png differ diff --git a/static/capture/abhn-soot-spirits-master.png b/static/capture/abhn-soot-spirits-master.png deleted file mode 100644 index c0a155898..000000000 Binary files a/static/capture/abhn-soot-spirits-master.png and /dev/null differ diff --git a/static/capture/abhn-soot-spirits.png b/static/capture/abhn-soot-spirits.png new file mode 100644 index 000000000..fd2551478 Binary files /dev/null and b/static/capture/abhn-soot-spirits.png differ diff --git a/static/capture/abhn-wall-e-master.png b/static/capture/abhn-wall-e-master.png deleted file mode 100644 index f96b2c9b7..000000000 Binary files a/static/capture/abhn-wall-e-master.png and /dev/null differ diff --git a/static/capture/abhn-wall-e.png b/static/capture/abhn-wall-e.png new file mode 100644 index 000000000..6409dd554 Binary files /dev/null and b/static/capture/abhn-wall-e.png differ diff --git a/static/capture/achariam-elyxel-master.png b/static/capture/achariam-elyxel-master.png deleted file mode 100644 index f034dcd0d..000000000 Binary files a/static/capture/achariam-elyxel-master.png and /dev/null differ diff --git a/static/capture/achary-engimo-master.png b/static/capture/achary-engimo-master.png deleted file mode 100644 index bcc3b8db0..000000000 Binary files a/static/capture/achary-engimo-master.png and /dev/null differ diff --git a/static/capture/achary-engimo.png b/static/capture/achary-engimo.png new file mode 100644 index 000000000..74bff9b1b Binary files /dev/null and b/static/capture/achary-engimo.png differ diff --git a/static/capture/act-labs-gatsby-starter-act-blog-master.png b/static/capture/act-labs-gatsby-starter-act-blog-master.png deleted file mode 100644 index c7e79a295..000000000 Binary files a/static/capture/act-labs-gatsby-starter-act-blog-master.png and /dev/null differ diff --git a/static/capture/act-labs-gatsby-starter-act-blog.png b/static/capture/act-labs-gatsby-starter-act-blog.png new file mode 100644 index 000000000..be61e7aa1 Binary files /dev/null and b/static/capture/act-labs-gatsby-starter-act-blog.png differ diff --git a/static/capture/adisaktijrs-hexo-theme-minima-master.png b/static/capture/adisaktijrs-hexo-theme-minima-master.png deleted file mode 100644 index 6167cb6be..000000000 Binary files a/static/capture/adisaktijrs-hexo-theme-minima-master.png and /dev/null differ diff --git a/static/capture/adisaktijrs-hexo-theme-minima.png b/static/capture/adisaktijrs-hexo-theme-minima.png new file mode 100644 index 000000000..18e3810fc Binary files /dev/null and b/static/capture/adisaktijrs-hexo-theme-minima.png differ diff --git a/static/capture/adityatelange-hugo-papermod-master.png b/static/capture/adityatelange-hugo-papermod-master.png deleted file mode 100644 index 43bcb43eb..000000000 Binary files a/static/capture/adityatelange-hugo-papermod-master.png and /dev/null differ diff --git a/static/capture/adityatelange-hugo-papermod.png b/static/capture/adityatelange-hugo-papermod.png new file mode 100644 index 000000000..d08066661 Binary files /dev/null and b/static/capture/adityatelange-hugo-papermod.png differ diff --git a/static/capture/adueck-cayman-blog-master.png b/static/capture/adueck-cayman-blog-master.png deleted file mode 100644 index 7899ae7ed..000000000 Binary files a/static/capture/adueck-cayman-blog-master.png and /dev/null differ diff --git a/static/capture/adueck-cayman-blog.png b/static/capture/adueck-cayman-blog.png new file mode 100644 index 000000000..232366db1 Binary files /dev/null and b/static/capture/adueck-cayman-blog.png differ diff --git a/static/capture/adueck-good-clean-read-master.png b/static/capture/adueck-good-clean-read-master.png deleted file mode 100644 index 0617c5e3d..000000000 Binary files a/static/capture/adueck-good-clean-read-master.png and /dev/null differ diff --git a/static/capture/adueck-good-clean-read.png b/static/capture/adueck-good-clean-read.png new file mode 100644 index 000000000..a28c0c18e Binary files /dev/null and b/static/capture/adueck-good-clean-read.png differ diff --git a/static/capture/aerohub-hugo-faq-theme-master.png b/static/capture/aerohub-hugo-faq-theme-master.png deleted file mode 100644 index 60f7c5b43..000000000 Binary files a/static/capture/aerohub-hugo-faq-theme-master.png and /dev/null differ diff --git a/static/capture/aerohub-hugo-identity-theme-master.png b/static/capture/aerohub-hugo-identity-theme-master.png deleted file mode 100644 index 874e93124..000000000 Binary files a/static/capture/aerohub-hugo-identity-theme-master.png and /dev/null differ diff --git a/static/capture/aerohub-hugo-orbit-theme-master.png b/static/capture/aerohub-hugo-orbit-theme-master.png deleted file mode 100644 index 611ed3675..000000000 Binary files a/static/capture/aerohub-hugo-orbit-theme-master.png and /dev/null differ diff --git a/static/capture/aerohub-hugrid-master.png b/static/capture/aerohub-hugrid-master.png deleted file mode 100644 index 6109b47f6..000000000 Binary files a/static/capture/aerohub-hugrid-master.png and /dev/null differ diff --git a/static/capture/agility-agility-gatsby-starter-master.png b/static/capture/agility-agility-gatsby-starter-master.png deleted file mode 100644 index 594a4a686..000000000 Binary files a/static/capture/agility-agility-gatsby-starter-master.png and /dev/null differ diff --git a/static/capture/agility-agility-gatsby-starter.png b/static/capture/agility-agility-gatsby-starter.png new file mode 100644 index 000000000..edad1783e Binary files /dev/null and b/static/capture/agility-agility-gatsby-starter.png differ diff --git a/static/capture/agusmakmun-agusmakmun.github.io-master.png b/static/capture/agusmakmun-agusmakmun.github.io-master.png deleted file mode 100644 index 3d5ae7474..000000000 Binary files a/static/capture/agusmakmun-agusmakmun.github.io-master.png and /dev/null differ diff --git a/static/capture/agusmakmun-agusmakmun.github.io.png b/static/capture/agusmakmun-agusmakmun.github.io.png new file mode 100644 index 000000000..20ff86b7e Binary files /dev/null and b/static/capture/agusmakmun-agusmakmun.github.io.png differ diff --git a/static/capture/aigarsdz-brume-master.png b/static/capture/aigarsdz-brume-master.png deleted file mode 100644 index d27092823..000000000 Binary files a/static/capture/aigarsdz-brume-master.png and /dev/null differ diff --git a/static/capture/aigarsdz-brume.png b/static/capture/aigarsdz-brume.png new file mode 100644 index 000000000..6ceb4d204 Binary files /dev/null and b/static/capture/aigarsdz-brume.png differ diff --git a/static/capture/airrayagroupwebdesign-sciblog-master.png b/static/capture/airrayagroupwebdesign-sciblog-master.png deleted file mode 100644 index cd9a868fa..000000000 Binary files a/static/capture/airrayagroupwebdesign-sciblog-master.png and /dev/null differ diff --git a/static/capture/ajayns-gatsby-absurd-master.png b/static/capture/ajayns-gatsby-absurd-master.png deleted file mode 100644 index 142c52b01..000000000 Binary files a/static/capture/ajayns-gatsby-absurd-master.png and /dev/null differ diff --git a/static/capture/ajayns-gatsby-absurd.png b/static/capture/ajayns-gatsby-absurd.png new file mode 100644 index 000000000..e46a0818b Binary files /dev/null and b/static/capture/ajayns-gatsby-absurd.png differ diff --git a/static/capture/akiritsu-project-negya-master.png b/static/capture/akiritsu-project-negya-master.png deleted file mode 100644 index c5d793208..000000000 Binary files a/static/capture/akiritsu-project-negya-master.png and /dev/null differ diff --git a/static/capture/akiritsu-project-negya.png b/static/capture/akiritsu-project-negya.png new file mode 100644 index 000000000..ed1b4883b Binary files /dev/null and b/static/capture/akiritsu-project-negya.png differ diff --git a/static/capture/aksakalli-jekyll-doc-theme-gh-pages.png b/static/capture/aksakalli-jekyll-doc-theme-gh-pages.png deleted file mode 100644 index c76ed3d5d..000000000 Binary files a/static/capture/aksakalli-jekyll-doc-theme-gh-pages.png and /dev/null differ diff --git a/static/capture/aksakalli-jekyll-doc-theme.png b/static/capture/aksakalli-jekyll-doc-theme.png new file mode 100644 index 000000000..4ecab9d08 Binary files /dev/null and b/static/capture/aksakalli-jekyll-doc-theme.png differ diff --git a/static/capture/akshayagarwal007-jekyll-mono-master.png b/static/capture/akshayagarwal007-jekyll-mono-master.png deleted file mode 100644 index 6f5c8242f..000000000 Binary files a/static/capture/akshayagarwal007-jekyll-mono-master.png and /dev/null differ diff --git a/static/capture/akzhy-gatsby-starter-elemental-master.png b/static/capture/akzhy-gatsby-starter-elemental-master.png deleted file mode 100644 index 18ed2e9fc..000000000 Binary files a/static/capture/akzhy-gatsby-starter-elemental-master.png and /dev/null differ diff --git a/static/capture/akzhy-gatsby-starter-elemental.png b/static/capture/akzhy-gatsby-starter-elemental.png new file mode 100644 index 000000000..2bdf04fff Binary files /dev/null and b/static/capture/akzhy-gatsby-starter-elemental.png differ diff --git a/static/capture/alainpham-alainpham.github.io-master.png b/static/capture/alainpham-alainpham.github.io-master.png deleted file mode 100644 index 20a1e0919..000000000 Binary files a/static/capture/alainpham-alainpham.github.io-master.png and /dev/null differ diff --git a/static/capture/alainpham-alainpham.github.io.png b/static/capture/alainpham-alainpham.github.io.png new file mode 100644 index 000000000..9d252d37d Binary files /dev/null and b/static/capture/alainpham-alainpham.github.io.png differ diff --git a/static/capture/alanorth-hugo-theme-bootstrap4-blog-master.png b/static/capture/alanorth-hugo-theme-bootstrap4-blog-master.png deleted file mode 100644 index d327b7ce7..000000000 Binary files a/static/capture/alanorth-hugo-theme-bootstrap4-blog-master.png and /dev/null differ diff --git a/static/capture/alanorth-hugo-theme-bootstrap4-blog.png b/static/capture/alanorth-hugo-theme-bootstrap4-blog.png new file mode 100644 index 000000000..498fe0205 Binary files /dev/null and b/static/capture/alanorth-hugo-theme-bootstrap4-blog.png differ diff --git a/static/capture/alanta-memoirs-theme-master.png b/static/capture/alanta-memoirs-theme-master.png deleted file mode 100644 index 312955ba3..000000000 Binary files a/static/capture/alanta-memoirs-theme-master.png and /dev/null differ diff --git a/static/capture/alanta-memoirs-theme.png b/static/capture/alanta-memoirs-theme.png new file mode 100644 index 000000000..1ebb3a51b Binary files /dev/null and b/static/capture/alanta-memoirs-theme.png differ diff --git a/static/capture/alex-shpak-hugo-book-master.png b/static/capture/alex-shpak-hugo-book-master.png deleted file mode 100644 index abd1e2514..000000000 Binary files a/static/capture/alex-shpak-hugo-book-master.png and /dev/null differ diff --git a/static/capture/alex-shpak-hugo-book.png b/static/capture/alex-shpak-hugo-book.png new file mode 100644 index 000000000..08db63b1a Binary files /dev/null and b/static/capture/alex-shpak-hugo-book.png differ diff --git a/static/capture/alexander-heimbuch-vuepress-theme-casper-master.png b/static/capture/alexander-heimbuch-vuepress-theme-casper-master.png deleted file mode 100644 index 35316d250..000000000 Binary files a/static/capture/alexander-heimbuch-vuepress-theme-casper-master.png and /dev/null differ diff --git a/static/capture/alexander-heimbuch-vuepress-theme-casper.png b/static/capture/alexander-heimbuch-vuepress-theme-casper.png new file mode 100644 index 000000000..9313f18c2 Binary files /dev/null and b/static/capture/alexander-heimbuch-vuepress-theme-casper.png differ diff --git a/static/capture/alexanderussell-progress-for-jekyll-master.png b/static/capture/alexanderussell-progress-for-jekyll-master.png deleted file mode 100644 index c14d28dd2..000000000 Binary files a/static/capture/alexanderussell-progress-for-jekyll-master.png and /dev/null differ diff --git a/static/capture/alexanderussell-progress-for-jekyll.png b/static/capture/alexanderussell-progress-for-jekyll.png new file mode 100644 index 000000000..25576089c Binary files /dev/null and b/static/capture/alexanderussell-progress-for-jekyll.png differ diff --git a/static/capture/alexcarpenter-butane-jekyll-theme-gh-pages.png b/static/capture/alexcarpenter-butane-jekyll-theme-gh-pages.png deleted file mode 100644 index 37d1f28ff..000000000 Binary files a/static/capture/alexcarpenter-butane-jekyll-theme-gh-pages.png and /dev/null differ diff --git a/static/capture/alexcarpenter-butane-jekyll-theme.png b/static/capture/alexcarpenter-butane-jekyll-theme.png new file mode 100644 index 000000000..1d21eb800 Binary files /dev/null and b/static/capture/alexcarpenter-butane-jekyll-theme.png differ diff --git a/static/capture/alexcarpenter-library-jekyll-theme-master.png b/static/capture/alexcarpenter-library-jekyll-theme-master.png deleted file mode 100644 index 8ce280785..000000000 Binary files a/static/capture/alexcarpenter-library-jekyll-theme-master.png and /dev/null differ diff --git a/static/capture/alexcarpenter-material-jekyll-theme-master.png b/static/capture/alexcarpenter-material-jekyll-theme-master.png deleted file mode 100644 index 8ce280785..000000000 Binary files a/static/capture/alexcarpenter-material-jekyll-theme-master.png and /dev/null differ diff --git a/static/capture/alexfinn-simple-a-master.png b/static/capture/alexfinn-simple-a-master.png deleted file mode 100644 index 8b1b353e6..000000000 Binary files a/static/capture/alexfinn-simple-a-master.png and /dev/null differ diff --git a/static/capture/alexfinn-simple-a.png b/static/capture/alexfinn-simple-a.png new file mode 100644 index 000000000..15f57774d Binary files /dev/null and b/static/capture/alexfinn-simple-a.png differ diff --git a/static/capture/aliifam-jdox.png b/static/capture/aliifam-jdox.png new file mode 100644 index 000000000..d82064c10 Binary files /dev/null and b/static/capture/aliifam-jdox.png differ diff --git a/static/capture/alixedi-typewriter-master.png b/static/capture/alixedi-typewriter-master.png deleted file mode 100644 index e96bf0109..000000000 Binary files a/static/capture/alixedi-typewriter-master.png and /dev/null differ diff --git a/static/capture/alixedi-typewriter.png b/static/capture/alixedi-typewriter.png new file mode 100644 index 000000000..8a713bff5 Binary files /dev/null and b/static/capture/alixedi-typewriter.png differ diff --git a/static/capture/allnightgrocery-hugo-theme-blueberry-detox-master.png b/static/capture/allnightgrocery-hugo-theme-blueberry-detox-master.png deleted file mode 100644 index 625ce4bed..000000000 Binary files a/static/capture/allnightgrocery-hugo-theme-blueberry-detox-master.png and /dev/null differ diff --git a/static/capture/alperenbozkurt-jblog-master.png b/static/capture/alperenbozkurt-jblog-master.png deleted file mode 100644 index 6ce864216..000000000 Binary files a/static/capture/alperenbozkurt-jblog-master.png and /dev/null differ diff --git a/static/capture/alperenbozkurt-jblog.png b/static/capture/alperenbozkurt-jblog.png new file mode 100644 index 000000000..f5eca5d0f Binary files /dev/null and b/static/capture/alperenbozkurt-jblog.png differ diff --git a/static/capture/altcointrading-trading-master.png b/static/capture/altcointrading-trading-master.png deleted file mode 100644 index 312acc64d..000000000 Binary files a/static/capture/altcointrading-trading-master.png and /dev/null differ diff --git a/static/capture/altcointrading-trading.png b/static/capture/altcointrading-trading.png new file mode 100644 index 000000000..951e29cbc Binary files /dev/null and b/static/capture/altcointrading-trading.png differ diff --git a/static/capture/alxshelepenok-gatsby-starter-lumen-master.png b/static/capture/alxshelepenok-gatsby-starter-lumen-master.png deleted file mode 100644 index 4642d50cf..000000000 Binary files a/static/capture/alxshelepenok-gatsby-starter-lumen-master.png and /dev/null differ diff --git a/static/capture/alxshelepenok-gatsby-starter-lumen.png b/static/capture/alxshelepenok-gatsby-starter-lumen.png new file mode 100644 index 000000000..af73fa7b7 Binary files /dev/null and b/static/capture/alxshelepenok-gatsby-starter-lumen.png differ diff --git a/static/capture/alynxzhou-hexo-theme-aria-master.png b/static/capture/alynxzhou-hexo-theme-aria-master.png deleted file mode 100644 index f58c62adb..000000000 Binary files a/static/capture/alynxzhou-hexo-theme-aria-master.png and /dev/null differ diff --git a/static/capture/alynxzhou-hexo-theme-aria.png b/static/capture/alynxzhou-hexo-theme-aria.png new file mode 100644 index 000000000..dbc1e557d Binary files /dev/null and b/static/capture/alynxzhou-hexo-theme-aria.png differ diff --git a/static/capture/amandeepmittal-gatsby-bulma-quickstart-master.png b/static/capture/amandeepmittal-gatsby-bulma-quickstart-master.png deleted file mode 100644 index 7994bc825..000000000 Binary files a/static/capture/amandeepmittal-gatsby-bulma-quickstart-master.png and /dev/null differ diff --git a/static/capture/amandeepmittal-gatsby-bulma-quickstart.png b/static/capture/amandeepmittal-gatsby-bulma-quickstart.png new file mode 100644 index 000000000..0265d2974 Binary files /dev/null and b/static/capture/amandeepmittal-gatsby-bulma-quickstart.png differ diff --git a/static/capture/ammarjabakji-gatsby-markdown-blog-starter-master.png b/static/capture/ammarjabakji-gatsby-markdown-blog-starter-master.png deleted file mode 100644 index 357bc12ad..000000000 Binary files a/static/capture/ammarjabakji-gatsby-markdown-blog-starter-master.png and /dev/null differ diff --git a/static/capture/ammarjabakji-gatsby-markdown-blog-starter.png b/static/capture/ammarjabakji-gatsby-markdown-blog-starter.png new file mode 100644 index 000000000..c0376e0d2 Binary files /dev/null and b/static/capture/ammarjabakji-gatsby-markdown-blog-starter.png differ diff --git a/static/capture/anandubajith-block-log-master.png b/static/capture/anandubajith-block-log-master.png deleted file mode 100644 index 03a640422..000000000 Binary files a/static/capture/anandubajith-block-log-master.png and /dev/null differ diff --git a/static/capture/andrewbanchich-forty-jekyll-theme-master.png b/static/capture/andrewbanchich-forty-jekyll-theme-master.png deleted file mode 100644 index c304d7e1a..000000000 Binary files a/static/capture/andrewbanchich-forty-jekyll-theme-master.png and /dev/null differ diff --git a/static/capture/andrewbanchich-forty-jekyll-theme.png b/static/capture/andrewbanchich-forty-jekyll-theme.png new file mode 100644 index 000000000..bd732164a Binary files /dev/null and b/static/capture/andrewbanchich-forty-jekyll-theme.png differ diff --git a/static/capture/andrewhwanpark-brutalist-blog.png b/static/capture/andrewhwanpark-brutalist-blog.png new file mode 100644 index 000000000..709e33f3e Binary files /dev/null and b/static/capture/andrewhwanpark-brutalist-blog.png differ diff --git a/static/capture/andrewhwanpark-dark-poole-master.png b/static/capture/andrewhwanpark-dark-poole-master.png deleted file mode 100644 index 76c571c99..000000000 Binary files a/static/capture/andrewhwanpark-dark-poole-master.png and /dev/null differ diff --git a/static/capture/andrewhwanpark-dark-poole.png b/static/capture/andrewhwanpark-dark-poole.png new file mode 100644 index 000000000..70972a784 Binary files /dev/null and b/static/capture/andrewhwanpark-dark-poole.png differ diff --git a/static/capture/andybelldesign-hylia-master.png b/static/capture/andybelldesign-hylia-master.png deleted file mode 100644 index 0e09b30a9..000000000 Binary files a/static/capture/andybelldesign-hylia-master.png and /dev/null differ diff --git a/static/capture/andybelldesign-hylia.png b/static/capture/andybelldesign-hylia.png new file mode 100644 index 000000000..62eddae5f Binary files /dev/null and b/static/capture/andybelldesign-hylia.png differ diff --git a/static/capture/andykenward-gatsby-starter-default-typescript-master.png b/static/capture/andykenward-gatsby-starter-default-typescript-master.png deleted file mode 100644 index 59a5b52c8..000000000 Binary files a/static/capture/andykenward-gatsby-starter-default-typescript-master.png and /dev/null differ diff --git a/static/capture/andykenward-gatsby-starter-default-typescript.png b/static/capture/andykenward-gatsby-starter-default-typescript.png new file mode 100644 index 000000000..c6feee020 Binary files /dev/null and b/static/capture/andykenward-gatsby-starter-default-typescript.png differ diff --git a/static/capture/angelostavrow-indigo-master.png b/static/capture/angelostavrow-indigo-master.png deleted file mode 100644 index 5b7f01f93..000000000 Binary files a/static/capture/angelostavrow-indigo-master.png and /dev/null differ diff --git a/static/capture/ankit-kumar-jat-limp-dark-master.png b/static/capture/ankit-kumar-jat-limp-dark-master.png deleted file mode 100644 index 343a13bda..000000000 Binary files a/static/capture/ankit-kumar-jat-limp-dark-master.png and /dev/null differ diff --git a/static/capture/ankitsultana-accent-gh-pages.png b/static/capture/ankitsultana-accent-gh-pages.png deleted file mode 100644 index 05e9137ea..000000000 Binary files a/static/capture/ankitsultana-accent-gh-pages.png and /dev/null differ diff --git a/static/capture/ankitsultana-accent.png b/static/capture/ankitsultana-accent.png new file mode 100644 index 000000000..dcf924e84 Binary files /dev/null and b/static/capture/ankitsultana-accent.png differ diff --git a/static/capture/ankitsultana-chaplin-gh-pages.png b/static/capture/ankitsultana-chaplin-gh-pages.png deleted file mode 100644 index e642c6a8d..000000000 Binary files a/static/capture/ankitsultana-chaplin-gh-pages.png and /dev/null differ diff --git a/static/capture/ankitsultana-chaplin.png b/static/capture/ankitsultana-chaplin.png new file mode 100644 index 000000000..fd5062b32 Binary files /dev/null and b/static/capture/ankitsultana-chaplin.png differ diff --git a/static/capture/ankitsultana-researcher-gh-pages.png b/static/capture/ankitsultana-researcher-gh-pages.png deleted file mode 100644 index eabbb9dba..000000000 Binary files a/static/capture/ankitsultana-researcher-gh-pages.png and /dev/null differ diff --git a/static/capture/ankitsultana-researcher.png b/static/capture/ankitsultana-researcher.png new file mode 100644 index 000000000..b0e47f630 Binary files /dev/null and b/static/capture/ankitsultana-researcher.png differ diff --git a/static/capture/anna-morawska-gatsby-material-design-for-bootstrap-master.png b/static/capture/anna-morawska-gatsby-material-design-for-bootstrap-master.png deleted file mode 100644 index 5a264abe0..000000000 Binary files a/static/capture/anna-morawska-gatsby-material-design-for-bootstrap-master.png and /dev/null differ diff --git a/static/capture/anna-morawska-gatsby-material-design-for-bootstrap.png b/static/capture/anna-morawska-gatsby-material-design-for-bootstrap.png new file mode 100644 index 000000000..a22a8f9f2 Binary files /dev/null and b/static/capture/anna-morawska-gatsby-material-design-for-bootstrap.png differ diff --git a/static/capture/anoun-gatsby-starter-material-business-markdown-master.png b/static/capture/anoun-gatsby-starter-material-business-markdown-master.png deleted file mode 100644 index 05d6e7f5d..000000000 Binary files a/static/capture/anoun-gatsby-starter-material-business-markdown-master.png and /dev/null differ diff --git a/static/capture/anoun-gatsby-starter-material-business-markdown.png b/static/capture/anoun-gatsby-starter-material-business-markdown.png new file mode 100644 index 000000000..a0d919b79 Binary files /dev/null and b/static/capture/anoun-gatsby-starter-material-business-markdown.png differ diff --git a/static/capture/antonpolishko-hugo-stellar-theme-master.png b/static/capture/antonpolishko-hugo-stellar-theme-master.png deleted file mode 100644 index c674a382c..000000000 Binary files a/static/capture/antonpolishko-hugo-stellar-theme-master.png and /dev/null differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-aerial-master.png b/static/capture/anubhavsrivastava-gatsby-starter-aerial-master.png deleted file mode 100644 index 4628e1896..000000000 Binary files a/static/capture/anubhavsrivastava-gatsby-starter-aerial-master.png and /dev/null differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-aerial.png b/static/capture/anubhavsrivastava-gatsby-starter-aerial.png new file mode 100644 index 000000000..f9b606d10 Binary files /dev/null and b/static/capture/anubhavsrivastava-gatsby-starter-aerial.png differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-casual-master.png b/static/capture/anubhavsrivastava-gatsby-starter-casual-master.png deleted file mode 100644 index 9d8e2d4b1..000000000 Binary files a/static/capture/anubhavsrivastava-gatsby-starter-casual-master.png and /dev/null differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-casual.png b/static/capture/anubhavsrivastava-gatsby-starter-casual.png new file mode 100644 index 000000000..46a1f7a57 Binary files /dev/null and b/static/capture/anubhavsrivastava-gatsby-starter-casual.png differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-directive-master.png b/static/capture/anubhavsrivastava-gatsby-starter-directive-master.png deleted file mode 100644 index 222b6813d..000000000 Binary files a/static/capture/anubhavsrivastava-gatsby-starter-directive-master.png and /dev/null differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-directive.png b/static/capture/anubhavsrivastava-gatsby-starter-directive.png new file mode 100644 index 000000000..1f981d87f Binary files /dev/null and b/static/capture/anubhavsrivastava-gatsby-starter-directive.png differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-eventually-master.png b/static/capture/anubhavsrivastava-gatsby-starter-eventually-master.png deleted file mode 100644 index c6746fbae..000000000 Binary files a/static/capture/anubhavsrivastava-gatsby-starter-eventually-master.png and /dev/null differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-eventually.png b/static/capture/anubhavsrivastava-gatsby-starter-eventually.png new file mode 100644 index 000000000..c49fd730d Binary files /dev/null and b/static/capture/anubhavsrivastava-gatsby-starter-eventually.png differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-fractal-master.png b/static/capture/anubhavsrivastava-gatsby-starter-fractal-master.png deleted file mode 100644 index 1598432c0..000000000 Binary files a/static/capture/anubhavsrivastava-gatsby-starter-fractal-master.png and /dev/null differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-fractal.png b/static/capture/anubhavsrivastava-gatsby-starter-fractal.png new file mode 100644 index 000000000..f0beace66 Binary files /dev/null and b/static/capture/anubhavsrivastava-gatsby-starter-fractal.png differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-grayscale-master.png b/static/capture/anubhavsrivastava-gatsby-starter-grayscale-master.png deleted file mode 100644 index 09da2fd79..000000000 Binary files a/static/capture/anubhavsrivastava-gatsby-starter-grayscale-master.png and /dev/null differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-grayscale.png b/static/capture/anubhavsrivastava-gatsby-starter-grayscale.png new file mode 100644 index 000000000..6991fa7f5 Binary files /dev/null and b/static/capture/anubhavsrivastava-gatsby-starter-grayscale.png differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-highlights-master.png b/static/capture/anubhavsrivastava-gatsby-starter-highlights-master.png deleted file mode 100644 index d14c5a6c5..000000000 Binary files a/static/capture/anubhavsrivastava-gatsby-starter-highlights-master.png and /dev/null differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-highlights.png b/static/capture/anubhavsrivastava-gatsby-starter-highlights.png new file mode 100644 index 000000000..e7935677d Binary files /dev/null and b/static/capture/anubhavsrivastava-gatsby-starter-highlights.png differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-hyperspace-master.png b/static/capture/anubhavsrivastava-gatsby-starter-hyperspace-master.png deleted file mode 100644 index 5cbc19b09..000000000 Binary files a/static/capture/anubhavsrivastava-gatsby-starter-hyperspace-master.png and /dev/null differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-hyperspace.png b/static/capture/anubhavsrivastava-gatsby-starter-hyperspace.png new file mode 100644 index 000000000..8eec8b0d3 Binary files /dev/null and b/static/capture/anubhavsrivastava-gatsby-starter-hyperspace.png differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-identity-master.png b/static/capture/anubhavsrivastava-gatsby-starter-identity-master.png deleted file mode 100644 index 104475d87..000000000 Binary files a/static/capture/anubhavsrivastava-gatsby-starter-identity-master.png and /dev/null differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-identity.png b/static/capture/anubhavsrivastava-gatsby-starter-identity.png new file mode 100644 index 000000000..5ca39b65e Binary files /dev/null and b/static/capture/anubhavsrivastava-gatsby-starter-identity.png differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-multiverse-master.png b/static/capture/anubhavsrivastava-gatsby-starter-multiverse-master.png deleted file mode 100644 index 4fb7804e4..000000000 Binary files a/static/capture/anubhavsrivastava-gatsby-starter-multiverse-master.png and /dev/null differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-multiverse.png b/static/capture/anubhavsrivastava-gatsby-starter-multiverse.png new file mode 100644 index 000000000..7af8276e8 Binary files /dev/null and b/static/capture/anubhavsrivastava-gatsby-starter-multiverse.png differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-newage-master.png b/static/capture/anubhavsrivastava-gatsby-starter-newage-master.png deleted file mode 100644 index 34771f0ac..000000000 Binary files a/static/capture/anubhavsrivastava-gatsby-starter-newage-master.png and /dev/null differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-newage.png b/static/capture/anubhavsrivastava-gatsby-starter-newage.png new file mode 100644 index 000000000..d0b75dae1 Binary files /dev/null and b/static/capture/anubhavsrivastava-gatsby-starter-newage.png differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-overflow-master.png b/static/capture/anubhavsrivastava-gatsby-starter-overflow-master.png deleted file mode 100644 index a27af5be4..000000000 Binary files a/static/capture/anubhavsrivastava-gatsby-starter-overflow-master.png and /dev/null differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-overflow.png b/static/capture/anubhavsrivastava-gatsby-starter-overflow.png new file mode 100644 index 000000000..d74678e0d Binary files /dev/null and b/static/capture/anubhavsrivastava-gatsby-starter-overflow.png differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-paradigmshift-master.png b/static/capture/anubhavsrivastava-gatsby-starter-paradigmshift-master.png deleted file mode 100644 index 8950d2191..000000000 Binary files a/static/capture/anubhavsrivastava-gatsby-starter-paradigmshift-master.png and /dev/null differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-paradigmshift.png b/static/capture/anubhavsrivastava-gatsby-starter-paradigmshift.png new file mode 100644 index 000000000..228375027 Binary files /dev/null and b/static/capture/anubhavsrivastava-gatsby-starter-paradigmshift.png differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-prologue-master.png b/static/capture/anubhavsrivastava-gatsby-starter-prologue-master.png deleted file mode 100644 index 5232d1bdf..000000000 Binary files a/static/capture/anubhavsrivastava-gatsby-starter-prologue-master.png and /dev/null differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-prologue.png b/static/capture/anubhavsrivastava-gatsby-starter-prologue.png new file mode 100644 index 000000000..108f250f4 Binary files /dev/null and b/static/capture/anubhavsrivastava-gatsby-starter-prologue.png differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-readonly-master.png b/static/capture/anubhavsrivastava-gatsby-starter-readonly-master.png deleted file mode 100644 index ae12354e2..000000000 Binary files a/static/capture/anubhavsrivastava-gatsby-starter-readonly-master.png and /dev/null differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-readonly.png b/static/capture/anubhavsrivastava-gatsby-starter-readonly.png new file mode 100644 index 000000000..86fdcd1a2 Binary files /dev/null and b/static/capture/anubhavsrivastava-gatsby-starter-readonly.png differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-resume-master.png b/static/capture/anubhavsrivastava-gatsby-starter-resume-master.png deleted file mode 100644 index 622a7ecd9..000000000 Binary files a/static/capture/anubhavsrivastava-gatsby-starter-resume-master.png and /dev/null differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-resume.png b/static/capture/anubhavsrivastava-gatsby-starter-resume.png new file mode 100644 index 000000000..eb79180bd Binary files /dev/null and b/static/capture/anubhavsrivastava-gatsby-starter-resume.png differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-solidstate-master.png b/static/capture/anubhavsrivastava-gatsby-starter-solidstate-master.png deleted file mode 100644 index 85d12abcf..000000000 Binary files a/static/capture/anubhavsrivastava-gatsby-starter-solidstate-master.png and /dev/null differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-solidstate.png b/static/capture/anubhavsrivastava-gatsby-starter-solidstate.png new file mode 100644 index 000000000..9ab682688 Binary files /dev/null and b/static/capture/anubhavsrivastava-gatsby-starter-solidstate.png differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-spectral-master.png b/static/capture/anubhavsrivastava-gatsby-starter-spectral-master.png deleted file mode 100644 index 2a6ba191f..000000000 Binary files a/static/capture/anubhavsrivastava-gatsby-starter-spectral-master.png and /dev/null differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-spectral.png b/static/capture/anubhavsrivastava-gatsby-starter-spectral.png new file mode 100644 index 000000000..64818e8db Binary files /dev/null and b/static/capture/anubhavsrivastava-gatsby-starter-spectral.png differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-stylish-master.png b/static/capture/anubhavsrivastava-gatsby-starter-stylish-master.png deleted file mode 100644 index cf34055ba..000000000 Binary files a/static/capture/anubhavsrivastava-gatsby-starter-stylish-master.png and /dev/null differ diff --git a/static/capture/anubhavsrivastava-gatsby-starter-stylish.png b/static/capture/anubhavsrivastava-gatsby-starter-stylish.png new file mode 100644 index 000000000..c3cdbbc1a Binary files /dev/null and b/static/capture/anubhavsrivastava-gatsby-starter-stylish.png differ diff --git a/static/capture/app-generator-eleventy-soft-ui-design.png b/static/capture/app-generator-eleventy-soft-ui-design.png new file mode 100644 index 000000000..bff562210 Binary files /dev/null and b/static/capture/app-generator-eleventy-soft-ui-design.png differ diff --git a/static/capture/app-generator-gatsbyjs-starter-tailwindplay-master.png b/static/capture/app-generator-gatsbyjs-starter-tailwindplay-master.png deleted file mode 100644 index 7f1a02bc3..000000000 Binary files a/static/capture/app-generator-gatsbyjs-starter-tailwindplay-master.png and /dev/null differ diff --git a/static/capture/app-generator-gatsbyjs-starter-tailwindplay.png b/static/capture/app-generator-gatsbyjs-starter-tailwindplay.png new file mode 100644 index 000000000..6c5e57fb5 Binary files /dev/null and b/static/capture/app-generator-gatsbyjs-starter-tailwindplay.png differ diff --git a/static/capture/appernetic-hugo-nederburg-theme-master.png b/static/capture/appernetic-hugo-nederburg-theme-master.png deleted file mode 100644 index aee6e8d7e..000000000 Binary files a/static/capture/appernetic-hugo-nederburg-theme-master.png and /dev/null differ diff --git a/static/capture/apvarun-blist-hugo-theme.png b/static/capture/apvarun-blist-hugo-theme.png new file mode 100644 index 000000000..e70afabbe Binary files /dev/null and b/static/capture/apvarun-blist-hugo-theme.png differ diff --git a/static/capture/apvarun-digital-garden-hugo-theme.png b/static/capture/apvarun-digital-garden-hugo-theme.png new file mode 100644 index 000000000..9ee346c7a Binary files /dev/null and b/static/capture/apvarun-digital-garden-hugo-theme.png differ diff --git a/static/capture/apvarun-productlog-nextjs-theme.png b/static/capture/apvarun-productlog-nextjs-theme.png new file mode 100644 index 000000000..b0a760a14 Binary files /dev/null and b/static/capture/apvarun-productlog-nextjs-theme.png differ diff --git a/static/capture/apvarun-showfolio-hugo-theme.png b/static/capture/apvarun-showfolio-hugo-theme.png new file mode 100644 index 000000000..2b55c352b Binary files /dev/null and b/static/capture/apvarun-showfolio-hugo-theme.png differ diff --git a/static/capture/ar363-eleventy-stylus-blog-theme.png b/static/capture/ar363-eleventy-stylus-blog-theme.png new file mode 100644 index 000000000..7a4e26e29 Binary files /dev/null and b/static/capture/ar363-eleventy-stylus-blog-theme.png differ diff --git a/static/capture/arhen-hugo-cereus-pro-theme-master.png b/static/capture/arhen-hugo-cereus-pro-theme-master.png deleted file mode 100644 index b56ce07a3..000000000 Binary files a/static/capture/arhen-hugo-cereus-pro-theme-master.png and /dev/null differ diff --git a/static/capture/arhen-hugo-cereus-pro-theme.png b/static/capture/arhen-hugo-cereus-pro-theme.png new file mode 100644 index 000000000..bf25fc502 Binary files /dev/null and b/static/capture/arhen-hugo-cereus-pro-theme.png differ diff --git a/static/capture/arjayosma-nextacular.png b/static/capture/arjayosma-nextacular.png new file mode 100644 index 000000000..94112d338 Binary files /dev/null and b/static/capture/arjayosma-nextacular.png differ diff --git a/static/capture/arkadianriver-spectral-master.png b/static/capture/arkadianriver-spectral-master.png deleted file mode 100644 index 1e71769e3..000000000 Binary files a/static/capture/arkadianriver-spectral-master.png and /dev/null differ diff --git a/static/capture/arkadianriver-spectral.png b/static/capture/arkadianriver-spectral.png new file mode 100644 index 000000000..1a65e04bf Binary files /dev/null and b/static/capture/arkadianriver-spectral.png differ diff --git a/static/capture/aron-bordin-neo-hpstr-jekyll-theme-master.png b/static/capture/aron-bordin-neo-hpstr-jekyll-theme-master.png deleted file mode 100644 index 38f7af9ec..000000000 Binary files a/static/capture/aron-bordin-neo-hpstr-jekyll-theme-master.png and /dev/null differ diff --git a/static/capture/aron-bordin-neo-hpstr-jekyll-theme.png b/static/capture/aron-bordin-neo-hpstr-jekyll-theme.png new file mode 100644 index 000000000..204695c84 Binary files /dev/null and b/static/capture/aron-bordin-neo-hpstr-jekyll-theme.png differ diff --git a/static/capture/arpitbatra123-eleventy-blog-mnml-master.png b/static/capture/arpitbatra123-eleventy-blog-mnml-master.png deleted file mode 100644 index ac469b696..000000000 Binary files a/static/capture/arpitbatra123-eleventy-blog-mnml-master.png and /dev/null differ diff --git a/static/capture/arpitbatra123-eleventy-blog-mnml.png b/static/capture/arpitbatra123-eleventy-blog-mnml.png new file mode 100644 index 000000000..8ba1108eb Binary files /dev/null and b/static/capture/arpitbatra123-eleventy-blog-mnml.png differ diff --git a/static/capture/artemsheludko-adam-blog-master.png b/static/capture/artemsheludko-adam-blog-master.png deleted file mode 100644 index 24a558422..000000000 Binary files a/static/capture/artemsheludko-adam-blog-master.png and /dev/null differ diff --git a/static/capture/artemsheludko-adam-blog.png b/static/capture/artemsheludko-adam-blog.png new file mode 100644 index 000000000..82badada8 Binary files /dev/null and b/static/capture/artemsheludko-adam-blog.png differ diff --git a/static/capture/artemsheludko-bef-master.png b/static/capture/artemsheludko-bef-master.png deleted file mode 100644 index 19337b38e..000000000 Binary files a/static/capture/artemsheludko-bef-master.png and /dev/null differ diff --git a/static/capture/artemsheludko-bef.png b/static/capture/artemsheludko-bef.png new file mode 100644 index 000000000..fd64e6402 Binary files /dev/null and b/static/capture/artemsheludko-bef.png differ diff --git a/static/capture/artemsheludko-flexible-jekyll-master.png b/static/capture/artemsheludko-flexible-jekyll-master.png deleted file mode 100644 index b2d0fa1ff..000000000 Binary files a/static/capture/artemsheludko-flexible-jekyll-master.png and /dev/null differ diff --git a/static/capture/artemsheludko-fresh-master.png b/static/capture/artemsheludko-fresh-master.png deleted file mode 100644 index f82f1435a..000000000 Binary files a/static/capture/artemsheludko-fresh-master.png and /dev/null differ diff --git a/static/capture/artemsheludko-monday-master.png b/static/capture/artemsheludko-monday-master.png deleted file mode 100644 index 8fab6ce35..000000000 Binary files a/static/capture/artemsheludko-monday-master.png and /dev/null differ diff --git a/static/capture/artemsheludko-monday.png b/static/capture/artemsheludko-monday.png new file mode 100644 index 000000000..d6ab5e2ac Binary files /dev/null and b/static/capture/artemsheludko-monday.png differ diff --git a/static/capture/artemsheludko-mr-brown-master.png b/static/capture/artemsheludko-mr-brown-master.png deleted file mode 100644 index 8fab6ce35..000000000 Binary files a/static/capture/artemsheludko-mr-brown-master.png and /dev/null differ diff --git a/static/capture/artemsheludko-mr-brown.png b/static/capture/artemsheludko-mr-brown.png new file mode 100644 index 000000000..d6ab5e2ac Binary files /dev/null and b/static/capture/artemsheludko-mr-brown.png differ diff --git a/static/capture/arulrajnet-attila-master.png b/static/capture/arulrajnet-attila-master.png deleted file mode 100644 index 5aaf4af42..000000000 Binary files a/static/capture/arulrajnet-attila-master.png and /dev/null differ diff --git a/static/capture/ashr81-gatsby-theme-profile-builder-master.png b/static/capture/ashr81-gatsby-theme-profile-builder-master.png deleted file mode 100644 index 250c9dc7f..000000000 Binary files a/static/capture/ashr81-gatsby-theme-profile-builder-master.png and /dev/null differ diff --git a/static/capture/ashr81-gatsby-theme-profile-builder.png b/static/capture/ashr81-gatsby-theme-profile-builder.png new file mode 100644 index 000000000..e5569f7b8 Binary files /dev/null and b/static/capture/ashr81-gatsby-theme-profile-builder.png differ diff --git a/static/capture/aslammultidots-blogger-master.png b/static/capture/aslammultidots-blogger-master.png deleted file mode 100644 index c709d8f9f..000000000 Binary files a/static/capture/aslammultidots-blogger-master.png and /dev/null differ diff --git a/static/capture/aslammultidots-blogger.png b/static/capture/aslammultidots-blogger.png new file mode 100644 index 000000000..13fa29970 Binary files /dev/null and b/static/capture/aslammultidots-blogger.png differ diff --git a/static/capture/aspirethemes-type-master.png b/static/capture/aspirethemes-type-master.png deleted file mode 100644 index 392db0b3e..000000000 Binary files a/static/capture/aspirethemes-type-master.png and /dev/null differ diff --git a/static/capture/aspirethemes-type.png b/static/capture/aspirethemes-type.png new file mode 100644 index 000000000..8dc5a5b32 Binary files /dev/null and b/static/capture/aspirethemes-type.png differ diff --git a/static/capture/avianto-hugo-kiera-master.png b/static/capture/avianto-hugo-kiera-master.png deleted file mode 100644 index 01da08213..000000000 Binary files a/static/capture/avianto-hugo-kiera-master.png and /dev/null differ diff --git a/static/capture/avivero-gatsby-redux-starter-master.png b/static/capture/avivero-gatsby-redux-starter-master.png deleted file mode 100644 index 4220cfd16..000000000 Binary files a/static/capture/avivero-gatsby-redux-starter-master.png and /dev/null differ diff --git a/static/capture/avivero-gatsby-redux-starter.png b/static/capture/avivero-gatsby-redux-starter.png new file mode 100644 index 000000000..5a2ef1839 Binary files /dev/null and b/static/capture/avivero-gatsby-redux-starter.png differ diff --git a/static/capture/aweekj-kiko-plus-master.png b/static/capture/aweekj-kiko-plus-master.png deleted file mode 100644 index ffaeea8f1..000000000 Binary files a/static/capture/aweekj-kiko-plus-master.png and /dev/null differ diff --git a/static/capture/aweekj-kiko-plus.png b/static/capture/aweekj-kiko-plus.png new file mode 100644 index 000000000..3524fe711 Binary files /dev/null and b/static/capture/aweekj-kiko-plus.png differ diff --git a/static/capture/azmelanar-hugo-theme-pixyll-master.png b/static/capture/azmelanar-hugo-theme-pixyll-master.png deleted file mode 100644 index f9c216603..000000000 Binary files a/static/capture/azmelanar-hugo-theme-pixyll-master.png and /dev/null differ diff --git a/static/capture/bagseye-bonneville-master.png b/static/capture/bagseye-bonneville-master.png deleted file mode 100644 index 5429901fa..000000000 Binary files a/static/capture/bagseye-bonneville-master.png and /dev/null differ diff --git a/static/capture/bagseye-bonneville.png b/static/capture/bagseye-bonneville.png new file mode 100644 index 000000000..985b358c8 Binary files /dev/null and b/static/capture/bagseye-bonneville.png differ diff --git a/static/capture/bake-solar-theme-hugo-master.png b/static/capture/bake-solar-theme-hugo-master.png deleted file mode 100644 index 91e53c526..000000000 Binary files a/static/capture/bake-solar-theme-hugo-master.png and /dev/null differ diff --git a/static/capture/balaramadurai-hugo-travelify-theme-master.png b/static/capture/balaramadurai-hugo-travelify-theme-master.png deleted file mode 100644 index 2e34bc2e5..000000000 Binary files a/static/capture/balaramadurai-hugo-travelify-theme-master.png and /dev/null differ diff --git a/static/capture/baobabkoodaa-blog-master.png b/static/capture/baobabkoodaa-blog-master.png deleted file mode 100644 index a8974c36a..000000000 Binary files a/static/capture/baobabkoodaa-blog-master.png and /dev/null differ diff --git a/static/capture/baobabkoodaa-blog.png b/static/capture/baobabkoodaa-blog.png new file mode 100644 index 000000000..60c71dd24 Binary files /dev/null and b/static/capture/baobabkoodaa-blog.png differ diff --git a/static/capture/baobabkoodaa-gatsby-starter-infinite-scroll-master.png b/static/capture/baobabkoodaa-gatsby-starter-infinite-scroll-master.png deleted file mode 100644 index bc3156c85..000000000 Binary files a/static/capture/baobabkoodaa-gatsby-starter-infinite-scroll-master.png and /dev/null differ diff --git a/static/capture/baobabkoodaa-gatsby-starter-infinite-scroll.png b/static/capture/baobabkoodaa-gatsby-starter-infinite-scroll.png new file mode 100644 index 000000000..7c8dadc3c Binary files /dev/null and b/static/capture/baobabkoodaa-gatsby-starter-infinite-scroll.png differ diff --git a/static/capture/baobabkoodaa-gatsby-starter-photo-book-master.png b/static/capture/baobabkoodaa-gatsby-starter-photo-book-master.png deleted file mode 100644 index 1e7e2a7db..000000000 Binary files a/static/capture/baobabkoodaa-gatsby-starter-photo-book-master.png and /dev/null differ diff --git a/static/capture/baobabkoodaa-gatsby-starter-photo-book.png b/static/capture/baobabkoodaa-gatsby-starter-photo-book.png new file mode 100644 index 000000000..4d49721d9 Binary files /dev/null and b/static/capture/baobabkoodaa-gatsby-starter-photo-book.png differ diff --git a/static/capture/barryclark-jekyll-now-master.png b/static/capture/barryclark-jekyll-now-master.png deleted file mode 100644 index 5d6f317d7..000000000 Binary files a/static/capture/barryclark-jekyll-now-master.png and /dev/null differ diff --git a/static/capture/barryclark-jekyll-now.png b/static/capture/barryclark-jekyll-now.png new file mode 100644 index 000000000..b3a8074e2 Binary files /dev/null and b/static/capture/barryclark-jekyll-now.png differ diff --git a/static/capture/bawn92-sleek_blog-master.png b/static/capture/bawn92-sleek_blog-master.png deleted file mode 100644 index 0991b3ebd..000000000 Binary files a/static/capture/bawn92-sleek_blog-master.png and /dev/null differ diff --git a/static/capture/bawn92-sleek_blog.png b/static/capture/bawn92-sleek_blog.png new file mode 100644 index 000000000..3980b5832 Binary files /dev/null and b/static/capture/bawn92-sleek_blog.png differ diff --git a/static/capture/bdhu-minimalist.png b/static/capture/bdhu-minimalist.png new file mode 100644 index 000000000..df9d7cb4c Binary files /dev/null and b/static/capture/bdhu-minimalist.png differ diff --git a/static/capture/bdougie-casper-cms-template-master.png b/static/capture/bdougie-casper-cms-template-master.png deleted file mode 100644 index ca6cbe3b6..000000000 Binary files a/static/capture/bdougie-casper-cms-template-master.png and /dev/null differ diff --git a/static/capture/bdougie-casper-cms-template.png b/static/capture/bdougie-casper-cms-template.png new file mode 100644 index 000000000..ec7043f58 Binary files /dev/null and b/static/capture/bdougie-casper-cms-template.png differ diff --git a/static/capture/bdougie-hyde-cms-theme-master.png b/static/capture/bdougie-hyde-cms-theme-master.png deleted file mode 100644 index 1c77565c4..000000000 Binary files a/static/capture/bdougie-hyde-cms-theme-master.png and /dev/null differ diff --git a/static/capture/bdougie-hyde-cms-theme.png b/static/capture/bdougie-hyde-cms-theme.png new file mode 100644 index 000000000..f937cd7b1 Binary files /dev/null and b/static/capture/bdougie-hyde-cms-theme.png differ diff --git a/static/capture/ben-siewert-gatsby-starter-auth-aws-amplify-master.png b/static/capture/ben-siewert-gatsby-starter-auth-aws-amplify-master.png deleted file mode 100644 index c7a742517..000000000 Binary files a/static/capture/ben-siewert-gatsby-starter-auth-aws-amplify-master.png and /dev/null differ diff --git a/static/capture/ben-siewert-gatsby-starter-auth-aws-amplify.png b/static/capture/ben-siewert-gatsby-starter-auth-aws-amplify.png new file mode 100644 index 000000000..52195ee95 Binary files /dev/null and b/static/capture/ben-siewert-gatsby-starter-auth-aws-amplify.png differ diff --git a/static/capture/bencentra-centrarium-master.png b/static/capture/bencentra-centrarium-master.png deleted file mode 100644 index 1e4f4c226..000000000 Binary files a/static/capture/bencentra-centrarium-master.png and /dev/null differ diff --git a/static/capture/benjamin-glitsos-gatsby-kea-starter-master.png b/static/capture/benjamin-glitsos-gatsby-kea-starter-master.png deleted file mode 100644 index e876f0e62..000000000 Binary files a/static/capture/benjamin-glitsos-gatsby-kea-starter-master.png and /dev/null differ diff --git a/static/capture/benjamingrobertson-gatsby-starter-accessibility-master.png b/static/capture/benjamingrobertson-gatsby-starter-accessibility-master.png deleted file mode 100644 index 9ca19e3aa..000000000 Binary files a/static/capture/benjamingrobertson-gatsby-starter-accessibility-master.png and /dev/null differ diff --git a/static/capture/benjamingrobertson-gatsby-starter-accessibility.png b/static/capture/benjamingrobertson-gatsby-starter-accessibility.png new file mode 100644 index 000000000..6b81a2a8b Binary files /dev/null and b/static/capture/benjamingrobertson-gatsby-starter-accessibility.png differ diff --git a/static/capture/benradford-slate-and-simple-jekyll-theme-master.png b/static/capture/benradford-slate-and-simple-jekyll-theme-master.png deleted file mode 100644 index ae1e70ed4..000000000 Binary files a/static/capture/benradford-slate-and-simple-jekyll-theme-master.png and /dev/null differ diff --git a/static/capture/benradford-slate-and-simple-jekyll-theme.png b/static/capture/benradford-slate-and-simple-jekyll-theme.png new file mode 100644 index 000000000..2605be614 Binary files /dev/null and b/static/capture/benradford-slate-and-simple-jekyll-theme.png differ diff --git a/static/capture/bep-docuapi-master.png b/static/capture/bep-docuapi-master.png deleted file mode 100644 index f39fbfccc..000000000 Binary files a/static/capture/bep-docuapi-master.png and /dev/null differ diff --git a/static/capture/bep-docuapi.png b/static/capture/bep-docuapi.png new file mode 100644 index 000000000..39b51b5b4 Binary files /dev/null and b/static/capture/bep-docuapi.png differ diff --git a/static/capture/bigcommerce-gatsby-bigcommerce-netlify-cms-starter-master.png b/static/capture/bigcommerce-gatsby-bigcommerce-netlify-cms-starter-master.png deleted file mode 100644 index 7a8183fad..000000000 Binary files a/static/capture/bigcommerce-gatsby-bigcommerce-netlify-cms-starter-master.png and /dev/null differ diff --git a/static/capture/bigcommerce-gatsby-bigcommerce-netlify-cms-starter.png b/static/capture/bigcommerce-gatsby-bigcommerce-netlify-cms-starter.png new file mode 100644 index 000000000..4ecc672d1 Binary files /dev/null and b/static/capture/bigcommerce-gatsby-bigcommerce-netlify-cms-starter.png differ diff --git a/static/capture/bijenkorf-james-wakefield-gatsby-firebase-hosting-starter-master.png b/static/capture/bijenkorf-james-wakefield-gatsby-firebase-hosting-starter-master.png deleted file mode 100644 index 81a2b39b5..000000000 Binary files a/static/capture/bijenkorf-james-wakefield-gatsby-firebase-hosting-starter-master.png and /dev/null differ diff --git a/static/capture/bijenkorf-james-wakefield-gatsby-firebase-hosting-starter.png b/static/capture/bijenkorf-james-wakefield-gatsby-firebase-hosting-starter.png new file mode 100644 index 000000000..948c965bf Binary files /dev/null and b/static/capture/bijenkorf-james-wakefield-gatsby-firebase-hosting-starter.png differ diff --git a/static/capture/billyfish152-renge-master.png b/static/capture/billyfish152-renge-master.png deleted file mode 100644 index 745244658..000000000 Binary files a/static/capture/billyfish152-renge-master.png and /dev/null differ diff --git a/static/capture/billyjacoby-gatsby-react-bootstrap-starter-master.png b/static/capture/billyjacoby-gatsby-react-bootstrap-starter-master.png deleted file mode 100644 index 3c24e0455..000000000 Binary files a/static/capture/billyjacoby-gatsby-react-bootstrap-starter-master.png and /dev/null differ diff --git a/static/capture/billyjacoby-gatsby-react-bootstrap-starter.png b/static/capture/billyjacoby-gatsby-react-bootstrap-starter.png new file mode 100644 index 000000000..bf641c08c Binary files /dev/null and b/static/capture/billyjacoby-gatsby-react-bootstrap-starter.png differ diff --git a/static/capture/biomadeira-jasper-master.png b/static/capture/biomadeira-jasper-master.png deleted file mode 100644 index ae06ae0dd..000000000 Binary files a/static/capture/biomadeira-jasper-master.png and /dev/null differ diff --git a/static/capture/biomadeira-sustain-gh-pages.png b/static/capture/biomadeira-sustain-gh-pages.png deleted file mode 100644 index c166a7d7f..000000000 Binary files a/static/capture/biomadeira-sustain-gh-pages.png and /dev/null differ diff --git a/static/capture/biomadeira-vitae-gh-pages.png b/static/capture/biomadeira-vitae-gh-pages.png deleted file mode 100644 index aaf9ee849..000000000 Binary files a/static/capture/biomadeira-vitae-gh-pages.png and /dev/null differ diff --git a/static/capture/bit-ranger-blog-gh-pages.png b/static/capture/bit-ranger-blog-gh-pages.png deleted file mode 100644 index 11e882de4..000000000 Binary files a/static/capture/bit-ranger-blog-gh-pages.png and /dev/null differ diff --git a/static/capture/bit-ranger-blog.png b/static/capture/bit-ranger-blog.png new file mode 100644 index 000000000..ed6ea6e3a Binary files /dev/null and b/static/capture/bit-ranger-blog.png differ diff --git a/static/capture/bjacquemet-personal-web-master.png b/static/capture/bjacquemet-personal-web-master.png deleted file mode 100644 index 2434efcf4..000000000 Binary files a/static/capture/bjacquemet-personal-web-master.png and /dev/null differ diff --git a/static/capture/blakenoll-gatsby-starter-styled-components-master.png b/static/capture/blakenoll-gatsby-starter-styled-components-master.png deleted file mode 100644 index 0fd831cae..000000000 Binary files a/static/capture/blakenoll-gatsby-starter-styled-components-master.png and /dev/null differ diff --git a/static/capture/blakenoll-gatsby-starter-styled-components.png b/static/capture/blakenoll-gatsby-starter-styled-components.png new file mode 100644 index 000000000..7ab85578d Binary files /dev/null and b/static/capture/blakenoll-gatsby-starter-styled-components.png differ diff --git a/static/capture/blankoworld-hugo_theme_adam_eve-master.png b/static/capture/blankoworld-hugo_theme_adam_eve-master.png deleted file mode 100644 index 128ca089c..000000000 Binary files a/static/capture/blankoworld-hugo_theme_adam_eve-master.png and /dev/null differ diff --git a/static/capture/blazity-next-saas-starter.png b/static/capture/blazity-next-saas-starter.png new file mode 100644 index 000000000..de51cf9ee Binary files /dev/null and b/static/capture/blazity-next-saas-starter.png differ diff --git a/static/capture/blleng-hexo-theme-lx-master.png b/static/capture/blleng-hexo-theme-lx-master.png deleted file mode 100644 index b90d1301f..000000000 Binary files a/static/capture/blleng-hexo-theme-lx-master.png and /dev/null differ diff --git a/static/capture/blleng-hexo-theme-lx.png b/static/capture/blleng-hexo-theme-lx.png new file mode 100644 index 000000000..2aaad75fd Binary files /dev/null and b/static/capture/blleng-hexo-theme-lx.png differ diff --git a/static/capture/bluepeter-gatsby-material-ui-business-starter-master.png b/static/capture/bluepeter-gatsby-material-ui-business-starter-master.png deleted file mode 100644 index 2a5e1e1c8..000000000 Binary files a/static/capture/bluepeter-gatsby-material-ui-business-starter-master.png and /dev/null differ diff --git a/static/capture/bluepeter-gatsby-material-ui-business-starter.png b/static/capture/bluepeter-gatsby-material-ui-business-starter.png new file mode 100644 index 000000000..3e09cd02a Binary files /dev/null and b/static/capture/bluepeter-gatsby-material-ui-business-starter.png differ diff --git a/static/capture/borekb-gatsby-starter-mobx-master.png b/static/capture/borekb-gatsby-starter-mobx-master.png deleted file mode 100644 index a4362899b..000000000 Binary files a/static/capture/borekb-gatsby-starter-mobx-master.png and /dev/null differ diff --git a/static/capture/borekb-gatsby-starter-mobx.png b/static/capture/borekb-gatsby-starter-mobx.png new file mode 100644 index 000000000..160902f91 Binary files /dev/null and b/static/capture/borekb-gatsby-starter-mobx.png differ diff --git a/static/capture/boywithsilverwings-gatsby-blog-starter-master.png b/static/capture/boywithsilverwings-gatsby-blog-starter-master.png deleted file mode 100644 index 992ace3f9..000000000 Binary files a/static/capture/boywithsilverwings-gatsby-blog-starter-master.png and /dev/null differ diff --git a/static/capture/boywithsilverwings-gatsby-blog-starter.png b/static/capture/boywithsilverwings-gatsby-blog-starter.png new file mode 100644 index 000000000..4a75c542c Binary files /dev/null and b/static/capture/boywithsilverwings-gatsby-blog-starter.png differ diff --git a/static/capture/boywithsilverwings-gatsby-careers-page-master.png b/static/capture/boywithsilverwings-gatsby-careers-page-master.png deleted file mode 100644 index 178825fa6..000000000 Binary files a/static/capture/boywithsilverwings-gatsby-careers-page-master.png and /dev/null differ diff --git a/static/capture/boywithsilverwings-gatsby-careers-page.png b/static/capture/boywithsilverwings-gatsby-careers-page.png new file mode 100644 index 000000000..42130a0cf Binary files /dev/null and b/static/capture/boywithsilverwings-gatsby-careers-page.png differ diff --git a/static/capture/bradykondek-streamer-master.png b/static/capture/bradykondek-streamer-master.png deleted file mode 100644 index 50f56cf8c..000000000 Binary files a/static/capture/bradykondek-streamer-master.png and /dev/null differ diff --git a/static/capture/bradykondek-streamer.png b/static/capture/bradykondek-streamer.png new file mode 100644 index 000000000..a3effcaac Binary files /dev/null and b/static/capture/bradykondek-streamer.png differ diff --git a/static/capture/brennanbrown-enjoyment-work.png b/static/capture/brennanbrown-enjoyment-work.png new file mode 100644 index 000000000..5824f4e71 Binary files /dev/null and b/static/capture/brennanbrown-enjoyment-work.png differ diff --git a/static/capture/brennanbrown-purelog.png b/static/capture/brennanbrown-purelog.png new file mode 100644 index 000000000..5bef5e90d Binary files /dev/null and b/static/capture/brennanbrown-purelog.png differ diff --git a/static/capture/brennanbrown-watery.png b/static/capture/brennanbrown-watery.png new file mode 100644 index 000000000..ae3513fcb Binary files /dev/null and b/static/capture/brennanbrown-watery.png differ diff --git a/static/capture/brianmaierjr-long-haul-master.png b/static/capture/brianmaierjr-long-haul-master.png deleted file mode 100644 index a74e4e217..000000000 Binary files a/static/capture/brianmaierjr-long-haul-master.png and /dev/null differ diff --git a/static/capture/brianmaierjr-long-haul.png b/static/capture/brianmaierjr-long-haul.png new file mode 100644 index 000000000..11324ff38 Binary files /dev/null and b/static/capture/brianmaierjr-long-haul.png differ diff --git a/static/capture/brijeshb42-bitwiser-material-gh-pages.png b/static/capture/brijeshb42-bitwiser-material-gh-pages.png deleted file mode 100644 index 22b9396cd..000000000 Binary files a/static/capture/brijeshb42-bitwiser-material-gh-pages.png and /dev/null differ diff --git a/static/capture/brijeshb42-bitwiser-material.png b/static/capture/brijeshb42-bitwiser-material.png new file mode 100644 index 000000000..c2d2f9b08 Binary files /dev/null and b/static/capture/brijeshb42-bitwiser-material.png differ diff --git a/static/capture/brohlson-gatsby-datocms-starter-master.png b/static/capture/brohlson-gatsby-datocms-starter-master.png deleted file mode 100644 index 8298e61b7..000000000 Binary files a/static/capture/brohlson-gatsby-datocms-starter-master.png and /dev/null differ diff --git a/static/capture/brohlson-gatsby-datocms-starter.png b/static/capture/brohlson-gatsby-datocms-starter.png new file mode 100644 index 000000000..f1629f605 Binary files /dev/null and b/static/capture/brohlson-gatsby-datocms-starter.png differ diff --git a/static/capture/brunch-brunch.github.io-source.png b/static/capture/brunch-brunch.github.io-source.png deleted file mode 100644 index 6dd5ea5dc..000000000 Binary files a/static/capture/brunch-brunch.github.io-source.png and /dev/null differ diff --git a/static/capture/brunch-brunch.github.io.png b/static/capture/brunch-brunch.github.io.png new file mode 100644 index 000000000..5f398d836 Binary files /dev/null and b/static/capture/brunch-brunch.github.io.png differ diff --git a/static/capture/brxck-gatsby-starter-stripe-master.png b/static/capture/brxck-gatsby-starter-stripe-master.png deleted file mode 100644 index e44f78297..000000000 Binary files a/static/capture/brxck-gatsby-starter-stripe-master.png and /dev/null differ diff --git a/static/capture/brxck-gatsby-starter-stripe.png b/static/capture/brxck-gatsby-starter-stripe.png new file mode 100644 index 000000000..6a8200730 Binary files /dev/null and b/static/capture/brxck-gatsby-starter-stripe.png differ diff --git a/static/capture/brycematheson-allegiant-master.png b/static/capture/brycematheson-allegiant-master.png deleted file mode 100644 index 5e5bbfe45..000000000 Binary files a/static/capture/brycematheson-allegiant-master.png and /dev/null differ diff --git a/static/capture/budparr-gohugo-theme-ananke-master.png b/static/capture/budparr-gohugo-theme-ananke-master.png deleted file mode 100644 index ebc086e74..000000000 Binary files a/static/capture/budparr-gohugo-theme-ananke-master.png and /dev/null differ diff --git a/static/capture/budparr-gohugo-theme-ananke.png b/static/capture/budparr-gohugo-theme-ananke.png new file mode 100644 index 000000000..2daf75bb0 Binary files /dev/null and b/static/capture/budparr-gohugo-theme-ananke.png differ diff --git a/static/capture/bul-ikana-hugo-cards-master.png b/static/capture/bul-ikana-hugo-cards-master.png deleted file mode 100644 index ade000afe..000000000 Binary files a/static/capture/bul-ikana-hugo-cards-master.png and /dev/null differ diff --git a/static/capture/buttercms-gatsby-starter-buttercms-master.png b/static/capture/buttercms-gatsby-starter-buttercms-master.png deleted file mode 100644 index 466030427..000000000 Binary files a/static/capture/buttercms-gatsby-starter-buttercms-master.png and /dev/null differ diff --git a/static/capture/buttercms-gatsby-starter-buttercms.png b/static/capture/buttercms-gatsby-starter-buttercms.png new file mode 100644 index 000000000..57e644069 Binary files /dev/null and b/static/capture/buttercms-gatsby-starter-buttercms.png differ diff --git a/static/capture/caki0915-gatsby-starter-redux-master.png b/static/capture/caki0915-gatsby-starter-redux-master.png deleted file mode 100644 index 840731ce2..000000000 Binary files a/static/capture/caki0915-gatsby-starter-redux-master.png and /dev/null differ diff --git a/static/capture/caki0915-gatsby-starter-redux.png b/static/capture/caki0915-gatsby-starter-redux.png new file mode 100644 index 000000000..e7dc9ad35 Binary files /dev/null and b/static/capture/caki0915-gatsby-starter-redux.png differ diff --git a/static/capture/calintat-minimal-master.png b/static/capture/calintat-minimal-master.png deleted file mode 100644 index 791532dfb..000000000 Binary files a/static/capture/calintat-minimal-master.png and /dev/null differ diff --git a/static/capture/calpa-gatsby-starter-calpa-blog-master.png b/static/capture/calpa-gatsby-starter-calpa-blog-master.png deleted file mode 100644 index 109ffaf1b..000000000 Binary files a/static/capture/calpa-gatsby-starter-calpa-blog-master.png and /dev/null differ diff --git a/static/capture/calpa-gatsby-starter-calpa-blog.png b/static/capture/calpa-gatsby-starter-calpa-blog.png new file mode 100644 index 000000000..1329b0409 Binary files /dev/null and b/static/capture/calpa-gatsby-starter-calpa-blog.png differ diff --git a/static/capture/canhtran-maverick.png b/static/capture/canhtran-maverick.png new file mode 100644 index 000000000..4fd9db934 Binary files /dev/null and b/static/capture/canhtran-maverick.png differ diff --git a/static/capture/carsonip-hugo-theme-minos-master.png b/static/capture/carsonip-hugo-theme-minos-master.png deleted file mode 100644 index 90e979fb4..000000000 Binary files a/static/capture/carsonip-hugo-theme-minos-master.png and /dev/null differ diff --git a/static/capture/cboettig-hugo-now-ui-master.png b/static/capture/cboettig-hugo-now-ui-master.png deleted file mode 100644 index d86603363..000000000 Binary files a/static/capture/cboettig-hugo-now-ui-master.png and /dev/null differ diff --git a/static/capture/cdeck3r-onedly-theme-master.png b/static/capture/cdeck3r-onedly-theme-master.png deleted file mode 100644 index fc165bcde..000000000 Binary files a/static/capture/cdeck3r-onedly-theme-master.png and /dev/null differ diff --git a/static/capture/cfrome77-hugo-theme-sky-master.png b/static/capture/cfrome77-hugo-theme-sky-master.png deleted file mode 100644 index f11357fc3..000000000 Binary files a/static/capture/cfrome77-hugo-theme-sky-master.png and /dev/null differ diff --git a/static/capture/chaooo-hexo-theme-bluelake-master.png b/static/capture/chaooo-hexo-theme-bluelake-master.png deleted file mode 100644 index f4c324bfc..000000000 Binary files a/static/capture/chaooo-hexo-theme-bluelake-master.png and /dev/null differ diff --git a/static/capture/chaooo-hexo-theme-bluelake.png b/static/capture/chaooo-hexo-theme-bluelake.png new file mode 100644 index 000000000..4e56378e5 Binary files /dev/null and b/static/capture/chaooo-hexo-theme-bluelake.png differ diff --git a/static/capture/chec-commercejs-chopchop-demo.png b/static/capture/chec-commercejs-chopchop-demo.png new file mode 100644 index 000000000..2b96fa670 Binary files /dev/null and b/static/capture/chec-commercejs-chopchop-demo.png differ diff --git a/static/capture/chec-commercejs-nextjs-demo-store-master.png b/static/capture/chec-commercejs-nextjs-demo-store-master.png deleted file mode 100644 index 34955d566..000000000 Binary files a/static/capture/chec-commercejs-nextjs-demo-store-master.png and /dev/null differ diff --git a/static/capture/chec-commercejs-nextjs-demo-store.png b/static/capture/chec-commercejs-nextjs-demo-store.png new file mode 100644 index 000000000..bfec8bea4 Binary files /dev/null and b/static/capture/chec-commercejs-nextjs-demo-store.png differ diff --git a/static/capture/chec-commercejs-vuejs-boilerplate-master.png b/static/capture/chec-commercejs-vuejs-boilerplate-master.png deleted file mode 100644 index 0bae9d57e..000000000 Binary files a/static/capture/chec-commercejs-vuejs-boilerplate-master.png and /dev/null differ diff --git a/static/capture/chec-commercejs-vuejs-boilerplate.png b/static/capture/chec-commercejs-vuejs-boilerplate.png new file mode 100644 index 000000000..c297d7390 Binary files /dev/null and b/static/capture/chec-commercejs-vuejs-boilerplate.png differ diff --git a/static/capture/chesterhow-tale-master.png b/static/capture/chesterhow-tale-master.png deleted file mode 100644 index 606406207..000000000 Binary files a/static/capture/chesterhow-tale-master.png and /dev/null differ diff --git a/static/capture/chesterhow-tale.png b/static/capture/chesterhow-tale.png new file mode 100644 index 000000000..0860ca825 Binary files /dev/null and b/static/capture/chesterhow-tale.png differ diff --git a/static/capture/chetanverma16-react-portfolio-template.png b/static/capture/chetanverma16-react-portfolio-template.png new file mode 100644 index 000000000..acc3f3428 Binary files /dev/null and b/static/capture/chetanverma16-react-portfolio-template.png differ diff --git a/static/capture/chibicode-solo-gh-pages.png b/static/capture/chibicode-solo-gh-pages.png deleted file mode 100644 index 4b645d050..000000000 Binary files a/static/capture/chibicode-solo-gh-pages.png and /dev/null differ diff --git a/static/capture/chibicode-solo.png b/static/capture/chibicode-solo.png new file mode 100644 index 000000000..cd987db3e Binary files /dev/null and b/static/capture/chibicode-solo.png differ diff --git a/static/capture/chipsenkbeil-grid-side-master.png b/static/capture/chipsenkbeil-grid-side-master.png deleted file mode 100644 index 33e418c03..000000000 Binary files a/static/capture/chipsenkbeil-grid-side-master.png and /dev/null differ diff --git a/static/capture/chipzoller-hugo-clarity-master.png b/static/capture/chipzoller-hugo-clarity-master.png deleted file mode 100644 index 635f9c291..000000000 Binary files a/static/capture/chipzoller-hugo-clarity-master.png and /dev/null differ diff --git a/static/capture/chringel21-chringel-hugo-theme.png b/static/capture/chringel21-chringel-hugo-theme.png new file mode 100644 index 000000000..1d480441b Binary files /dev/null and b/static/capture/chringel21-chringel-hugo-theme.png differ diff --git a/static/capture/chrisbobbe-jekyll-theme-prologue-master.png b/static/capture/chrisbobbe-jekyll-theme-prologue-master.png deleted file mode 100644 index 11cc2db35..000000000 Binary files a/static/capture/chrisbobbe-jekyll-theme-prologue-master.png and /dev/null differ diff --git a/static/capture/chrisbobbe-jekyll-theme-prologue.png b/static/capture/chrisbobbe-jekyll-theme-prologue.png new file mode 100644 index 000000000..77be6d752 Binary files /dev/null and b/static/capture/chrisbobbe-jekyll-theme-prologue.png differ diff --git a/static/capture/chrisnmorrison-revista-gatsby-blog-magazine.png b/static/capture/chrisnmorrison-revista-gatsby-blog-magazine.png new file mode 100644 index 000000000..b9cdf02d5 Binary files /dev/null and b/static/capture/chrisnmorrison-revista-gatsby-blog-magazine.png differ diff --git a/static/capture/chrisrhymes-bulma-clean-theme-master.png b/static/capture/chrisrhymes-bulma-clean-theme-master.png deleted file mode 100644 index ab5fc78a0..000000000 Binary files a/static/capture/chrisrhymes-bulma-clean-theme-master.png and /dev/null differ diff --git a/static/capture/chrisrhymes-bulma-clean-theme.png b/static/capture/chrisrhymes-bulma-clean-theme.png new file mode 100644 index 000000000..de1185ed7 Binary files /dev/null and b/static/capture/chrisrhymes-bulma-clean-theme.png differ diff --git a/static/capture/chrisrhymes-mere-blog-theme-master.png b/static/capture/chrisrhymes-mere-blog-theme-master.png deleted file mode 100644 index 4f55ee13b..000000000 Binary files a/static/capture/chrisrhymes-mere-blog-theme-master.png and /dev/null differ diff --git a/static/capture/chrisrhymes-mere-blog-theme.png b/static/capture/chrisrhymes-mere-blog-theme.png new file mode 100644 index 000000000..57e4f7fd6 Binary files /dev/null and b/static/capture/chrisrhymes-mere-blog-theme.png differ diff --git a/static/capture/chrissimpkins-cinder-master.png b/static/capture/chrissimpkins-cinder-master.png deleted file mode 100644 index 4185ceeca..000000000 Binary files a/static/capture/chrissimpkins-cinder-master.png and /dev/null differ diff --git a/static/capture/chrissimpkins-cinder.png b/static/capture/chrissimpkins-cinder.png new file mode 100644 index 000000000..0ee42dbda Binary files /dev/null and b/static/capture/chrissimpkins-cinder.png differ diff --git a/static/capture/christianezeani-panthera-jekyll-master.png b/static/capture/christianezeani-panthera-jekyll-master.png deleted file mode 100644 index bd099fc88..000000000 Binary files a/static/capture/christianezeani-panthera-jekyll-master.png and /dev/null differ diff --git a/static/capture/christianezeani-panthera-jekyll.png b/static/capture/christianezeani-panthera-jekyll.png new file mode 100644 index 000000000..d3a2e61af Binary files /dev/null and b/static/capture/christianezeani-panthera-jekyll.png differ diff --git a/static/capture/christianmendoza-hugo-split-theme-master.png b/static/capture/christianmendoza-hugo-split-theme-master.png deleted file mode 100644 index 3f5bab68a..000000000 Binary files a/static/capture/christianmendoza-hugo-split-theme-master.png and /dev/null differ diff --git a/static/capture/cjsheets-mkdocs-rtd-dropdown-master.png b/static/capture/cjsheets-mkdocs-rtd-dropdown-master.png deleted file mode 100644 index d1d048e09..000000000 Binary files a/static/capture/cjsheets-mkdocs-rtd-dropdown-master.png and /dev/null differ diff --git a/static/capture/clark-zhao-bohu-jekyll-theme-gh-pages.png b/static/capture/clark-zhao-bohu-jekyll-theme-gh-pages.png deleted file mode 100644 index 63eabb42f..000000000 Binary files a/static/capture/clark-zhao-bohu-jekyll-theme-gh-pages.png and /dev/null differ diff --git a/static/capture/clark-zhao-bohu-jekyll-theme.png b/static/capture/clark-zhao-bohu-jekyll-theme.png new file mode 100644 index 000000000..b4bbefc6e Binary files /dev/null and b/static/capture/clark-zhao-bohu-jekyll-theme.png differ diff --git a/static/capture/clarkhacks-minimal-text-master.png b/static/capture/clarkhacks-minimal-text-master.png deleted file mode 100644 index ee92ec383..000000000 Binary files a/static/capture/clarkhacks-minimal-text-master.png and /dev/null differ diff --git a/static/capture/clayh53-tufte-jekyll-master.png b/static/capture/clayh53-tufte-jekyll-master.png deleted file mode 100644 index dad7b63a0..000000000 Binary files a/static/capture/clayh53-tufte-jekyll-master.png and /dev/null differ diff --git a/static/capture/clayh53-tufte-jekyll.png b/static/capture/clayh53-tufte-jekyll.png new file mode 100644 index 000000000..5a5984efe Binary files /dev/null and b/static/capture/clayh53-tufte-jekyll.png differ diff --git a/static/capture/cloudcannon-aviator-jekyll-theme-master.png b/static/capture/cloudcannon-aviator-jekyll-theme-master.png deleted file mode 100644 index 9a5c7c0a8..000000000 Binary files a/static/capture/cloudcannon-aviator-jekyll-theme-master.png and /dev/null differ diff --git a/static/capture/cloudcannon-aviator-jekyll-theme.png b/static/capture/cloudcannon-aviator-jekyll-theme.png new file mode 100644 index 000000000..0d7fb0b97 Binary files /dev/null and b/static/capture/cloudcannon-aviator-jekyll-theme.png differ diff --git a/static/capture/cloudcannon-cause-jekyll-template-master.png b/static/capture/cloudcannon-cause-jekyll-template-master.png deleted file mode 100644 index 7ab87e1f7..000000000 Binary files a/static/capture/cloudcannon-cause-jekyll-template-master.png and /dev/null differ diff --git a/static/capture/cloudcannon-cause-jekyll-template.png b/static/capture/cloudcannon-cause-jekyll-template.png new file mode 100644 index 000000000..26506a4fb Binary files /dev/null and b/static/capture/cloudcannon-cause-jekyll-template.png differ diff --git a/static/capture/cloudcannon-dopetrope-jekyll-theme-master.png b/static/capture/cloudcannon-dopetrope-jekyll-theme-master.png deleted file mode 100644 index 12ea59200..000000000 Binary files a/static/capture/cloudcannon-dopetrope-jekyll-theme-master.png and /dev/null differ diff --git a/static/capture/cloudcannon-edition-jekyll-template-master.png b/static/capture/cloudcannon-edition-jekyll-template-master.png deleted file mode 100644 index 281920db1..000000000 Binary files a/static/capture/cloudcannon-edition-jekyll-template-master.png and /dev/null differ diff --git a/static/capture/cloudcannon-edition-jekyll-template.png b/static/capture/cloudcannon-edition-jekyll-template.png new file mode 100644 index 000000000..9a14d6571 Binary files /dev/null and b/static/capture/cloudcannon-edition-jekyll-template.png differ diff --git a/static/capture/cloudcannon-frisco-jekyll-template-master.png b/static/capture/cloudcannon-frisco-jekyll-template-master.png deleted file mode 100644 index ffa212da0..000000000 Binary files a/static/capture/cloudcannon-frisco-jekyll-template-master.png and /dev/null differ diff --git a/static/capture/cloudcannon-frisco-jekyll-template.png b/static/capture/cloudcannon-frisco-jekyll-template.png new file mode 100644 index 000000000..d5f55a108 Binary files /dev/null and b/static/capture/cloudcannon-frisco-jekyll-template.png differ diff --git a/static/capture/cloudcannon-hydra-jekyll-template-master.png b/static/capture/cloudcannon-hydra-jekyll-template-master.png deleted file mode 100644 index 28b97b018..000000000 Binary files a/static/capture/cloudcannon-hydra-jekyll-template-master.png and /dev/null differ diff --git a/static/capture/cloudcannon-hydra-jekyll-template.png b/static/capture/cloudcannon-hydra-jekyll-template.png new file mode 100644 index 000000000..72d02a203 Binary files /dev/null and b/static/capture/cloudcannon-hydra-jekyll-template.png differ diff --git a/static/capture/cloudcannon-justice-jekyll-template-master.png b/static/capture/cloudcannon-justice-jekyll-template-master.png deleted file mode 100644 index cbd8ed78b..000000000 Binary files a/static/capture/cloudcannon-justice-jekyll-template-master.png and /dev/null differ diff --git a/static/capture/cloudcannon-justice-jekyll-template.png b/static/capture/cloudcannon-justice-jekyll-template.png new file mode 100644 index 000000000..e2f36a9d9 Binary files /dev/null and b/static/capture/cloudcannon-justice-jekyll-template.png differ diff --git a/static/capture/cloudcannon-malt-jekyll-template-master.png b/static/capture/cloudcannon-malt-jekyll-template-master.png deleted file mode 100644 index 0f08dc38b..000000000 Binary files a/static/capture/cloudcannon-malt-jekyll-template-master.png and /dev/null differ diff --git a/static/capture/cloudcannon-malt-jekyll-template.png b/static/capture/cloudcannon-malt-jekyll-template.png new file mode 100644 index 000000000..6d4badc6c Binary files /dev/null and b/static/capture/cloudcannon-malt-jekyll-template.png differ diff --git a/static/capture/cloudcannon-strata-jekyll-theme-master.png b/static/capture/cloudcannon-strata-jekyll-theme-master.png deleted file mode 100644 index 458102e60..000000000 Binary files a/static/capture/cloudcannon-strata-jekyll-theme-master.png and /dev/null differ diff --git a/static/capture/cloudcannon-twenty-jekyll-theme-master.png b/static/capture/cloudcannon-twenty-jekyll-theme-master.png deleted file mode 100644 index cb8c0d664..000000000 Binary files a/static/capture/cloudcannon-twenty-jekyll-theme-master.png and /dev/null differ diff --git a/static/capture/cloudcannon-urban-jekyll-template-master.png b/static/capture/cloudcannon-urban-jekyll-template-master.png deleted file mode 100644 index 504c8c8fd..000000000 Binary files a/static/capture/cloudcannon-urban-jekyll-template-master.png and /dev/null differ diff --git a/static/capture/cloudcannon-urban-jekyll-template.png b/static/capture/cloudcannon-urban-jekyll-template.png new file mode 100644 index 000000000..ba6551ce7 Binary files /dev/null and b/static/capture/cloudcannon-urban-jekyll-template.png differ diff --git a/static/capture/codeasashu-hcz-jekyll-blog-master.png b/static/capture/codeasashu-hcz-jekyll-blog-master.png deleted file mode 100644 index 4901ca850..000000000 Binary files a/static/capture/codeasashu-hcz-jekyll-blog-master.png and /dev/null differ diff --git a/static/capture/codeasashu-hcz-jekyll-blog.png b/static/capture/codeasashu-hcz-jekyll-blog.png new file mode 100644 index 000000000..a5b5f4a35 Binary files /dev/null and b/static/capture/codeasashu-hcz-jekyll-blog.png differ diff --git a/static/capture/codebushi-gatsby-starter-dimension-master.png b/static/capture/codebushi-gatsby-starter-dimension-master.png deleted file mode 100644 index 6102df74b..000000000 Binary files a/static/capture/codebushi-gatsby-starter-dimension-master.png and /dev/null differ diff --git a/static/capture/codebushi-gatsby-starter-dimension.png b/static/capture/codebushi-gatsby-starter-dimension.png new file mode 100644 index 000000000..3cdd0a3cb Binary files /dev/null and b/static/capture/codebushi-gatsby-starter-dimension.png differ diff --git a/static/capture/codebushi-gatsby-starter-forty-master.png b/static/capture/codebushi-gatsby-starter-forty-master.png deleted file mode 100644 index 9ba337a03..000000000 Binary files a/static/capture/codebushi-gatsby-starter-forty-master.png and /dev/null differ diff --git a/static/capture/codebushi-gatsby-starter-forty.png b/static/capture/codebushi-gatsby-starter-forty.png new file mode 100644 index 000000000..ac8543c86 Binary files /dev/null and b/static/capture/codebushi-gatsby-starter-forty.png differ diff --git a/static/capture/codebushi-gatsby-starter-photon-master.png b/static/capture/codebushi-gatsby-starter-photon-master.png deleted file mode 100644 index 42ce0f9aa..000000000 Binary files a/static/capture/codebushi-gatsby-starter-photon-master.png and /dev/null differ diff --git a/static/capture/codebushi-gatsby-starter-photon.png b/static/capture/codebushi-gatsby-starter-photon.png new file mode 100644 index 000000000..07b428211 Binary files /dev/null and b/static/capture/codebushi-gatsby-starter-photon.png differ diff --git a/static/capture/codebushi-gatsby-starter-stellar-master.png b/static/capture/codebushi-gatsby-starter-stellar-master.png deleted file mode 100644 index 7ab53ad10..000000000 Binary files a/static/capture/codebushi-gatsby-starter-stellar-master.png and /dev/null differ diff --git a/static/capture/codebushi-gatsby-starter-stellar.png b/static/capture/codebushi-gatsby-starter-stellar.png new file mode 100644 index 000000000..5fb8835dc Binary files /dev/null and b/static/capture/codebushi-gatsby-starter-stellar.png differ diff --git a/static/capture/codebushi-gatsby-starter-strata-master.png b/static/capture/codebushi-gatsby-starter-strata-master.png deleted file mode 100644 index 496c7823d..000000000 Binary files a/static/capture/codebushi-gatsby-starter-strata-master.png and /dev/null differ diff --git a/static/capture/codebushi-gatsby-starter-strata.png b/static/capture/codebushi-gatsby-starter-strata.png new file mode 100644 index 000000000..96fbf2063 Binary files /dev/null and b/static/capture/codebushi-gatsby-starter-strata.png differ diff --git a/static/capture/coderzh-hugo-pacman-theme-master.png b/static/capture/coderzh-hugo-pacman-theme-master.png deleted file mode 100644 index 26d1b12eb..000000000 Binary files a/static/capture/coderzh-hugo-pacman-theme-master.png and /dev/null differ diff --git a/static/capture/codexfelis-paws-template.png b/static/capture/codexfelis-paws-template.png new file mode 100644 index 000000000..9275783de Binary files /dev/null and b/static/capture/codexfelis-paws-template.png differ diff --git a/static/capture/codinfox-codinfox-lanyon-dev.png b/static/capture/codinfox-codinfox-lanyon-dev.png deleted file mode 100644 index 2365a4d5c..000000000 Binary files a/static/capture/codinfox-codinfox-lanyon-dev.png and /dev/null differ diff --git a/static/capture/codinfox-codinfox-lanyon.png b/static/capture/codinfox-codinfox-lanyon.png new file mode 100644 index 000000000..6b3ac7802 Binary files /dev/null and b/static/capture/codinfox-codinfox-lanyon.png differ diff --git a/static/capture/colbyfayock-gatsby-starter-sass-master.png b/static/capture/colbyfayock-gatsby-starter-sass-master.png deleted file mode 100644 index 28c8f0370..000000000 Binary files a/static/capture/colbyfayock-gatsby-starter-sass-master.png and /dev/null differ diff --git a/static/capture/colbyfayock-gatsby-starter-sass.png b/static/capture/colbyfayock-gatsby-starter-sass.png new file mode 100644 index 000000000..1dd3aae52 Binary files /dev/null and b/static/capture/colbyfayock-gatsby-starter-sass.png differ diff --git a/static/capture/coletownsend-balzac-for-jekyll-master.png b/static/capture/coletownsend-balzac-for-jekyll-master.png deleted file mode 100644 index 684008ec7..000000000 Binary files a/static/capture/coletownsend-balzac-for-jekyll-master.png and /dev/null differ diff --git a/static/capture/coletownsend-balzac-for-jekyll.png b/static/capture/coletownsend-balzac-for-jekyll.png new file mode 100644 index 000000000..22b02b8be Binary files /dev/null and b/static/capture/coletownsend-balzac-for-jekyll.png differ diff --git a/static/capture/collective-gatsby-starter-plone-master.png b/static/capture/collective-gatsby-starter-plone-master.png deleted file mode 100644 index 9734a9645..000000000 Binary files a/static/capture/collective-gatsby-starter-plone-master.png and /dev/null differ diff --git a/static/capture/collective-gatsby-starter-plone.png b/static/capture/collective-gatsby-starter-plone.png new file mode 100644 index 000000000..6347b4d19 Binary files /dev/null and b/static/capture/collective-gatsby-starter-plone.png differ diff --git a/static/capture/contentful-userland-gatsby-contentful-starter-master.png b/static/capture/contentful-userland-gatsby-contentful-starter-master.png deleted file mode 100644 index 6f2e2b4db..000000000 Binary files a/static/capture/contentful-userland-gatsby-contentful-starter-master.png and /dev/null differ diff --git a/static/capture/contentful-userland-gatsby-contentful-starter.png b/static/capture/contentful-userland-gatsby-contentful-starter.png new file mode 100644 index 000000000..b4b4a3999 Binary files /dev/null and b/static/capture/contentful-userland-gatsby-contentful-starter.png differ diff --git a/static/capture/contentstack-gatsby-starter-contentstack-master.png b/static/capture/contentstack-gatsby-starter-contentstack-master.png deleted file mode 100644 index fbef775a2..000000000 Binary files a/static/capture/contentstack-gatsby-starter-contentstack-master.png and /dev/null differ diff --git a/static/capture/contentstack-gatsby-starter-contentstack.png b/static/capture/contentstack-gatsby-starter-contentstack.png new file mode 100644 index 000000000..05f822a82 Binary files /dev/null and b/static/capture/contentstack-gatsby-starter-contentstack.png differ diff --git a/static/capture/cosmicjs-gatsby-agency-portfolio-master.png b/static/capture/cosmicjs-gatsby-agency-portfolio-master.png deleted file mode 100644 index 020430161..000000000 Binary files a/static/capture/cosmicjs-gatsby-agency-portfolio-master.png and /dev/null differ diff --git a/static/capture/cosmicjs-gatsby-agency-portfolio.png b/static/capture/cosmicjs-gatsby-agency-portfolio.png new file mode 100644 index 000000000..0a1277460 Binary files /dev/null and b/static/capture/cosmicjs-gatsby-agency-portfolio.png differ diff --git a/static/capture/cosmicjs-gatsby-blog-cosmicjs-master.png b/static/capture/cosmicjs-gatsby-blog-cosmicjs-master.png deleted file mode 100644 index e9e36635e..000000000 Binary files a/static/capture/cosmicjs-gatsby-blog-cosmicjs-master.png and /dev/null differ diff --git a/static/capture/cosmicjs-gatsby-blog-cosmicjs.png b/static/capture/cosmicjs-gatsby-blog-cosmicjs.png new file mode 100644 index 000000000..cb93c890d Binary files /dev/null and b/static/capture/cosmicjs-gatsby-blog-cosmicjs.png differ diff --git a/static/capture/cosmicjs-gatsby-docs-app-master.png b/static/capture/cosmicjs-gatsby-docs-app-master.png deleted file mode 100644 index a5eddfc8f..000000000 Binary files a/static/capture/cosmicjs-gatsby-docs-app-master.png and /dev/null differ diff --git a/static/capture/cosmicjs-gatsby-docs-app.png b/static/capture/cosmicjs-gatsby-docs-app.png new file mode 100644 index 000000000..6efb88de9 Binary files /dev/null and b/static/capture/cosmicjs-gatsby-docs-app.png differ diff --git a/static/capture/cosmicjs-gatsby-localization-app-starter-master.png b/static/capture/cosmicjs-gatsby-localization-app-starter-master.png deleted file mode 100644 index 7da25ddc9..000000000 Binary files a/static/capture/cosmicjs-gatsby-localization-app-starter-master.png and /dev/null differ diff --git a/static/capture/cosmicjs-gatsby-localization-app-starter.png b/static/capture/cosmicjs-gatsby-localization-app-starter.png new file mode 100644 index 000000000..020c0666f Binary files /dev/null and b/static/capture/cosmicjs-gatsby-localization-app-starter.png differ diff --git a/static/capture/cosmicjs-gatsby-starter-master.png b/static/capture/cosmicjs-gatsby-starter-master.png deleted file mode 100644 index 1cabc946b..000000000 Binary files a/static/capture/cosmicjs-gatsby-starter-master.png and /dev/null differ diff --git a/static/capture/cosmicjs-gatsby-starter.png b/static/capture/cosmicjs-gatsby-starter.png new file mode 100644 index 000000000..54b36540d Binary files /dev/null and b/static/capture/cosmicjs-gatsby-starter.png differ diff --git a/static/capture/cotes2020-jekyll-theme-chirpy-master.png b/static/capture/cotes2020-jekyll-theme-chirpy-master.png deleted file mode 100644 index 054ceda8e..000000000 Binary files a/static/capture/cotes2020-jekyll-theme-chirpy-master.png and /dev/null differ diff --git a/static/capture/cotes2020-jekyll-theme-chirpy.png b/static/capture/cotes2020-jekyll-theme-chirpy.png new file mode 100644 index 000000000..3df0227aa Binary files /dev/null and b/static/capture/cotes2020-jekyll-theme-chirpy.png differ diff --git a/static/capture/craigary-nobelium.png b/static/capture/craigary-nobelium.png new file mode 100644 index 000000000..b3b009cdd Binary files /dev/null and b/static/capture/craigary-nobelium.png differ diff --git a/static/capture/creasoft-dev-fundamenty-master.png b/static/capture/creasoft-dev-fundamenty-master.png deleted file mode 100644 index fbe3d37c3..000000000 Binary files a/static/capture/creasoft-dev-fundamenty-master.png and /dev/null differ diff --git a/static/capture/creasoft-dev-fundamenty.png b/static/capture/creasoft-dev-fundamenty.png new file mode 100644 index 000000000..873a08157 Binary files /dev/null and b/static/capture/creasoft-dev-fundamenty.png differ diff --git a/static/capture/cssandstuff-hugo-theme-winning-master.png b/static/capture/cssandstuff-hugo-theme-winning-master.png deleted file mode 100644 index 6a6c17c96..000000000 Binary files a/static/capture/cssandstuff-hugo-theme-winning-master.png and /dev/null differ diff --git a/static/capture/curtiscde-hugo-theme-dopetrope.png b/static/capture/curtiscde-hugo-theme-dopetrope.png new file mode 100644 index 000000000..5a3ca39f8 Binary files /dev/null and b/static/capture/curtiscde-hugo-theme-dopetrope.png differ diff --git a/static/capture/curtiscde-hugo-theme-massively.png b/static/capture/curtiscde-hugo-theme-massively.png new file mode 100644 index 000000000..6410061cd Binary files /dev/null and b/static/capture/curtiscde-hugo-theme-massively.png differ diff --git a/static/capture/curtistimson-hugo-theme-dopetrope-master.png b/static/capture/curtistimson-hugo-theme-dopetrope-master.png deleted file mode 100644 index 53c67b903..000000000 Binary files a/static/capture/curtistimson-hugo-theme-dopetrope-master.png and /dev/null differ diff --git a/static/capture/curtistimson-hugo-theme-dopetrope.png b/static/capture/curtistimson-hugo-theme-dopetrope.png new file mode 100644 index 000000000..7a4fc8df0 Binary files /dev/null and b/static/capture/curtistimson-hugo-theme-dopetrope.png differ diff --git a/static/capture/curtistimson-hugo-theme-massively-master.png b/static/capture/curtistimson-hugo-theme-massively-master.png deleted file mode 100644 index e746abf78..000000000 Binary files a/static/capture/curtistimson-hugo-theme-massively-master.png and /dev/null differ diff --git a/static/capture/curtistimson-hugo-theme-massively.png b/static/capture/curtistimson-hugo-theme-massively.png new file mode 100644 index 000000000..21d07040d Binary files /dev/null and b/static/capture/curtistimson-hugo-theme-massively.png differ diff --git a/static/capture/cvluca-gatsby-starter-markdown-master.png b/static/capture/cvluca-gatsby-starter-markdown-master.png deleted file mode 100644 index 4ad4e1da3..000000000 Binary files a/static/capture/cvluca-gatsby-starter-markdown-master.png and /dev/null differ diff --git a/static/capture/cvluca-gatsby-starter-markdown.png b/static/capture/cvluca-gatsby-starter-markdown.png new file mode 100644 index 000000000..2a56f154c Binary files /dev/null and b/static/capture/cvluca-gatsby-starter-markdown.png differ diff --git a/static/capture/cwlsn-gatsby-simple-contentful-starter-master.png b/static/capture/cwlsn-gatsby-simple-contentful-starter-master.png deleted file mode 100644 index bf83a514a..000000000 Binary files a/static/capture/cwlsn-gatsby-simple-contentful-starter-master.png and /dev/null differ diff --git a/static/capture/cwlsn-gatsby-simple-contentful-starter.png b/static/capture/cwlsn-gatsby-simple-contentful-starter.png new file mode 100644 index 000000000..14f9a803e Binary files /dev/null and b/static/capture/cwlsn-gatsby-simple-contentful-starter.png differ diff --git a/static/capture/cyevgeniy-jekyll-true-minimal-master.png b/static/capture/cyevgeniy-jekyll-true-minimal-master.png deleted file mode 100644 index df829e5c4..000000000 Binary files a/static/capture/cyevgeniy-jekyll-true-minimal-master.png and /dev/null differ diff --git a/static/capture/cyevgeniy-jekyll-true-minimal.png b/static/capture/cyevgeniy-jekyll-true-minimal.png new file mode 100644 index 000000000..869e898d7 Binary files /dev/null and b/static/capture/cyevgeniy-jekyll-true-minimal.png differ diff --git a/static/capture/d-kusk-minimage-master.png b/static/capture/d-kusk-minimage-master.png deleted file mode 100644 index a99f1aeab..000000000 Binary files a/static/capture/d-kusk-minimage-master.png and /dev/null differ diff --git a/static/capture/daattali-beautiful-jekyll-master.png b/static/capture/daattali-beautiful-jekyll-master.png deleted file mode 100644 index d5bac08ef..000000000 Binary files a/static/capture/daattali-beautiful-jekyll-master.png and /dev/null differ diff --git a/static/capture/daattali-beautiful-jekyll.png b/static/capture/daattali-beautiful-jekyll.png new file mode 100644 index 000000000..f45873f7d Binary files /dev/null and b/static/capture/daattali-beautiful-jekyll.png differ diff --git a/static/capture/dabit3-gatsby-auth-starter-aws-amplify-master.png b/static/capture/dabit3-gatsby-auth-starter-aws-amplify-master.png deleted file mode 100644 index 6e02b3e2e..000000000 Binary files a/static/capture/dabit3-gatsby-auth-starter-aws-amplify-master.png and /dev/null differ diff --git a/static/capture/dabit3-gatsby-auth-starter-aws-amplify.png b/static/capture/dabit3-gatsby-auth-starter-aws-amplify.png new file mode 100644 index 000000000..8692dfbfd Binary files /dev/null and b/static/capture/dabit3-gatsby-auth-starter-aws-amplify.png differ diff --git a/static/capture/dafiulh-vredeburg-master.png b/static/capture/dafiulh-vredeburg-master.png deleted file mode 100644 index 42931cc43..000000000 Binary files a/static/capture/dafiulh-vredeburg-master.png and /dev/null differ diff --git a/static/capture/dafiulh-vredeburg.png b/static/capture/dafiulh-vredeburg.png new file mode 100644 index 000000000..a05aa9e77 Binary files /dev/null and b/static/capture/dafiulh-vredeburg.png differ diff --git a/static/capture/damassi-gatsby-starter-typescript-rebass-netlifycms-master.png b/static/capture/damassi-gatsby-starter-typescript-rebass-netlifycms-master.png deleted file mode 100644 index 5c6a6d295..000000000 Binary files a/static/capture/damassi-gatsby-starter-typescript-rebass-netlifycms-master.png and /dev/null differ diff --git a/static/capture/damassi-gatsby-starter-typescript-rebass-netlifycms.png b/static/capture/damassi-gatsby-starter-typescript-rebass-netlifycms.png new file mode 100644 index 000000000..1efdc728d Binary files /dev/null and b/static/capture/damassi-gatsby-starter-typescript-rebass-netlifycms.png differ diff --git a/static/capture/danielbayerlein-middleman-casper-master.png b/static/capture/danielbayerlein-middleman-casper-master.png deleted file mode 100644 index 097b680d9..000000000 Binary files a/static/capture/danielbayerlein-middleman-casper-master.png and /dev/null differ diff --git a/static/capture/danielbayerlein-middleman-casper.png b/static/capture/danielbayerlein-middleman-casper.png new file mode 100644 index 000000000..b82d2468e Binary files /dev/null and b/static/capture/danielbayerlein-middleman-casper.png differ diff --git a/static/capture/danielkellyio-awake-template-master.png b/static/capture/danielkellyio-awake-template-master.png deleted file mode 100644 index e620835fa..000000000 Binary files a/static/capture/danielkellyio-awake-template-master.png and /dev/null differ diff --git a/static/capture/danielkellyio-awake-template.png b/static/capture/danielkellyio-awake-template.png new file mode 100644 index 000000000..7ed951a80 Binary files /dev/null and b/static/capture/danielkellyio-awake-template.png differ diff --git a/static/capture/danielkvist-hugo-piercer-theme-master.png b/static/capture/danielkvist-hugo-piercer-theme-master.png deleted file mode 100644 index 9994803d5..000000000 Binary files a/static/capture/danielkvist-hugo-piercer-theme-master.png and /dev/null differ diff --git a/static/capture/danielkvist-hugo-piercer-theme.png b/static/capture/danielkvist-hugo-piercer-theme.png new file mode 100644 index 000000000..4f501b4fc Binary files /dev/null and b/static/capture/danielkvist-hugo-piercer-theme.png differ diff --git a/static/capture/danielkvist-hugo-terrassa-theme-master.png b/static/capture/danielkvist-hugo-terrassa-theme-master.png deleted file mode 100644 index 8c7fefc1e..000000000 Binary files a/static/capture/danielkvist-hugo-terrassa-theme-master.png and /dev/null differ diff --git a/static/capture/danielkvist-hugo-terrassa-theme.png b/static/capture/danielkvist-hugo-terrassa-theme.png new file mode 100644 index 000000000..7f68edef6 Binary files /dev/null and b/static/capture/danielkvist-hugo-terrassa-theme.png differ diff --git a/static/capture/danilowoz-gatsby-advanced-blog-system-master.png b/static/capture/danilowoz-gatsby-advanced-blog-system-master.png deleted file mode 100644 index 2d6b1d60a..000000000 Binary files a/static/capture/danilowoz-gatsby-advanced-blog-system-master.png and /dev/null differ diff --git a/static/capture/danilowoz-gatsby-advanced-blog-system.png b/static/capture/danilowoz-gatsby-advanced-blog-system.png new file mode 100644 index 000000000..f1b6bb187 Binary files /dev/null and b/static/capture/danilowoz-gatsby-advanced-blog-system.png differ diff --git a/static/capture/danshai-gatsbyv2-scientific-blog-machine-learning-master.png b/static/capture/danshai-gatsbyv2-scientific-blog-machine-learning-master.png deleted file mode 100644 index a574eb772..000000000 Binary files a/static/capture/danshai-gatsbyv2-scientific-blog-machine-learning-master.png and /dev/null differ diff --git a/static/capture/danshai-gatsbyv2-scientific-blog-machine-learning.png b/static/capture/danshai-gatsbyv2-scientific-blog-machine-learning.png new file mode 100644 index 000000000..cbefda7cb Binary files /dev/null and b/static/capture/danshai-gatsbyv2-scientific-blog-machine-learning.png differ diff --git a/static/capture/danurbanowicz-eleventy-netlify-boilerplate-master.png b/static/capture/danurbanowicz-eleventy-netlify-boilerplate-master.png deleted file mode 100644 index 1f69c720c..000000000 Binary files a/static/capture/danurbanowicz-eleventy-netlify-boilerplate-master.png and /dev/null differ diff --git a/static/capture/danurbanowicz-eleventy-netlify-boilerplate.png b/static/capture/danurbanowicz-eleventy-netlify-boilerplate.png new file mode 100644 index 000000000..48232569b Binary files /dev/null and b/static/capture/danurbanowicz-eleventy-netlify-boilerplate.png differ diff --git a/static/capture/darshanbaral-aafu-master.png b/static/capture/darshanbaral-aafu-master.png deleted file mode 100644 index 9bc6dede5..000000000 Binary files a/static/capture/darshanbaral-aafu-master.png and /dev/null differ diff --git a/static/capture/darshanbaral-khata-master.png b/static/capture/darshanbaral-khata-master.png deleted file mode 100644 index 8e23ef034..000000000 Binary files a/static/capture/darshanbaral-khata-master.png and /dev/null differ diff --git a/static/capture/darshanbaral-kitab-master.png b/static/capture/darshanbaral-kitab-master.png deleted file mode 100644 index 27de4e29c..000000000 Binary files a/static/capture/darshanbaral-kitab-master.png and /dev/null differ diff --git a/static/capture/darshanbaral-mero-master.png b/static/capture/darshanbaral-mero-master.png deleted file mode 100644 index f7e3b5aeb..000000000 Binary files a/static/capture/darshanbaral-mero-master.png and /dev/null differ diff --git a/static/capture/darshanbaral-sada-master.png b/static/capture/darshanbaral-sada-master.png deleted file mode 100644 index d7940968b..000000000 Binary files a/static/capture/darshanbaral-sada-master.png and /dev/null differ diff --git a/static/capture/dashdashzako-hugo-journal-master.png b/static/capture/dashdashzako-hugo-journal-master.png deleted file mode 100644 index 1724fe064..000000000 Binary files a/static/capture/dashdashzako-hugo-journal-master.png and /dev/null differ diff --git a/static/capture/dashdashzako-hugo-journal.png b/static/capture/dashdashzako-hugo-journal.png new file mode 100644 index 000000000..79121a00d Binary files /dev/null and b/static/capture/dashdashzako-hugo-journal.png differ diff --git a/static/capture/dashdashzako-paperback-master.png b/static/capture/dashdashzako-paperback-master.png deleted file mode 100644 index b31a0e7a2..000000000 Binary files a/static/capture/dashdashzako-paperback-master.png and /dev/null differ diff --git a/static/capture/dashingcode-front-cover-master.png b/static/capture/dashingcode-front-cover-master.png deleted file mode 100644 index 6386a91a2..000000000 Binary files a/static/capture/dashingcode-front-cover-master.png and /dev/null differ diff --git a/static/capture/dashingcode-front-cover.png b/static/capture/dashingcode-front-cover.png new file mode 100644 index 000000000..454f44b38 Binary files /dev/null and b/static/capture/dashingcode-front-cover.png differ diff --git a/static/capture/datocms-gatsby-portfolio-master.png b/static/capture/datocms-gatsby-portfolio-master.png deleted file mode 100644 index 2c5cb5f83..000000000 Binary files a/static/capture/datocms-gatsby-portfolio-master.png and /dev/null differ diff --git a/static/capture/datocms-gatsby-portfolio.png b/static/capture/datocms-gatsby-portfolio.png new file mode 100644 index 000000000..be941b78c Binary files /dev/null and b/static/capture/datocms-gatsby-portfolio.png differ diff --git a/static/capture/daviddarnes-alembic-master.png b/static/capture/daviddarnes-alembic-master.png deleted file mode 100644 index 16d8f640b..000000000 Binary files a/static/capture/daviddarnes-alembic-master.png and /dev/null differ diff --git a/static/capture/daviddarnes-alembic.png b/static/capture/daviddarnes-alembic.png new file mode 100644 index 000000000..817666724 Binary files /dev/null and b/static/capture/daviddarnes-alembic.png differ diff --git a/static/capture/daviddarnes-garth-master.png b/static/capture/daviddarnes-garth-master.png deleted file mode 100644 index 6532dfb9b..000000000 Binary files a/static/capture/daviddarnes-garth-master.png and /dev/null differ diff --git a/static/capture/daviddarnes-garth.png b/static/capture/daviddarnes-garth.png new file mode 100644 index 000000000..338dd0d18 Binary files /dev/null and b/static/capture/daviddarnes-garth.png differ diff --git a/static/capture/davidhampgonsalves-hugo-black-and-light-theme-master.png b/static/capture/davidhampgonsalves-hugo-black-and-light-theme-master.png deleted file mode 100644 index 42820133f..000000000 Binary files a/static/capture/davidhampgonsalves-hugo-black-and-light-theme-master.png and /dev/null differ diff --git a/static/capture/davshoward-gatsby-starter-honey-master.png b/static/capture/davshoward-gatsby-starter-honey-master.png deleted file mode 100644 index 36857877b..000000000 Binary files a/static/capture/davshoward-gatsby-starter-honey-master.png and /dev/null differ diff --git a/static/capture/davshoward-gatsby-starter-honey.png b/static/capture/davshoward-gatsby-starter-honey.png new file mode 100644 index 000000000..1c19f2337 Binary files /dev/null and b/static/capture/davshoward-gatsby-starter-honey.png differ diff --git a/static/capture/dbtek-dbyll-master.png b/static/capture/dbtek-dbyll-master.png deleted file mode 100644 index fb061bf5c..000000000 Binary files a/static/capture/dbtek-dbyll-master.png and /dev/null differ diff --git a/static/capture/dbtek-dbyll.png b/static/capture/dbtek-dbyll.png new file mode 100644 index 000000000..3a004d2e4 Binary files /dev/null and b/static/capture/dbtek-dbyll.png differ diff --git a/static/capture/dbtek-paper-master.png b/static/capture/dbtek-paper-master.png deleted file mode 100644 index ee56219cc..000000000 Binary files a/static/capture/dbtek-paper-master.png and /dev/null differ diff --git a/static/capture/dbtek-paper.png b/static/capture/dbtek-paper.png new file mode 100644 index 000000000..692456344 Binary files /dev/null and b/static/capture/dbtek-paper.png differ diff --git a/static/capture/ddbullfrog-resumecard-gh-pages.png b/static/capture/ddbullfrog-resumecard-gh-pages.png deleted file mode 100644 index 53817c2d8..000000000 Binary files a/static/capture/ddbullfrog-resumecard-gh-pages.png and /dev/null differ diff --git a/static/capture/ddbullfrog-resumecard.png b/static/capture/ddbullfrog-resumecard.png new file mode 100644 index 000000000..48696690d Binary files /dev/null and b/static/capture/ddbullfrog-resumecard.png differ diff --git a/static/capture/de-souza-hugo-flex-master.png b/static/capture/de-souza-hugo-flex-master.png deleted file mode 100644 index 76d5482b7..000000000 Binary files a/static/capture/de-souza-hugo-flex-master.png and /dev/null differ diff --git a/static/capture/de-souza-hugo-flex.png b/static/capture/de-souza-hugo-flex.png new file mode 100644 index 000000000..824ed1b22 Binary files /dev/null and b/static/capture/de-souza-hugo-flex.png differ diff --git a/static/capture/deamme-gatsby-starter-prismic-resume-master.png b/static/capture/deamme-gatsby-starter-prismic-resume-master.png deleted file mode 100644 index d600657e4..000000000 Binary files a/static/capture/deamme-gatsby-starter-prismic-resume-master.png and /dev/null differ diff --git a/static/capture/deamme-gatsby-starter-prismic-resume.png b/static/capture/deamme-gatsby-starter-prismic-resume.png new file mode 100644 index 000000000..e720b0df1 Binary files /dev/null and b/static/capture/deamme-gatsby-starter-prismic-resume.png differ diff --git a/static/capture/deepidea-web-presentation-master.png b/static/capture/deepidea-web-presentation-master.png deleted file mode 100644 index 7029dbc49..000000000 Binary files a/static/capture/deepidea-web-presentation-master.png and /dev/null differ diff --git a/static/capture/deepidea-web-presentation.png b/static/capture/deepidea-web-presentation.png new file mode 100644 index 000000000..9a7b10330 Binary files /dev/null and b/static/capture/deepidea-web-presentation.png differ diff --git a/static/capture/denjones-hexo-theme-chan-master.png b/static/capture/denjones-hexo-theme-chan-master.png deleted file mode 100644 index 64e2030f4..000000000 Binary files a/static/capture/denjones-hexo-theme-chan-master.png and /dev/null differ diff --git a/static/capture/denjones-hexo-theme-chan.png b/static/capture/denjones-hexo-theme-chan.png new file mode 100644 index 000000000..5f331a90a Binary files /dev/null and b/static/capture/denjones-hexo-theme-chan.png differ diff --git a/static/capture/denningk-gatsby-starter-typescript-jest-master.png b/static/capture/denningk-gatsby-starter-typescript-jest-master.png deleted file mode 100644 index 0c6bd52c2..000000000 Binary files a/static/capture/denningk-gatsby-starter-typescript-jest-master.png and /dev/null differ diff --git a/static/capture/denningk-gatsby-starter-typescript-jest.png b/static/capture/denningk-gatsby-starter-typescript-jest.png new file mode 100644 index 000000000..7b1172c64 Binary files /dev/null and b/static/capture/denningk-gatsby-starter-typescript-jest.png differ diff --git a/static/capture/devcows-hugo-universal-theme-master.png b/static/capture/devcows-hugo-universal-theme-master.png deleted file mode 100644 index 3d3e10c58..000000000 Binary files a/static/capture/devcows-hugo-universal-theme-master.png and /dev/null differ diff --git a/static/capture/devlocker-breakfast-master.png b/static/capture/devlocker-breakfast-master.png deleted file mode 100644 index ddce54252..000000000 Binary files a/static/capture/devlocker-breakfast-master.png and /dev/null differ diff --git a/static/capture/devlocker-breakfast.png b/static/capture/devlocker-breakfast.png new file mode 100644 index 000000000..6ddcf3aff Binary files /dev/null and b/static/capture/devlocker-breakfast.png differ diff --git a/static/capture/dfcommunity-hexo-web-nary-master.png b/static/capture/dfcommunity-hexo-web-nary-master.png deleted file mode 100644 index 075681af6..000000000 Binary files a/static/capture/dfcommunity-hexo-web-nary-master.png and /dev/null differ diff --git a/static/capture/dfcommunity-hexo-web-nary.png b/static/capture/dfcommunity-hexo-web-nary.png new file mode 100644 index 000000000..25c96f9a4 Binary files /dev/null and b/static/capture/dfcommunity-hexo-web-nary.png differ diff --git a/static/capture/dgraph-io-hugo-dgraph-theme-master.png b/static/capture/dgraph-io-hugo-dgraph-theme-master.png deleted file mode 100644 index e9ef9fa04..000000000 Binary files a/static/capture/dgraph-io-hugo-dgraph-theme-master.png and /dev/null differ diff --git a/static/capture/dgraph-io-hugo-dgraph-theme.png b/static/capture/dgraph-io-hugo-dgraph-theme.png new file mode 100644 index 000000000..0fc356500 Binary files /dev/null and b/static/capture/dgraph-io-hugo-dgraph-theme.png differ diff --git a/static/capture/dieghernan-chulapa.png b/static/capture/dieghernan-chulapa.png new file mode 100644 index 000000000..45978f733 Binary files /dev/null and b/static/capture/dieghernan-chulapa.png differ diff --git a/static/capture/diezcami-arctic-fox-theme-master.png b/static/capture/diezcami-arctic-fox-theme-master.png deleted file mode 100644 index 957f781c2..000000000 Binary files a/static/capture/diezcami-arctic-fox-theme-master.png and /dev/null differ diff --git a/static/capture/diezcami-arctic-fox-theme.png b/static/capture/diezcami-arctic-fox-theme.png new file mode 100644 index 000000000..8b0e3807f Binary files /dev/null and b/static/capture/diezcami-arctic-fox-theme.png differ diff --git a/static/capture/diezcami-polar-bear-theme-master.png b/static/capture/diezcami-polar-bear-theme-master.png deleted file mode 100644 index f194bc791..000000000 Binary files a/static/capture/diezcami-polar-bear-theme-master.png and /dev/null differ diff --git a/static/capture/digitalcraftsman-hugo-artists-theme-master.png b/static/capture/digitalcraftsman-hugo-artists-theme-master.png deleted file mode 100644 index 241c3fc18..000000000 Binary files a/static/capture/digitalcraftsman-hugo-artists-theme-master.png and /dev/null differ diff --git a/static/capture/digitalcraftsman-hugo-cactus-theme-master.png b/static/capture/digitalcraftsman-hugo-cactus-theme-master.png deleted file mode 100644 index 241c3fc18..000000000 Binary files a/static/capture/digitalcraftsman-hugo-cactus-theme-master.png and /dev/null differ diff --git a/static/capture/digitalcraftsman-hugo-creative-theme-master.png b/static/capture/digitalcraftsman-hugo-creative-theme-master.png deleted file mode 100644 index 241c3fc18..000000000 Binary files a/static/capture/digitalcraftsman-hugo-creative-theme-master.png and /dev/null differ diff --git a/static/capture/digitalcraftsman-hugo-freelancer-theme-master.png b/static/capture/digitalcraftsman-hugo-freelancer-theme-master.png deleted file mode 100644 index 241c3fc18..000000000 Binary files a/static/capture/digitalcraftsman-hugo-freelancer-theme-master.png and /dev/null differ diff --git a/static/capture/digitalcraftsman-hugo-hikari-theme-master.png b/static/capture/digitalcraftsman-hugo-hikari-theme-master.png deleted file mode 100644 index 241c3fc18..000000000 Binary files a/static/capture/digitalcraftsman-hugo-hikari-theme-master.png and /dev/null differ diff --git a/static/capture/digitalcraftsman-hugo-icarus-theme-master.png b/static/capture/digitalcraftsman-hugo-icarus-theme-master.png deleted file mode 100644 index 785c86dc5..000000000 Binary files a/static/capture/digitalcraftsman-hugo-icarus-theme-master.png and /dev/null differ diff --git a/static/capture/digitalcraftsman-hugo-type-theme-master.png b/static/capture/digitalcraftsman-hugo-type-theme-master.png deleted file mode 100644 index 241c3fc18..000000000 Binary files a/static/capture/digitalcraftsman-hugo-type-theme-master.png and /dev/null differ diff --git a/static/capture/digitalmindch-gridster-jekyll-theme-master.png b/static/capture/digitalmindch-gridster-jekyll-theme-master.png deleted file mode 100644 index 2c6308e39..000000000 Binary files a/static/capture/digitalmindch-gridster-jekyll-theme-master.png and /dev/null differ diff --git a/static/capture/dikiaap-mangan-master.png b/static/capture/dikiaap-mangan-master.png deleted file mode 100644 index 46f951959..000000000 Binary files a/static/capture/dikiaap-mangan-master.png and /dev/null differ diff --git a/static/capture/dikiaap-mangan.png b/static/capture/dikiaap-mangan.png new file mode 100644 index 000000000..16a925219 Binary files /dev/null and b/static/capture/dikiaap-mangan.png differ diff --git a/static/capture/dirkfabisch-mediator-master.png b/static/capture/dirkfabisch-mediator-master.png deleted file mode 100644 index 43328210c..000000000 Binary files a/static/capture/dirkfabisch-mediator-master.png and /dev/null differ diff --git a/static/capture/dirkfabisch-mediator.png b/static/capture/dirkfabisch-mediator.png new file mode 100644 index 000000000..3a344f1bc Binary files /dev/null and b/static/capture/dirkfabisch-mediator.png differ diff --git a/static/capture/dirtyf-hylia-forestry-master.png b/static/capture/dirtyf-hylia-forestry-master.png deleted file mode 100644 index 061714ba8..000000000 Binary files a/static/capture/dirtyf-hylia-forestry-master.png and /dev/null differ diff --git a/static/capture/dirtyf-hylia-forestry.png b/static/capture/dirtyf-hylia-forestry.png new file mode 100644 index 000000000..9d0f66fab Binary files /dev/null and b/static/capture/dirtyf-hylia-forestry.png differ diff --git a/static/capture/diwao-hestia-pure-master.png b/static/capture/diwao-hestia-pure-master.png deleted file mode 100644 index fee4d4196..000000000 Binary files a/static/capture/diwao-hestia-pure-master.png and /dev/null differ diff --git a/static/capture/dldx-hpstr-hugo-theme-master.png b/static/capture/dldx-hpstr-hugo-theme-master.png deleted file mode 100644 index 0d45067e8..000000000 Binary files a/static/capture/dldx-hpstr-hugo-theme-master.png and /dev/null differ diff --git a/static/capture/dominicabela-gatsby-starter-material-ui-master.png b/static/capture/dominicabela-gatsby-starter-material-ui-master.png deleted file mode 100644 index b6bcf9fc4..000000000 Binary files a/static/capture/dominicabela-gatsby-starter-material-ui-master.png and /dev/null differ diff --git a/static/capture/dominicabela-gatsby-starter-material-ui.png b/static/capture/dominicabela-gatsby-starter-material-ui.png new file mode 100644 index 000000000..1df6d7816 Binary files /dev/null and b/static/capture/dominicabela-gatsby-starter-material-ui.png differ diff --git a/static/capture/dongchuan-yummy-jekyll-master.png b/static/capture/dongchuan-yummy-jekyll-master.png deleted file mode 100644 index deeae1f34..000000000 Binary files a/static/capture/dongchuan-yummy-jekyll-master.png and /dev/null differ diff --git a/static/capture/dongchuan-yummy-jekyll.png b/static/capture/dongchuan-yummy-jekyll.png new file mode 100644 index 000000000..cffda132b Binary files /dev/null and b/static/capture/dongchuan-yummy-jekyll.png differ diff --git a/static/capture/dplesca-purehugo-master.png b/static/capture/dplesca-purehugo-master.png deleted file mode 100644 index 7f2e0c5f1..000000000 Binary files a/static/capture/dplesca-purehugo-master.png and /dev/null differ diff --git a/static/capture/dplesca-purehugo.png b/static/capture/dplesca-purehugo.png new file mode 100644 index 000000000..652379155 Binary files /dev/null and b/static/capture/dplesca-purehugo.png differ diff --git a/static/capture/drassil-git-wiki-master.png b/static/capture/drassil-git-wiki-master.png deleted file mode 100644 index 67d15b7a1..000000000 Binary files a/static/capture/drassil-git-wiki-master.png and /dev/null differ diff --git a/static/capture/drassil-git-wiki.png b/static/capture/drassil-git-wiki.png new file mode 100644 index 000000000..a7be326fc Binary files /dev/null and b/static/capture/drassil-git-wiki.png differ diff --git a/static/capture/drvy-minimal-block-master.png b/static/capture/drvy-minimal-block-master.png deleted file mode 100644 index 45adfa6f3..000000000 Binary files a/static/capture/drvy-minimal-block-master.png and /dev/null differ diff --git a/static/capture/drvy-minimal-block.png b/static/capture/drvy-minimal-block.png new file mode 100644 index 000000000..d608066a6 Binary files /dev/null and b/static/capture/drvy-minimal-block.png differ diff --git a/static/capture/dschau-gatsby-blog-starter-kit-master.png b/static/capture/dschau-gatsby-blog-starter-kit-master.png deleted file mode 100644 index fb10d3f26..000000000 Binary files a/static/capture/dschau-gatsby-blog-starter-kit-master.png and /dev/null differ diff --git a/static/capture/dschau-gatsby-blog-starter-kit.png b/static/capture/dschau-gatsby-blog-starter-kit.png new file mode 100644 index 000000000..3a7302552 Binary files /dev/null and b/static/capture/dschau-gatsby-blog-starter-kit.png differ diff --git a/static/capture/durianstack-gatsby-tailwindcss-sass-starter-master.png b/static/capture/durianstack-gatsby-tailwindcss-sass-starter-master.png deleted file mode 100644 index 5e0a03f3b..000000000 Binary files a/static/capture/durianstack-gatsby-tailwindcss-sass-starter-master.png and /dev/null differ diff --git a/static/capture/durianstack-gatsby-tailwindcss-sass-starter.png b/static/capture/durianstack-gatsby-tailwindcss-sass-starter.png new file mode 100644 index 000000000..76eef4111 Binary files /dev/null and b/static/capture/durianstack-gatsby-tailwindcss-sass-starter.png differ diff --git a/static/capture/dwyfrequency-gatsby-ghub-master.png b/static/capture/dwyfrequency-gatsby-ghub-master.png deleted file mode 100644 index 781ec2388..000000000 Binary files a/static/capture/dwyfrequency-gatsby-ghub-master.png and /dev/null differ diff --git a/static/capture/dwyfrequency-gatsby-ghub.png b/static/capture/dwyfrequency-gatsby-ghub.png new file mode 100644 index 000000000..1ce7d306c Binary files /dev/null and b/static/capture/dwyfrequency-gatsby-ghub.png differ diff --git a/static/capture/dyndna-lanyon-plus-master.png b/static/capture/dyndna-lanyon-plus-master.png deleted file mode 100644 index 1ed8a08e1..000000000 Binary files a/static/capture/dyndna-lanyon-plus-master.png and /dev/null differ diff --git a/static/capture/dyndna-lanyon-plus.png b/static/capture/dyndna-lanyon-plus.png new file mode 100644 index 000000000..f035e21c7 Binary files /dev/null and b/static/capture/dyndna-lanyon-plus.png differ diff --git a/static/capture/dyutibarma-monochrome-master.png b/static/capture/dyutibarma-monochrome.png similarity index 100% rename from static/capture/dyutibarma-monochrome-master.png rename to static/capture/dyutibarma-monochrome.png diff --git a/static/capture/dzello-reveal-hugo-master.png b/static/capture/dzello-reveal-hugo-master.png deleted file mode 100644 index 2e61e4874..000000000 Binary files a/static/capture/dzello-reveal-hugo-master.png and /dev/null differ diff --git a/static/capture/dzello-reveal-hugo.png b/static/capture/dzello-reveal-hugo.png new file mode 100644 index 000000000..479c7c6d0 Binary files /dev/null and b/static/capture/dzello-reveal-hugo.png differ diff --git a/static/capture/edavidaja-docter-master.png b/static/capture/edavidaja-docter-master.png deleted file mode 100644 index a2b254dd0..000000000 Binary files a/static/capture/edavidaja-docter-master.png and /dev/null differ diff --git a/static/capture/edavidaja-docter.png b/static/capture/edavidaja-docter.png new file mode 100644 index 000000000..fe0390a40 Binary files /dev/null and b/static/capture/edavidaja-docter.png differ diff --git a/static/capture/eddiewebb-hugo-resume-master.png b/static/capture/eddiewebb-hugo-resume-master.png deleted file mode 100644 index b4c784012..000000000 Binary files a/static/capture/eddiewebb-hugo-resume-master.png and /dev/null differ diff --git a/static/capture/eliasson-liquorice-master.png b/static/capture/eliasson-liquorice-master.png deleted file mode 100644 index 09eb8a92d..000000000 Binary files a/static/capture/eliasson-liquorice-master.png and /dev/null differ diff --git a/static/capture/eliottvincent-bay-master.png b/static/capture/eliottvincent-bay-master.png deleted file mode 100644 index be1eec1f4..000000000 Binary files a/static/capture/eliottvincent-bay-master.png and /dev/null differ diff --git a/static/capture/eliottvincent-bay.png b/static/capture/eliottvincent-bay.png new file mode 100644 index 000000000..eec802e3b Binary files /dev/null and b/static/capture/eliottvincent-bay.png differ diff --git a/static/capture/ellekasai-resumecards-gh-pages.png b/static/capture/ellekasai-resumecards-gh-pages.png deleted file mode 100644 index d4a841f03..000000000 Binary files a/static/capture/ellekasai-resumecards-gh-pages.png and /dev/null differ diff --git a/static/capture/ellekasai-resumecards.png b/static/capture/ellekasai-resumecards.png new file mode 100644 index 000000000..030ae76c0 Binary files /dev/null and b/static/capture/ellekasai-resumecards.png differ diff --git a/static/capture/ellekasai-shiori-gh-pages.png b/static/capture/ellekasai-shiori-gh-pages.png deleted file mode 100644 index 95f66a9b4..000000000 Binary files a/static/capture/ellekasai-shiori-gh-pages.png and /dev/null differ diff --git a/static/capture/ellekasai-shiori.png b/static/capture/ellekasai-shiori.png new file mode 100644 index 000000000..7b2027963 Binary files /dev/null and b/static/capture/ellekasai-shiori.png differ diff --git a/static/capture/elotroalex-ed-gh-pages.png b/static/capture/elotroalex-ed.png similarity index 100% rename from static/capture/elotroalex-ed-gh-pages.png rename to static/capture/elotroalex-ed.png diff --git a/static/capture/email2vimalraj-gatsby-starter-tech-blog-master.png b/static/capture/email2vimalraj-gatsby-starter-tech-blog-master.png deleted file mode 100644 index b94737f81..000000000 Binary files a/static/capture/email2vimalraj-gatsby-starter-tech-blog-master.png and /dev/null differ diff --git a/static/capture/email2vimalraj-gatsby-starter-tech-blog.png b/static/capture/email2vimalraj-gatsby-starter-tech-blog.png new file mode 100644 index 000000000..dcc171fda Binary files /dev/null and b/static/capture/email2vimalraj-gatsby-starter-tech-blog.png differ diff --git a/static/capture/emasuriano-gatsby-starter-event-calendar-master.png b/static/capture/emasuriano-gatsby-starter-event-calendar-master.png deleted file mode 100644 index 871680efd..000000000 Binary files a/static/capture/emasuriano-gatsby-starter-event-calendar-master.png and /dev/null differ diff --git a/static/capture/emasuriano-gatsby-starter-event-calendar.png b/static/capture/emasuriano-gatsby-starter-event-calendar.png new file mode 100644 index 000000000..eda044dd6 Binary files /dev/null and b/static/capture/emasuriano-gatsby-starter-event-calendar.png differ diff --git a/static/capture/emasuriano-gatsby-starter-mate-master.png b/static/capture/emasuriano-gatsby-starter-mate-master.png deleted file mode 100644 index cdd13cde3..000000000 Binary files a/static/capture/emasuriano-gatsby-starter-mate-master.png and /dev/null differ diff --git a/static/capture/emasuriano-gatsby-starter-mate.png b/static/capture/emasuriano-gatsby-starter-mate.png new file mode 100644 index 000000000..d9f4a3c9b Binary files /dev/null and b/static/capture/emasuriano-gatsby-starter-mate.png differ diff --git a/static/capture/emielh-hallo-hugo-master.png b/static/capture/emielh-hallo-hugo-master.png deleted file mode 100644 index d820ebba3..000000000 Binary files a/static/capture/emielh-hallo-hugo-master.png and /dev/null differ diff --git a/static/capture/emielh-stip-hugo-master.png b/static/capture/emielh-stip-hugo-master.png deleted file mode 100644 index 2d3786024..000000000 Binary files a/static/capture/emielh-stip-hugo-master.png and /dev/null differ diff --git a/static/capture/emielh-tale-hugo-master.png b/static/capture/emielh-tale-hugo-master.png deleted file mode 100644 index d6319399b..000000000 Binary files a/static/capture/emielh-tale-hugo-master.png and /dev/null differ diff --git a/static/capture/emilbaehr-automatic-app-landing-page-master.png b/static/capture/emilbaehr-automatic-app-landing-page-master.png deleted file mode 100644 index f36cd8242..000000000 Binary files a/static/capture/emilbaehr-automatic-app-landing-page-master.png and /dev/null differ diff --git a/static/capture/emilbaehr-automatic-app-landing-page.png b/static/capture/emilbaehr-automatic-app-landing-page.png new file mode 100644 index 000000000..1d81a2172 Binary files /dev/null and b/static/capture/emilbaehr-automatic-app-landing-page.png differ diff --git a/static/capture/endymion1818-gatsby-starter-carraway-master.png b/static/capture/endymion1818-gatsby-starter-carraway-master.png deleted file mode 100644 index 514f45498..000000000 Binary files a/static/capture/endymion1818-gatsby-starter-carraway-master.png and /dev/null differ diff --git a/static/capture/endymion1818-gatsby-starter-carraway.png b/static/capture/endymion1818-gatsby-starter-carraway.png new file mode 100644 index 000000000..6f2fd54a2 Binary files /dev/null and b/static/capture/endymion1818-gatsby-starter-carraway.png differ diff --git a/static/capture/epilocal-newsliner-gatsby.png b/static/capture/epilocal-newsliner-gatsby.png new file mode 100644 index 000000000..acb5f9085 Binary files /dev/null and b/static/capture/epilocal-newsliner-gatsby.png differ diff --git a/static/capture/erayaydin-jekyll-bulma-master.png b/static/capture/erayaydin-jekyll-bulma-master.png deleted file mode 100644 index 46cc85b3e..000000000 Binary files a/static/capture/erayaydin-jekyll-bulma-master.png and /dev/null differ diff --git a/static/capture/erayaydin-jekyll-bulma.png b/static/capture/erayaydin-jekyll-bulma.png new file mode 100644 index 000000000..00ffc8619 Binary files /dev/null and b/static/capture/erayaydin-jekyll-bulma.png differ diff --git a/static/capture/esappear-hexo-theme-clover-master.png b/static/capture/esappear-hexo-theme-clover-master.png deleted file mode 100644 index 77beda2a2..000000000 Binary files a/static/capture/esappear-hexo-theme-clover-master.png and /dev/null differ diff --git a/static/capture/escapemanuele-gatsby-contentful-blog-portfolio-master.png b/static/capture/escapemanuele-gatsby-contentful-blog-portfolio.png similarity index 100% rename from static/capture/escapemanuele-gatsby-contentful-blog-portfolio-master.png rename to static/capture/escapemanuele-gatsby-contentful-blog-portfolio.png diff --git a/static/capture/eshlox-simplicity-master.png b/static/capture/eshlox-simplicity-master.png deleted file mode 100644 index 98f5cf815..000000000 Binary files a/static/capture/eshlox-simplicity-master.png and /dev/null differ diff --git a/static/capture/excentris-compass-master.png b/static/capture/excentris-compass-master.png deleted file mode 100644 index 03ad5b660..000000000 Binary files a/static/capture/excentris-compass-master.png and /dev/null differ diff --git a/static/capture/excentris-compass.png b/static/capture/excentris-compass.png new file mode 100644 index 000000000..ce8d4e736 Binary files /dev/null and b/static/capture/excentris-compass.png differ diff --git a/static/capture/exchangerate-api-rlstevenson-jekyll-theme-master.png b/static/capture/exchangerate-api-rlstevenson-jekyll-theme-master.png deleted file mode 100644 index b91735566..000000000 Binary files a/static/capture/exchangerate-api-rlstevenson-jekyll-theme-master.png and /dev/null differ diff --git a/static/capture/exchangerate-api-rlstevenson-jekyll-theme.png b/static/capture/exchangerate-api-rlstevenson-jekyll-theme.png new file mode 100644 index 000000000..724f57a87 Binary files /dev/null and b/static/capture/exchangerate-api-rlstevenson-jekyll-theme.png differ diff --git a/static/capture/exchangerate-api-strange-case-master.png b/static/capture/exchangerate-api-strange-case-master.png deleted file mode 100644 index 297eae263..000000000 Binary files a/static/capture/exchangerate-api-strange-case-master.png and /dev/null differ diff --git a/static/capture/ezrasavard-ezora-jekyll-theme-master.png b/static/capture/ezrasavard-ezora-jekyll-theme-master.png deleted file mode 100644 index 24b201656..000000000 Binary files a/static/capture/ezrasavard-ezora-jekyll-theme-master.png and /dev/null differ diff --git a/static/capture/ezrasavard-ezora-jekyll-theme.png b/static/capture/ezrasavard-ezora-jekyll-theme.png new file mode 100644 index 000000000..17d1bbe9f Binary files /dev/null and b/static/capture/ezrasavard-ezora-jekyll-theme.png differ diff --git a/static/capture/fabe-gatsby-starter-deck-master.png b/static/capture/fabe-gatsby-starter-deck-master.png deleted file mode 100644 index af884d56a..000000000 Binary files a/static/capture/fabe-gatsby-starter-deck-master.png and /dev/null differ diff --git a/static/capture/fabe-gatsby-starter-deck.png b/static/capture/fabe-gatsby-starter-deck.png new file mode 100644 index 000000000..4bdc8cee7 Binary files /dev/null and b/static/capture/fabe-gatsby-starter-deck.png differ diff --git a/static/capture/fabe-gatsby-universal-master.png b/static/capture/fabe-gatsby-universal-master.png deleted file mode 100644 index a02849e75..000000000 Binary files a/static/capture/fabe-gatsby-universal-master.png and /dev/null differ diff --git a/static/capture/fabe-gatsby-universal.png b/static/capture/fabe-gatsby-universal.png new file mode 100644 index 000000000..128deb477 Binary files /dev/null and b/static/capture/fabe-gatsby-universal.png differ diff --git a/static/capture/fabien0102-gatsby-starter-master.png b/static/capture/fabien0102-gatsby-starter-master.png deleted file mode 100644 index 768d896cb..000000000 Binary files a/static/capture/fabien0102-gatsby-starter-master.png and /dev/null differ diff --git a/static/capture/fabien0102-gatsby-starter.png b/static/capture/fabien0102-gatsby-starter.png new file mode 100644 index 000000000..a95c7f114 Binary files /dev/null and b/static/capture/fabien0102-gatsby-starter.png differ diff --git a/static/capture/fareez-ahamed-millikyl-master.png b/static/capture/fareez-ahamed-millikyl-master.png deleted file mode 100644 index faa819297..000000000 Binary files a/static/capture/fareez-ahamed-millikyl-master.png and /dev/null differ diff --git a/static/capture/fareez-ahamed-millikyl.png b/static/capture/fareez-ahamed-millikyl.png new file mode 100644 index 000000000..b75d80023 Binary files /dev/null and b/static/capture/fareez-ahamed-millikyl.png differ diff --git a/static/capture/fastbyte01-keepit-master.png b/static/capture/fastbyte01-keepit-master.png deleted file mode 100644 index 85bdc1d43..000000000 Binary files a/static/capture/fastbyte01-keepit-master.png and /dev/null differ diff --git a/static/capture/fastbyte01-keepit.png b/static/capture/fastbyte01-keepit.png new file mode 100644 index 000000000..93066b332 Binary files /dev/null and b/static/capture/fastbyte01-keepit.png differ diff --git a/static/capture/felicianotech-hugo-theme-lean-launch-page-master.png b/static/capture/felicianotech-hugo-theme-lean-launch-page-master.png deleted file mode 100644 index f12c9d451..000000000 Binary files a/static/capture/felicianotech-hugo-theme-lean-launch-page-master.png and /dev/null differ diff --git a/static/capture/ferrolho-jekyll-theme-libretto-gh-pages.png b/static/capture/ferrolho-jekyll-theme-libretto-gh-pages.png deleted file mode 100644 index c4fc9f338..000000000 Binary files a/static/capture/ferrolho-jekyll-theme-libretto-gh-pages.png and /dev/null differ diff --git a/static/capture/ferrolho-jekyll-theme-libretto.png b/static/capture/ferrolho-jekyll-theme-libretto.png new file mode 100644 index 000000000..fb3da99ea Binary files /dev/null and b/static/capture/ferrolho-jekyll-theme-libretto.png differ diff --git a/static/capture/fhavrlent-gatsby-contentful-typescript-starter-master.png b/static/capture/fhavrlent-gatsby-contentful-typescript-starter-master.png deleted file mode 100644 index 161d8c681..000000000 Binary files a/static/capture/fhavrlent-gatsby-contentful-typescript-starter-master.png and /dev/null differ diff --git a/static/capture/fiatjaf-classless-hugo-master.png b/static/capture/fiatjaf-classless-hugo-master.png deleted file mode 100644 index fe8b271c7..000000000 Binary files a/static/capture/fiatjaf-classless-hugo-master.png and /dev/null differ diff --git a/static/capture/flotiq-flotiq-gatsby-blog-1.png b/static/capture/flotiq-flotiq-gatsby-blog-1.png new file mode 100644 index 000000000..fb39c0c9b Binary files /dev/null and b/static/capture/flotiq-flotiq-gatsby-blog-1.png differ diff --git a/static/capture/flotiq-flotiq-gatsby-blog-2.png b/static/capture/flotiq-flotiq-gatsby-blog-2.png new file mode 100644 index 000000000..9b94fd815 Binary files /dev/null and b/static/capture/flotiq-flotiq-gatsby-blog-2.png differ diff --git a/static/capture/flotiq-flotiq-gatsby-event-1.png b/static/capture/flotiq-flotiq-gatsby-event-1.png new file mode 100644 index 000000000..c727c2401 Binary files /dev/null and b/static/capture/flotiq-flotiq-gatsby-event-1.png differ diff --git a/static/capture/flotiq-flotiq-gatsby-event-2.png b/static/capture/flotiq-flotiq-gatsby-event-2.png new file mode 100644 index 000000000..3f9026b49 Binary files /dev/null and b/static/capture/flotiq-flotiq-gatsby-event-2.png differ diff --git a/static/capture/flotiq-flotiq-gatsby-portfolio-1.png b/static/capture/flotiq-flotiq-gatsby-portfolio-1.png new file mode 100644 index 000000000..8dc9c9309 Binary files /dev/null and b/static/capture/flotiq-flotiq-gatsby-portfolio-1.png differ diff --git a/static/capture/flotiq-flotiq-gatsby-portfolio-2.png b/static/capture/flotiq-flotiq-gatsby-portfolio-2.png new file mode 100644 index 000000000..3ced585e8 Binary files /dev/null and b/static/capture/flotiq-flotiq-gatsby-portfolio-2.png differ diff --git a/static/capture/flotiq-flotiq-gatsby-recipe-1.png b/static/capture/flotiq-flotiq-gatsby-recipe-1.png new file mode 100644 index 000000000..9565228f0 Binary files /dev/null and b/static/capture/flotiq-flotiq-gatsby-recipe-1.png differ diff --git a/static/capture/flotiq-flotiq-gatsby-recipe-2.png b/static/capture/flotiq-flotiq-gatsby-recipe-2.png new file mode 100644 index 000000000..e22a9b9f7 Binary files /dev/null and b/static/capture/flotiq-flotiq-gatsby-recipe-2.png differ diff --git a/static/capture/flotiq-flotiq-gatsby-shop-1.png b/static/capture/flotiq-flotiq-gatsby-shop-1.png new file mode 100644 index 000000000..6676d8cff Binary files /dev/null and b/static/capture/flotiq-flotiq-gatsby-shop-1.png differ diff --git a/static/capture/flotiq-flotiq-gatsby-shop-2.png b/static/capture/flotiq-flotiq-gatsby-shop-2.png new file mode 100644 index 000000000..bfaf6fdc3 Binary files /dev/null and b/static/capture/flotiq-flotiq-gatsby-shop-2.png differ diff --git a/static/capture/fncnt-vncnt-hugo-master.png b/static/capture/fncnt-vncnt-hugo-master.png deleted file mode 100644 index 9d68d1dbe..000000000 Binary files a/static/capture/fncnt-vncnt-hugo-master.png and /dev/null differ diff --git a/static/capture/fongandrew-hydeout-master.png b/static/capture/fongandrew-hydeout-master.png deleted file mode 100644 index 6f548e2b4..000000000 Binary files a/static/capture/fongandrew-hydeout-master.png and /dev/null differ diff --git a/static/capture/fongandrew-hydeout.png b/static/capture/fongandrew-hydeout.png new file mode 100644 index 000000000..4ce40539f Binary files /dev/null and b/static/capture/fongandrew-hydeout.png differ diff --git a/static/capture/forestryio-ubuild-jekyll-master.png b/static/capture/forestryio-ubuild-jekyll-master.png deleted file mode 100644 index f50e6fc1e..000000000 Binary files a/static/capture/forestryio-ubuild-jekyll-master.png and /dev/null differ diff --git a/static/capture/forestryio-ubuild-jekyll.png b/static/capture/forestryio-ubuild-jekyll.png new file mode 100644 index 000000000..845e33880 Binary files /dev/null and b/static/capture/forestryio-ubuild-jekyll.png differ diff --git a/static/capture/forever-jekyll-forever-jekyll.png b/static/capture/forever-jekyll-forever-jekyll.png new file mode 100644 index 000000000..0bc591191 Binary files /dev/null and b/static/capture/forever-jekyll-forever-jekyll.png differ diff --git a/static/capture/formspree-blogophonic-hugo-master.png b/static/capture/formspree-blogophonic-hugo-master.png deleted file mode 100644 index dad162e29..000000000 Binary files a/static/capture/formspree-blogophonic-hugo-master.png and /dev/null differ diff --git a/static/capture/formspree-blogophonic-hugo.png b/static/capture/formspree-blogophonic-hugo.png new file mode 100644 index 000000000..8425d1aaf Binary files /dev/null and b/static/capture/formspree-blogophonic-hugo.png differ diff --git a/static/capture/foxandgeese-tiny-agency-master.png b/static/capture/foxandgeese-tiny-agency-master.png deleted file mode 100644 index 63d101e36..000000000 Binary files a/static/capture/foxandgeese-tiny-agency-master.png and /dev/null differ diff --git a/static/capture/foxandgeese-tiny-agency.png b/static/capture/foxandgeese-tiny-agency.png new file mode 100644 index 000000000..a06848ca3 Binary files /dev/null and b/static/capture/foxandgeese-tiny-agency.png differ diff --git a/static/capture/frankievalentine-gatsby-craftcms-barebones-master.png b/static/capture/frankievalentine-gatsby-craftcms-barebones-master.png deleted file mode 100644 index 11497283d..000000000 Binary files a/static/capture/frankievalentine-gatsby-craftcms-barebones-master.png and /dev/null differ diff --git a/static/capture/frankievalentine-gatsby-craftcms-barebones.png b/static/capture/frankievalentine-gatsby-craftcms-barebones.png new file mode 100644 index 000000000..06ac407b3 Binary files /dev/null and b/static/capture/frankievalentine-gatsby-craftcms-barebones.png differ diff --git a/static/capture/friedger-gatsby-starter-blockstack-master.png b/static/capture/friedger-gatsby-starter-blockstack-master.png deleted file mode 100644 index 6c18542d3..000000000 Binary files a/static/capture/friedger-gatsby-starter-blockstack-master.png and /dev/null differ diff --git a/static/capture/friedger-gatsby-starter-blockstack.png b/static/capture/friedger-gatsby-starter-blockstack.png new file mode 100644 index 000000000..38067d8a6 Binary files /dev/null and b/static/capture/friedger-gatsby-starter-blockstack.png differ diff --git a/static/capture/friendlyuser-vuepress-theme-cool-starter-master.png b/static/capture/friendlyuser-vuepress-theme-cool-starter-master.png deleted file mode 100644 index be48fc8d9..000000000 Binary files a/static/capture/friendlyuser-vuepress-theme-cool-starter-master.png and /dev/null differ diff --git a/static/capture/friendlyuser-vuepress-theme-cool-starter.png b/static/capture/friendlyuser-vuepress-theme-cool-starter.png new file mode 100644 index 000000000..b2ef544f8 Binary files /dev/null and b/static/capture/friendlyuser-vuepress-theme-cool-starter.png differ diff --git a/static/capture/frjo-hugo-theme-zen-master.png b/static/capture/frjo-hugo-theme-zen-master.png deleted file mode 100644 index 237a31ab9..000000000 Binary files a/static/capture/frjo-hugo-theme-zen-master.png and /dev/null differ diff --git a/static/capture/frnki-gatsby-typescript-starter-blog-master.png b/static/capture/frnki-gatsby-typescript-starter-blog-master.png deleted file mode 100644 index a499acee3..000000000 Binary files a/static/capture/frnki-gatsby-typescript-starter-blog-master.png and /dev/null differ diff --git a/static/capture/frnki-gatsby-typescript-starter-blog.png b/static/capture/frnki-gatsby-typescript-starter-blog.png new file mode 100644 index 000000000..e5e740d89 Binary files /dev/null and b/static/capture/frnki-gatsby-typescript-starter-blog.png differ diff --git a/static/capture/fromendworld-loffer-master.png b/static/capture/fromendworld-loffer-master.png deleted file mode 100644 index 076c30753..000000000 Binary files a/static/capture/fromendworld-loffer-master.png and /dev/null differ diff --git a/static/capture/fromendworld-loffer.png b/static/capture/fromendworld-loffer.png new file mode 100644 index 000000000..3b2c42fc1 Binary files /dev/null and b/static/capture/fromendworld-loffer.png differ diff --git a/static/capture/fullit-fullit.github.io-master.png b/static/capture/fullit-fullit.github.io-master.png deleted file mode 100644 index fe716dcea..000000000 Binary files a/static/capture/fullit-fullit.github.io-master.png and /dev/null differ diff --git a/static/capture/fullit-fullit.github.io.png b/static/capture/fullit-fullit.github.io.png new file mode 100644 index 000000000..347eeb5ba Binary files /dev/null and b/static/capture/fullit-fullit.github.io.png differ diff --git a/static/capture/funkydan2-alpha-church-master.png b/static/capture/funkydan2-alpha-church-master.png deleted file mode 100644 index 972a319c3..000000000 Binary files a/static/capture/funkydan2-alpha-church-master.png and /dev/null differ diff --git a/static/capture/g1eny0ung-hugo-theme-dream-master.png b/static/capture/g1eny0ung-hugo-theme-dream-master.png deleted file mode 100644 index 395dd5ff5..000000000 Binary files a/static/capture/g1eny0ung-hugo-theme-dream-master.png and /dev/null differ diff --git a/static/capture/gallenhu-hexo-theme-daily-master.png b/static/capture/gallenhu-hexo-theme-daily-master.png deleted file mode 100644 index d7e8bb6a6..000000000 Binary files a/static/capture/gallenhu-hexo-theme-daily-master.png and /dev/null differ diff --git a/static/capture/gallenhu-hexo-theme-daily.png b/static/capture/gallenhu-hexo-theme-daily.png new file mode 100644 index 000000000..b2fa25bde Binary files /dev/null and b/static/capture/gallenhu-hexo-theme-daily.png differ diff --git a/static/capture/ganevru-gatsby-starter-blog-grommet-master.png b/static/capture/ganevru-gatsby-starter-blog-grommet-master.png deleted file mode 100644 index 1901eaa40..000000000 Binary files a/static/capture/ganevru-gatsby-starter-blog-grommet-master.png and /dev/null differ diff --git a/static/capture/ganevru-gatsby-starter-blog-grommet.png b/static/capture/ganevru-gatsby-starter-blog-grommet.png new file mode 100644 index 000000000..ae77dc2d7 Binary files /dev/null and b/static/capture/ganevru-gatsby-starter-blog-grommet.png differ diff --git a/static/capture/gaohaoyang-gaohaoyang.github.io-master.png b/static/capture/gaohaoyang-gaohaoyang.github.io-master.png deleted file mode 100644 index 48dd9da75..000000000 Binary files a/static/capture/gaohaoyang-gaohaoyang.github.io-master.png and /dev/null differ diff --git a/static/capture/gaohaoyang-gaohaoyang.github.io.png b/static/capture/gaohaoyang-gaohaoyang.github.io.png new file mode 100644 index 000000000..d511f14e3 Binary files /dev/null and b/static/capture/gaohaoyang-gaohaoyang.github.io.png differ diff --git a/static/capture/garvincasimir-hugo-h5bp-simple-master.png b/static/capture/garvincasimir-hugo-h5bp-simple-master.png deleted file mode 100644 index 189298495..000000000 Binary files a/static/capture/garvincasimir-hugo-h5bp-simple-master.png and /dev/null differ diff --git a/static/capture/gatsbycentral-gatsby-starter-wordpress-master.png b/static/capture/gatsbycentral-gatsby-starter-wordpress-master.png deleted file mode 100644 index 0e02fc9bf..000000000 Binary files a/static/capture/gatsbycentral-gatsby-starter-wordpress-master.png and /dev/null differ diff --git a/static/capture/gatsbycentral-gatsby-starter-wordpress.png b/static/capture/gatsbycentral-gatsby-starter-wordpress.png new file mode 100644 index 000000000..79d18b44d Binary files /dev/null and b/static/capture/gatsbycentral-gatsby-starter-wordpress.png differ diff --git a/static/capture/gatsbycentral-gatsby-v2-starter-casper-master.png b/static/capture/gatsbycentral-gatsby-v2-starter-casper-master.png deleted file mode 100644 index 1d0be91c8..000000000 Binary files a/static/capture/gatsbycentral-gatsby-v2-starter-casper-master.png and /dev/null differ diff --git a/static/capture/gatsbycentral-gatsby-v2-starter-casper.png b/static/capture/gatsbycentral-gatsby-v2-starter-casper.png new file mode 100644 index 000000000..3f234e4b7 Binary files /dev/null and b/static/capture/gatsbycentral-gatsby-v2-starter-casper.png differ diff --git a/static/capture/gatsbycentral-gatsby-v2-starter-lumen-master.png b/static/capture/gatsbycentral-gatsby-v2-starter-lumen.png similarity index 100% rename from static/capture/gatsbycentral-gatsby-v2-starter-lumen-master.png rename to static/capture/gatsbycentral-gatsby-v2-starter-lumen.png diff --git a/static/capture/gatsbyjs-gatsby-starter-blog-master.png b/static/capture/gatsbyjs-gatsby-starter-blog-master.png deleted file mode 100644 index c96c73041..000000000 Binary files a/static/capture/gatsbyjs-gatsby-starter-blog-master.png and /dev/null differ diff --git a/static/capture/gatsbyjs-gatsby-starter-blog.png b/static/capture/gatsbyjs-gatsby-starter-blog.png new file mode 100644 index 000000000..ad3a7194c Binary files /dev/null and b/static/capture/gatsbyjs-gatsby-starter-blog.png differ diff --git a/static/capture/gatsbyjs-gatsby-starter-default-master.png b/static/capture/gatsbyjs-gatsby-starter-default-master.png deleted file mode 100644 index 95b9349fb..000000000 Binary files a/static/capture/gatsbyjs-gatsby-starter-default-master.png and /dev/null differ diff --git a/static/capture/gatsbyjs-gatsby-starter-default.png b/static/capture/gatsbyjs-gatsby-starter-default.png new file mode 100644 index 000000000..2f92fde19 Binary files /dev/null and b/static/capture/gatsbyjs-gatsby-starter-default.png differ diff --git a/static/capture/gchauras-much-worse-jekyll-theme-gh-pages.png b/static/capture/gchauras-much-worse-jekyll-theme-gh-pages.png deleted file mode 100644 index f194bc791..000000000 Binary files a/static/capture/gchauras-much-worse-jekyll-theme-gh-pages.png and /dev/null differ diff --git a/static/capture/gcushen-hugo-academic-master.png b/static/capture/gcushen-hugo-academic-master.png deleted file mode 100644 index ba55c88a9..000000000 Binary files a/static/capture/gcushen-hugo-academic-master.png and /dev/null differ diff --git a/static/capture/gcushen-hugo-academic.png b/static/capture/gcushen-hugo-academic.png new file mode 100644 index 000000000..39c876881 Binary files /dev/null and b/static/capture/gcushen-hugo-academic.png differ diff --git a/static/capture/gdg-managua-jekyll-mdl-master.png b/static/capture/gdg-managua-jekyll-mdl-master.png deleted file mode 100644 index 9c3736964..000000000 Binary files a/static/capture/gdg-managua-jekyll-mdl-master.png and /dev/null differ diff --git a/static/capture/gdgtoulouse-devfest-theme-hugo-master.png b/static/capture/gdgtoulouse-devfest-theme-hugo-master.png deleted file mode 100644 index 76dd861e7..000000000 Binary files a/static/capture/gdgtoulouse-devfest-theme-hugo-master.png and /dev/null differ diff --git a/static/capture/gdgtoulouse-devfest-theme-hugo.png b/static/capture/gdgtoulouse-devfest-theme-hugo.png new file mode 100644 index 000000000..5b8e01c1a Binary files /dev/null and b/static/capture/gdgtoulouse-devfest-theme-hugo.png differ diff --git a/static/capture/geocine-gatsby-starter-devto-master.png b/static/capture/geocine-gatsby-starter-devto-master.png deleted file mode 100644 index 55b17fd94..000000000 Binary files a/static/capture/geocine-gatsby-starter-devto-master.png and /dev/null differ diff --git a/static/capture/geocine-gatsby-starter-devto.png b/static/capture/geocine-gatsby-starter-devto.png new file mode 100644 index 000000000..ef7a0b064 Binary files /dev/null and b/static/capture/geocine-gatsby-starter-devto.png differ diff --git a/static/capture/geocine-gatsby-starter-organization-master.png b/static/capture/geocine-gatsby-starter-organization-master.png deleted file mode 100644 index 162a36187..000000000 Binary files a/static/capture/geocine-gatsby-starter-organization-master.png and /dev/null differ diff --git a/static/capture/geocine-gatsby-starter-organization.png b/static/capture/geocine-gatsby-starter-organization.png new file mode 100644 index 000000000..de3f45a6a Binary files /dev/null and b/static/capture/geocine-gatsby-starter-organization.png differ diff --git a/static/capture/geschke-hugo-tikva-master.png b/static/capture/geschke-hugo-tikva-master.png deleted file mode 100644 index 2796d7456..000000000 Binary files a/static/capture/geschke-hugo-tikva-master.png and /dev/null differ diff --git a/static/capture/gesquive-slate-master.png b/static/capture/gesquive-slate-master.png deleted file mode 100644 index ae30d72dd..000000000 Binary files a/static/capture/gesquive-slate-master.png and /dev/null differ diff --git a/static/capture/gesquive-slate.png b/static/capture/gesquive-slate.png new file mode 100644 index 000000000..7d0b239f6 Binary files /dev/null and b/static/capture/gesquive-slate.png differ diff --git a/static/capture/gethugothemes-andromeda-light.png b/static/capture/gethugothemes-andromeda-light.png new file mode 100644 index 000000000..2067281f5 Binary files /dev/null and b/static/capture/gethugothemes-andromeda-light.png differ diff --git a/static/capture/gethugothemes-apollo-hugo.png b/static/capture/gethugothemes-apollo-hugo.png new file mode 100644 index 000000000..e010a61b4 Binary files /dev/null and b/static/capture/gethugothemes-apollo-hugo.png differ diff --git a/static/capture/gethugothemes-bookworm-light.png b/static/capture/gethugothemes-bookworm-light.png new file mode 100644 index 000000000..477e3f234 Binary files /dev/null and b/static/capture/gethugothemes-bookworm-light.png differ diff --git a/static/capture/gethugothemes-geeky-hugo.png b/static/capture/gethugothemes-geeky-hugo.png new file mode 100644 index 000000000..a2cc4652d Binary files /dev/null and b/static/capture/gethugothemes-geeky-hugo.png differ diff --git a/static/capture/gethugothemes-influencer-hugo.png b/static/capture/gethugothemes-influencer-hugo.png new file mode 100644 index 000000000..133b78983 Binary files /dev/null and b/static/capture/gethugothemes-influencer-hugo.png differ diff --git a/static/capture/gethugothemes-liva-hugo.png b/static/capture/gethugothemes-liva-hugo.png new file mode 100644 index 000000000..1f10776b4 Binary files /dev/null and b/static/capture/gethugothemes-liva-hugo.png differ diff --git a/static/capture/gethugothemes-navigator-hugo.png b/static/capture/gethugothemes-navigator-hugo.png new file mode 100644 index 000000000..fb55be8a0 Binary files /dev/null and b/static/capture/gethugothemes-navigator-hugo.png differ diff --git a/static/capture/gethugothemes-northendlab-light.png b/static/capture/gethugothemes-northendlab-light.png new file mode 100644 index 000000000..acf95e7e9 Binary files /dev/null and b/static/capture/gethugothemes-northendlab-light.png differ diff --git a/static/capture/gethugothemes-omega-hugo.png b/static/capture/gethugothemes-omega-hugo.png new file mode 100644 index 000000000..d29c2cf84 Binary files /dev/null and b/static/capture/gethugothemes-omega-hugo.png differ diff --git a/static/capture/gethugothemes-persian-hugo.png b/static/capture/gethugothemes-persian-hugo.png new file mode 100644 index 000000000..7fef35c37 Binary files /dev/null and b/static/capture/gethugothemes-persian-hugo.png differ diff --git a/static/capture/gethugothemes-restaurant-hugo.png b/static/capture/gethugothemes-restaurant-hugo.png new file mode 100644 index 000000000..f16c1bd05 Binary files /dev/null and b/static/capture/gethugothemes-restaurant-hugo.png differ diff --git a/static/capture/gethugothemes-techfeed-hugo.png b/static/capture/gethugothemes-techfeed-hugo.png new file mode 100644 index 000000000..8eefd062e Binary files /dev/null and b/static/capture/gethugothemes-techfeed-hugo.png differ diff --git a/static/capture/gethugothemes-touchy-hugo.png b/static/capture/gethugothemes-touchy-hugo.png new file mode 100644 index 000000000..9b5343dae Binary files /dev/null and b/static/capture/gethugothemes-touchy-hugo.png differ diff --git a/static/capture/gherciu-gatsby-all-in-master.png b/static/capture/gherciu-gatsby-all-in-master.png deleted file mode 100644 index 66a47ed3b..000000000 Binary files a/static/capture/gherciu-gatsby-all-in-master.png and /dev/null differ diff --git a/static/capture/gherciu-gatsby-all-in.png b/static/capture/gherciu-gatsby-all-in.png new file mode 100644 index 000000000..5b9ba8e14 Binary files /dev/null and b/static/capture/gherciu-gatsby-all-in.png differ diff --git a/static/capture/gildasio-clyell-gh-pages.png b/static/capture/gildasio-clyell-gh-pages.png deleted file mode 100644 index d59e0bc08..000000000 Binary files a/static/capture/gildasio-clyell-gh-pages.png and /dev/null differ diff --git a/static/capture/gildasio-clyell.png b/static/capture/gildasio-clyell.png new file mode 100644 index 000000000..3ade3bc7b Binary files /dev/null and b/static/capture/gildasio-clyell.png differ diff --git a/static/capture/gillkyle-gatsby-starter-landing-page-master.png b/static/capture/gillkyle-gatsby-starter-landing-page-master.png deleted file mode 100644 index a664ed147..000000000 Binary files a/static/capture/gillkyle-gatsby-starter-landing-page-master.png and /dev/null differ diff --git a/static/capture/gillkyle-gatsby-starter-landing-page.png b/static/capture/gillkyle-gatsby-starter-landing-page.png new file mode 100644 index 000000000..05f574599 Binary files /dev/null and b/static/capture/gillkyle-gatsby-starter-landing-page.png differ diff --git a/static/capture/gilsondev-pelican-clean-blog-master.png b/static/capture/gilsondev-pelican-clean-blog-master.png deleted file mode 100644 index a2962c175..000000000 Binary files a/static/capture/gilsondev-pelican-clean-blog-master.png and /dev/null differ diff --git a/static/capture/gilsondev-pelican-clean-blog.png b/static/capture/gilsondev-pelican-clean-blog.png new file mode 100644 index 000000000..f74b04647 Binary files /dev/null and b/static/capture/gilsondev-pelican-clean-blog.png differ diff --git a/static/capture/gizak-nofancy-master.png b/static/capture/gizak-nofancy-master.png deleted file mode 100644 index c9d3c18a1..000000000 Binary files a/static/capture/gizak-nofancy-master.png and /dev/null differ diff --git a/static/capture/gjuniioor-darcli-gh-pages.png b/static/capture/gjuniioor-darcli-gh-pages.png deleted file mode 100644 index f194bc791..000000000 Binary files a/static/capture/gjuniioor-darcli-gh-pages.png and /dev/null differ diff --git a/static/capture/gkmngrgn-hugo-alageek-theme-master.png b/static/capture/gkmngrgn-hugo-alageek-theme-master.png deleted file mode 100644 index e7f56dbb0..000000000 Binary files a/static/capture/gkmngrgn-hugo-alageek-theme-master.png and /dev/null differ diff --git a/static/capture/gkmngrgn-hugo-alageek-theme.png b/static/capture/gkmngrgn-hugo-alageek-theme.png new file mode 100644 index 000000000..c2c902313 Binary files /dev/null and b/static/capture/gkmngrgn-hugo-alageek-theme.png differ diff --git a/static/capture/gmlunesa-gatsby-starter-personal-portfolio-main.png b/static/capture/gmlunesa-gatsby-starter-personal-portfolio-main.png deleted file mode 100644 index 4164954d7..000000000 Binary files a/static/capture/gmlunesa-gatsby-starter-personal-portfolio-main.png and /dev/null differ diff --git a/static/capture/gmlunesa-gatsby-starter-personal-portfolio.png b/static/capture/gmlunesa-gatsby-starter-personal-portfolio.png new file mode 100644 index 000000000..8064680ee Binary files /dev/null and b/static/capture/gmlunesa-gatsby-starter-personal-portfolio.png differ diff --git a/static/capture/gomah-bluise-master.png b/static/capture/gomah-bluise-master.png deleted file mode 100644 index 51c2ddad8..000000000 Binary files a/static/capture/gomah-bluise-master.png and /dev/null differ diff --git a/static/capture/gomah-bluise.png b/static/capture/gomah-bluise.png new file mode 100644 index 000000000..59789df97 Binary files /dev/null and b/static/capture/gomah-bluise.png differ diff --git a/static/capture/gonapps-org-hugo-apps-theme-master.png b/static/capture/gonapps-org-hugo-apps-theme-master.png deleted file mode 100644 index 3dd938a71..000000000 Binary files a/static/capture/gonapps-org-hugo-apps-theme-master.png and /dev/null differ diff --git a/static/capture/goodroot-hugo-classic-master.png b/static/capture/goodroot-hugo-classic-master.png deleted file mode 100644 index 3f97a6ca0..000000000 Binary files a/static/capture/goodroot-hugo-classic-master.png and /dev/null differ diff --git a/static/capture/goodroot-hugo-classic.png b/static/capture/goodroot-hugo-classic.png new file mode 100644 index 000000000..b0b9f9c46 Binary files /dev/null and b/static/capture/goodroot-hugo-classic.png differ diff --git a/static/capture/graphcms-gatsby-graphcms-tailwindcss-example-master.png b/static/capture/graphcms-gatsby-graphcms-tailwindcss-example-master.png deleted file mode 100644 index 503e6769f..000000000 Binary files a/static/capture/graphcms-gatsby-graphcms-tailwindcss-example-master.png and /dev/null differ diff --git a/static/capture/graphcms-gatsby-graphcms-tailwindcss-example.png b/static/capture/graphcms-gatsby-graphcms-tailwindcss-example.png new file mode 100644 index 000000000..5f4abcb12 Binary files /dev/null and b/static/capture/graphcms-gatsby-graphcms-tailwindcss-example.png differ diff --git a/static/capture/graphcms-gatsby-starter-graphcms-blog.png b/static/capture/graphcms-gatsby-starter-graphcms-blog.png new file mode 100644 index 000000000..6e8fb1d12 Binary files /dev/null and b/static/capture/graphcms-gatsby-starter-graphcms-blog.png differ diff --git a/static/capture/graphcms-graphcms-commerce-starter.png b/static/capture/graphcms-graphcms-commerce-starter.png new file mode 100644 index 000000000..c967ad005 Binary files /dev/null and b/static/capture/graphcms-graphcms-commerce-starter.png differ diff --git a/static/capture/graphcms-reference-marketing-website.png b/static/capture/graphcms-reference-marketing-website.png new file mode 100644 index 000000000..01929e31e Binary files /dev/null and b/static/capture/graphcms-reference-marketing-website.png differ diff --git a/static/capture/greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog-master.png b/static/capture/greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog-master.png deleted file mode 100644 index ffc40f423..000000000 Binary files a/static/capture/greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog-master.png and /dev/null differ diff --git a/static/capture/greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog.png b/static/capture/greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog.png new file mode 100644 index 000000000..41afd2b9b Binary files /dev/null and b/static/capture/greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog.png differ diff --git a/static/capture/greglobinski-gatsby-starter-hero-blog-master.png b/static/capture/greglobinski-gatsby-starter-hero-blog-master.png deleted file mode 100644 index 5e98e0224..000000000 Binary files a/static/capture/greglobinski-gatsby-starter-hero-blog-master.png and /dev/null differ diff --git a/static/capture/greglobinski-gatsby-starter-hero-blog.png b/static/capture/greglobinski-gatsby-starter-hero-blog.png new file mode 100644 index 000000000..bcde7b4d0 Binary files /dev/null and b/static/capture/greglobinski-gatsby-starter-hero-blog.png differ diff --git a/static/capture/gridsome-gridsome-starter-blog-master.png b/static/capture/gridsome-gridsome-starter-blog-master.png deleted file mode 100644 index 94c0cbd68..000000000 Binary files a/static/capture/gridsome-gridsome-starter-blog-master.png and /dev/null differ diff --git a/static/capture/gridsome-gridsome-starter-blog.png b/static/capture/gridsome-gridsome-starter-blog.png new file mode 100644 index 000000000..83451eeef Binary files /dev/null and b/static/capture/gridsome-gridsome-starter-blog.png differ diff --git a/static/capture/gristlabs-mkdocs-windmill-master.png b/static/capture/gristlabs-mkdocs-windmill-master.png deleted file mode 100644 index 6962a93e3..000000000 Binary files a/static/capture/gristlabs-mkdocs-windmill-master.png and /dev/null differ diff --git a/static/capture/gristlabs-mkdocs-windmill.png b/static/capture/gristlabs-mkdocs-windmill.png new file mode 100644 index 000000000..16f2eb8ad Binary files /dev/null and b/static/capture/gristlabs-mkdocs-windmill.png differ diff --git a/static/capture/grrinchas-aliquam-master.png b/static/capture/grrinchas-aliquam-master.png deleted file mode 100644 index e79905e2d..000000000 Binary files a/static/capture/grrinchas-aliquam-master.png and /dev/null differ diff --git a/static/capture/grrinchas-aliquam.png b/static/capture/grrinchas-aliquam.png new file mode 100644 index 000000000..6ed0aa645 Binary files /dev/null and b/static/capture/grrinchas-aliquam.png differ diff --git a/static/capture/guangmean-niello-master.png b/static/capture/guangmean-niello-master.png deleted file mode 100644 index cb1c98325..000000000 Binary files a/static/capture/guangmean-niello-master.png and /dev/null differ diff --git a/static/capture/gundamew-hugo-bingo-master.png b/static/capture/gundamew-hugo-bingo-master.png deleted file mode 100644 index 0d04eca4f..000000000 Binary files a/static/capture/gundamew-hugo-bingo-master.png and /dev/null differ diff --git a/static/capture/guovz-pithy-master.png b/static/capture/guovz-pithy-master.png deleted file mode 100644 index 6cc5c428e..000000000 Binary files a/static/capture/guovz-pithy-master.png and /dev/null differ diff --git a/static/capture/gurusabarish-hugo-profile-master.png b/static/capture/gurusabarish-hugo-profile-master.png deleted file mode 100644 index 11e1b103c..000000000 Binary files a/static/capture/gurusabarish-hugo-profile-master.png and /dev/null differ diff --git a/static/capture/gurusabarish-hugo-profile.png b/static/capture/gurusabarish-hugo-profile.png new file mode 100644 index 000000000..d756f8d13 Binary files /dev/null and b/static/capture/gurusabarish-hugo-profile.png differ diff --git a/static/capture/gyorb-hugo-dusk-master.png b/static/capture/gyorb-hugo-dusk-master.png deleted file mode 100644 index 64ea38880..000000000 Binary files a/static/capture/gyorb-hugo-dusk-master.png and /dev/null differ diff --git a/static/capture/h-enk-doks-master.png b/static/capture/h-enk-doks-master.png deleted file mode 100644 index 635cdfe1b..000000000 Binary files a/static/capture/h-enk-doks-master.png and /dev/null differ diff --git a/static/capture/h-enk-doks.png b/static/capture/h-enk-doks.png new file mode 100644 index 000000000..ed1c0b334 Binary files /dev/null and b/static/capture/h-enk-doks.png differ diff --git a/static/capture/h01000110-windows-95-master.png b/static/capture/h01000110-windows-95-master.png deleted file mode 100644 index a25c84e5b..000000000 Binary files a/static/capture/h01000110-windows-95-master.png and /dev/null differ diff --git a/static/capture/h01000110-windows-95.png b/static/capture/h01000110-windows-95.png new file mode 100644 index 000000000..46a785773 Binary files /dev/null and b/static/capture/h01000110-windows-95.png differ diff --git a/static/capture/hadisinaee-avicenna-develop.png b/static/capture/hadisinaee-avicenna-develop.png deleted file mode 100644 index f370caf10..000000000 Binary files a/static/capture/hadisinaee-avicenna-develop.png and /dev/null differ diff --git a/static/capture/haezl-gatsby-starter-haezl-master.png b/static/capture/haezl-gatsby-starter-haezl-master.png deleted file mode 100644 index 40c10b574..000000000 Binary files a/static/capture/haezl-gatsby-starter-haezl-master.png and /dev/null differ diff --git a/static/capture/hagnerd-gatsby-starter-blog-mdx-master.png b/static/capture/hagnerd-gatsby-starter-blog-mdx-master.png deleted file mode 100644 index 645b4118c..000000000 Binary files a/static/capture/hagnerd-gatsby-starter-blog-mdx-master.png and /dev/null differ diff --git a/static/capture/hagnerd-gatsby-starter-blog-mdx.png b/static/capture/hagnerd-gatsby-starter-blog-mdx.png new file mode 100644 index 000000000..1b3b37793 Binary files /dev/null and b/static/capture/hagnerd-gatsby-starter-blog-mdx.png differ diff --git a/static/capture/halogenica-beautifulhugo-master.png b/static/capture/halogenica-beautifulhugo-master.png deleted file mode 100644 index 8a5fcdd1a..000000000 Binary files a/static/capture/halogenica-beautifulhugo-master.png and /dev/null differ diff --git a/static/capture/harshil1712-gatsby-starter-googlesheets-master.png b/static/capture/harshil1712-gatsby-starter-googlesheets-master.png deleted file mode 100644 index aac449dd7..000000000 Binary files a/static/capture/harshil1712-gatsby-starter-googlesheets-master.png and /dev/null differ diff --git a/static/capture/harshil1712-gatsby-starter-googlesheets.png b/static/capture/harshil1712-gatsby-starter-googlesheets.png new file mode 100644 index 000000000..95e89051f Binary files /dev/null and b/static/capture/harshil1712-gatsby-starter-googlesheets.png differ diff --git a/static/capture/hasura-gatsby-gitbook-starter-master.png b/static/capture/hasura-gatsby-gitbook-starter-master.png deleted file mode 100644 index 9f2f6e169..000000000 Binary files a/static/capture/hasura-gatsby-gitbook-starter-master.png and /dev/null differ diff --git a/static/capture/hasura-gatsby-gitbook-starter.png b/static/capture/hasura-gatsby-gitbook-starter.png new file mode 100644 index 000000000..82ea9f990 Binary files /dev/null and b/static/capture/hasura-gatsby-gitbook-starter.png differ diff --git a/static/capture/hauke96-hugo-theme-hamburg-master.png b/static/capture/hauke96-hugo-theme-hamburg-master.png deleted file mode 100644 index 324d65b39..000000000 Binary files a/static/capture/hauke96-hugo-theme-hamburg-master.png and /dev/null differ diff --git a/static/capture/hdcdstr8fwd-foundation-theme-master.png b/static/capture/hdcdstr8fwd-foundation-theme-master.png deleted file mode 100644 index 5ff767c8d..000000000 Binary files a/static/capture/hdcdstr8fwd-foundation-theme-master.png and /dev/null differ diff --git a/static/capture/heiswayi-textlog-gh-pages.png b/static/capture/heiswayi-textlog-gh-pages.png deleted file mode 100644 index 784fe4503..000000000 Binary files a/static/capture/heiswayi-textlog-gh-pages.png and /dev/null differ diff --git a/static/capture/heiswayi-textlog.png b/static/capture/heiswayi-textlog.png new file mode 100644 index 000000000..8946de426 Binary files /dev/null and b/static/capture/heiswayi-textlog.png differ diff --git a/static/capture/heiswayi-the-plain-master.png b/static/capture/heiswayi-the-plain-master.png deleted file mode 100644 index 7e70eff27..000000000 Binary files a/static/capture/heiswayi-the-plain-master.png and /dev/null differ diff --git a/static/capture/heiswayi-the-plain.png b/static/capture/heiswayi-the-plain.png new file mode 100644 index 000000000..7232d9a29 Binary files /dev/null and b/static/capture/heiswayi-the-plain.png differ diff --git a/static/capture/heiswayi-thinkspace-master.png b/static/capture/heiswayi-thinkspace-master.png deleted file mode 100644 index de332b56e..000000000 Binary files a/static/capture/heiswayi-thinkspace-master.png and /dev/null differ diff --git a/static/capture/heiswayi-thinkspace.png b/static/capture/heiswayi-thinkspace.png new file mode 100644 index 000000000..e81baf97a Binary files /dev/null and b/static/capture/heiswayi-thinkspace.png differ diff --git a/static/capture/heliumjk-heliumjk.github.io-master.png b/static/capture/heliumjk-heliumjk.github.io-master.png deleted file mode 100644 index 32dc1f747..000000000 Binary files a/static/capture/heliumjk-heliumjk.github.io-master.png and /dev/null differ diff --git a/static/capture/heliumjk-heliumjk.github.io.png b/static/capture/heliumjk-heliumjk.github.io.png new file mode 100644 index 000000000..6cc8be6fa Binary files /dev/null and b/static/capture/heliumjk-heliumjk.github.io.png differ diff --git a/static/capture/hellocosmin-gridsome-starter-bleda-master.png b/static/capture/hellocosmin-gridsome-starter-bleda.png similarity index 100% rename from static/capture/hellocosmin-gridsome-starter-bleda-master.png rename to static/capture/hellocosmin-gridsome-starter-bleda.png diff --git a/static/capture/hemangsk-devjournal-master.png b/static/capture/hemangsk-devjournal-master.png deleted file mode 100644 index 5c5d7663d..000000000 Binary files a/static/capture/hemangsk-devjournal-master.png and /dev/null differ diff --git a/static/capture/hemangsk-devjournal.png b/static/capture/hemangsk-devjournal.png new file mode 100644 index 000000000..43a8c600c Binary files /dev/null and b/static/capture/hemangsk-devjournal.png differ diff --git a/static/capture/hemangsk-gravity-master.png b/static/capture/hemangsk-gravity-master.png deleted file mode 100644 index 02afb0de4..000000000 Binary files a/static/capture/hemangsk-gravity-master.png and /dev/null differ diff --git a/static/capture/hemangsk-gravity.png b/static/capture/hemangsk-gravity.png new file mode 100644 index 000000000..058642315 Binary files /dev/null and b/static/capture/hemangsk-gravity.png differ diff --git a/static/capture/hemangsk-safarnama-master.png b/static/capture/hemangsk-safarnama-master.png deleted file mode 100644 index 62a3c71d6..000000000 Binary files a/static/capture/hemangsk-safarnama-master.png and /dev/null differ diff --git a/static/capture/hemangsk-safarnama.png b/static/capture/hemangsk-safarnama.png new file mode 100644 index 000000000..323cc9205 Binary files /dev/null and b/static/capture/hemangsk-safarnama.png differ diff --git a/static/capture/henryhuang-hexo-theme-aloha-master.png b/static/capture/henryhuang-hexo-theme-aloha-master.png deleted file mode 100644 index aed9fe7c9..000000000 Binary files a/static/capture/henryhuang-hexo-theme-aloha-master.png and /dev/null differ diff --git a/static/capture/henryhuang-hexo-theme-aloha.png b/static/capture/henryhuang-hexo-theme-aloha.png new file mode 100644 index 000000000..e2e57d861 Binary files /dev/null and b/static/capture/henryhuang-hexo-theme-aloha.png differ diff --git a/static/capture/henrythemes-jekyll-book-theme-master.png b/static/capture/henrythemes-jekyll-book-theme.png similarity index 100% rename from static/capture/henrythemes-jekyll-book-theme-master.png rename to static/capture/henrythemes-jekyll-book-theme.png diff --git a/static/capture/henrythemes-jekyll-bootstrap-theme-master.png b/static/capture/henrythemes-jekyll-bootstrap-theme.png similarity index 100% rename from static/capture/henrythemes-jekyll-bootstrap-theme-master.png rename to static/capture/henrythemes-jekyll-bootstrap-theme.png diff --git a/static/capture/henrythemes-jekyll-minimal-theme-master.png b/static/capture/henrythemes-jekyll-minimal-theme.png similarity index 100% rename from static/capture/henrythemes-jekyll-minimal-theme-master.png rename to static/capture/henrythemes-jekyll-minimal-theme.png diff --git a/static/capture/himali-patel-myclicks-master.png b/static/capture/himali-patel-myclicks-master.png deleted file mode 100644 index 408944b55..000000000 Binary files a/static/capture/himali-patel-myclicks-master.png and /dev/null differ diff --git a/static/capture/himali-patel-myclicks.png b/static/capture/himali-patel-myclicks.png new file mode 100644 index 000000000..4ca9888bb Binary files /dev/null and b/static/capture/himali-patel-myclicks.png differ diff --git a/static/capture/histaff-website-static-master.png b/static/capture/histaff-website-static-master.png deleted file mode 100644 index ce30167ae..000000000 Binary files a/static/capture/histaff-website-static-master.png and /dev/null differ diff --git a/static/capture/histaff-website-static.png b/static/capture/histaff-website-static.png new file mode 100644 index 000000000..4e3c124a0 Binary files /dev/null and b/static/capture/histaff-website-static.png differ diff --git a/static/capture/hmfaysal-hmfaysal-omega-theme-gh-pages.png b/static/capture/hmfaysal-hmfaysal-omega-theme-gh-pages.png deleted file mode 100644 index 0696f9624..000000000 Binary files a/static/capture/hmfaysal-hmfaysal-omega-theme-gh-pages.png and /dev/null differ diff --git a/static/capture/hmfaysal-hmfaysal-omega-theme.png b/static/capture/hmfaysal-hmfaysal-omega-theme.png new file mode 100644 index 000000000..6476c5866 Binary files /dev/null and b/static/capture/hmfaysal-hmfaysal-omega-theme.png differ diff --git a/static/capture/hmfaysal-jekyll-hmfaysal-theme-master.png b/static/capture/hmfaysal-jekyll-hmfaysal-theme-master.png deleted file mode 100644 index a8e2ba044..000000000 Binary files a/static/capture/hmfaysal-jekyll-hmfaysal-theme-master.png and /dev/null differ diff --git a/static/capture/hmfaysal-jekyll-hmfaysal-theme.png b/static/capture/hmfaysal-jekyll-hmfaysal-theme.png new file mode 100644 index 000000000..c8ec67082 Binary files /dev/null and b/static/capture/hmfaysal-jekyll-hmfaysal-theme.png differ diff --git a/static/capture/hmfaysal-notepad-gh-pages.png b/static/capture/hmfaysal-notepad-gh-pages.png deleted file mode 100644 index 7d688c5c9..000000000 Binary files a/static/capture/hmfaysal-notepad-gh-pages.png and /dev/null differ diff --git a/static/capture/holger1411-11straps.png b/static/capture/holger1411-11straps.png new file mode 100644 index 000000000..47a89012f Binary files /dev/null and b/static/capture/holger1411-11straps.png differ diff --git a/static/capture/holger1411-brook-dev.png b/static/capture/holger1411-brook-dev.png new file mode 100644 index 000000000..b3d4883b3 Binary files /dev/null and b/static/capture/holger1411-brook-dev.png differ diff --git a/static/capture/holman-left-gh-pages.png b/static/capture/holman-left.png similarity index 100% rename from static/capture/holman-left-gh-pages.png rename to static/capture/holman-left.png diff --git a/static/capture/htdvisser-hugo-base16-theme-master.png b/static/capture/htdvisser-hugo-base16-theme-master.png deleted file mode 100644 index c6f01dad1..000000000 Binary files a/static/capture/htdvisser-hugo-base16-theme-master.png and /dev/null differ diff --git a/static/capture/htr3n-hyde-hyde-master.png b/static/capture/htr3n-hyde-hyde-master.png deleted file mode 100644 index e2f77d4d7..000000000 Binary files a/static/capture/htr3n-hyde-hyde-master.png and /dev/null differ diff --git a/static/capture/hugo-sid-hugo-blog-awesome.png b/static/capture/hugo-sid-hugo-blog-awesome.png new file mode 100644 index 000000000..0911b8227 Binary files /dev/null and b/static/capture/hugo-sid-hugo-blog-awesome.png differ diff --git a/static/capture/hugocarreira-jekyll-materializecss-gh-pages.png b/static/capture/hugocarreira-jekyll-materializecss-gh-pages.png deleted file mode 100644 index b59267116..000000000 Binary files a/static/capture/hugocarreira-jekyll-materializecss-gh-pages.png and /dev/null differ diff --git a/static/capture/hugocarreira-jekyll-materializecss.png b/static/capture/hugocarreira-jekyll-materializecss.png new file mode 100644 index 000000000..fb67551a8 Binary files /dev/null and b/static/capture/hugocarreira-jekyll-materializecss.png differ diff --git a/static/capture/hugocarreira-jekyll-vision-casper-theme-gh-pages.png b/static/capture/hugocarreira-jekyll-vision-casper-theme-gh-pages.png deleted file mode 100644 index 37559f0f8..000000000 Binary files a/static/capture/hugocarreira-jekyll-vision-casper-theme-gh-pages.png and /dev/null differ diff --git a/static/capture/hugocarreira-jekyll-vision-casper-theme.png b/static/capture/hugocarreira-jekyll-vision-casper-theme.png new file mode 100644 index 000000000..fb9f0aeb8 Binary files /dev/null and b/static/capture/hugocarreira-jekyll-vision-casper-theme.png differ diff --git a/static/capture/hugoferreira-papyrus-theme-master.png b/static/capture/hugoferreira-papyrus-theme-master.png deleted file mode 100644 index b722ac45a..000000000 Binary files a/static/capture/hugoferreira-papyrus-theme-master.png and /dev/null differ diff --git a/static/capture/hugoferreira-papyrus-theme.png b/static/capture/hugoferreira-papyrus-theme.png new file mode 100644 index 000000000..56281c1a8 Binary files /dev/null and b/static/capture/hugoferreira-papyrus-theme.png differ diff --git a/static/capture/humrochagf-colordrop-master.png b/static/capture/humrochagf-colordrop-master.png deleted file mode 100644 index a3fe977d7..000000000 Binary files a/static/capture/humrochagf-colordrop-master.png and /dev/null differ diff --git a/static/capture/humrochagf-colordrop.png b/static/capture/humrochagf-colordrop.png new file mode 100644 index 000000000..6647e927b Binary files /dev/null and b/static/capture/humrochagf-colordrop.png differ diff --git a/static/capture/huweihuang-hexo-theme-huweihuang-master.png b/static/capture/huweihuang-hexo-theme-huweihuang-master.png deleted file mode 100644 index f454b098f..000000000 Binary files a/static/capture/huweihuang-hexo-theme-huweihuang-master.png and /dev/null differ diff --git a/static/capture/huweihuang-hexo-theme-huweihuang.png b/static/capture/huweihuang-hexo-theme-huweihuang.png new file mode 100644 index 000000000..ff424bab4 Binary files /dev/null and b/static/capture/huweihuang-hexo-theme-huweihuang.png differ diff --git a/static/capture/huyb1991-hugo-lamp-master.png b/static/capture/huyb1991-hugo-lamp-master.png deleted file mode 100644 index 1d63b84eb..000000000 Binary files a/static/capture/huyb1991-hugo-lamp-master.png and /dev/null differ diff --git a/static/capture/huyingjie-hexo-theme-a-rsnippet-master.png b/static/capture/huyingjie-hexo-theme-a-rsnippet-master.png deleted file mode 100644 index 20628316b..000000000 Binary files a/static/capture/huyingjie-hexo-theme-a-rsnippet-master.png and /dev/null differ diff --git a/static/capture/icyris-hugo-theme-yuki-master.png b/static/capture/icyris-hugo-theme-yuki-master.png deleted file mode 100644 index bccc23a7c..000000000 Binary files a/static/capture/icyris-hugo-theme-yuki-master.png and /dev/null differ diff --git a/static/capture/ifedyukin-mekyll-master.png b/static/capture/ifedyukin-mekyll-master.png deleted file mode 100644 index 50366a4f6..000000000 Binary files a/static/capture/ifedyukin-mekyll-master.png and /dev/null differ diff --git a/static/capture/ifedyukin-mekyll.png b/static/capture/ifedyukin-mekyll.png new file mode 100644 index 000000000..5ce85dde4 Binary files /dev/null and b/static/capture/ifedyukin-mekyll.png differ diff --git a/static/capture/ijjk-notion-blog.png b/static/capture/ijjk-notion-blog.png new file mode 100644 index 000000000..6c40e2aa2 Binary files /dev/null and b/static/capture/ijjk-notion-blog.png differ diff --git a/static/capture/ijsucceed-onepress-master.png b/static/capture/ijsucceed-onepress-master.png deleted file mode 100644 index 80bc76e30..000000000 Binary files a/static/capture/ijsucceed-onepress-master.png and /dev/null differ diff --git a/static/capture/imedadel-gatsby-london-master.png b/static/capture/imedadel-gatsby-london-master.png deleted file mode 100644 index 29fed8790..000000000 Binary files a/static/capture/imedadel-gatsby-london-master.png and /dev/null differ diff --git a/static/capture/imedadel-gatsby-london.png b/static/capture/imedadel-gatsby-london.png new file mode 100644 index 000000000..2ab66f176 Binary files /dev/null and b/static/capture/imedadel-gatsby-london.png differ diff --git a/static/capture/inded-jekyll_modern-blog-gh-pages.png b/static/capture/inded-jekyll_modern-blog-gh-pages.png deleted file mode 100644 index 51abcb6e7..000000000 Binary files a/static/capture/inded-jekyll_modern-blog-gh-pages.png and /dev/null differ diff --git a/static/capture/inded-jekyll_modern-blog.png b/static/capture/inded-jekyll_modern-blog.png new file mode 100644 index 000000000..9481289da Binary files /dev/null and b/static/capture/inded-jekyll_modern-blog.png differ diff --git a/static/capture/insidiousmind-material-bliss-jekyll-theme-master.png b/static/capture/insidiousmind-material-bliss-jekyll-theme-master.png deleted file mode 100644 index 8a43fd868..000000000 Binary files a/static/capture/insidiousmind-material-bliss-jekyll-theme-master.png and /dev/null differ diff --git a/static/capture/insidiousmind-material-bliss-jekyll-theme.png b/static/capture/insidiousmind-material-bliss-jekyll-theme.png new file mode 100644 index 000000000..9fef67df0 Binary files /dev/null and b/static/capture/insidiousmind-material-bliss-jekyll-theme.png differ diff --git a/static/capture/issydennis-gatsby-snipcart-master.png b/static/capture/issydennis-gatsby-snipcart-master.png deleted file mode 100644 index b8b88b876..000000000 Binary files a/static/capture/issydennis-gatsby-snipcart-master.png and /dev/null differ diff --git a/static/capture/issydennis-gatsby-snipcart.png b/static/capture/issydennis-gatsby-snipcart.png new file mode 100644 index 000000000..cf4f3ddbd Binary files /dev/null and b/static/capture/issydennis-gatsby-snipcart.png differ diff --git a/static/capture/it-gro-hugo-theme-w3css-basic-master.png b/static/capture/it-gro-hugo-theme-w3css-basic-master.png deleted file mode 100644 index 81deb460e..000000000 Binary files a/static/capture/it-gro-hugo-theme-w3css-basic-master.png and /dev/null differ diff --git a/static/capture/it-gro-hugo-theme-w3css-basic.png b/static/capture/it-gro-hugo-theme-w3css-basic.png new file mode 100644 index 000000000..e72313b5c Binary files /dev/null and b/static/capture/it-gro-hugo-theme-w3css-basic.png differ diff --git a/static/capture/itisbenjamin-nice_blog-master.png b/static/capture/itisbenjamin-nice_blog-master.png deleted file mode 100644 index f194bc791..000000000 Binary files a/static/capture/itisbenjamin-nice_blog-master.png and /dev/null differ diff --git a/static/capture/itsmeaga1n-minimal-categorized-master.png b/static/capture/itsmeaga1n-minimal-categorized-master.png deleted file mode 100644 index 9934ca254..000000000 Binary files a/static/capture/itsmeaga1n-minimal-categorized-master.png and /dev/null differ diff --git a/static/capture/itsmeaga1n-minimal-categorized.png b/static/capture/itsmeaga1n-minimal-categorized.png new file mode 100644 index 000000000..8890db925 Binary files /dev/null and b/static/capture/itsmeaga1n-minimal-categorized.png differ diff --git a/static/capture/itsnwa-darkfolio-master.png b/static/capture/itsnwa-darkfolio-master.png deleted file mode 100644 index 0c04b249b..000000000 Binary files a/static/capture/itsnwa-darkfolio-master.png and /dev/null differ diff --git a/static/capture/itsnwa-darkfolio.png b/static/capture/itsnwa-darkfolio.png new file mode 100644 index 000000000..68f548968 Binary files /dev/null and b/static/capture/itsnwa-darkfolio.png differ diff --git a/static/capture/itsnwa-gridsome-forestry-starter-master.png b/static/capture/itsnwa-gridsome-forestry-starter-master.png deleted file mode 100644 index 4174392a0..000000000 Binary files a/static/capture/itsnwa-gridsome-forestry-starter-master.png and /dev/null differ diff --git a/static/capture/itsnwa-gridsome-forestry-starter.png b/static/capture/itsnwa-gridsome-forestry-starter.png new file mode 100644 index 000000000..c9e4d9821 Binary files /dev/null and b/static/capture/itsnwa-gridsome-forestry-starter.png differ diff --git a/static/capture/itsrifat-rifyll-master.png b/static/capture/itsrifat-rifyll-master.png deleted file mode 100644 index 5ddb05794..000000000 Binary files a/static/capture/itsrifat-rifyll-master.png and /dev/null differ diff --git a/static/capture/itsrifat-rifyll.png b/static/capture/itsrifat-rifyll.png new file mode 100644 index 000000000..b61a3b774 Binary files /dev/null and b/static/capture/itsrifat-rifyll.png differ diff --git a/static/capture/ivanchou-hugo-theme-vec-master.png b/static/capture/ivanchou-hugo-theme-vec-master.png deleted file mode 100644 index e1ac42cef..000000000 Binary files a/static/capture/ivanchou-hugo-theme-vec-master.png and /dev/null differ diff --git a/static/capture/iwiedenm-jekyll-theme-massively-src-master.png b/static/capture/iwiedenm-jekyll-theme-massively-src-master.png deleted file mode 100644 index 518628893..000000000 Binary files a/static/capture/iwiedenm-jekyll-theme-massively-src-master.png and /dev/null differ diff --git a/static/capture/iwiedenm-jekyll-theme-massively-src.png b/static/capture/iwiedenm-jekyll-theme-massively-src.png new file mode 100644 index 000000000..0b46867a6 Binary files /dev/null and b/static/capture/iwiedenm-jekyll-theme-massively-src.png differ diff --git a/static/capture/iwilsonq-gatsby-starter-reasonml-master.png b/static/capture/iwilsonq-gatsby-starter-reasonml-master.png deleted file mode 100644 index e49178186..000000000 Binary files a/static/capture/iwilsonq-gatsby-starter-reasonml-master.png and /dev/null differ diff --git a/static/capture/iwilsonq-gatsby-starter-reasonml.png b/static/capture/iwilsonq-gatsby-starter-reasonml.png new file mode 100644 index 000000000..85608b6b9 Binary files /dev/null and b/static/capture/iwilsonq-gatsby-starter-reasonml.png differ diff --git a/static/capture/ixartz-astro-boilerplate.png b/static/capture/ixartz-astro-boilerplate.png new file mode 100644 index 000000000..502bf83c2 Binary files /dev/null and b/static/capture/ixartz-astro-boilerplate.png differ diff --git a/static/capture/ixartz-eleventy-starter-boilerplate-master.png b/static/capture/ixartz-eleventy-starter-boilerplate-master.png deleted file mode 100644 index b7e832a04..000000000 Binary files a/static/capture/ixartz-eleventy-starter-boilerplate-master.png and /dev/null differ diff --git a/static/capture/ixartz-eleventy-starter-boilerplate.png b/static/capture/ixartz-eleventy-starter-boilerplate.png new file mode 100644 index 000000000..6fd10d036 Binary files /dev/null and b/static/capture/ixartz-eleventy-starter-boilerplate.png differ diff --git a/static/capture/ixartz-next-js-blog-boilerplate-master.png b/static/capture/ixartz-next-js-blog-boilerplate-master.png deleted file mode 100644 index b92a3108b..000000000 Binary files a/static/capture/ixartz-next-js-blog-boilerplate-master.png and /dev/null differ diff --git a/static/capture/ixartz-next-js-blog-boilerplate.png b/static/capture/ixartz-next-js-blog-boilerplate.png new file mode 100644 index 000000000..1ab2c09cb Binary files /dev/null and b/static/capture/ixartz-next-js-blog-boilerplate.png differ diff --git a/static/capture/ixartz-next-js-boilerplate-master.png b/static/capture/ixartz-next-js-boilerplate-master.png deleted file mode 100644 index 6d6f8b465..000000000 Binary files a/static/capture/ixartz-next-js-boilerplate-master.png and /dev/null differ diff --git a/static/capture/ixartz-next-js-boilerplate.png b/static/capture/ixartz-next-js-boilerplate.png new file mode 100644 index 000000000..0da6e1502 Binary files /dev/null and b/static/capture/ixartz-next-js-boilerplate.png differ diff --git a/static/capture/ixartz-next-js-landing-page-starter-template.png b/static/capture/ixartz-next-js-landing-page-starter-template.png new file mode 100644 index 000000000..4933f9bef Binary files /dev/null and b/static/capture/ixartz-next-js-landing-page-starter-template.png differ diff --git a/static/capture/jackbravo-gatsby-starter-i18n-blog-master.png b/static/capture/jackbravo-gatsby-starter-i18n-blog-master.png deleted file mode 100644 index 89aca3860..000000000 Binary files a/static/capture/jackbravo-gatsby-starter-i18n-blog-master.png and /dev/null differ diff --git a/static/capture/jackbravo-gatsby-starter-i18n-blog.png b/static/capture/jackbravo-gatsby-starter-i18n-blog.png new file mode 100644 index 000000000..f55af5a3a Binary files /dev/null and b/static/capture/jackbravo-gatsby-starter-i18n-blog.png differ diff --git a/static/capture/jacobsun-edidor-master.png b/static/capture/jacobsun-edidor-master.png deleted file mode 100644 index d733acb1d..000000000 Binary files a/static/capture/jacobsun-edidor-master.png and /dev/null differ diff --git a/static/capture/jacobtomlinson-carte-noire-gh-pages.png b/static/capture/jacobtomlinson-carte-noire-gh-pages.png deleted file mode 100644 index 6b82a8f0f..000000000 Binary files a/static/capture/jacobtomlinson-carte-noire-gh-pages.png and /dev/null differ diff --git a/static/capture/jacobtomlinson-carte-noire.png b/static/capture/jacobtomlinson-carte-noire.png new file mode 100644 index 000000000..228abd829 Binary files /dev/null and b/static/capture/jacobtomlinson-carte-noire.png differ diff --git a/static/capture/jaden-twentyfourteen-master.png b/static/capture/jaden-twentyfourteen-master.png deleted file mode 100644 index d8361af9e..000000000 Binary files a/static/capture/jaden-twentyfourteen-master.png and /dev/null differ diff --git a/static/capture/jaehee0113-console-master.png b/static/capture/jaehee0113-console-master.png deleted file mode 100644 index d1c3ac6ab..000000000 Binary files a/static/capture/jaehee0113-console-master.png and /dev/null differ diff --git a/static/capture/jaehee0113-console.png b/static/capture/jaehee0113-console.png new file mode 100644 index 000000000..52b6022f8 Binary files /dev/null and b/static/capture/jaehee0113-console.png differ diff --git a/static/capture/jaeyeophan-gatsby-starter-bee-master.png b/static/capture/jaeyeophan-gatsby-starter-bee-master.png deleted file mode 100644 index d371dbaf3..000000000 Binary files a/static/capture/jaeyeophan-gatsby-starter-bee-master.png and /dev/null differ diff --git a/static/capture/jaeyeophan-gatsby-starter-bee.png b/static/capture/jaeyeophan-gatsby-starter-bee.png new file mode 100644 index 000000000..4e308ee71 Binary files /dev/null and b/static/capture/jaeyeophan-gatsby-starter-bee.png differ diff --git a/static/capture/jake-101-bael-template-master.png b/static/capture/jake-101-bael-template-master.png deleted file mode 100644 index 4a1cb5cfc..000000000 Binary files a/static/capture/jake-101-bael-template-master.png and /dev/null differ diff --git a/static/capture/jake-101-bael-template.png b/static/capture/jake-101-bael-template.png new file mode 100644 index 000000000..0c5bf4054 Binary files /dev/null and b/static/capture/jake-101-bael-template.png differ diff --git a/static/capture/jameshamann-jekyll-material-theme-master.png b/static/capture/jameshamann-jekyll-material-theme-master.png deleted file mode 100644 index 16c205ce3..000000000 Binary files a/static/capture/jameshamann-jekyll-material-theme-master.png and /dev/null differ diff --git a/static/capture/jameshamann-jekyll-material-theme.png b/static/capture/jameshamann-jekyll-material-theme.png new file mode 100644 index 000000000..e288a91ac Binary files /dev/null and b/static/capture/jameshamann-jekyll-material-theme.png differ diff --git a/static/capture/jamigibbs-phantom-master.png b/static/capture/jamigibbs-phantom-master.png deleted file mode 100644 index 3ad9652bc..000000000 Binary files a/static/capture/jamigibbs-phantom-master.png and /dev/null differ diff --git a/static/capture/jamigibbs-phantom.png b/static/capture/jamigibbs-phantom.png new file mode 100644 index 000000000..3e406eefe Binary files /dev/null and b/static/capture/jamigibbs-phantom.png differ diff --git a/static/capture/janczizikow-sleek-master.png b/static/capture/janczizikow-sleek-master.png deleted file mode 100644 index f60cd4763..000000000 Binary files a/static/capture/janczizikow-sleek-master.png and /dev/null differ diff --git a/static/capture/janczizikow-sleek.png b/static/capture/janczizikow-sleek.png new file mode 100644 index 000000000..5821aa694 Binary files /dev/null and b/static/capture/janczizikow-sleek.png differ diff --git a/static/capture/jannikbuschke-gatsby-antd-docs-master.png b/static/capture/jannikbuschke-gatsby-antd-docs-master.png deleted file mode 100644 index f3136af28..000000000 Binary files a/static/capture/jannikbuschke-gatsby-antd-docs-master.png and /dev/null differ diff --git a/static/capture/jannikbuschke-gatsby-antd-docs.png b/static/capture/jannikbuschke-gatsby-antd-docs.png new file mode 100644 index 000000000..807e5794f Binary files /dev/null and b/static/capture/jannikbuschke-gatsby-antd-docs.png differ diff --git a/static/capture/janraasch-hugo-scroll.png b/static/capture/janraasch-hugo-scroll.png new file mode 100644 index 000000000..49460c8ed Binary files /dev/null and b/static/capture/janraasch-hugo-scroll.png differ diff --git a/static/capture/jarrekk-jalpc-master.png b/static/capture/jarrekk-jalpc-master.png deleted file mode 100644 index 5d5a46bcc..000000000 Binary files a/static/capture/jarrekk-jalpc-master.png and /dev/null differ diff --git a/static/capture/jarrekk-jalpc.png b/static/capture/jarrekk-jalpc.png new file mode 100644 index 000000000..ef4a9a232 Binary files /dev/null and b/static/capture/jarrekk-jalpc.png differ diff --git a/static/capture/jasoncostello-slate-gh-pages.png b/static/capture/jasoncostello-slate-gh-pages.png deleted file mode 100644 index 19537179a..000000000 Binary files a/static/capture/jasoncostello-slate-gh-pages.png and /dev/null differ diff --git a/static/capture/jasoncostello-slate.png b/static/capture/jasoncostello-slate.png new file mode 100644 index 000000000..3ff5ea524 Binary files /dev/null and b/static/capture/jasoncostello-slate.png differ diff --git a/static/capture/jaymehta20-nextjs-blog-page.png b/static/capture/jaymehta20-nextjs-blog-page.png new file mode 100644 index 000000000..80441c7d7 Binary files /dev/null and b/static/capture/jaymehta20-nextjs-blog-page.png differ diff --git a/static/capture/jbub-ghostwriter-master.png b/static/capture/jbub-ghostwriter-master.png deleted file mode 100644 index c09e6b451..000000000 Binary files a/static/capture/jbub-ghostwriter-master.png and /dev/null differ diff --git a/static/capture/jdh8-sweet-16-master.png b/static/capture/jdh8-sweet-16-master.png deleted file mode 100644 index 35b35232e..000000000 Binary files a/static/capture/jdh8-sweet-16-master.png and /dev/null differ diff --git a/static/capture/jeblister-bulma-master.png b/static/capture/jeblister-bulma-master.png deleted file mode 100644 index d86603363..000000000 Binary files a/static/capture/jeblister-bulma-master.png and /dev/null differ diff --git a/static/capture/jeblister-kube-master.png b/static/capture/jeblister-kube-master.png deleted file mode 100644 index 113222894..000000000 Binary files a/static/capture/jeblister-kube-master.png and /dev/null differ diff --git a/static/capture/jeblister-kube.png b/static/capture/jeblister-kube.png new file mode 100644 index 000000000..e3c295092 Binary files /dev/null and b/static/capture/jeblister-kube.png differ diff --git a/static/capture/jeffreytse-jekyll-theme-yat-master.png b/static/capture/jeffreytse-jekyll-theme-yat-master.png deleted file mode 100644 index 58773edb4..000000000 Binary files a/static/capture/jeffreytse-jekyll-theme-yat-master.png and /dev/null differ diff --git a/static/capture/jeffreytse-jekyll-theme-yat.png b/static/capture/jeffreytse-jekyll-theme-yat.png new file mode 100644 index 000000000..c5131049d Binary files /dev/null and b/static/capture/jeffreytse-jekyll-theme-yat.png differ diff --git a/static/capture/jekyll-garden-jekyll-garden.github.io.png b/static/capture/jekyll-garden-jekyll-garden.github.io.png new file mode 100644 index 000000000..3294fd569 Binary files /dev/null and b/static/capture/jekyll-garden-jekyll-garden.github.io.png differ diff --git a/static/capture/jekyll-one-j1-template-starter.png b/static/capture/jekyll-one-j1-template-starter.png new file mode 100644 index 000000000..a1cc44845 Binary files /dev/null and b/static/capture/jekyll-one-j1-template-starter.png differ diff --git a/static/capture/jekyller-jasper2-master.png b/static/capture/jekyller-jasper2-master.png deleted file mode 100644 index e6019c1c0..000000000 Binary files a/static/capture/jekyller-jasper2-master.png and /dev/null differ diff --git a/static/capture/jekyller-online-cv-master.png b/static/capture/jekyller-online-cv-master.png deleted file mode 100644 index bd1f11986..000000000 Binary files a/static/capture/jekyller-online-cv-master.png and /dev/null differ diff --git a/static/capture/jekyller-online-cv.png b/static/capture/jekyller-online-cv.png new file mode 100644 index 000000000..bcaf12e0b Binary files /dev/null and b/static/capture/jekyller-online-cv.png differ diff --git a/static/capture/jekyller-panelcv-master.png b/static/capture/jekyller-panelcv-master.png deleted file mode 100644 index d08927111..000000000 Binary files a/static/capture/jekyller-panelcv-master.png and /dev/null differ diff --git a/static/capture/jekyller-panelcv.png b/static/capture/jekyller-panelcv.png new file mode 100644 index 000000000..e3e04ca1a Binary files /dev/null and b/static/capture/jekyller-panelcv.png differ diff --git a/static/capture/jekynewage-jekynewage.github.io-master.png b/static/capture/jekynewage-jekynewage.github.io-master.png deleted file mode 100644 index 4ee12ad02..000000000 Binary files a/static/capture/jekynewage-jekynewage.github.io-master.png and /dev/null differ diff --git a/static/capture/jekynewage-jekynewage.github.io.png b/static/capture/jekynewage-jekynewage.github.io.png new file mode 100644 index 000000000..9a25fad98 Binary files /dev/null and b/static/capture/jekynewage-jekynewage.github.io.png differ diff --git a/static/capture/jeromelachaud-freelancer-theme-master.png b/static/capture/jeromelachaud-freelancer-theme-master.png deleted file mode 100644 index d4c531539..000000000 Binary files a/static/capture/jeromelachaud-freelancer-theme-master.png and /dev/null differ diff --git a/static/capture/jeromelachaud-freelancer-theme.png b/static/capture/jeromelachaud-freelancer-theme.png new file mode 100644 index 000000000..dc25d66e4 Binary files /dev/null and b/static/capture/jeromelachaud-freelancer-theme.png differ diff --git a/static/capture/jeromelachaud-grayscale-theme-master.png b/static/capture/jeromelachaud-grayscale-theme-master.png deleted file mode 100644 index 6000d4b52..000000000 Binary files a/static/capture/jeromelachaud-grayscale-theme-master.png and /dev/null differ diff --git a/static/capture/jeromelachaud-grayscale-theme.png b/static/capture/jeromelachaud-grayscale-theme.png new file mode 100644 index 000000000..4a918b9cd Binary files /dev/null and b/static/capture/jeromelachaud-grayscale-theme.png differ diff --git a/static/capture/jerryc127-hexo-theme-butterfly-master.png b/static/capture/jerryc127-hexo-theme-butterfly-master.png deleted file mode 100644 index 821e94885..000000000 Binary files a/static/capture/jerryc127-hexo-theme-butterfly-master.png and /dev/null differ diff --git a/static/capture/jerryc127-hexo-theme-butterfly.png b/static/capture/jerryc127-hexo-theme-butterfly.png new file mode 100644 index 000000000..edb4d0fa7 Binary files /dev/null and b/static/capture/jerryc127-hexo-theme-butterfly.png differ diff --git a/static/capture/jesselau76-hugo-w3-simple-master.png b/static/capture/jesselau76-hugo-w3-simple-master.png deleted file mode 100644 index d61f11ca9..000000000 Binary files a/static/capture/jesselau76-hugo-w3-simple-master.png and /dev/null differ diff --git a/static/capture/jitinnair1-gradfolio.png b/static/capture/jitinnair1-gradfolio.png new file mode 100644 index 000000000..26bf80cd4 Binary files /dev/null and b/static/capture/jitinnair1-gradfolio.png differ diff --git a/static/capture/jjcav84-mdbreact-gatsby-starter-gh-pages.png b/static/capture/jjcav84-mdbreact-gatsby-starter-gh-pages.png deleted file mode 100644 index 63d2149bc..000000000 Binary files a/static/capture/jjcav84-mdbreact-gatsby-starter-gh-pages.png and /dev/null differ diff --git a/static/capture/jjcav84-mdbreact-gatsby-starter.png b/static/capture/jjcav84-mdbreact-gatsby-starter.png new file mode 100644 index 000000000..799ae3f43 Binary files /dev/null and b/static/capture/jjcav84-mdbreact-gatsby-starter.png differ diff --git a/static/capture/jkytoela-next-startd.png b/static/capture/jkytoela-next-startd.png new file mode 100644 index 000000000..c2638447d Binary files /dev/null and b/static/capture/jkytoela-next-startd.png differ diff --git a/static/capture/jmau111-gatsby-juma.png b/static/capture/jmau111-gatsby-juma.png new file mode 100644 index 000000000..d2b49968a Binary files /dev/null and b/static/capture/jmau111-gatsby-juma.png differ diff --git a/static/capture/jmau111-gatsby-nes.png b/static/capture/jmau111-gatsby-nes.png new file mode 100644 index 000000000..5a124d36a Binary files /dev/null and b/static/capture/jmau111-gatsby-nes.png differ diff --git a/static/capture/jmau111-hugo-theme-ava.png b/static/capture/jmau111-hugo-theme-ava.png new file mode 100644 index 000000000..ef00731ed Binary files /dev/null and b/static/capture/jmau111-hugo-theme-ava.png differ diff --git a/static/capture/jmschrack-dark-portfolio-template-11ty-dev.png b/static/capture/jmschrack-dark-portfolio-template-11ty-dev.png deleted file mode 100644 index 171068b2a..000000000 Binary files a/static/capture/jmschrack-dark-portfolio-template-11ty-dev.png and /dev/null differ diff --git a/static/capture/jmschrack-dark-portfolio-template-11ty.png b/static/capture/jmschrack-dark-portfolio-template-11ty.png new file mode 100644 index 000000000..18b7435f5 Binary files /dev/null and b/static/capture/jmschrack-dark-portfolio-template-11ty.png differ diff --git a/static/capture/jnjosh-internet-weblog-master.png b/static/capture/jnjosh-internet-weblog-master.png deleted file mode 100644 index 9d403f947..000000000 Binary files a/static/capture/jnjosh-internet-weblog-master.png and /dev/null differ diff --git a/static/capture/johncoene-marat-master.png b/static/capture/johncoene-marat-master.png deleted file mode 100644 index b7ad9b62b..000000000 Binary files a/static/capture/johncoene-marat-master.png and /dev/null differ diff --git a/static/capture/johncoene-marat.png b/static/capture/johncoene-marat.png new file mode 100644 index 000000000..12ecee71d Binary files /dev/null and b/static/capture/johncoene-marat.png differ diff --git a/static/capture/johnotander-pixyll-master.png b/static/capture/johnotander-pixyll-master.png deleted file mode 100644 index ea071caf5..000000000 Binary files a/static/capture/johnotander-pixyll-master.png and /dev/null differ diff --git a/static/capture/josephdyer-skeleventy-master.png b/static/capture/josephdyer-skeleventy-master.png deleted file mode 100644 index c78456afa..000000000 Binary files a/static/capture/josephdyer-skeleventy-master.png and /dev/null differ diff --git a/static/capture/josephdyer-skeleventy.png b/static/capture/josephdyer-skeleventy.png new file mode 100644 index 000000000..95b0a84e5 Binary files /dev/null and b/static/capture/josephdyer-skeleventy.png differ diff --git a/static/capture/josephhutch-aether-master.png b/static/capture/josephhutch-aether-master.png deleted file mode 100644 index d736e9c90..000000000 Binary files a/static/capture/josephhutch-aether-master.png and /dev/null differ diff --git a/static/capture/joshgerdes-jekyll-uno-master.png b/static/capture/joshgerdes-jekyll-uno-master.png deleted file mode 100644 index a2552a65b..000000000 Binary files a/static/capture/joshgerdes-jekyll-uno-master.png and /dev/null differ diff --git a/static/capture/joshgerdes-jekyll-uno.png b/static/capture/joshgerdes-jekyll-uno.png new file mode 100644 index 000000000..5296ee427 Binary files /dev/null and b/static/capture/joshgerdes-jekyll-uno.png differ diff --git a/static/capture/joshuaavalon-jekyll-avalon-master.png b/static/capture/joshuaavalon-jekyll-avalon-master.png deleted file mode 100644 index 453b18320..000000000 Binary files a/static/capture/joshuaavalon-jekyll-avalon-master.png and /dev/null differ diff --git a/static/capture/joshuaavalon-jekyll-avalon.png b/static/capture/joshuaavalon-jekyll-avalon.png new file mode 100644 index 000000000..42cab9b4f Binary files /dev/null and b/static/capture/joshuaavalon-jekyll-avalon.png differ diff --git a/static/capture/jota-ele-ene-just-me.png b/static/capture/jota-ele-ene-just-me.png new file mode 100644 index 000000000..f4830e793 Binary files /dev/null and b/static/capture/jota-ele-ene-just-me.png differ diff --git a/static/capture/joway-hugo-theme-yinyang-master.png b/static/capture/joway-hugo-theme-yinyang-master.png deleted file mode 100644 index d3bd9a074..000000000 Binary files a/static/capture/joway-hugo-theme-yinyang-master.png and /dev/null differ diff --git a/static/capture/joway-hugo-theme-yinyang.png b/static/capture/joway-hugo-theme-yinyang.png new file mode 100644 index 000000000..df9d61291 Binary files /dev/null and b/static/capture/joway-hugo-theme-yinyang.png differ diff --git a/static/capture/joytou-joytou.github.io-master.png b/static/capture/joytou-joytou.github.io-master.png deleted file mode 100644 index 6b25b2ff3..000000000 Binary files a/static/capture/joytou-joytou.github.io-master.png and /dev/null differ diff --git a/static/capture/joytou-joytou.github.io.png b/static/capture/joytou-joytou.github.io.png new file mode 100644 index 000000000..a304146c3 Binary files /dev/null and b/static/capture/joytou-joytou.github.io.png differ diff --git a/static/capture/jpanther-congo.png b/static/capture/jpanther-congo.png new file mode 100644 index 000000000..ba72c0f77 Binary files /dev/null and b/static/capture/jpanther-congo.png differ diff --git a/static/capture/jpanther-lynx.png b/static/capture/jpanther-lynx.png new file mode 100644 index 000000000..04dcf364c Binary files /dev/null and b/static/capture/jpanther-lynx.png differ diff --git a/static/capture/jpescador-hugo-future-imperfect-master.png b/static/capture/jpescador-hugo-future-imperfect-master.png deleted file mode 100644 index d1fd3733a..000000000 Binary files a/static/capture/jpescador-hugo-future-imperfect-master.png and /dev/null differ diff --git a/static/capture/jrutheiser-hugo-lithium-theme-master.png b/static/capture/jrutheiser-hugo-lithium-theme-master.png deleted file mode 100644 index 3f21a40fd..000000000 Binary files a/static/capture/jrutheiser-hugo-lithium-theme-master.png and /dev/null differ diff --git a/static/capture/jsappme-gridsome-shopify-starter-master.png b/static/capture/jsappme-gridsome-shopify-starter-master.png deleted file mode 100644 index f9b4a9a79..000000000 Binary files a/static/capture/jsappme-gridsome-shopify-starter-master.png and /dev/null differ diff --git a/static/capture/jsappme-gridsome-shopify-starter.png b/static/capture/jsappme-gridsome-shopify-starter.png new file mode 100644 index 000000000..262d4a432 Binary files /dev/null and b/static/capture/jsappme-gridsome-shopify-starter.png differ diff --git a/static/capture/jsnjack-hugo-changelog-theme-master.png b/static/capture/jsnjack-hugo-changelog-theme-master.png deleted file mode 100644 index 4ad7c29aa..000000000 Binary files a/static/capture/jsnjack-hugo-changelog-theme-master.png and /dev/null differ diff --git a/static/capture/jsnjack-kraiklyn-master.png b/static/capture/jsnjack-kraiklyn-master.png deleted file mode 100644 index 37148fbc3..000000000 Binary files a/static/capture/jsnjack-kraiklyn-master.png and /dev/null differ diff --git a/static/capture/jugglerx-gatsby-serif-theme-master.png b/static/capture/jugglerx-gatsby-serif-theme-master.png deleted file mode 100644 index 948179d78..000000000 Binary files a/static/capture/jugglerx-gatsby-serif-theme-master.png and /dev/null differ diff --git a/static/capture/jugglerx-gatsby-serif-theme.png b/static/capture/jugglerx-gatsby-serif-theme.png new file mode 100644 index 000000000..719b8079f Binary files /dev/null and b/static/capture/jugglerx-gatsby-serif-theme.png differ diff --git a/static/capture/jugglerx-hugo-hero-theme-master.png b/static/capture/jugglerx-hugo-hero-theme-master.png deleted file mode 100644 index 078d2a2b2..000000000 Binary files a/static/capture/jugglerx-hugo-hero-theme-master.png and /dev/null differ diff --git a/static/capture/jugglerx-hugo-hero-theme.png b/static/capture/jugglerx-hugo-hero-theme.png new file mode 100644 index 000000000..39a80b849 Binary files /dev/null and b/static/capture/jugglerx-hugo-hero-theme.png differ diff --git a/static/capture/jugglerx-hugo-whisper-theme-master.png b/static/capture/jugglerx-hugo-whisper-theme-master.png deleted file mode 100644 index 397b5e9f6..000000000 Binary files a/static/capture/jugglerx-hugo-whisper-theme-master.png and /dev/null differ diff --git a/static/capture/jugglerx-hugo-whisper-theme.png b/static/capture/jugglerx-hugo-whisper-theme.png new file mode 100644 index 000000000..57e29e238 Binary files /dev/null and b/static/capture/jugglerx-hugo-whisper-theme.png differ diff --git a/static/capture/jugglerx-jekyll-serif-theme-master.png b/static/capture/jugglerx-jekyll-serif-theme-master.png deleted file mode 100644 index e25d38b57..000000000 Binary files a/static/capture/jugglerx-jekyll-serif-theme-master.png and /dev/null differ diff --git a/static/capture/juhi-trivedi-cape-master.png b/static/capture/juhi-trivedi-cape-master.png deleted file mode 100644 index b83b1c5aa..000000000 Binary files a/static/capture/juhi-trivedi-cape-master.png and /dev/null differ diff --git a/static/capture/juhi-trivedi-cape.png b/static/capture/juhi-trivedi-cape.png new file mode 100644 index 000000000..e03c822cb Binary files /dev/null and b/static/capture/juhi-trivedi-cape.png differ diff --git a/static/capture/jumpalottahigh-gatsby-starter-blog-jumpalottahigh-master.png b/static/capture/jumpalottahigh-gatsby-starter-blog-jumpalottahigh-master.png deleted file mode 100644 index f7ca0e783..000000000 Binary files a/static/capture/jumpalottahigh-gatsby-starter-blog-jumpalottahigh-master.png and /dev/null differ diff --git a/static/capture/jumpalottahigh-gatsby-starter-blog-jumpalottahigh.png b/static/capture/jumpalottahigh-gatsby-starter-blog-jumpalottahigh.png new file mode 100644 index 000000000..6fe64c1ff Binary files /dev/null and b/static/capture/jumpalottahigh-gatsby-starter-blog-jumpalottahigh.png differ diff --git a/static/capture/junlulocky-popuptweets-gh-pages.png b/static/capture/junlulocky-popuptweets-gh-pages.png deleted file mode 100644 index 9cdc5ad8e..000000000 Binary files a/static/capture/junlulocky-popuptweets-gh-pages.png and /dev/null differ diff --git a/static/capture/junlulocky-popuptweets.png b/static/capture/junlulocky-popuptweets.png new file mode 100644 index 000000000..8e4128ea4 Binary files /dev/null and b/static/capture/junlulocky-popuptweets.png differ diff --git a/static/capture/justgoodthemes-blogbox-jekyll-theme.png b/static/capture/justgoodthemes-blogbox-jekyll-theme.png new file mode 100644 index 000000000..00f7a9b5b Binary files /dev/null and b/static/capture/justgoodthemes-blogbox-jekyll-theme.png differ diff --git a/static/capture/justgoodthemes-scriptor-jekyll-theme.png b/static/capture/justgoodthemes-scriptor-jekyll-theme.png new file mode 100644 index 000000000..5f71edfde Binary files /dev/null and b/static/capture/justgoodthemes-scriptor-jekyll-theme.png differ diff --git a/static/capture/justinformentin-gatsby-v2-tutorial-starter-master.png b/static/capture/justinformentin-gatsby-v2-tutorial-starter-master.png deleted file mode 100644 index 66356dba0..000000000 Binary files a/static/capture/justinformentin-gatsby-v2-tutorial-starter-master.png and /dev/null differ diff --git a/static/capture/justinformentin-gatsby-v2-tutorial-starter.png b/static/capture/justinformentin-gatsby-v2-tutorial-starter.png new file mode 100644 index 000000000..3900ea5f5 Binary files /dev/null and b/static/capture/justinformentin-gatsby-v2-tutorial-starter.png differ diff --git a/static/capture/jweslley-hugo-conference-master.png b/static/capture/jweslley-hugo-conference-master.png deleted file mode 100644 index 8737c246a..000000000 Binary files a/static/capture/jweslley-hugo-conference-master.png and /dev/null differ diff --git a/static/capture/jwillmer-jekylldecent-gh-pages.png b/static/capture/jwillmer-jekylldecent-gh-pages.png deleted file mode 100644 index 0dab53d54..000000000 Binary files a/static/capture/jwillmer-jekylldecent-gh-pages.png and /dev/null differ diff --git a/static/capture/jwillmer-jekylldecent.png b/static/capture/jwillmer-jekylldecent.png new file mode 100644 index 000000000..93fbea9f7 Binary files /dev/null and b/static/capture/jwillmer-jekylldecent.png differ diff --git a/static/capture/kakawait-hugo-tranquilpeak-theme-master.png b/static/capture/kakawait-hugo-tranquilpeak-theme-master.png deleted file mode 100644 index 00486724a..000000000 Binary files a/static/capture/kakawait-hugo-tranquilpeak-theme-master.png and /dev/null differ diff --git a/static/capture/kakawait-hugo-tranquilpeak-theme.png b/static/capture/kakawait-hugo-tranquilpeak-theme.png new file mode 100644 index 000000000..597a7d93f Binary files /dev/null and b/static/capture/kakawait-hugo-tranquilpeak-theme.png differ diff --git a/static/capture/kamikat-jekyll-theme-kagami-master.png b/static/capture/kamikat-jekyll-theme-kagami-master.png deleted file mode 100644 index 4fa5ce381..000000000 Binary files a/static/capture/kamikat-jekyll-theme-kagami-master.png and /dev/null differ diff --git a/static/capture/kamikat-jekyll-theme-kagami.png b/static/capture/kamikat-jekyll-theme-kagami.png new file mode 100644 index 000000000..319496e17 Binary files /dev/null and b/static/capture/kamikat-jekyll-theme-kagami.png differ diff --git a/static/capture/karloespiritu-blackdoc-master.png b/static/capture/karloespiritu-blackdoc-master.png deleted file mode 100644 index 3f023b90f..000000000 Binary files a/static/capture/karloespiritu-blackdoc-master.png and /dev/null differ diff --git a/static/capture/kausalflow-connectome-master.png b/static/capture/kausalflow-connectome-master.png deleted file mode 100644 index d836e90d2..000000000 Binary files a/static/capture/kausalflow-connectome-master.png and /dev/null differ diff --git a/static/capture/kausalflow-connectome.png b/static/capture/kausalflow-connectome.png new file mode 100644 index 000000000..43beea38c Binary files /dev/null and b/static/capture/kausalflow-connectome.png differ diff --git a/static/capture/kaushalmodi-hugo-bare-min-theme-master.png b/static/capture/kaushalmodi-hugo-bare-min-theme-master.png deleted file mode 100644 index 823610216..000000000 Binary files a/static/capture/kaushalmodi-hugo-bare-min-theme-master.png and /dev/null differ diff --git a/static/capture/kaushalmodi-hugo-bare-min-theme.png b/static/capture/kaushalmodi-hugo-bare-min-theme.png new file mode 100644 index 000000000..f3eecd758 Binary files /dev/null and b/static/capture/kaushalmodi-hugo-bare-min-theme.png differ diff --git a/static/capture/kazumasato-siera-master.png b/static/capture/kazumasato-siera-master.png deleted file mode 100644 index d125aefe7..000000000 Binary files a/static/capture/kazumasato-siera-master.png and /dev/null differ diff --git a/static/capture/kazumasato-siera.png b/static/capture/kazumasato-siera.png new file mode 100644 index 000000000..e4ee836b0 Binary files /dev/null and b/static/capture/kazumasato-siera.png differ diff --git a/static/capture/kc0bfv-autophugo-master.png b/static/capture/kc0bfv-autophugo-master.png deleted file mode 100644 index fd42a6874..000000000 Binary files a/static/capture/kc0bfv-autophugo-master.png and /dev/null differ diff --git a/static/capture/kc0bfv-autophugo.png b/static/capture/kc0bfv-autophugo.png new file mode 100644 index 000000000..222d224c2 Binary files /dev/null and b/static/capture/kc0bfv-autophugo.png differ diff --git a/static/capture/kc0bfv-ticky_tacky_dark-master.png b/static/capture/kc0bfv-ticky_tacky_dark-master.png deleted file mode 100644 index bffe521ca..000000000 Binary files a/static/capture/kc0bfv-ticky_tacky_dark-master.png and /dev/null differ diff --git a/static/capture/kc0bfv-ticky_tacky_dark.png b/static/capture/kc0bfv-ticky_tacky_dark.png new file mode 100644 index 000000000..4f4f5cb46 Binary files /dev/null and b/static/capture/kc0bfv-ticky_tacky_dark.png differ diff --git a/static/capture/kdevo-osprey-delight.png b/static/capture/kdevo-osprey-delight.png new file mode 100644 index 000000000..ce6f3f919 Binary files /dev/null and b/static/capture/kdevo-osprey-delight.png differ diff --git a/static/capture/kdheepak-pelican-smoothie-master.png b/static/capture/kdheepak-pelican-smoothie-master.png deleted file mode 100644 index 8277a26ba..000000000 Binary files a/static/capture/kdheepak-pelican-smoothie-master.png and /dev/null differ diff --git a/static/capture/kdheepak-pelican-smoothie.png b/static/capture/kdheepak-pelican-smoothie.png new file mode 100644 index 000000000..10d73ab97 Binary files /dev/null and b/static/capture/kdheepak-pelican-smoothie.png differ diff --git a/static/capture/keichi-vienna-master.png b/static/capture/keichi-vienna-master.png deleted file mode 100644 index c19d96baa..000000000 Binary files a/static/capture/keichi-vienna-master.png and /dev/null differ diff --git a/static/capture/kejunmao-jekyll-theme-mdui-master.png b/static/capture/kejunmao-jekyll-theme-mdui-master.png deleted file mode 100644 index a462cd862..000000000 Binary files a/static/capture/kejunmao-jekyll-theme-mdui-master.png and /dev/null differ diff --git a/static/capture/kendallstrautman-brevifolia-gatsby-forestry-master.png b/static/capture/kendallstrautman-brevifolia-gatsby-forestry-master.png deleted file mode 100644 index b77b59d03..000000000 Binary files a/static/capture/kendallstrautman-brevifolia-gatsby-forestry-master.png and /dev/null differ diff --git a/static/capture/kendallstrautman-brevifolia-gatsby-forestry.png b/static/capture/kendallstrautman-brevifolia-gatsby-forestry.png new file mode 100644 index 000000000..749c09148 Binary files /dev/null and b/static/capture/kendallstrautman-brevifolia-gatsby-forestry.png differ diff --git a/static/capture/kendallstrautman-brevifolia-gridsome-forestry-master.png b/static/capture/kendallstrautman-brevifolia-gridsome-forestry-master.png deleted file mode 100644 index 1b2b44e75..000000000 Binary files a/static/capture/kendallstrautman-brevifolia-gridsome-forestry-master.png and /dev/null differ diff --git a/static/capture/kendallstrautman-brevifolia-gridsome-forestry.png b/static/capture/kendallstrautman-brevifolia-gridsome-forestry.png new file mode 100644 index 000000000..994e2e18e Binary files /dev/null and b/static/capture/kendallstrautman-brevifolia-gridsome-forestry.png differ diff --git a/static/capture/kentico-gatsby-starter-kentico-cloud-master.png b/static/capture/kentico-gatsby-starter-kentico-cloud-master.png deleted file mode 100644 index 161d8c681..000000000 Binary files a/static/capture/kentico-gatsby-starter-kentico-cloud-master.png and /dev/null differ diff --git a/static/capture/kentico-gatsby-starter-kontent-lumen-master.png b/static/capture/kentico-gatsby-starter-kontent-lumen-master.png deleted file mode 100644 index f21fb3a9d..000000000 Binary files a/static/capture/kentico-gatsby-starter-kontent-lumen-master.png and /dev/null differ diff --git a/static/capture/kentico-gatsby-starter-kontent-lumen.png b/static/capture/kentico-gatsby-starter-kontent-lumen.png new file mode 100644 index 000000000..108f0780b Binary files /dev/null and b/static/capture/kentico-gatsby-starter-kontent-lumen.png differ diff --git a/static/capture/kentico-gatsby-starter-kontent-master.png b/static/capture/kentico-gatsby-starter-kontent-master.png deleted file mode 100644 index 487bb0799..000000000 Binary files a/static/capture/kentico-gatsby-starter-kontent-master.png and /dev/null differ diff --git a/static/capture/kentico-gatsby-starter-kontent.png b/static/capture/kentico-gatsby-starter-kontent.png new file mode 100644 index 000000000..3156c9dbf Binary files /dev/null and b/static/capture/kentico-gatsby-starter-kontent.png differ diff --git a/static/capture/kentico-kontent-boilerplate-statiq-net-master.png b/static/capture/kentico-kontent-boilerplate-statiq-net-master.png deleted file mode 100644 index f814defc5..000000000 Binary files a/static/capture/kentico-kontent-boilerplate-statiq-net-master.png and /dev/null differ diff --git a/static/capture/kentico-kontent-boilerplate-statiq-net.png b/static/capture/kentico-kontent-boilerplate-statiq-net.png new file mode 100644 index 000000000..a5f4aa3ae Binary files /dev/null and b/static/capture/kentico-kontent-boilerplate-statiq-net.png differ diff --git a/static/capture/kentico-kontent-jekyll-blog-master.png b/static/capture/kentico-kontent-jekyll-blog-master.png deleted file mode 100644 index 844022de4..000000000 Binary files a/static/capture/kentico-kontent-jekyll-blog-master.png and /dev/null differ diff --git a/static/capture/kentico-kontent-jekyll-blog.png b/static/capture/kentico-kontent-jekyll-blog.png new file mode 100644 index 000000000..621bf5966 Binary files /dev/null and b/static/capture/kentico-kontent-jekyll-blog.png differ diff --git a/static/capture/kentico-kontent-sample-dancing-goat-gridsome-master.png b/static/capture/kentico-kontent-sample-dancing-goat-gridsome-master.png deleted file mode 100644 index 5c6b63461..000000000 Binary files a/static/capture/kentico-kontent-sample-dancing-goat-gridsome-master.png and /dev/null differ diff --git a/static/capture/kentico-kontent-sample-dancing-goat-gridsome.png b/static/capture/kentico-kontent-sample-dancing-goat-gridsome.png new file mode 100644 index 000000000..ea44ec7df Binary files /dev/null and b/static/capture/kentico-kontent-sample-dancing-goat-gridsome.png differ diff --git a/static/capture/kentico-statiq-starter-kontent-lumen-master.png b/static/capture/kentico-statiq-starter-kontent-lumen.png similarity index 100% rename from static/capture/kentico-statiq-starter-kontent-lumen-master.png rename to static/capture/kentico-statiq-starter-kontent-lumen.png diff --git a/static/capture/kevit-devaid-jekyll-theme-master.png b/static/capture/kevit-devaid-jekyll-theme-master.png deleted file mode 100644 index 14b51ad4a..000000000 Binary files a/static/capture/kevit-devaid-jekyll-theme-master.png and /dev/null differ diff --git a/static/capture/kevit-devaid-jekyll-theme.png b/static/capture/kevit-devaid-jekyll-theme.png new file mode 100644 index 000000000..b8a5368ba Binary files /dev/null and b/static/capture/kevit-devaid-jekyll-theme.png differ diff --git a/static/capture/kimnagui-gatsby-starter-nagui-master.png b/static/capture/kimnagui-gatsby-starter-nagui-master.png deleted file mode 100644 index 1a06df222..000000000 Binary files a/static/capture/kimnagui-gatsby-starter-nagui-master.png and /dev/null differ diff --git a/static/capture/kingfelix-emerald-master.png b/static/capture/kingfelix-emerald-master.png deleted file mode 100644 index 8ce280785..000000000 Binary files a/static/capture/kingfelix-emerald-master.png and /dev/null differ diff --git a/static/capture/kishaningithub-hugo-creative-portfolio-theme-master.png b/static/capture/kishaningithub-hugo-creative-portfolio-theme-master.png deleted file mode 100644 index 8f3b993b3..000000000 Binary files a/static/capture/kishaningithub-hugo-creative-portfolio-theme-master.png and /dev/null differ diff --git a/static/capture/kitian616-jekyll-text-theme-master.png b/static/capture/kitian616-jekyll-text-theme-master.png deleted file mode 100644 index 45bc49569..000000000 Binary files a/static/capture/kitian616-jekyll-text-theme-master.png and /dev/null differ diff --git a/static/capture/kitian616-jekyll-text-theme.png b/static/capture/kitian616-jekyll-text-theme.png new file mode 100644 index 000000000..5c81e2eb4 Binary files /dev/null and b/static/capture/kitian616-jekyll-text-theme.png differ diff --git a/static/capture/kkninjae-book-master.png b/static/capture/kkninjae-book-master.png deleted file mode 100644 index 0bb1d2454..000000000 Binary files a/static/capture/kkninjae-book-master.png and /dev/null differ diff --git a/static/capture/klugjo-hexo-theme-alpha-dust-master.png b/static/capture/klugjo-hexo-theme-alpha-dust-master.png deleted file mode 100644 index 12cbcfd56..000000000 Binary files a/static/capture/klugjo-hexo-theme-alpha-dust-master.png and /dev/null differ diff --git a/static/capture/klugjo-hexo-theme-alpha-dust.png b/static/capture/klugjo-hexo-theme-alpha-dust.png new file mode 100644 index 000000000..64fc20a50 Binary files /dev/null and b/static/capture/klugjo-hexo-theme-alpha-dust.png differ diff --git a/static/capture/klugjo-hexo-theme-anodyne-master.png b/static/capture/klugjo-hexo-theme-anodyne-master.png deleted file mode 100644 index 5f5826c77..000000000 Binary files a/static/capture/klugjo-hexo-theme-anodyne-master.png and /dev/null differ diff --git a/static/capture/klugjo-hexo-theme-anodyne.png b/static/capture/klugjo-hexo-theme-anodyne.png new file mode 100644 index 000000000..d9e3f4c13 Binary files /dev/null and b/static/capture/klugjo-hexo-theme-anodyne.png differ diff --git a/static/capture/klugjo-hexo-theme-clean-blog-master.png b/static/capture/klugjo-hexo-theme-clean-blog-master.png deleted file mode 100644 index d53e503c9..000000000 Binary files a/static/capture/klugjo-hexo-theme-clean-blog-master.png and /dev/null differ diff --git a/static/capture/klugjo-hexo-theme-clean-blog.png b/static/capture/klugjo-hexo-theme-clean-blog.png new file mode 100644 index 000000000..7983466e8 Binary files /dev/null and b/static/capture/klugjo-hexo-theme-clean-blog.png differ diff --git a/static/capture/klugjo-hexo-theme-phantom-master.png b/static/capture/klugjo-hexo-theme-phantom-master.png deleted file mode 100644 index 411b0cf49..000000000 Binary files a/static/capture/klugjo-hexo-theme-phantom-master.png and /dev/null differ diff --git a/static/capture/klugjo-hexo-theme-phantom.png b/static/capture/klugjo-hexo-theme-phantom.png new file mode 100644 index 000000000..7fb0e87ad Binary files /dev/null and b/static/capture/klugjo-hexo-theme-phantom.png differ diff --git a/static/capture/knaman2609-clean-master.png b/static/capture/knaman2609-clean-master.png deleted file mode 100644 index 03ea73c71..000000000 Binary files a/static/capture/knaman2609-clean-master.png and /dev/null differ diff --git a/static/capture/knaman2609-clean.png b/static/capture/knaman2609-clean.png new file mode 100644 index 000000000..607def8d5 Binary files /dev/null and b/static/capture/knaman2609-clean.png differ diff --git a/static/capture/knhash-jekyllbear.png b/static/capture/knhash-jekyllbear.png new file mode 100644 index 000000000..3a0473651 Binary files /dev/null and b/static/capture/knhash-jekyllbear.png differ diff --git a/static/capture/knhash-pudhina-master.png b/static/capture/knhash-pudhina-master.png deleted file mode 100644 index df1e180c8..000000000 Binary files a/static/capture/knhash-pudhina-master.png and /dev/null differ diff --git a/static/capture/knhash-pudhina.png b/static/capture/knhash-pudhina.png new file mode 100644 index 000000000..f67be2de9 Binary files /dev/null and b/static/capture/knhash-pudhina.png differ diff --git a/static/capture/knightjdr-gatsby-starter-scientist-master.png b/static/capture/knightjdr-gatsby-starter-scientist-master.png deleted file mode 100644 index 56340df3b..000000000 Binary files a/static/capture/knightjdr-gatsby-starter-scientist-master.png and /dev/null differ diff --git a/static/capture/knightjdr-gatsby-starter-scientist.png b/static/capture/knightjdr-gatsby-starter-scientist.png new file mode 100644 index 000000000..2c8ec6d3e Binary files /dev/null and b/static/capture/knightjdr-gatsby-starter-scientist.png differ diff --git a/static/capture/koirand-pulp-master.png b/static/capture/koirand-pulp-master.png deleted file mode 100644 index d954b9e46..000000000 Binary files a/static/capture/koirand-pulp-master.png and /dev/null differ diff --git a/static/capture/konsumer-gatsby-starter-bootstrap-netlify-master.png b/static/capture/konsumer-gatsby-starter-bootstrap-netlify-master.png deleted file mode 100644 index 704cb30ee..000000000 Binary files a/static/capture/konsumer-gatsby-starter-bootstrap-netlify-master.png and /dev/null differ diff --git a/static/capture/konsumer-gatsby-starter-bootstrap-netlify.png b/static/capture/konsumer-gatsby-starter-bootstrap-netlify.png new file mode 100644 index 000000000..8c2eb438f Binary files /dev/null and b/static/capture/konsumer-gatsby-starter-bootstrap-netlify.png differ diff --git a/static/capture/kronik3r-daktilo-master.png b/static/capture/kronik3r-daktilo-master.png deleted file mode 100644 index 2169e9526..000000000 Binary files a/static/capture/kronik3r-daktilo-master.png and /dev/null differ diff --git a/static/capture/kronik3r-daktilo.png b/static/capture/kronik3r-daktilo.png new file mode 100644 index 000000000..a305c0fe7 Binary files /dev/null and b/static/capture/kronik3r-daktilo.png differ diff --git a/static/capture/kulacino-bajawa.png b/static/capture/kulacino-bajawa.png new file mode 100644 index 000000000..f2cf813fe Binary files /dev/null and b/static/capture/kulacino-bajawa.png differ diff --git a/static/capture/kun8018-gatsby-starter-icarus-blog.png b/static/capture/kun8018-gatsby-starter-icarus-blog.png new file mode 100644 index 000000000..d31f40f33 Binary files /dev/null and b/static/capture/kun8018-gatsby-starter-icarus-blog.png differ diff --git a/static/capture/kuntoaji-dekyll-master.png b/static/capture/kuntoaji-dekyll-master.png deleted file mode 100644 index 67ec6ac5a..000000000 Binary files a/static/capture/kuntoaji-dekyll-master.png and /dev/null differ diff --git a/static/capture/kuntoaji-dekyll.png b/static/capture/kuntoaji-dekyll.png new file mode 100644 index 000000000..40c5366d1 Binary files /dev/null and b/static/capture/kuntoaji-dekyll.png differ diff --git a/static/capture/kxxvii-kikofri-master.png b/static/capture/kxxvii-kikofri-master.png deleted file mode 100644 index 3674048c6..000000000 Binary files a/static/capture/kxxvii-kikofri-master.png and /dev/null differ diff --git a/static/capture/kxxvii-kikofri.png b/static/capture/kxxvii-kikofri.png new file mode 100644 index 000000000..10eb438d1 Binary files /dev/null and b/static/capture/kxxvii-kikofri.png differ diff --git a/static/capture/laixintao-princess-diaries-master.png b/static/capture/laixintao-princess-diaries-master.png deleted file mode 100644 index 44314d448..000000000 Binary files a/static/capture/laixintao-princess-diaries-master.png and /dev/null differ diff --git a/static/capture/laixintao-princess-diaries.png b/static/capture/laixintao-princess-diaries.png new file mode 100644 index 000000000..9777d4d6f Binary files /dev/null and b/static/capture/laixintao-princess-diaries.png differ diff --git a/static/capture/laobubu-jekyll-theme-easybook-gh-pages.png b/static/capture/laobubu-jekyll-theme-easybook-gh-pages.png deleted file mode 100644 index dcdc97ced..000000000 Binary files a/static/capture/laobubu-jekyll-theme-easybook-gh-pages.png and /dev/null differ diff --git a/static/capture/lasseborly-anybodyhome-master.png b/static/capture/lasseborly-anybodyhome-master.png deleted file mode 100644 index 92a3087ac..000000000 Binary files a/static/capture/lasseborly-anybodyhome-master.png and /dev/null differ diff --git a/static/capture/lauragift21-gridsome-minimal-blog-master.png b/static/capture/lauragift21-gridsome-minimal-blog-master.png deleted file mode 100644 index 880f96058..000000000 Binary files a/static/capture/lauragift21-gridsome-minimal-blog-master.png and /dev/null differ diff --git a/static/capture/lauragift21-gridsome-minimal-blog.png b/static/capture/lauragift21-gridsome-minimal-blog.png new file mode 100644 index 000000000..aa5975a4c Binary files /dev/null and b/static/capture/lauragift21-gridsome-minimal-blog.png differ diff --git a/static/capture/lavkumarv-feature-blog-jekyll-master.png b/static/capture/lavkumarv-feature-blog-jekyll-master.png deleted file mode 100644 index 26318b898..000000000 Binary files a/static/capture/lavkumarv-feature-blog-jekyll-master.png and /dev/null differ diff --git a/static/capture/lavkumarv-feature-blog-jekyll.png b/static/capture/lavkumarv-feature-blog-jekyll.png new file mode 100644 index 000000000..95b4f60be Binary files /dev/null and b/static/capture/lavkumarv-feature-blog-jekyll.png differ diff --git a/static/capture/le4ker-personal-jekyll-theme-master.png b/static/capture/le4ker-personal-jekyll-theme-master.png deleted file mode 100644 index 4cbc92981..000000000 Binary files a/static/capture/le4ker-personal-jekyll-theme-master.png and /dev/null differ diff --git a/static/capture/le4ker-personal-jekyll-theme.png b/static/capture/le4ker-personal-jekyll-theme.png new file mode 100644 index 000000000..e6223e966 Binary files /dev/null and b/static/capture/le4ker-personal-jekyll-theme.png differ diff --git a/static/capture/lednerb-bilberry-hugo-theme-master.png b/static/capture/lednerb-bilberry-hugo-theme-master.png deleted file mode 100644 index 80316de56..000000000 Binary files a/static/capture/lednerb-bilberry-hugo-theme-master.png and /dev/null differ diff --git a/static/capture/lednerb-bilberry-hugo-theme.png b/static/capture/lednerb-bilberry-hugo-theme.png new file mode 100644 index 000000000..852746ecc Binary files /dev/null and b/static/capture/lednerb-bilberry-hugo-theme.png differ diff --git a/static/capture/lekoarts-gatsby-starter-minimal-blog-master.png b/static/capture/lekoarts-gatsby-starter-minimal-blog-master.png deleted file mode 100644 index a561f1df9..000000000 Binary files a/static/capture/lekoarts-gatsby-starter-minimal-blog-master.png and /dev/null differ diff --git a/static/capture/lekoarts-gatsby-starter-minimal-blog.png b/static/capture/lekoarts-gatsby-starter-minimal-blog.png new file mode 100644 index 000000000..fb1aa67da Binary files /dev/null and b/static/capture/lekoarts-gatsby-starter-minimal-blog.png differ diff --git a/static/capture/lekoarts-gatsby-starter-portfolio-bella-master.png b/static/capture/lekoarts-gatsby-starter-portfolio-bella-master.png deleted file mode 100644 index 4e5654e75..000000000 Binary files a/static/capture/lekoarts-gatsby-starter-portfolio-bella-master.png and /dev/null differ diff --git a/static/capture/lekoarts-gatsby-starter-portfolio-bella.png b/static/capture/lekoarts-gatsby-starter-portfolio-bella.png new file mode 100644 index 000000000..637bea96b Binary files /dev/null and b/static/capture/lekoarts-gatsby-starter-portfolio-bella.png differ diff --git a/static/capture/lekoarts-gatsby-starter-portfolio-cara-master.png b/static/capture/lekoarts-gatsby-starter-portfolio-cara-master.png deleted file mode 100644 index 0c1a9153e..000000000 Binary files a/static/capture/lekoarts-gatsby-starter-portfolio-cara-master.png and /dev/null differ diff --git a/static/capture/lekoarts-gatsby-starter-portfolio-cara.png b/static/capture/lekoarts-gatsby-starter-portfolio-cara.png new file mode 100644 index 000000000..5aff19f6c Binary files /dev/null and b/static/capture/lekoarts-gatsby-starter-portfolio-cara.png differ diff --git a/static/capture/lekoarts-gatsby-starter-portfolio-emilia-master.png b/static/capture/lekoarts-gatsby-starter-portfolio-emilia-master.png deleted file mode 100644 index fc45b6fd8..000000000 Binary files a/static/capture/lekoarts-gatsby-starter-portfolio-emilia-master.png and /dev/null differ diff --git a/static/capture/lekoarts-gatsby-starter-portfolio-emilia.png b/static/capture/lekoarts-gatsby-starter-portfolio-emilia.png new file mode 100644 index 000000000..3dcd44053 Binary files /dev/null and b/static/capture/lekoarts-gatsby-starter-portfolio-emilia.png differ diff --git a/static/capture/lekoarts-gatsby-starter-portfolio-emma-master.png b/static/capture/lekoarts-gatsby-starter-portfolio-emma-master.png deleted file mode 100644 index 55b4b8ab1..000000000 Binary files a/static/capture/lekoarts-gatsby-starter-portfolio-emma-master.png and /dev/null differ diff --git a/static/capture/lekoarts-gatsby-starter-portfolio-emma.png b/static/capture/lekoarts-gatsby-starter-portfolio-emma.png new file mode 100644 index 000000000..dc4847b4b Binary files /dev/null and b/static/capture/lekoarts-gatsby-starter-portfolio-emma.png differ diff --git a/static/capture/lekoarts-gatsby-starter-portfolio-jodie-master.png b/static/capture/lekoarts-gatsby-starter-portfolio-jodie-master.png deleted file mode 100644 index 86ce4446b..000000000 Binary files a/static/capture/lekoarts-gatsby-starter-portfolio-jodie-master.png and /dev/null differ diff --git a/static/capture/lekoarts-gatsby-starter-portfolio-jodie.png b/static/capture/lekoarts-gatsby-starter-portfolio-jodie.png new file mode 100644 index 000000000..d3069a1a9 Binary files /dev/null and b/static/capture/lekoarts-gatsby-starter-portfolio-jodie.png differ diff --git a/static/capture/lekoarts-gatsby-starter-prismic-i18n-master.png b/static/capture/lekoarts-gatsby-starter-prismic-i18n.png similarity index 100% rename from static/capture/lekoarts-gatsby-starter-prismic-i18n-master.png rename to static/capture/lekoarts-gatsby-starter-prismic-i18n.png diff --git a/static/capture/lekovicmilos-gatsby-starter-portfolio-master.png b/static/capture/lekovicmilos-gatsby-starter-portfolio-master.png deleted file mode 100644 index fe3a0b8aa..000000000 Binary files a/static/capture/lekovicmilos-gatsby-starter-portfolio-master.png and /dev/null differ diff --git a/static/capture/lekovicmilos-gatsby-starter-portfolio.png b/static/capture/lekovicmilos-gatsby-starter-portfolio.png new file mode 100644 index 000000000..1796d7ec8 Binary files /dev/null and b/static/capture/lekovicmilos-gatsby-starter-portfolio.png differ diff --git a/static/capture/lenpaul-academic.png b/static/capture/lenpaul-academic.png new file mode 100644 index 000000000..b0427d639 Binary files /dev/null and b/static/capture/lenpaul-academic.png differ diff --git a/static/capture/lenpaul-lagrange-gh-pages.png b/static/capture/lenpaul-lagrange-gh-pages.png deleted file mode 100644 index 30432aec2..000000000 Binary files a/static/capture/lenpaul-lagrange-gh-pages.png and /dev/null differ diff --git a/static/capture/lenpaul-lagrange.png b/static/capture/lenpaul-lagrange.png new file mode 100644 index 000000000..44f809255 Binary files /dev/null and b/static/capture/lenpaul-lagrange.png differ diff --git a/static/capture/lenpaul-millennial-gh-pages.png b/static/capture/lenpaul-millennial-gh-pages.png deleted file mode 100644 index 1573b87bd..000000000 Binary files a/static/capture/lenpaul-millennial-gh-pages.png and /dev/null differ diff --git a/static/capture/lenpaul-millennial.png b/static/capture/lenpaul-millennial.png new file mode 100644 index 000000000..b42345c1d Binary files /dev/null and b/static/capture/lenpaul-millennial.png differ diff --git a/static/capture/lenpaul-portfolio-jekyll-theme-gh-pages.png b/static/capture/lenpaul-portfolio-jekyll-theme-gh-pages.png deleted file mode 100644 index 9da6fa3cf..000000000 Binary files a/static/capture/lenpaul-portfolio-jekyll-theme-gh-pages.png and /dev/null differ diff --git a/static/capture/lenpaul-portfolio-jekyll-theme.png b/static/capture/lenpaul-portfolio-jekyll-theme.png new file mode 100644 index 000000000..2e08a2b9f Binary files /dev/null and b/static/capture/lenpaul-portfolio-jekyll-theme.png differ diff --git a/static/capture/leonhe-hugo_eiio-master.png b/static/capture/leonhe-hugo_eiio-master.png deleted file mode 100644 index 171ff7e7c..000000000 Binary files a/static/capture/leonhe-hugo_eiio-master.png and /dev/null differ diff --git a/static/capture/leopardpan-leopardpan.github.io-master.png b/static/capture/leopardpan-leopardpan.github.io-master.png deleted file mode 100644 index c7a742517..000000000 Binary files a/static/capture/leopardpan-leopardpan.github.io-master.png and /dev/null differ diff --git a/static/capture/lewislbr-lewis-gatsby-starter-blog-master.png b/static/capture/lewislbr-lewis-gatsby-starter-blog-master.png deleted file mode 100644 index 835a697f8..000000000 Binary files a/static/capture/lewislbr-lewis-gatsby-starter-blog-master.png and /dev/null differ diff --git a/static/capture/lgaida-mediumish-gohugo-theme-master.png b/static/capture/lgaida-mediumish-gohugo-theme-master.png deleted file mode 100644 index 58a0e3d58..000000000 Binary files a/static/capture/lgaida-mediumish-gohugo-theme-master.png and /dev/null differ diff --git a/static/capture/lgaida-mediumish-gohugo-theme.png b/static/capture/lgaida-mediumish-gohugo-theme.png new file mode 100644 index 000000000..d662d7627 Binary files /dev/null and b/static/capture/lgaida-mediumish-gohugo-theme.png differ diff --git a/static/capture/lgcolella-gatsby-starter-developer-blog-master.png b/static/capture/lgcolella-gatsby-starter-developer-blog-master.png deleted file mode 100644 index bd2b44db0..000000000 Binary files a/static/capture/lgcolella-gatsby-starter-developer-blog-master.png and /dev/null differ diff --git a/static/capture/liberxue-liberxue.github.io-master.png b/static/capture/liberxue-liberxue.github.io-master.png deleted file mode 100644 index 661fc23a1..000000000 Binary files a/static/capture/liberxue-liberxue.github.io-master.png and /dev/null differ diff --git a/static/capture/liberxue-liberxue.github.io.png b/static/capture/liberxue-liberxue.github.io.png new file mode 100644 index 000000000..0d219f356 Binary files /dev/null and b/static/capture/liberxue-liberxue.github.io.png differ diff --git a/static/capture/lingxz-er-master.png b/static/capture/lingxz-er-master.png deleted file mode 100644 index bef564760..000000000 Binary files a/static/capture/lingxz-er-master.png and /dev/null differ diff --git a/static/capture/link9596-hydrogen-master.png b/static/capture/link9596-hydrogen-master.png deleted file mode 100644 index c96d37793..000000000 Binary files a/static/capture/link9596-hydrogen-master.png and /dev/null differ diff --git a/static/capture/link9596-hydrogen.png b/static/capture/link9596-hydrogen.png new file mode 100644 index 000000000..37a87ddd6 Binary files /dev/null and b/static/capture/link9596-hydrogen.png differ diff --git a/static/capture/link9596-jekyll-theme-hydrogen.png b/static/capture/link9596-jekyll-theme-hydrogen.png new file mode 100644 index 000000000..3319576fe Binary files /dev/null and b/static/capture/link9596-jekyll-theme-hydrogen.png differ diff --git a/static/capture/liungkejin-liungkejin.github.io-master.png b/static/capture/liungkejin-liungkejin.github.io-master.png deleted file mode 100644 index 623ae5178..000000000 Binary files a/static/capture/liungkejin-liungkejin.github.io-master.png and /dev/null differ diff --git a/static/capture/liungkejin-liungkejin.github.io.png b/static/capture/liungkejin-liungkejin.github.io.png new file mode 100644 index 000000000..f4c1f3c9d Binary files /dev/null and b/static/capture/liungkejin-liungkejin.github.io.png differ diff --git a/static/capture/liuzc-leaveit-master.png b/static/capture/liuzc-leaveit-master.png deleted file mode 100644 index e112fd8a3..000000000 Binary files a/static/capture/liuzc-leaveit-master.png and /dev/null differ diff --git a/static/capture/livingdocsio-gatsby-magazine-example-master.png b/static/capture/livingdocsio-gatsby-magazine-example-master.png deleted file mode 100644 index 3f9bf9e54..000000000 Binary files a/static/capture/livingdocsio-gatsby-magazine-example-master.png and /dev/null differ diff --git a/static/capture/livingdocsio-gatsby-magazine-example.png b/static/capture/livingdocsio-gatsby-magazine-example.png new file mode 100644 index 000000000..4e57e94c5 Binary files /dev/null and b/static/capture/livingdocsio-gatsby-magazine-example.png differ diff --git a/static/capture/lixizhi-lixizhi.github.io-master.png b/static/capture/lixizhi-lixizhi.github.io-master.png deleted file mode 100644 index 533d9ed08..000000000 Binary files a/static/capture/lixizhi-lixizhi.github.io-master.png and /dev/null differ diff --git a/static/capture/lixizhi-lixizhi.github.io.png b/static/capture/lixizhi-lixizhi.github.io.png new file mode 100644 index 000000000..7b54feaaf Binary files /dev/null and b/static/capture/lixizhi-lixizhi.github.io.png differ diff --git a/static/capture/longpdo-neumorphism-master.png b/static/capture/longpdo-neumorphism-master.png deleted file mode 100644 index efbebb5ab..000000000 Binary files a/static/capture/longpdo-neumorphism-master.png and /dev/null differ diff --git a/static/capture/longpdo-neumorphism.png b/static/capture/longpdo-neumorphism.png new file mode 100644 index 000000000..e7455b142 Binary files /dev/null and b/static/capture/longpdo-neumorphism.png differ diff --git a/static/capture/lordmathis-hugo-theme-nix-master.png b/static/capture/lordmathis-hugo-theme-nix-master.png deleted file mode 100644 index 0a767f8fb..000000000 Binary files a/static/capture/lordmathis-hugo-theme-nix-master.png and /dev/null differ diff --git a/static/capture/lorepirri-cayman-blog-master.png b/static/capture/lorepirri-cayman-blog-master.png deleted file mode 100644 index 38875ec79..000000000 Binary files a/static/capture/lorepirri-cayman-blog-master.png and /dev/null differ diff --git a/static/capture/lorepirri-cayman-blog.png b/static/capture/lorepirri-cayman-blog.png new file mode 100644 index 000000000..9156b730d Binary files /dev/null and b/static/capture/lorepirri-cayman-blog.png differ diff --git a/static/capture/lorepirri-jekyll-theme-simple-blog-master.png b/static/capture/lorepirri-jekyll-theme-simple-blog-master.png deleted file mode 100644 index 3192d2215..000000000 Binary files a/static/capture/lorepirri-jekyll-theme-simple-blog-master.png and /dev/null differ diff --git a/static/capture/loveminimal-hugo-theme-virgo.png b/static/capture/loveminimal-hugo-theme-virgo.png new file mode 100644 index 000000000..e34474d5d Binary files /dev/null and b/static/capture/loveminimal-hugo-theme-virgo.png differ diff --git a/static/capture/lubang-hugo-hello-programmer-theme-master.png b/static/capture/lubang-hugo-hello-programmer-theme-master.png deleted file mode 100644 index 9adbb412d..000000000 Binary files a/static/capture/lubang-hugo-hello-programmer-theme-master.png and /dev/null differ diff --git a/static/capture/lubang-hugo-hello-programmer-theme.png b/static/capture/lubang-hugo-hello-programmer-theme.png new file mode 100644 index 000000000..ee52ece92 Binary files /dev/null and b/static/capture/lubang-hugo-hello-programmer-theme.png differ diff --git a/static/capture/lucaspulliese-next-ecommerce.png b/static/capture/lucaspulliese-next-ecommerce.png new file mode 100644 index 000000000..551794285 Binary files /dev/null and b/static/capture/lucaspulliese-next-ecommerce.png differ diff --git a/static/capture/luizdepra-hugo-coder-master.png b/static/capture/luizdepra-hugo-coder-master.png deleted file mode 100644 index 3be5bd1aa..000000000 Binary files a/static/capture/luizdepra-hugo-coder-master.png and /dev/null differ diff --git a/static/capture/lukewhitehouse-gatsby-starter-blog-with-lunr-master.png b/static/capture/lukewhitehouse-gatsby-starter-blog-with-lunr-master.png deleted file mode 100644 index d1feb01de..000000000 Binary files a/static/capture/lukewhitehouse-gatsby-starter-blog-with-lunr-master.png and /dev/null differ diff --git a/static/capture/lukewhitehouse-gatsby-starter-blog-with-lunr.png b/static/capture/lukewhitehouse-gatsby-starter-blog-with-lunr.png new file mode 100644 index 000000000..2bb50f611 Binary files /dev/null and b/static/capture/lukewhitehouse-gatsby-starter-blog-with-lunr.png differ diff --git a/static/capture/lunaceee-hexo-material-netlify-master.png b/static/capture/lunaceee-hexo-material-netlify-master.png deleted file mode 100644 index 1937949a5..000000000 Binary files a/static/capture/lunaceee-hexo-material-netlify-master.png and /dev/null differ diff --git a/static/capture/lunaceee-hexo-material-netlify.png b/static/capture/lunaceee-hexo-material-netlify.png new file mode 100644 index 000000000..3be9fce54 Binary files /dev/null and b/static/capture/lunaceee-hexo-material-netlify.png differ diff --git a/static/capture/lundgren2-gatsby-starter-github-api-master.png b/static/capture/lundgren2-gatsby-starter-github-api-master.png deleted file mode 100644 index 5269ef188..000000000 Binary files a/static/capture/lundgren2-gatsby-starter-github-api-master.png and /dev/null differ diff --git a/static/capture/lundgren2-gatsby-starter-github-api.png b/static/capture/lundgren2-gatsby-starter-github-api.png new file mode 100644 index 000000000..6f49592bc Binary files /dev/null and b/static/capture/lundgren2-gatsby-starter-github-api.png differ diff --git a/static/capture/luoyan35714-lessormore-master.png b/static/capture/luoyan35714-lessormore-master.png deleted file mode 100644 index 0b7abe149..000000000 Binary files a/static/capture/luoyan35714-lessormore-master.png and /dev/null differ diff --git a/static/capture/luoyan35714-lessormore.png b/static/capture/luoyan35714-lessormore.png new file mode 100644 index 000000000..e36a45d25 Binary files /dev/null and b/static/capture/luoyan35714-lessormore.png differ diff --git a/static/capture/lwojcik-eleventy-template-bliss.png b/static/capture/lwojcik-eleventy-template-bliss.png new file mode 100644 index 000000000..a8efea2f5 Binary files /dev/null and b/static/capture/lwojcik-eleventy-template-bliss.png differ diff --git a/static/capture/lwz7512-gatsby-netlify-identity-starter-master.png b/static/capture/lwz7512-gatsby-netlify-identity-starter-master.png deleted file mode 100644 index 6dd720bd3..000000000 Binary files a/static/capture/lwz7512-gatsby-netlify-identity-starter-master.png and /dev/null differ diff --git a/static/capture/lwz7512-gatsby-netlify-identity-starter.png b/static/capture/lwz7512-gatsby-netlify-identity-starter.png new file mode 100644 index 000000000..01587363d Binary files /dev/null and b/static/capture/lwz7512-gatsby-netlify-identity-starter.png differ diff --git a/static/capture/lwz7512-next-dev-studio.png b/static/capture/lwz7512-next-dev-studio.png new file mode 100644 index 000000000..654f24a34 Binary files /dev/null and b/static/capture/lwz7512-next-dev-studio.png differ diff --git a/static/capture/lwz7512-next-smooth-doc.png b/static/capture/lwz7512-next-smooth-doc.png new file mode 100644 index 000000000..c5e47f464 Binary files /dev/null and b/static/capture/lwz7512-next-smooth-doc.png differ diff --git a/static/capture/lwz7512-next-static-neve.png b/static/capture/lwz7512-next-static-neve.png new file mode 100644 index 000000000..f4c568db4 Binary files /dev/null and b/static/capture/lwz7512-next-static-neve.png differ diff --git a/static/capture/lxndrblz-anatole.png b/static/capture/lxndrblz-anatole.png new file mode 100644 index 000000000..64c797103 Binary files /dev/null and b/static/capture/lxndrblz-anatole.png differ diff --git a/static/capture/lyket-dev-nextjs-simple-blog-theme-main.png b/static/capture/lyket-dev-nextjs-simple-blog-theme-main.png deleted file mode 100644 index 67a44a969..000000000 Binary files a/static/capture/lyket-dev-nextjs-simple-blog-theme-main.png and /dev/null differ diff --git a/static/capture/lyket-dev-nextjs-simple-blog-theme.png b/static/capture/lyket-dev-nextjs-simple-blog-theme.png new file mode 100644 index 000000000..fac40269b Binary files /dev/null and b/static/capture/lyket-dev-nextjs-simple-blog-theme.png differ diff --git a/static/capture/macrod68-jekyll-materialize-starter-template-master.png b/static/capture/macrod68-jekyll-materialize-starter-template-master.png deleted file mode 100644 index f51db067d..000000000 Binary files a/static/capture/macrod68-jekyll-materialize-starter-template-master.png and /dev/null differ diff --git a/static/capture/madelyneriksen-gatsby-starter-tyra-master.png b/static/capture/madelyneriksen-gatsby-starter-tyra-master.png deleted file mode 100644 index 1c4f60d78..000000000 Binary files a/static/capture/madelyneriksen-gatsby-starter-tyra-master.png and /dev/null differ diff --git a/static/capture/madelyneriksen-gatsby-starter-tyra.png b/static/capture/madelyneriksen-gatsby-starter-tyra.png new file mode 100644 index 000000000..5c47d507e Binary files /dev/null and b/static/capture/madelyneriksen-gatsby-starter-tyra.png differ diff --git a/static/capture/madforjekyll-madforjekyll.github.io-master.png b/static/capture/madforjekyll-madforjekyll.github.io-master.png deleted file mode 100644 index 1dedbc091..000000000 Binary files a/static/capture/madforjekyll-madforjekyll.github.io-master.png and /dev/null differ diff --git a/static/capture/madforjekyll-madforjekyll.github.io.png b/static/capture/madforjekyll-madforjekyll.github.io.png new file mode 100644 index 000000000..56a495b41 Binary files /dev/null and b/static/capture/madforjekyll-madforjekyll.github.io.png differ diff --git a/static/capture/manid2-lone-wolf-theme-master.png b/static/capture/manid2-lone-wolf-theme-master.png deleted file mode 100644 index e995bd5f1..000000000 Binary files a/static/capture/manid2-lone-wolf-theme-master.png and /dev/null differ diff --git a/static/capture/manid2-lone-wolf-theme.png b/static/capture/manid2-lone-wolf-theme.png new file mode 100644 index 000000000..df8dd48c5 Binary files /dev/null and b/static/capture/manid2-lone-wolf-theme.png differ diff --git a/static/capture/marcanuy-hugotube-master.png b/static/capture/marcanuy-hugotube-master.png deleted file mode 100644 index 563c90b6b..000000000 Binary files a/static/capture/marcanuy-hugotube-master.png and /dev/null differ diff --git a/static/capture/marcanuy-hugotube.png b/static/capture/marcanuy-hugotube.png new file mode 100644 index 000000000..b3bd5aa73 Binary files /dev/null and b/static/capture/marcanuy-hugotube.png differ diff --git a/static/capture/marcanuy-simpleit-hugo-theme-master.png b/static/capture/marcanuy-simpleit-hugo-theme-master.png deleted file mode 100644 index 00760edae..000000000 Binary files a/static/capture/marcanuy-simpleit-hugo-theme-master.png and /dev/null differ diff --git a/static/capture/marcomelilli-gatsby-airtable-advanced-starter-master.png b/static/capture/marcomelilli-gatsby-airtable-advanced-starter-master.png deleted file mode 100644 index 7430bfb42..000000000 Binary files a/static/capture/marcomelilli-gatsby-airtable-advanced-starter-master.png and /dev/null differ diff --git a/static/capture/marcomelilli-gatsby-airtable-advanced-starter.png b/static/capture/marcomelilli-gatsby-airtable-advanced-starter.png new file mode 100644 index 000000000..352796816 Binary files /dev/null and b/static/capture/marcomelilli-gatsby-airtable-advanced-starter.png differ diff --git a/static/capture/marcusvirg-forty-master.png b/static/capture/marcusvirg-forty-master.png deleted file mode 100644 index e288715a0..000000000 Binary files a/static/capture/marcusvirg-forty-master.png and /dev/null differ diff --git a/static/capture/margueriteroth-gatsby-prismic-starter-prist-master.png b/static/capture/margueriteroth-gatsby-prismic-starter-prist-master.png deleted file mode 100644 index a06bac983..000000000 Binary files a/static/capture/margueriteroth-gatsby-prismic-starter-prist-master.png and /dev/null differ diff --git a/static/capture/margueriteroth-gatsby-prismic-starter-prist.png b/static/capture/margueriteroth-gatsby-prismic-starter-prist.png new file mode 100644 index 000000000..6a0f93099 Binary files /dev/null and b/static/capture/margueriteroth-gatsby-prismic-starter-prist.png differ diff --git a/static/capture/markoradak-gatsby-starter-storybook-master.png b/static/capture/markoradak-gatsby-starter-storybook-master.png deleted file mode 100644 index a1c6abb74..000000000 Binary files a/static/capture/markoradak-gatsby-starter-storybook-master.png and /dev/null differ diff --git a/static/capture/markoradak-gatsby-starter-storybook.png b/static/capture/markoradak-gatsby-starter-storybook.png new file mode 100644 index 000000000..39cbe743a Binary files /dev/null and b/static/capture/markoradak-gatsby-starter-storybook.png differ diff --git a/static/capture/matcornic-hugo-theme-learn-master.png b/static/capture/matcornic-hugo-theme-learn-master.png deleted file mode 100644 index f8c02b604..000000000 Binary files a/static/capture/matcornic-hugo-theme-learn-master.png and /dev/null differ diff --git a/static/capture/matcornic-hugo-theme-learn.png b/static/capture/matcornic-hugo-theme-learn.png new file mode 100644 index 000000000..caaef6a75 Binary files /dev/null and b/static/capture/matcornic-hugo-theme-learn.png differ diff --git a/static/capture/mateussmedeiros-blade-theme-master.png b/static/capture/mateussmedeiros-blade-theme-master.png deleted file mode 100644 index 25e6ccda0..000000000 Binary files a/static/capture/mateussmedeiros-blade-theme-master.png and /dev/null differ diff --git a/static/capture/mateussmedeiros-blade-theme.png b/static/capture/mateussmedeiros-blade-theme.png new file mode 100644 index 000000000..e19b0d848 Binary files /dev/null and b/static/capture/mateussmedeiros-blade-theme.png differ diff --git a/static/capture/mattbutton-silhouette-hugo-master.png b/static/capture/mattbutton-silhouette-hugo-master.png deleted file mode 100644 index 7125d64a1..000000000 Binary files a/static/capture/mattbutton-silhouette-hugo-master.png and /dev/null differ diff --git a/static/capture/mattgraham-leap-day-master.png b/static/capture/mattgraham-leap-day-master.png deleted file mode 100644 index d14855c63..000000000 Binary files a/static/capture/mattgraham-leap-day-master.png and /dev/null differ diff --git a/static/capture/mattgraham-leap-day.png b/static/capture/mattgraham-leap-day.png new file mode 100644 index 000000000..55b8cfc96 Binary files /dev/null and b/static/capture/mattgraham-leap-day.png differ diff --git a/static/capture/mattgraham-midnight-master.png b/static/capture/mattgraham-midnight-master.png deleted file mode 100644 index 29156cbfe..000000000 Binary files a/static/capture/mattgraham-midnight-master.png and /dev/null differ diff --git a/static/capture/mattgraham-midnight.png b/static/capture/mattgraham-midnight.png new file mode 100644 index 000000000..1fe5576aa Binary files /dev/null and b/static/capture/mattgraham-midnight.png differ diff --git a/static/capture/mattolson-middleman-bootstrap-template-master.png b/static/capture/mattolson-middleman-bootstrap-template-master.png deleted file mode 100644 index 0a7ac0795..000000000 Binary files a/static/capture/mattolson-middleman-bootstrap-template-master.png and /dev/null differ diff --git a/static/capture/mattolson-middleman-zurb-template-master.png b/static/capture/mattolson-middleman-zurb-template-master.png deleted file mode 100644 index b6c16a809..000000000 Binary files a/static/capture/mattolson-middleman-zurb-template-master.png and /dev/null differ diff --git a/static/capture/mattvh-solar-theme-jekyll-master.png b/static/capture/mattvh-solar-theme-jekyll-master.png deleted file mode 100644 index 4d04e1bd2..000000000 Binary files a/static/capture/mattvh-solar-theme-jekyll-master.png and /dev/null differ diff --git a/static/capture/mattvh-solar-theme-jekyll.png b/static/capture/mattvh-solar-theme-jekyll.png new file mode 100644 index 000000000..7b6eb219f Binary files /dev/null and b/static/capture/mattvh-solar-theme-jekyll.png differ diff --git a/static/capture/maxpou-gatsby-starter-morning-dew-master.png b/static/capture/maxpou-gatsby-starter-morning-dew-master.png deleted file mode 100644 index 6d9a688a4..000000000 Binary files a/static/capture/maxpou-gatsby-starter-morning-dew-master.png and /dev/null differ diff --git a/static/capture/maxpou-gatsby-starter-morning-dew.png b/static/capture/maxpou-gatsby-starter-morning-dew.png new file mode 100644 index 000000000..4bee34fe6 Binary files /dev/null and b/static/capture/maxpou-gatsby-starter-morning-dew.png differ diff --git a/static/capture/mazgi-hugo-theme-techlog-simple-master.png b/static/capture/mazgi-hugo-theme-techlog-simple-master.png deleted file mode 100644 index f6c28233d..000000000 Binary files a/static/capture/mazgi-hugo-theme-techlog-simple-master.png and /dev/null differ diff --git a/static/capture/mccrodp-gatsby-starter-contentful-i18n-master.png b/static/capture/mccrodp-gatsby-starter-contentful-i18n-master.png deleted file mode 100644 index a0a82867c..000000000 Binary files a/static/capture/mccrodp-gatsby-starter-contentful-i18n-master.png and /dev/null differ diff --git a/static/capture/mccrodp-gatsby-starter-contentful-i18n.png b/static/capture/mccrodp-gatsby-starter-contentful-i18n.png new file mode 100644 index 000000000..a85498af5 Binary files /dev/null and b/static/capture/mccrodp-gatsby-starter-contentful-i18n.png differ diff --git a/static/capture/mdrathik-nuxtjs-tailwind-blog.png b/static/capture/mdrathik-nuxtjs-tailwind-blog.png new file mode 100644 index 000000000..a25c9c87d Binary files /dev/null and b/static/capture/mdrathik-nuxtjs-tailwind-blog.png differ diff --git a/static/capture/meibenny-elephants-master.png b/static/capture/meibenny-elephants-master.png deleted file mode 100644 index 9979e5454..000000000 Binary files a/static/capture/meibenny-elephants-master.png and /dev/null differ diff --git a/static/capture/melangue-dactl-master.png b/static/capture/melangue-dactl-master.png deleted file mode 100644 index 8f5a6720e..000000000 Binary files a/static/capture/melangue-dactl-master.png and /dev/null differ diff --git a/static/capture/melangue-dactl.png b/static/capture/melangue-dactl.png new file mode 100644 index 000000000..5b4abbff0 Binary files /dev/null and b/static/capture/melangue-dactl.png differ diff --git a/static/capture/meliodus-meliodus.github.io-master.png b/static/capture/meliodus-meliodus.github.io-master.png deleted file mode 100644 index 29dcbb8f8..000000000 Binary files a/static/capture/meliodus-meliodus.github.io-master.png and /dev/null differ diff --git a/static/capture/meliodus-meliodus.github.io.png b/static/capture/meliodus-meliodus.github.io.png new file mode 100644 index 000000000..257b44dd7 Binary files /dev/null and b/static/capture/meliodus-meliodus.github.io.png differ diff --git a/static/capture/meliodus-uno-dbyll-gh-pages.png b/static/capture/meliodus-uno-dbyll-gh-pages.png deleted file mode 100644 index e413d3d0b..000000000 Binary files a/static/capture/meliodus-uno-dbyll-gh-pages.png and /dev/null differ diff --git a/static/capture/meliodus-uno-dbyll.png b/static/capture/meliodus-uno-dbyll.png new file mode 100644 index 000000000..54307e24c Binary files /dev/null and b/static/capture/meliodus-uno-dbyll.png differ diff --git a/static/capture/melvinchng-event-jekyll-theme-master.png b/static/capture/melvinchng-event-jekyll-theme-master.png deleted file mode 100644 index d8e56199b..000000000 Binary files a/static/capture/melvinchng-event-jekyll-theme-master.png and /dev/null differ diff --git a/static/capture/melvinchng-event-jekyll-theme.png b/static/capture/melvinchng-event-jekyll-theme.png new file mode 100644 index 000000000..0f403d356 Binary files /dev/null and b/static/capture/melvinchng-event-jekyll-theme.png differ diff --git a/static/capture/mendhak-eleventy-satisfactory.png b/static/capture/mendhak-eleventy-satisfactory.png new file mode 100644 index 000000000..bde69fe3d Binary files /dev/null and b/static/capture/mendhak-eleventy-satisfactory.png differ diff --git a/static/capture/meteorlxy-vuepress-theme-meteorlxy-master.png b/static/capture/meteorlxy-vuepress-theme-meteorlxy-master.png deleted file mode 100644 index 20827e81f..000000000 Binary files a/static/capture/meteorlxy-vuepress-theme-meteorlxy-master.png and /dev/null differ diff --git a/static/capture/meteorlxy-vuepress-theme-meteorlxy.png b/static/capture/meteorlxy-vuepress-theme-meteorlxy.png new file mode 100644 index 000000000..c2edfc241 Binary files /dev/null and b/static/capture/meteorlxy-vuepress-theme-meteorlxy.png differ diff --git a/static/capture/mhadaily-gatsby-starter-typescript-power-blog-master.png b/static/capture/mhadaily-gatsby-starter-typescript-power-blog-master.png deleted file mode 100644 index 7bc46950c..000000000 Binary files a/static/capture/mhadaily-gatsby-starter-typescript-power-blog-master.png and /dev/null differ diff --git a/static/capture/mhadaily-gatsby-starter-typescript-power-blog.png b/static/capture/mhadaily-gatsby-starter-typescript-power-blog.png new file mode 100644 index 000000000..92f89abea Binary files /dev/null and b/static/capture/mhadaily-gatsby-starter-typescript-power-blog.png differ diff --git a/static/capture/miccall-hexo-theme-mic_theme-master.png b/static/capture/miccall-hexo-theme-mic_theme-master.png deleted file mode 100644 index b0dda3f2c..000000000 Binary files a/static/capture/miccall-hexo-theme-mic_theme-master.png and /dev/null differ diff --git a/static/capture/midzer-urban-theme-master.png b/static/capture/midzer-urban-theme.png similarity index 100% rename from static/capture/midzer-urban-theme-master.png rename to static/capture/midzer-urban-theme.png diff --git a/static/capture/miguelsimoni-hugo-initio-master.png b/static/capture/miguelsimoni-hugo-initio-master.png deleted file mode 100644 index 21a6cdf93..000000000 Binary files a/static/capture/miguelsimoni-hugo-initio-master.png and /dev/null differ diff --git a/static/capture/mikeblum-hugo-now-master.png b/static/capture/mikeblum-hugo-now-master.png deleted file mode 100644 index ac4373f45..000000000 Binary files a/static/capture/mikeblum-hugo-now-master.png and /dev/null differ diff --git a/static/capture/minhhuy150894-minhhuy150894.github.io-master.png b/static/capture/minhhuy150894-minhhuy150894.github.io-master.png deleted file mode 100644 index f194bc791..000000000 Binary files a/static/capture/minhhuy150894-minhhuy150894.github.io-master.png and /dev/null differ diff --git a/static/capture/mmistakes-hpstr-jekyll-theme-master.png b/static/capture/mmistakes-hpstr-jekyll-theme-master.png deleted file mode 100644 index 859a0f88b..000000000 Binary files a/static/capture/mmistakes-hpstr-jekyll-theme-master.png and /dev/null differ diff --git a/static/capture/mmistakes-hpstr-jekyll-theme.png b/static/capture/mmistakes-hpstr-jekyll-theme.png new file mode 100644 index 000000000..189a4186c Binary files /dev/null and b/static/capture/mmistakes-hpstr-jekyll-theme.png differ diff --git a/static/capture/mmistakes-jekyll-theme-basically-basic-master.png b/static/capture/mmistakes-jekyll-theme-basically-basic-master.png deleted file mode 100644 index ea9d363c0..000000000 Binary files a/static/capture/mmistakes-jekyll-theme-basically-basic-master.png and /dev/null differ diff --git a/static/capture/mmistakes-jekyll-theme-basically-basic.png b/static/capture/mmistakes-jekyll-theme-basically-basic.png new file mode 100644 index 000000000..751e7405b Binary files /dev/null and b/static/capture/mmistakes-jekyll-theme-basically-basic.png differ diff --git a/static/capture/mmistakes-jekyll-theme-skinny-bones-master.png b/static/capture/mmistakes-jekyll-theme-skinny-bones-master.png deleted file mode 100644 index 09ad6a011..000000000 Binary files a/static/capture/mmistakes-jekyll-theme-skinny-bones-master.png and /dev/null differ diff --git a/static/capture/mmistakes-jekyll-theme-skinny-bones.png b/static/capture/mmistakes-jekyll-theme-skinny-bones.png new file mode 100644 index 000000000..4da96c542 Binary files /dev/null and b/static/capture/mmistakes-jekyll-theme-skinny-bones.png differ diff --git a/static/capture/mmistakes-minimal-mistakes-master.png b/static/capture/mmistakes-minimal-mistakes-master.png deleted file mode 100644 index 91face224..000000000 Binary files a/static/capture/mmistakes-minimal-mistakes-master.png and /dev/null differ diff --git a/static/capture/mmistakes-minimal-mistakes.png b/static/capture/mmistakes-minimal-mistakes.png new file mode 100644 index 000000000..03845f16d Binary files /dev/null and b/static/capture/mmistakes-minimal-mistakes.png differ diff --git a/static/capture/mmistakes-so-simple-theme-master.png b/static/capture/mmistakes-so-simple-theme-master.png deleted file mode 100644 index ebbaff0cc..000000000 Binary files a/static/capture/mmistakes-so-simple-theme-master.png and /dev/null differ diff --git a/static/capture/mmistakes-so-simple-theme.png b/static/capture/mmistakes-so-simple-theme.png new file mode 100644 index 000000000..90f8b0695 Binary files /dev/null and b/static/capture/mmistakes-so-simple-theme.png differ diff --git a/static/capture/mmrath-hugo-bootstrap-master.png b/static/capture/mmrath-hugo-bootstrap-master.png deleted file mode 100644 index b07b46a82..000000000 Binary files a/static/capture/mmrath-hugo-bootstrap-master.png and /dev/null differ diff --git a/static/capture/mohanmonu777-gatsby-starter-krisp-master.png b/static/capture/mohanmonu777-gatsby-starter-krisp-master.png deleted file mode 100644 index cdf05b07b..000000000 Binary files a/static/capture/mohanmonu777-gatsby-starter-krisp-master.png and /dev/null differ diff --git a/static/capture/mohanmonu777-gatsby-starter-krisp.png b/static/capture/mohanmonu777-gatsby-starter-krisp.png new file mode 100644 index 000000000..6c02dc586 Binary files /dev/null and b/static/capture/mohanmonu777-gatsby-starter-krisp.png differ diff --git a/static/capture/molebox-gatsby-theme-pocket-master.png b/static/capture/molebox-gatsby-theme-pocket-master.png deleted file mode 100644 index 91f82bdcf..000000000 Binary files a/static/capture/molebox-gatsby-theme-pocket-master.png and /dev/null differ diff --git a/static/capture/molebox-gatsby-theme-pocket.png b/static/capture/molebox-gatsby-theme-pocket.png new file mode 100644 index 000000000..0bb27b4be Binary files /dev/null and b/static/capture/molebox-gatsby-theme-pocket.png differ diff --git a/static/capture/moltin-gatsby-demo-store-master.png b/static/capture/moltin-gatsby-demo-store-master.png deleted file mode 100644 index 898143451..000000000 Binary files a/static/capture/moltin-gatsby-demo-store-master.png and /dev/null differ diff --git a/static/capture/moltin-gatsby-demo-store.png b/static/capture/moltin-gatsby-demo-store.png new file mode 100644 index 000000000..0d0679d48 Binary files /dev/null and b/static/capture/moltin-gatsby-demo-store.png differ diff --git a/static/capture/moonwave99-waffel-master.png b/static/capture/moonwave99-waffel-master.png deleted file mode 100644 index 41cfdc3ab..000000000 Binary files a/static/capture/moonwave99-waffel-master.png and /dev/null differ diff --git a/static/capture/moonwave99-waffel.png b/static/capture/moonwave99-waffel.png new file mode 100644 index 000000000..6a16b5cba Binary files /dev/null and b/static/capture/moonwave99-waffel.png differ diff --git a/static/capture/mrgreensworkshop-mrgreen-jekylltheme.png b/static/capture/mrgreensworkshop-mrgreen-jekylltheme.png new file mode 100644 index 000000000..a6049dfa3 Binary files /dev/null and b/static/capture/mrgreensworkshop-mrgreen-jekylltheme.png differ diff --git a/static/capture/muan-scribble-gh-pages.png b/static/capture/muan-scribble-gh-pages.png deleted file mode 100644 index 49e78c37d..000000000 Binary files a/static/capture/muan-scribble-gh-pages.png and /dev/null differ diff --git a/static/capture/muan-scribble.png b/static/capture/muan-scribble.png new file mode 100644 index 000000000..d7ba01695 Binary files /dev/null and b/static/capture/muan-scribble.png differ diff --git a/static/capture/mudassirgithub-next-basic-blog-master.png b/static/capture/mudassirgithub-next-basic-blog-master.png deleted file mode 100644 index 7c7deab83..000000000 Binary files a/static/capture/mudassirgithub-next-basic-blog-master.png and /dev/null differ diff --git a/static/capture/mudassirgithub-next-basic-blog.png b/static/capture/mudassirgithub-next-basic-blog.png new file mode 100644 index 000000000..dd8ccfcb8 Binary files /dev/null and b/static/capture/mudassirgithub-next-basic-blog.png differ diff --git a/static/capture/muenzpraeger-eleventy-chirpy-blog-template-main.png b/static/capture/muenzpraeger-eleventy-chirpy-blog-template-main.png deleted file mode 100644 index 10a73d3d4..000000000 Binary files a/static/capture/muenzpraeger-eleventy-chirpy-blog-template-main.png and /dev/null differ diff --git a/static/capture/muenzpraeger-eleventy-chirpy-blog-template.png b/static/capture/muenzpraeger-eleventy-chirpy-blog-template.png new file mode 100644 index 000000000..859b73c3f Binary files /dev/null and b/static/capture/muenzpraeger-eleventy-chirpy-blog-template.png differ diff --git a/static/capture/muhajirdev-gatsby-starter-firebase-master.png b/static/capture/muhajirdev-gatsby-starter-firebase-master.png deleted file mode 100644 index d067229b3..000000000 Binary files a/static/capture/muhajirdev-gatsby-starter-firebase-master.png and /dev/null differ diff --git a/static/capture/muhajirdev-gatsby-starter-firebase.png b/static/capture/muhajirdev-gatsby-starter-firebase.png new file mode 100644 index 000000000..b17f1cf84 Binary files /dev/null and b/static/capture/muhajirdev-gatsby-starter-firebase.png differ diff --git a/static/capture/muhajirdev-gatsby-starter-redux-firebase-master.png b/static/capture/muhajirdev-gatsby-starter-redux-firebase-master.png deleted file mode 100644 index c7a742517..000000000 Binary files a/static/capture/muhajirdev-gatsby-starter-redux-firebase-master.png and /dev/null differ diff --git a/static/capture/muhajirdev-gatsby-starter-redux-firebase.png b/static/capture/muhajirdev-gatsby-starter-redux-firebase.png new file mode 100644 index 000000000..b17f1cf84 Binary files /dev/null and b/static/capture/muhajirdev-gatsby-starter-redux-firebase.png differ diff --git a/static/capture/muhajirdev-gatsby-tailwind-emotion-starter-master.png b/static/capture/muhajirdev-gatsby-tailwind-emotion-starter-master.png deleted file mode 100644 index 98622aae2..000000000 Binary files a/static/capture/muhajirdev-gatsby-tailwind-emotion-starter-master.png and /dev/null differ diff --git a/static/capture/muhajirdev-gatsby-tailwind-emotion-starter.png b/static/capture/muhajirdev-gatsby-tailwind-emotion-starter.png new file mode 100644 index 000000000..365ebd623 Binary files /dev/null and b/static/capture/muhajirdev-gatsby-tailwind-emotion-starter.png differ diff --git a/static/capture/mumuxme-materialize-jekyll-master.png b/static/capture/mumuxme-materialize-jekyll-master.png deleted file mode 100644 index b5d2d84ae..000000000 Binary files a/static/capture/mumuxme-materialize-jekyll-master.png and /dev/null differ diff --git a/static/capture/mumuxme-materialize-jekyll.png b/static/capture/mumuxme-materialize-jekyll.png new file mode 100644 index 000000000..be68443c3 Binary files /dev/null and b/static/capture/mumuxme-materialize-jekyll.png differ diff --git a/static/capture/muniftanjim-minimo-master.png b/static/capture/muniftanjim-minimo-master.png deleted file mode 100644 index a393f5143..000000000 Binary files a/static/capture/muniftanjim-minimo-master.png and /dev/null differ diff --git a/static/capture/muniftanjim-minimo.png b/static/capture/muniftanjim-minimo.png new file mode 100644 index 000000000..2ab737a96 Binary files /dev/null and b/static/capture/muniftanjim-minimo.png differ diff --git a/static/capture/murraco-jekyll-theme-minimal-resume-master.png b/static/capture/murraco-jekyll-theme-minimal-resume-master.png deleted file mode 100644 index b616f7f43..000000000 Binary files a/static/capture/murraco-jekyll-theme-minimal-resume-master.png and /dev/null differ diff --git a/static/capture/murraco-jekyll-theme-minimal-resume.png b/static/capture/murraco-jekyll-theme-minimal-resume.png new file mode 100644 index 000000000..505273447 Binary files /dev/null and b/static/capture/murraco-jekyll-theme-minimal-resume.png differ diff --git a/static/capture/mushishi78-jekyll-video-gh-pages.png b/static/capture/mushishi78-jekyll-video-gh-pages.png deleted file mode 100644 index b4bdef70d..000000000 Binary files a/static/capture/mushishi78-jekyll-video-gh-pages.png and /dev/null differ diff --git a/static/capture/mushishi78-jekyll-video.png b/static/capture/mushishi78-jekyll-video.png new file mode 100644 index 000000000..90e0b6150 Binary files /dev/null and b/static/capture/mushishi78-jekyll-video.png differ diff --git a/static/capture/mushishi78-one-page-wonder-jekyll-gh-pages.png b/static/capture/mushishi78-one-page-wonder-jekyll-gh-pages.png deleted file mode 100644 index 908425f5a..000000000 Binary files a/static/capture/mushishi78-one-page-wonder-jekyll-gh-pages.png and /dev/null differ diff --git a/static/capture/mushishi78-one-page-wonder-jekyll.png b/static/capture/mushishi78-one-page-wonder-jekyll.png new file mode 100644 index 000000000..6c30429e0 Binary files /dev/null and b/static/capture/mushishi78-one-page-wonder-jekyll.png differ diff --git a/static/capture/mx3m-hikari-for-jekyll-gh-pages.png b/static/capture/mx3m-hikari-for-jekyll-gh-pages.png deleted file mode 100644 index 77beda2a2..000000000 Binary files a/static/capture/mx3m-hikari-for-jekyll-gh-pages.png and /dev/null differ diff --git a/static/capture/nadjetey-gridgallery-master.png b/static/capture/nadjetey-gridgallery-master.png deleted file mode 100644 index 77beda2a2..000000000 Binary files a/static/capture/nadjetey-gridgallery-master.png and /dev/null differ diff --git a/static/capture/nadjetey-redcup-master.png b/static/capture/nadjetey-redcup-master.png deleted file mode 100644 index 77beda2a2..000000000 Binary files a/static/capture/nadjetey-redcup-master.png and /dev/null differ diff --git a/static/capture/nadjetey-wangana-master.png b/static/capture/nadjetey-wangana-master.png deleted file mode 100644 index d82a6e51d..000000000 Binary files a/static/capture/nadjetey-wangana-master.png and /dev/null differ diff --git a/static/capture/nadjetey-wangana.png b/static/capture/nadjetey-wangana.png new file mode 100644 index 000000000..18628aa04 Binary files /dev/null and b/static/capture/nadjetey-wangana.png differ diff --git a/static/capture/nairobilug-pelican-alchemy-master.png b/static/capture/nairobilug-pelican-alchemy-master.png deleted file mode 100644 index 7a3a72640..000000000 Binary files a/static/capture/nairobilug-pelican-alchemy-master.png and /dev/null differ diff --git a/static/capture/nairobilug-pelican-alchemy.png b/static/capture/nairobilug-pelican-alchemy.png new file mode 100644 index 000000000..71923b82c Binary files /dev/null and b/static/capture/nairobilug-pelican-alchemy.png differ diff --git a/static/capture/nakorndev-vuepress-theme-bulma-master.png b/static/capture/nakorndev-vuepress-theme-bulma-master.png deleted file mode 100644 index 9f44965e9..000000000 Binary files a/static/capture/nakorndev-vuepress-theme-bulma-master.png and /dev/null differ diff --git a/static/capture/nandomoreirame-dotx-master.png b/static/capture/nandomoreirame-dotx-master.png deleted file mode 100644 index 856d48d9e..000000000 Binary files a/static/capture/nandomoreirame-dotx-master.png and /dev/null differ diff --git a/static/capture/nandomoreirame-dotx.png b/static/capture/nandomoreirame-dotx.png new file mode 100644 index 000000000..c54bb93d4 Binary files /dev/null and b/static/capture/nandomoreirame-dotx.png differ diff --git a/static/capture/nandomoreirame-end2end-master.png b/static/capture/nandomoreirame-end2end-master.png deleted file mode 100644 index 0bc7ea4fa..000000000 Binary files a/static/capture/nandomoreirame-end2end-master.png and /dev/null differ diff --git a/static/capture/nandomoreirame-end2end.png b/static/capture/nandomoreirame-end2end.png new file mode 100644 index 000000000..798ebb778 Binary files /dev/null and b/static/capture/nandomoreirame-end2end.png differ diff --git a/static/capture/nandomoreirame-lora-master.png b/static/capture/nandomoreirame-lora-master.png deleted file mode 100644 index 8039d98fb..000000000 Binary files a/static/capture/nandomoreirame-lora-master.png and /dev/null differ diff --git a/static/capture/nandomoreirame-mug-master.png b/static/capture/nandomoreirame-mug-master.png deleted file mode 100644 index 06915d110..000000000 Binary files a/static/capture/nandomoreirame-mug-master.png and /dev/null differ diff --git a/static/capture/nandomoreirame-nandomoreira-jekyll-theme-master.png b/static/capture/nandomoreirame-nandomoreira-jekyll-theme-master.png deleted file mode 100644 index 12a66b981..000000000 Binary files a/static/capture/nandomoreirame-nandomoreira-jekyll-theme-master.png and /dev/null differ diff --git a/static/capture/nandomoreirame-simplest-master.png b/static/capture/nandomoreirame-simplest-master.png deleted file mode 100644 index 2e4b73da8..000000000 Binary files a/static/capture/nandomoreirame-simplest-master.png and /dev/null differ diff --git a/static/capture/nandomoreirame-zetsu-master.png b/static/capture/nandomoreirame-zetsu-master.png deleted file mode 100644 index 5ba4fc07b..000000000 Binary files a/static/capture/nandomoreirame-zetsu-master.png and /dev/null differ diff --git a/static/capture/nandomoreirame-zetsu.png b/static/capture/nandomoreirame-zetsu.png new file mode 100644 index 000000000..4692900b9 Binary files /dev/null and b/static/capture/nandomoreirame-zetsu.png differ diff --git a/static/capture/nanxiaobei-hugo-paper-master.png b/static/capture/nanxiaobei-hugo-paper-master.png deleted file mode 100644 index 7aec39f17..000000000 Binary files a/static/capture/nanxiaobei-hugo-paper-master.png and /dev/null differ diff --git a/static/capture/nanxiaobei-hugo-paper.png b/static/capture/nanxiaobei-hugo-paper.png new file mode 100644 index 000000000..f439943bc Binary files /dev/null and b/static/capture/nanxiaobei-hugo-paper.png differ diff --git a/static/capture/narative-gatsby-theme-novela-master.png b/static/capture/narative-gatsby-theme-novela-master.png deleted file mode 100644 index b88106076..000000000 Binary files a/static/capture/narative-gatsby-theme-novela-master.png and /dev/null differ diff --git a/static/capture/narative-gatsby-theme-novela.png b/static/capture/narative-gatsby-theme-novela.png new file mode 100644 index 000000000..d01c4ead4 Binary files /dev/null and b/static/capture/narative-gatsby-theme-novela.png differ diff --git a/static/capture/natarajmb-charaka-hugo-theme-master.png b/static/capture/natarajmb-charaka-hugo-theme-master.png deleted file mode 100644 index 24778373a..000000000 Binary files a/static/capture/natarajmb-charaka-hugo-theme-master.png and /dev/null differ diff --git a/static/capture/nathancday-min_night-master.png b/static/capture/nathancday-min_night-master.png deleted file mode 100644 index e98bbe8c1..000000000 Binary files a/static/capture/nathancday-min_night-master.png and /dev/null differ diff --git a/static/capture/nathancday-min_night.png b/static/capture/nathancday-min_night.png new file mode 100644 index 000000000..0f0f5a1dd Binary files /dev/null and b/static/capture/nathancday-min_night.png differ diff --git a/static/capture/naufaldi-next-landing-vpn.png b/static/capture/naufaldi-next-landing-vpn.png new file mode 100644 index 000000000..a794512d6 Binary files /dev/null and b/static/capture/naufaldi-next-landing-vpn.png differ diff --git a/static/capture/ndimatteo-hull.png b/static/capture/ndimatteo-hull.png new file mode 100644 index 000000000..b6a9a4040 Binary files /dev/null and b/static/capture/ndimatteo-hull.png differ diff --git a/static/capture/nehalist-gatsby-starter-nehalem-master.png b/static/capture/nehalist-gatsby-starter-nehalem-master.png deleted file mode 100644 index 53d97d7d0..000000000 Binary files a/static/capture/nehalist-gatsby-starter-nehalem-master.png and /dev/null differ diff --git a/static/capture/nehalist-gatsby-starter-nehalem.png b/static/capture/nehalist-gatsby-starter-nehalem.png new file mode 100644 index 000000000..04b7bc242 Binary files /dev/null and b/static/capture/nehalist-gatsby-starter-nehalem.png differ diff --git a/static/capture/neizod-lemma-theme-gh-pages.png b/static/capture/neizod-lemma-theme-gh-pages.png deleted file mode 100644 index d4daad444..000000000 Binary files a/static/capture/neizod-lemma-theme-gh-pages.png and /dev/null differ diff --git a/static/capture/neizod-lemma-theme.png b/static/capture/neizod-lemma-theme.png new file mode 100644 index 000000000..ee154f472 Binary files /dev/null and b/static/capture/neizod-lemma-theme.png differ diff --git a/static/capture/netlify-templates-gatsby-starter-netlify-cms-master.png b/static/capture/netlify-templates-gatsby-starter-netlify-cms-master.png deleted file mode 100644 index 0cf282b4f..000000000 Binary files a/static/capture/netlify-templates-gatsby-starter-netlify-cms-master.png and /dev/null differ diff --git a/static/capture/netlify-templates-gatsby-starter-netlify-cms.png b/static/capture/netlify-templates-gatsby-starter-netlify-cms.png new file mode 100644 index 000000000..7fdb4afeb Binary files /dev/null and b/static/capture/netlify-templates-gatsby-starter-netlify-cms.png differ diff --git a/static/capture/netlify-templates-one-click-hugo-cms-master.png b/static/capture/netlify-templates-one-click-hugo-cms-master.png deleted file mode 100644 index 7e1f58624..000000000 Binary files a/static/capture/netlify-templates-one-click-hugo-cms-master.png and /dev/null differ diff --git a/static/capture/netlify-templates-one-click-hugo-cms.png b/static/capture/netlify-templates-one-click-hugo-cms.png new file mode 100644 index 000000000..8e965a6ad Binary files /dev/null and b/static/capture/netlify-templates-one-click-hugo-cms.png differ diff --git a/static/capture/netlify-templates-tanstack-template.png b/static/capture/netlify-templates-tanstack-template.png new file mode 100644 index 000000000..26711b2af Binary files /dev/null and b/static/capture/netlify-templates-tanstack-template.png differ diff --git a/static/capture/ngzhio-jekyll-theme-hamilton-master.png b/static/capture/ngzhio-jekyll-theme-hamilton-master.png deleted file mode 100644 index 70682d036..000000000 Binary files a/static/capture/ngzhio-jekyll-theme-hamilton-master.png and /dev/null differ diff --git a/static/capture/nickbalestra-kactus-master.png b/static/capture/nickbalestra-kactus-master.png deleted file mode 100644 index 0d7f7c507..000000000 Binary files a/static/capture/nickbalestra-kactus-master.png and /dev/null differ diff --git a/static/capture/nickbalestra-kactus.png b/static/capture/nickbalestra-kactus.png new file mode 100644 index 000000000..65164d550 Binary files /dev/null and b/static/capture/nickbalestra-kactus.png differ diff --git a/static/capture/nielsenramon-chalk-master.png b/static/capture/nielsenramon-chalk.png similarity index 100% rename from static/capture/nielsenramon-chalk-master.png rename to static/capture/nielsenramon-chalk.png diff --git a/static/capture/niklasbuschmann-contrast-hugo-master.png b/static/capture/niklasbuschmann-contrast-hugo-master.png deleted file mode 100644 index 198090b8e..000000000 Binary files a/static/capture/niklasbuschmann-contrast-hugo-master.png and /dev/null differ diff --git a/static/capture/niklasbuschmann-contrast-master.png b/static/capture/niklasbuschmann-contrast-master.png deleted file mode 100644 index f9f4208f6..000000000 Binary files a/static/capture/niklasbuschmann-contrast-master.png and /dev/null differ diff --git a/static/capture/niklasbuschmann-contrast.png b/static/capture/niklasbuschmann-contrast.png new file mode 100644 index 000000000..9f7678de9 Binary files /dev/null and b/static/capture/niklasbuschmann-contrast.png differ diff --git a/static/capture/niklasmtj-gatsby-starter-julia-master.png b/static/capture/niklasmtj-gatsby-starter-julia-master.png deleted file mode 100644 index 473327dc1..000000000 Binary files a/static/capture/niklasmtj-gatsby-starter-julia-master.png and /dev/null differ diff --git a/static/capture/niklasmtj-gatsby-starter-julia.png b/static/capture/niklasmtj-gatsby-starter-julia.png new file mode 100644 index 000000000..35f9c75e5 Binary files /dev/null and b/static/capture/niklasmtj-gatsby-starter-julia.png differ diff --git a/static/capture/nikrich-jekyll-slender-template-master.png b/static/capture/nikrich-jekyll-slender-template-master.png deleted file mode 100644 index eb9f1ae12..000000000 Binary files a/static/capture/nikrich-jekyll-slender-template-master.png and /dev/null differ diff --git a/static/capture/nikrich-jekyll-slender-template.png b/static/capture/nikrich-jekyll-slender-template.png new file mode 100644 index 000000000..7007ef012 Binary files /dev/null and b/static/capture/nikrich-jekyll-slender-template.png differ diff --git a/static/capture/nikrich-jekyll-wing-template-master.png b/static/capture/nikrich-jekyll-wing-template-master.png deleted file mode 100644 index a2a2c11d4..000000000 Binary files a/static/capture/nikrich-jekyll-wing-template-master.png and /dev/null differ diff --git a/static/capture/nikrich-jekyll-wing-template.png b/static/capture/nikrich-jekyll-wing-template.png new file mode 100644 index 000000000..0b9eb0f9b Binary files /dev/null and b/static/capture/nikrich-jekyll-wing-template.png differ diff --git a/static/capture/ninapetrop-artist-theme-master.png b/static/capture/ninapetrop-artist-theme-master.png deleted file mode 100644 index 19729ced5..000000000 Binary files a/static/capture/ninapetrop-artist-theme-master.png and /dev/null differ diff --git a/static/capture/ninapetrop-artist-theme.png b/static/capture/ninapetrop-artist-theme.png new file mode 100644 index 000000000..0ec2dccc0 Binary files /dev/null and b/static/capture/ninapetrop-artist-theme.png differ diff --git a/static/capture/nirocfz-arabica-master.png b/static/capture/nirocfz-arabica-master.png deleted file mode 100644 index 3fcfb03dd..000000000 Binary files a/static/capture/nirocfz-arabica-master.png and /dev/null differ diff --git a/static/capture/nirocfz-arabica.png b/static/capture/nirocfz-arabica.png new file mode 100644 index 000000000..399b0d529 Binary files /dev/null and b/static/capture/nirocfz-arabica.png differ diff --git a/static/capture/nix1947-jekyll-hilmi-master.png b/static/capture/nix1947-jekyll-hilmi-master.png deleted file mode 100644 index 1997380aa..000000000 Binary files a/static/capture/nix1947-jekyll-hilmi-master.png and /dev/null differ diff --git a/static/capture/nodejh-hugo-theme-cactus-plus-master.png b/static/capture/nodejh-hugo-theme-cactus-plus-master.png deleted file mode 100644 index 3b6bf4ab3..000000000 Binary files a/static/capture/nodejh-hugo-theme-cactus-plus-master.png and /dev/null differ diff --git a/static/capture/notpushkin-mkdocs-alabaster-master.png b/static/capture/notpushkin-mkdocs-alabaster-master.png deleted file mode 100644 index f9d074fa0..000000000 Binary files a/static/capture/notpushkin-mkdocs-alabaster-master.png and /dev/null differ diff --git a/static/capture/notpushkin-mkdocs-alabaster.png b/static/capture/notpushkin-mkdocs-alabaster.png new file mode 100644 index 000000000..1e1b56b33 Binary files /dev/null and b/static/capture/notpushkin-mkdocs-alabaster.png differ diff --git a/static/capture/nrandecker-particle-master.png b/static/capture/nrandecker-particle-master.png deleted file mode 100644 index 032235e58..000000000 Binary files a/static/capture/nrandecker-particle-master.png and /dev/null differ diff --git a/static/capture/nrandecker-particle.png b/static/capture/nrandecker-particle.png new file mode 100644 index 000000000..dc02e9803 Binary files /dev/null and b/static/capture/nrandecker-particle.png differ diff --git a/static/capture/nunocoracao-blowfish.png b/static/capture/nunocoracao-blowfish.png new file mode 100644 index 000000000..c2db07240 Binary files /dev/null and b/static/capture/nunocoracao-blowfish.png differ diff --git a/static/capture/nurlansu-hugo-sustain-master.png b/static/capture/nurlansu-hugo-sustain-master.png deleted file mode 100644 index 8cca3e962..000000000 Binary files a/static/capture/nurlansu-hugo-sustain-master.png and /dev/null differ diff --git a/static/capture/nurlansu-hugo-sustain.png b/static/capture/nurlansu-hugo-sustain.png new file mode 100644 index 000000000..876fe4872 Binary files /dev/null and b/static/capture/nurlansu-hugo-sustain.png differ diff --git a/static/capture/obaez-dentistsmile-master.png b/static/capture/obaez-dentistsmile-master.png deleted file mode 100644 index 3b220221d..000000000 Binary files a/static/capture/obaez-dentistsmile-master.png and /dev/null differ diff --git a/static/capture/octoxalis-11tyframe-master.png b/static/capture/octoxalis-11tyframe-master.png deleted file mode 100644 index 6e1f9ff27..000000000 Binary files a/static/capture/octoxalis-11tyframe-master.png and /dev/null differ diff --git a/static/capture/octoxalis-11tyframe.png b/static/capture/octoxalis-11tyframe.png new file mode 100644 index 000000000..563424e1a Binary files /dev/null and b/static/capture/octoxalis-11tyframe.png differ diff --git a/static/capture/ofranke-gatsby-typescript-scss-docker-master.png b/static/capture/ofranke-gatsby-typescript-scss-docker-master.png deleted file mode 100644 index c728324df..000000000 Binary files a/static/capture/ofranke-gatsby-typescript-scss-docker-master.png and /dev/null differ diff --git a/static/capture/ofranke-gatsby-typescript-scss-docker.png b/static/capture/ofranke-gatsby-typescript-scss-docker.png new file mode 100644 index 000000000..0a499837b Binary files /dev/null and b/static/capture/ofranke-gatsby-typescript-scss-docker.png differ diff --git a/static/capture/ohduran-onassis-master.png b/static/capture/ohduran-onassis-master.png deleted file mode 100644 index 07837d7db..000000000 Binary files a/static/capture/ohduran-onassis-master.png and /dev/null differ diff --git a/static/capture/ohduran-onassis.png b/static/capture/ohduran-onassis.png new file mode 100644 index 000000000..ca2b599a0 Binary files /dev/null and b/static/capture/ohduran-onassis.png differ diff --git a/static/capture/ohduran-the-interesting-times-master.png b/static/capture/ohduran-the-interesting-times-master.png deleted file mode 100644 index e113d2949..000000000 Binary files a/static/capture/ohduran-the-interesting-times-master.png and /dev/null differ diff --git a/static/capture/ohduran-the-interesting-times.png b/static/capture/ohduran-the-interesting-times.png new file mode 100644 index 000000000..c990e5b2b Binary files /dev/null and b/static/capture/ohduran-the-interesting-times.png differ diff --git a/static/capture/okkur-syna-master.png b/static/capture/okkur-syna-master.png deleted file mode 100644 index cc11975fe..000000000 Binary files a/static/capture/okkur-syna-master.png and /dev/null differ diff --git a/static/capture/olakara-jekyllmetro-master.png b/static/capture/olakara-jekyllmetro-master.png deleted file mode 100644 index 6ea25ae30..000000000 Binary files a/static/capture/olakara-jekyllmetro-master.png and /dev/null differ diff --git a/static/capture/olivier3lanc-jekyll-libdoc.png b/static/capture/olivier3lanc-jekyll-libdoc.png new file mode 100644 index 000000000..2f9450795 Binary files /dev/null and b/static/capture/olivier3lanc-jekyll-libdoc.png differ diff --git a/static/capture/olowolo-hugo-theme-even-master.png b/static/capture/olowolo-hugo-theme-even-master.png deleted file mode 100644 index 59f3adf05..000000000 Binary files a/static/capture/olowolo-hugo-theme-even-master.png and /dev/null differ diff --git a/static/capture/ondrabus-gridsome-starter-kontent-lumen-master.png b/static/capture/ondrabus-gridsome-starter-kontent-lumen.png similarity index 100% rename from static/capture/ondrabus-gridsome-starter-kontent-lumen-master.png rename to static/capture/ondrabus-gridsome-starter-kontent-lumen.png diff --git a/static/capture/ondrabus-scully-starter-kontent-lumen-master.png b/static/capture/ondrabus-scully-starter-kontent-lumen.png similarity index 100% rename from static/capture/ondrabus-scully-starter-kontent-lumen-master.png rename to static/capture/ondrabus-scully-starter-kontent-lumen.png diff --git a/static/capture/onepase-ephesus.png b/static/capture/onepase-ephesus.png new file mode 100644 index 000000000..de7df508b Binary files /dev/null and b/static/capture/onepase-ephesus.png differ diff --git a/static/capture/onweru-compose-master.png b/static/capture/onweru-compose-master.png deleted file mode 100644 index b2c58b55a..000000000 Binary files a/static/capture/onweru-compose-master.png and /dev/null differ diff --git a/static/capture/onweru-compose.png b/static/capture/onweru-compose.png new file mode 100644 index 000000000..b6676508f Binary files /dev/null and b/static/capture/onweru-compose.png differ diff --git a/static/capture/onweru-hugo-swift-theme-master.png b/static/capture/onweru-hugo-swift-theme-master.png deleted file mode 100644 index cc05fcdcd..000000000 Binary files a/static/capture/onweru-hugo-swift-theme-master.png and /dev/null differ diff --git a/static/capture/onweru-hugo-swift-theme.png b/static/capture/onweru-hugo-swift-theme.png new file mode 100644 index 000000000..b18a8fb74 Binary files /dev/null and b/static/capture/onweru-hugo-swift-theme.png differ diff --git a/static/capture/onweru-newsroom-master.png b/static/capture/onweru-newsroom-master.png deleted file mode 100644 index 063b575b9..000000000 Binary files a/static/capture/onweru-newsroom-master.png and /dev/null differ diff --git a/static/capture/onweru-newsroom.png b/static/capture/onweru-newsroom.png new file mode 100644 index 000000000..e057af59c Binary files /dev/null and b/static/capture/onweru-newsroom.png differ diff --git a/static/capture/onwidget-astrowind.png b/static/capture/onwidget-astrowind.png new file mode 100644 index 000000000..aef967760 Binary files /dev/null and b/static/capture/onwidget-astrowind.png differ diff --git a/static/capture/open-sl-jekyll-modern-blog-master.png b/static/capture/open-sl-jekyll-modern-blog-master.png deleted file mode 100644 index 7f15861f8..000000000 Binary files a/static/capture/open-sl-jekyll-modern-blog-master.png and /dev/null differ diff --git a/static/capture/open-sl-jekyll-modern-blog.png b/static/capture/open-sl-jekyll-modern-blog.png new file mode 100644 index 000000000..d12e8415e Binary files /dev/null and b/static/capture/open-sl-jekyll-modern-blog.png differ diff --git a/static/capture/open-start-opentheme-master.png b/static/capture/open-start-opentheme-master.png deleted file mode 100644 index 6e2127d00..000000000 Binary files a/static/capture/open-start-opentheme-master.png and /dev/null differ diff --git a/static/capture/orderedlist-minimal-master.png b/static/capture/orderedlist-minimal-master.png deleted file mode 100644 index 11d103605..000000000 Binary files a/static/capture/orderedlist-minimal-master.png and /dev/null differ diff --git a/static/capture/orderedlist-minimal.png b/static/capture/orderedlist-minimal.png new file mode 100644 index 000000000..a4b2fbd2f Binary files /dev/null and b/static/capture/orderedlist-minimal.png differ diff --git a/static/capture/orderedlist-modernist-master.png b/static/capture/orderedlist-modernist-master.png deleted file mode 100644 index 3c313dbae..000000000 Binary files a/static/capture/orderedlist-modernist-master.png and /dev/null differ diff --git a/static/capture/orderedlist-modernist.png b/static/capture/orderedlist-modernist.png new file mode 100644 index 000000000..d35328c0e Binary files /dev/null and b/static/capture/orderedlist-modernist.png differ diff --git a/static/capture/osogrizz-gatsby-starter-santa-fe-master.png b/static/capture/osogrizz-gatsby-starter-santa-fe-master.png deleted file mode 100644 index 5db77b24e..000000000 Binary files a/static/capture/osogrizz-gatsby-starter-santa-fe-master.png and /dev/null differ diff --git a/static/capture/osogrizz-gatsby-starter-santa-fe.png b/static/capture/osogrizz-gatsby-starter-santa-fe.png new file mode 100644 index 000000000..0b8214f25 Binary files /dev/null and b/static/capture/osogrizz-gatsby-starter-santa-fe.png differ diff --git a/static/capture/ovidiumihaibelciug-gatsby-firebase-starter-master.png b/static/capture/ovidiumihaibelciug-gatsby-firebase-starter-master.png deleted file mode 100644 index 29c9e7e90..000000000 Binary files a/static/capture/ovidiumihaibelciug-gatsby-firebase-starter-master.png and /dev/null differ diff --git a/static/capture/ovidiumihaibelciug-gatsby-firebase-starter.png b/static/capture/ovidiumihaibelciug-gatsby-firebase-starter.png new file mode 100644 index 000000000..8316648ae Binary files /dev/null and b/static/capture/ovidiumihaibelciug-gatsby-firebase-starter.png differ diff --git a/static/capture/ozgrozer-dasper-master.png b/static/capture/ozgrozer-dasper-master.png deleted file mode 100644 index 10be2aa16..000000000 Binary files a/static/capture/ozgrozer-dasper-master.png and /dev/null differ diff --git a/static/capture/ozgrozer-dasper.png b/static/capture/ozgrozer-dasper.png new file mode 100644 index 000000000..b6950b072 Binary files /dev/null and b/static/capture/ozgrozer-dasper.png differ diff --git a/static/capture/p0wex-gesko.png b/static/capture/p0wex-gesko.png new file mode 100644 index 000000000..c9d512974 Binary files /dev/null and b/static/capture/p0wex-gesko.png differ diff --git a/static/capture/pablovila-gatsby-starter-wordpress-community-master.png b/static/capture/pablovila-gatsby-starter-wordpress-community-master.png deleted file mode 100644 index 3c7f2429f..000000000 Binary files a/static/capture/pablovila-gatsby-starter-wordpress-community-master.png and /dev/null differ diff --git a/static/capture/pablovila-gatsby-starter-wordpress-community.png b/static/capture/pablovila-gatsby-starter-wordpress-community.png new file mode 100644 index 000000000..0165dc93f Binary files /dev/null and b/static/capture/pablovila-gatsby-starter-wordpress-community.png differ diff --git a/static/capture/pacollins-hugo-future-imperfect-slim-master.png b/static/capture/pacollins-hugo-future-imperfect-slim-master.png deleted file mode 100644 index 44fb6b4e4..000000000 Binary files a/static/capture/pacollins-hugo-future-imperfect-slim-master.png and /dev/null differ diff --git a/static/capture/pandasekh-jekyll-podcaster-master.png b/static/capture/pandasekh-jekyll-podcaster-master.png deleted file mode 100644 index 45852e2f7..000000000 Binary files a/static/capture/pandasekh-jekyll-podcaster-master.png and /dev/null differ diff --git a/static/capture/pandasekh-jekyll-podcaster.png b/static/capture/pandasekh-jekyll-podcaster.png new file mode 100644 index 000000000..17af8c143 Binary files /dev/null and b/static/capture/pandasekh-jekyll-podcaster.png differ diff --git a/static/capture/pandasekh-jekyll-yamt-master.png b/static/capture/pandasekh-jekyll-yamt-master.png deleted file mode 100644 index 1ae491d6e..000000000 Binary files a/static/capture/pandasekh-jekyll-yamt-master.png and /dev/null differ diff --git a/static/capture/pandasekh-jekyll-yamt.png b/static/capture/pandasekh-jekyll-yamt.png new file mode 100644 index 000000000..9387c0c31 Binary files /dev/null and b/static/capture/pandasekh-jekyll-yamt.png differ diff --git a/static/capture/panr-gatsby-starter-hello-friend-master.png b/static/capture/panr-gatsby-starter-hello-friend-master.png deleted file mode 100644 index 2b3d767fb..000000000 Binary files a/static/capture/panr-gatsby-starter-hello-friend-master.png and /dev/null differ diff --git a/static/capture/panr-hugo-theme-hello-friend-master.png b/static/capture/panr-hugo-theme-hello-friend-master.png deleted file mode 100644 index 9c6f7dc15..000000000 Binary files a/static/capture/panr-hugo-theme-hello-friend-master.png and /dev/null differ diff --git a/static/capture/panr-hugo-theme-hello-friend.png b/static/capture/panr-hugo-theme-hello-friend.png new file mode 100644 index 000000000..0a6a5bbce Binary files /dev/null and b/static/capture/panr-hugo-theme-hello-friend.png differ diff --git a/static/capture/panr-hugo-theme-terminal-master.png b/static/capture/panr-hugo-theme-terminal.png similarity index 100% rename from static/capture/panr-hugo-theme-terminal-master.png rename to static/capture/panr-hugo-theme-terminal.png diff --git a/static/capture/parmsang-gatsby-starter-ecommerce-master.png b/static/capture/parmsang-gatsby-starter-ecommerce-master.png deleted file mode 100644 index 4c9253ca0..000000000 Binary files a/static/capture/parmsang-gatsby-starter-ecommerce-master.png and /dev/null differ diff --git a/static/capture/parmsang-gatsby-starter-ecommerce.png b/static/capture/parmsang-gatsby-starter-ecommerce.png new file mode 100644 index 000000000..6510f51f4 Binary files /dev/null and b/static/capture/parmsang-gatsby-starter-ecommerce.png differ diff --git a/static/capture/parsiya-hugo-octopress-master.png b/static/capture/parsiya-hugo-octopress-master.png deleted file mode 100644 index 48ca5c9ff..000000000 Binary files a/static/capture/parsiya-hugo-octopress-master.png and /dev/null differ diff --git a/static/capture/pasindud-jekyll-masonry-master.png b/static/capture/pasindud-jekyll-masonry-master.png deleted file mode 100644 index eb335a0c7..000000000 Binary files a/static/capture/pasindud-jekyll-masonry-master.png and /dev/null differ diff --git a/static/capture/patdryburgh-hitchens-master.png b/static/capture/patdryburgh-hitchens-master.png deleted file mode 100644 index 2130c2d38..000000000 Binary files a/static/capture/patdryburgh-hitchens-master.png and /dev/null differ diff --git a/static/capture/patdryburgh-hitchens.png b/static/capture/patdryburgh-hitchens.png new file mode 100644 index 000000000..9e0317967 Binary files /dev/null and b/static/capture/patdryburgh-hitchens.png differ diff --git a/static/capture/patricoferris-gatsby-starter-notes-master.png b/static/capture/patricoferris-gatsby-starter-notes.png similarity index 100% rename from static/capture/patricoferris-gatsby-starter-notes-master.png rename to static/capture/patricoferris-gatsby-starter-notes.png diff --git a/static/capture/pdevty-material-design-master.png b/static/capture/pdevty-material-design-master.png deleted file mode 100644 index e2d46c8f3..000000000 Binary files a/static/capture/pdevty-material-design-master.png and /dev/null differ diff --git a/static/capture/pdevty-polymer-master.png b/static/capture/pdevty-polymer-master.png deleted file mode 100644 index 6feeecc40..000000000 Binary files a/static/capture/pdevty-polymer-master.png and /dev/null differ diff --git a/static/capture/peaceiris-hugo-theme-iris-master.png b/static/capture/peaceiris-hugo-theme-iris-master.png deleted file mode 100644 index b5fc9a98d..000000000 Binary files a/static/capture/peaceiris-hugo-theme-iris-master.png and /dev/null differ diff --git a/static/capture/peaceiris-hugo-theme-iris.png b/static/capture/peaceiris-hugo-theme-iris.png new file mode 100644 index 000000000..1c6ebe2da Binary files /dev/null and b/static/capture/peaceiris-hugo-theme-iris.png differ diff --git a/static/capture/peahatlanding-plain-webcomic-master.png b/static/capture/peahatlanding-plain-webcomic-master.png deleted file mode 100644 index e8c97ba94..000000000 Binary files a/static/capture/peahatlanding-plain-webcomic-master.png and /dev/null differ diff --git a/static/capture/peahatlanding-plain-webcomic.png b/static/capture/peahatlanding-plain-webcomic.png new file mode 100644 index 000000000..614971391 Binary files /dev/null and b/static/capture/peahatlanding-plain-webcomic.png differ diff --git a/static/capture/pelican-elegant-elegant-master.png b/static/capture/pelican-elegant-elegant-master.png deleted file mode 100644 index 9363da4ce..000000000 Binary files a/static/capture/pelican-elegant-elegant-master.png and /dev/null differ diff --git a/static/capture/pelican-elegant-elegant.png b/static/capture/pelican-elegant-elegant.png new file mode 100644 index 000000000..190f737e3 Binary files /dev/null and b/static/capture/pelican-elegant-elegant.png differ diff --git a/static/capture/penibelst-jekyll-noita-gh-pages.png b/static/capture/penibelst-jekyll-noita.png similarity index 100% rename from static/capture/penibelst-jekyll-noita-gh-pages.png rename to static/capture/penibelst-jekyll-noita.png diff --git a/static/capture/petrsvihlik-statiq-starter-kontent-lumen-master.png b/static/capture/petrsvihlik-statiq-starter-kontent-lumen-master.png deleted file mode 100644 index 4c67555f6..000000000 Binary files a/static/capture/petrsvihlik-statiq-starter-kontent-lumen-master.png and /dev/null differ diff --git a/static/capture/philhawksworth-eleventyone-master.png b/static/capture/philhawksworth-eleventyone-master.png deleted file mode 100644 index 19a21a4eb..000000000 Binary files a/static/capture/philhawksworth-eleventyone-master.png and /dev/null differ diff --git a/static/capture/philhawksworth-eleventyone.png b/static/capture/philhawksworth-eleventyone.png new file mode 100644 index 000000000..786b4e648 Binary files /dev/null and b/static/capture/philhawksworth-eleventyone.png differ diff --git a/static/capture/philhawksworth-hawksworx.com-master.png b/static/capture/philhawksworth-hawksworx.com-master.png deleted file mode 100644 index 45c99fd1f..000000000 Binary files a/static/capture/philhawksworth-hawksworx.com-master.png and /dev/null differ diff --git a/static/capture/philhawksworth-medium-export-master.png b/static/capture/philhawksworth-medium-export-master.png deleted file mode 100644 index 6d10455e3..000000000 Binary files a/static/capture/philhawksworth-medium-export-master.png and /dev/null differ diff --git a/static/capture/philhawksworth-medium-export.png b/static/capture/philhawksworth-medium-export.png new file mode 100644 index 000000000..41e7b3aa6 Binary files /dev/null and b/static/capture/philhawksworth-medium-export.png differ diff --git a/static/capture/phlow-feeling-responsive-gh-pages.png b/static/capture/phlow-feeling-responsive-gh-pages.png deleted file mode 100644 index dc298df09..000000000 Binary files a/static/capture/phlow-feeling-responsive-gh-pages.png and /dev/null differ diff --git a/static/capture/phlow-feeling-responsive.png b/static/capture/phlow-feeling-responsive.png new file mode 100644 index 000000000..c35dc8a2d Binary files /dev/null and b/static/capture/phlow-feeling-responsive.png differ diff --git a/static/capture/piandhust-tailieubkhn.png b/static/capture/piandhust-tailieubkhn.png new file mode 100644 index 000000000..e3501f8ea Binary files /dev/null and b/static/capture/piandhust-tailieubkhn.png differ diff --git a/static/capture/piducancore-gatsby-starter-apollo-netlify-master.png b/static/capture/piducancore-gatsby-starter-apollo-netlify-master.png deleted file mode 100644 index 6158bde1b..000000000 Binary files a/static/capture/piducancore-gatsby-starter-apollo-netlify-master.png and /dev/null differ diff --git a/static/capture/piducancore-gatsby-starter-apollo-netlify.png b/static/capture/piducancore-gatsby-starter-apollo-netlify.png new file mode 100644 index 000000000..19abb54b7 Binary files /dev/null and b/static/capture/piducancore-gatsby-starter-apollo-netlify.png differ diff --git a/static/capture/pietromenna-jekyll-architect-theme-master.png b/static/capture/pietromenna-jekyll-architect-theme-master.png deleted file mode 100644 index 47f79fd32..000000000 Binary files a/static/capture/pietromenna-jekyll-architect-theme-master.png and /dev/null differ diff --git a/static/capture/pietromenna-jekyll-architect-theme.png b/static/capture/pietromenna-jekyll-architect-theme.png new file mode 100644 index 000000000..3950688ab Binary files /dev/null and b/static/capture/pietromenna-jekyll-architect-theme.png differ diff --git a/static/capture/pietromenna-jekyll-cayman-theme-master.png b/static/capture/pietromenna-jekyll-cayman-theme-master.png deleted file mode 100644 index a41e22aca..000000000 Binary files a/static/capture/pietromenna-jekyll-cayman-theme-master.png and /dev/null differ diff --git a/static/capture/pietromenna-jekyll-cayman-theme.png b/static/capture/pietromenna-jekyll-cayman-theme.png new file mode 100644 index 000000000..d7148b953 Binary files /dev/null and b/static/capture/pietromenna-jekyll-cayman-theme.png differ diff --git a/static/capture/piharpi-jekyll-klise-master.png b/static/capture/piharpi-jekyll-klise-master.png deleted file mode 100644 index b813ee5de..000000000 Binary files a/static/capture/piharpi-jekyll-klise-master.png and /dev/null differ diff --git a/static/capture/piharpi-jekyll-klise.png b/static/capture/piharpi-jekyll-klise.png new file mode 100644 index 000000000..b8d795a26 Binary files /dev/null and b/static/capture/piharpi-jekyll-klise.png differ diff --git a/static/capture/pipporj-hugo-refresh-master.png b/static/capture/pipporj-hugo-refresh-master.png deleted file mode 100644 index c27069cfd..000000000 Binary files a/static/capture/pipporj-hugo-refresh-master.png and /dev/null differ diff --git a/static/capture/pixelsign-gatsby-starter-tachyons-master.png b/static/capture/pixelsign-gatsby-starter-tachyons-master.png deleted file mode 100644 index b1b60b617..000000000 Binary files a/static/capture/pixelsign-gatsby-starter-tachyons-master.png and /dev/null differ diff --git a/static/capture/pixelsign-gatsby-starter-tachyons.png b/static/capture/pixelsign-gatsby-starter-tachyons.png new file mode 100644 index 000000000..cf60a34f7 Binary files /dev/null and b/static/capture/pixelsign-gatsby-starter-tachyons.png differ diff --git a/static/capture/planetjekyll-jekyll-starter-theme-master.png b/static/capture/planetjekyll-jekyll-starter-theme-master.png deleted file mode 100644 index 77beda2a2..000000000 Binary files a/static/capture/planetjekyll-jekyll-starter-theme-master.png and /dev/null differ diff --git a/static/capture/planetoftheweb-seven-master.png b/static/capture/planetoftheweb-seven-master.png deleted file mode 100644 index f682e9d7e..000000000 Binary files a/static/capture/planetoftheweb-seven-master.png and /dev/null differ diff --git a/static/capture/planetoftheweb-seven.png b/static/capture/planetoftheweb-seven.png new file mode 100644 index 000000000..28432478b Binary files /dev/null and b/static/capture/planetoftheweb-seven.png differ diff --git a/static/capture/platframe-platframe-master.png b/static/capture/platframe-platframe-master.png deleted file mode 100644 index fb9f53082..000000000 Binary files a/static/capture/platframe-platframe-master.png and /dev/null differ diff --git a/static/capture/platframe-platframe.png b/static/capture/platframe-platframe.png new file mode 100644 index 000000000..fa70b2df2 Binary files /dev/null and b/static/capture/platframe-platframe.png differ diff --git a/static/capture/pmarsceill-just-the-docs-master.png b/static/capture/pmarsceill-just-the-docs-master.png deleted file mode 100644 index 73fa224e0..000000000 Binary files a/static/capture/pmarsceill-just-the-docs-master.png and /dev/null differ diff --git a/static/capture/pmarsceill-just-the-docs.png b/static/capture/pmarsceill-just-the-docs.png new file mode 100644 index 000000000..353976eae Binary files /dev/null and b/static/capture/pmarsceill-just-the-docs.png differ diff --git a/static/capture/poole-hyde-master.png b/static/capture/poole-hyde.png similarity index 100% rename from static/capture/poole-hyde-master.png rename to static/capture/poole-hyde.png diff --git a/static/capture/poole-lanyon-master.png b/static/capture/poole-lanyon-master.png deleted file mode 100644 index 9b8dff591..000000000 Binary files a/static/capture/poole-lanyon-master.png and /dev/null differ diff --git a/static/capture/poole-lanyon.png b/static/capture/poole-lanyon.png new file mode 100644 index 000000000..0a47a8407 Binary files /dev/null and b/static/capture/poole-lanyon.png differ diff --git a/static/capture/poole-poole-master.png b/static/capture/poole-poole.png similarity index 100% rename from static/capture/poole-poole-master.png rename to static/capture/poole-poole.png diff --git a/static/capture/portfolio-central-jekyll-instagram-portfolio-theme-gh-pages.png b/static/capture/portfolio-central-jekyll-instagram-portfolio-theme-gh-pages.png deleted file mode 100644 index f194bc791..000000000 Binary files a/static/capture/portfolio-central-jekyll-instagram-portfolio-theme-gh-pages.png and /dev/null differ diff --git a/static/capture/pranavrajs-limpid-master.png b/static/capture/pranavrajs-limpid-master.png deleted file mode 100644 index f7323cdde..000000000 Binary files a/static/capture/pranavrajs-limpid-master.png and /dev/null differ diff --git a/static/capture/pranavrajs-limpid.png b/static/capture/pranavrajs-limpid.png new file mode 100644 index 000000000..c4455daca Binary files /dev/null and b/static/capture/pranavrajs-limpid.png differ diff --git a/static/capture/pranavrajs-swift-master.png b/static/capture/pranavrajs-swift-master.png deleted file mode 100644 index de28ead81..000000000 Binary files a/static/capture/pranavrajs-swift-master.png and /dev/null differ diff --git a/static/capture/pranavrajs-swift.png b/static/capture/pranavrajs-swift.png new file mode 100644 index 000000000..623c76dc1 Binary files /dev/null and b/static/capture/pranavrajs-swift.png differ diff --git a/static/capture/prezly-theme-nextjs-bea.png b/static/capture/prezly-theme-nextjs-bea.png new file mode 100644 index 000000000..de0a05003 Binary files /dev/null and b/static/capture/prezly-theme-nextjs-bea.png differ diff --git a/static/capture/progrhyme-hugo-theme-bootie-docs-master.png b/static/capture/progrhyme-hugo-theme-bootie-docs-master.png deleted file mode 100644 index 0438283a4..000000000 Binary files a/static/capture/progrhyme-hugo-theme-bootie-docs-master.png and /dev/null differ diff --git a/static/capture/progrhyme-hugo-theme-bootie-docs.png b/static/capture/progrhyme-hugo-theme-bootie-docs.png new file mode 100644 index 000000000..b9595340c Binary files /dev/null and b/static/capture/progrhyme-hugo-theme-bootie-docs.png differ diff --git a/static/capture/projectpages-project-pages-gh-pages.png b/static/capture/projectpages-project-pages-gh-pages.png deleted file mode 100644 index dcfa81bd1..000000000 Binary files a/static/capture/projectpages-project-pages-gh-pages.png and /dev/null differ diff --git a/static/capture/projectpages-project-pages.png b/static/capture/projectpages-project-pages.png new file mode 100644 index 000000000..ff2d2b543 Binary files /dev/null and b/static/capture/projectpages-project-pages.png differ diff --git a/static/capture/prototypeinteractive-gatsby-react-boilerplate-master.png b/static/capture/prototypeinteractive-gatsby-react-boilerplate.png similarity index 100% rename from static/capture/prototypeinteractive-gatsby-react-boilerplate-master.png rename to static/capture/prototypeinteractive-gatsby-react-boilerplate.png diff --git a/static/capture/puresyntax71-hugo-theme-chunky-poster-master.png b/static/capture/puresyntax71-hugo-theme-chunky-poster-master.png deleted file mode 100644 index aa302d629..000000000 Binary files a/static/capture/puresyntax71-hugo-theme-chunky-poster-master.png and /dev/null differ diff --git a/static/capture/puresyntax71-hugo-theme-chunky-poster.png b/static/capture/puresyntax71-hugo-theme-chunky-poster.png new file mode 100644 index 000000000..dcd49067f Binary files /dev/null and b/static/capture/puresyntax71-hugo-theme-chunky-poster.png differ diff --git a/static/capture/qingpingmeng-gatsby-starter-traveler-blog-master.png b/static/capture/qingpingmeng-gatsby-starter-traveler-blog-master.png deleted file mode 100644 index 625c0cfc4..000000000 Binary files a/static/capture/qingpingmeng-gatsby-starter-traveler-blog-master.png and /dev/null differ diff --git a/static/capture/qingpingmeng-gatsby-starter-traveler-blog.png b/static/capture/qingpingmeng-gatsby-starter-traveler-blog.png new file mode 100644 index 000000000..ab9f1de42 Binary files /dev/null and b/static/capture/qingpingmeng-gatsby-starter-traveler-blog.png differ diff --git a/static/capture/qqhann-hugo-primer-master.png b/static/capture/qqhann-hugo-primer-master.png deleted file mode 100644 index fc0f80223..000000000 Binary files a/static/capture/qqhann-hugo-primer-master.png and /dev/null differ diff --git a/static/capture/qwtel-hydejack-master.png b/static/capture/qwtel-hydejack-master.png deleted file mode 100644 index 039c82033..000000000 Binary files a/static/capture/qwtel-hydejack-master.png and /dev/null differ diff --git a/static/capture/qwtel-hydejack.png b/static/capture/qwtel-hydejack.png new file mode 100644 index 000000000..32d57751f Binary files /dev/null and b/static/capture/qwtel-hydejack.png differ diff --git a/static/capture/railsr-autm-rb-master.png b/static/capture/railsr-autm-rb-master.png deleted file mode 100644 index 684c0f854..000000000 Binary files a/static/capture/railsr-autm-rb-master.png and /dev/null differ diff --git a/static/capture/railsr-autm-rb.png b/static/capture/railsr-autm-rb.png new file mode 100644 index 000000000..5b3ba836e Binary files /dev/null and b/static/capture/railsr-autm-rb.png differ diff --git a/static/capture/raniesantos-artisan-static-master.png b/static/capture/raniesantos-artisan-static-master.png deleted file mode 100644 index 7b2938438..000000000 Binary files a/static/capture/raniesantos-artisan-static-master.png and /dev/null differ diff --git a/static/capture/raniesantos-artisan-static.png b/static/capture/raniesantos-artisan-static.png new file mode 100644 index 000000000..1580e9ba2 Binary files /dev/null and b/static/capture/raniesantos-artisan-static.png differ diff --git a/static/capture/raphadeluca-gatsby-starter-quiz-master.png b/static/capture/raphadeluca-gatsby-starter-quiz-master.png deleted file mode 100644 index 8a6fc3821..000000000 Binary files a/static/capture/raphadeluca-gatsby-starter-quiz-master.png and /dev/null differ diff --git a/static/capture/razonyang-hugo-theme-bootstrap.png b/static/capture/razonyang-hugo-theme-bootstrap.png new file mode 100644 index 000000000..946c603c2 Binary files /dev/null and b/static/capture/razonyang-hugo-theme-bootstrap.png differ diff --git a/static/capture/rcjach-hugo-webslides-master.png b/static/capture/rcjach-hugo-webslides-master.png deleted file mode 100644 index 2fb313496..000000000 Binary files a/static/capture/rcjach-hugo-webslides-master.png and /dev/null differ diff --git a/static/capture/rcjach-hugo-webslides.png b/static/capture/rcjach-hugo-webslides.png new file mode 100644 index 000000000..8a0853949 Binary files /dev/null and b/static/capture/rcjach-hugo-webslides.png differ diff --git a/static/capture/realorangeone-hugo-theme-revealjs-master.png b/static/capture/realorangeone-hugo-theme-revealjs.png similarity index 100% rename from static/capture/realorangeone-hugo-theme-revealjs-master.png rename to static/capture/realorangeone-hugo-theme-revealjs.png diff --git a/static/capture/redvi-voyager-master.png b/static/capture/redvi-voyager-master.png deleted file mode 100644 index 77ab35165..000000000 Binary files a/static/capture/redvi-voyager-master.png and /dev/null differ diff --git a/static/capture/redvi-voyager.png b/static/capture/redvi-voyager.png new file mode 100644 index 000000000..b77cb649d Binary files /dev/null and b/static/capture/redvi-voyager.png differ diff --git a/static/capture/reeseschultz-11r-master.png b/static/capture/reeseschultz-11r-master.png deleted file mode 100644 index 371274dba..000000000 Binary files a/static/capture/reeseschultz-11r-master.png and /dev/null differ diff --git a/static/capture/reeseschultz-11r.png b/static/capture/reeseschultz-11r.png new file mode 100644 index 000000000..3c6a1f31b Binary files /dev/null and b/static/capture/reeseschultz-11r.png differ diff --git a/static/capture/renvrant-gatsby-mdx-netlify-cms-starter-master.png b/static/capture/renvrant-gatsby-mdx-netlify-cms-starter-master.png deleted file mode 100644 index 14e131557..000000000 Binary files a/static/capture/renvrant-gatsby-mdx-netlify-cms-starter-master.png and /dev/null differ diff --git a/static/capture/renvrant-gatsby-mdx-netlify-cms-starter.png b/static/capture/renvrant-gatsby-mdx-netlify-cms-starter.png new file mode 100644 index 000000000..cf2fb7a89 Binary files /dev/null and b/static/capture/renvrant-gatsby-mdx-netlify-cms-starter.png differ diff --git a/static/capture/renyuanz-leonids-master.png b/static/capture/renyuanz-leonids-master.png deleted file mode 100644 index e36436c0c..000000000 Binary files a/static/capture/renyuanz-leonids-master.png and /dev/null differ diff --git a/static/capture/renyuanz-leonids.png b/static/capture/renyuanz-leonids.png new file mode 100644 index 000000000..3ce407b1c Binary files /dev/null and b/static/capture/renyuanz-leonids.png differ diff --git a/static/capture/resir014-gatsby-starter-typescript-plus-master.png b/static/capture/resir014-gatsby-starter-typescript-plus-master.png deleted file mode 100644 index 4ee2e4ce5..000000000 Binary files a/static/capture/resir014-gatsby-starter-typescript-plus-master.png and /dev/null differ diff --git a/static/capture/resir014-gatsby-starter-typescript-plus.png b/static/capture/resir014-gatsby-starter-typescript-plus.png new file mode 100644 index 000000000..c6e99c905 Binary files /dev/null and b/static/capture/resir014-gatsby-starter-typescript-plus.png differ diff --git a/static/capture/reuixiy-hugo-theme-meme-master.png b/static/capture/reuixiy-hugo-theme-meme-master.png deleted file mode 100644 index b643d193b..000000000 Binary files a/static/capture/reuixiy-hugo-theme-meme-master.png and /dev/null differ diff --git a/static/capture/rhazdon-hugo-theme-hello-friend-ng-master.png b/static/capture/rhazdon-hugo-theme-hello-friend-ng-master.png deleted file mode 100644 index 9b08add6a..000000000 Binary files a/static/capture/rhazdon-hugo-theme-hello-friend-ng-master.png and /dev/null differ diff --git a/static/capture/ribice-kiss-master.png b/static/capture/ribice-kiss-master.png deleted file mode 100644 index 8b73c2187..000000000 Binary files a/static/capture/ribice-kiss-master.png and /dev/null differ diff --git a/static/capture/riggraz-no-style-please-master.png b/static/capture/riggraz-no-style-please-master.png deleted file mode 100644 index 1dd8f25e6..000000000 Binary files a/static/capture/riggraz-no-style-please-master.png and /dev/null differ diff --git a/static/capture/riggraz-no-style-please.png b/static/capture/riggraz-no-style-please.png new file mode 100644 index 000000000..00324f113 Binary files /dev/null and b/static/capture/riggraz-no-style-please.png differ diff --git a/static/capture/ritijjain-pudhina-fresh-master.png b/static/capture/ritijjain-pudhina-fresh-master.png deleted file mode 100644 index e36a005cb..000000000 Binary files a/static/capture/ritijjain-pudhina-fresh-master.png and /dev/null differ diff --git a/static/capture/ritijjain-pudhina-fresh.png b/static/capture/ritijjain-pudhina-fresh.png new file mode 100644 index 000000000..56dfef1ac Binary files /dev/null and b/static/capture/ritijjain-pudhina-fresh.png differ diff --git a/static/capture/rlue-jekyll-solana-master.png b/static/capture/rlue-jekyll-solana-master.png deleted file mode 100644 index f781620a9..000000000 Binary files a/static/capture/rlue-jekyll-solana-master.png and /dev/null differ diff --git a/static/capture/rlue-jekyll-solana.png b/static/capture/rlue-jekyll-solana.png new file mode 100644 index 000000000..cc3227d3c Binary files /dev/null and b/static/capture/rlue-jekyll-solana.png differ diff --git a/static/capture/rmagon-gatsby-starter-interviews-master.png b/static/capture/rmagon-gatsby-starter-interviews-master.png deleted file mode 100644 index 0f7f6dd6a..000000000 Binary files a/static/capture/rmagon-gatsby-starter-interviews-master.png and /dev/null differ diff --git a/static/capture/rmagon-gatsby-starter-interviews.png b/static/capture/rmagon-gatsby-starter-interviews.png new file mode 100644 index 000000000..80ab8888d Binary files /dev/null and b/static/capture/rmagon-gatsby-starter-interviews.png differ diff --git a/static/capture/rmsubekti-emping-master.png b/static/capture/rmsubekti-emping-master.png deleted file mode 100644 index ce33d9434..000000000 Binary files a/static/capture/rmsubekti-emping-master.png and /dev/null differ diff --git a/static/capture/rmsubekti-emping.png b/static/capture/rmsubekti-emping.png new file mode 100644 index 000000000..2d3aaf260 Binary files /dev/null and b/static/capture/rmsubekti-emping.png differ diff --git a/static/capture/rmsubekti-nangka-gh-pages.png b/static/capture/rmsubekti-nangka-gh-pages.png deleted file mode 100644 index 16251fc85..000000000 Binary files a/static/capture/rmsubekti-nangka-gh-pages.png and /dev/null differ diff --git a/static/capture/rmsubekti-nangka.png b/static/capture/rmsubekti-nangka.png new file mode 100644 index 000000000..056393ed0 Binary files /dev/null and b/static/capture/rmsubekti-nangka.png differ diff --git a/static/capture/robertcoopercode-gatsby-netlify-cms-master.png b/static/capture/robertcoopercode-gatsby-netlify-cms-master.png deleted file mode 100644 index 6d7d062a6..000000000 Binary files a/static/capture/robertcoopercode-gatsby-netlify-cms-master.png and /dev/null differ diff --git a/static/capture/robertcoopercode-gatsby-netlify-cms.png b/static/capture/robertcoopercode-gatsby-netlify-cms.png new file mode 100644 index 000000000..fe8d1dd9f Binary files /dev/null and b/static/capture/robertcoopercode-gatsby-netlify-cms.png differ diff --git a/static/capture/robincsl-gatsby-starter-docz-master.png b/static/capture/robincsl-gatsby-starter-docz-master.png deleted file mode 100644 index e79817831..000000000 Binary files a/static/capture/robincsl-gatsby-starter-docz-master.png and /dev/null differ diff --git a/static/capture/robincsl-gatsby-starter-docz.png b/static/capture/robincsl-gatsby-starter-docz.png new file mode 100644 index 000000000..d25510c5b Binary files /dev/null and b/static/capture/robincsl-gatsby-starter-docz.png differ diff --git a/static/capture/robinmetral-gatsby-starter-under-construction-master.png b/static/capture/robinmetral-gatsby-starter-under-construction-master.png deleted file mode 100644 index 8ce280785..000000000 Binary files a/static/capture/robinmetral-gatsby-starter-under-construction-master.png and /dev/null differ diff --git a/static/capture/rohanchandra-type-theme-master.png b/static/capture/rohanchandra-type-theme-master.png deleted file mode 100644 index 2c415048c..000000000 Binary files a/static/capture/rohanchandra-type-theme-master.png and /dev/null differ diff --git a/static/capture/rohanchandra-type-theme.png b/static/capture/rohanchandra-type-theme.png new file mode 100644 index 000000000..ead8d843b Binary files /dev/null and b/static/capture/rohanchandra-type-theme.png differ diff --git a/static/capture/rohitguptab-oneshopper-master.png b/static/capture/rohitguptab-oneshopper-master.png deleted file mode 100644 index c68e856f2..000000000 Binary files a/static/capture/rohitguptab-oneshopper-master.png and /dev/null differ diff --git a/static/capture/rohitguptab-oneshopper.png b/static/capture/rohitguptab-oneshopper.png new file mode 100644 index 000000000..5b42f5496 Binary files /dev/null and b/static/capture/rohitguptab-oneshopper.png differ diff --git a/static/capture/rohitguptab-rg-portfolio-master.png b/static/capture/rohitguptab-rg-portfolio-master.png deleted file mode 100644 index 9b94a72f6..000000000 Binary files a/static/capture/rohitguptab-rg-portfolio-master.png and /dev/null differ diff --git a/static/capture/rohitguptab-rg-portfolio.png b/static/capture/rohitguptab-rg-portfolio.png new file mode 100644 index 000000000..49676e2ef Binary files /dev/null and b/static/capture/rohitguptab-rg-portfolio.png differ diff --git a/static/capture/roninro-hugo-theme-puppet.png b/static/capture/roninro-hugo-theme-puppet.png new file mode 100644 index 000000000..077373866 Binary files /dev/null and b/static/capture/roninro-hugo-theme-puppet.png differ diff --git a/static/capture/ronv-colorie-master.png b/static/capture/ronv-colorie-master.png deleted file mode 100644 index 6d9277150..000000000 Binary files a/static/capture/ronv-colorie-master.png and /dev/null differ diff --git a/static/capture/ronv-colorie.png b/static/capture/ronv-colorie.png new file mode 100644 index 000000000..ca0bffef8 Binary files /dev/null and b/static/capture/ronv-colorie.png differ diff --git a/static/capture/ronv-gray-master.png b/static/capture/ronv-gray-master.png deleted file mode 100644 index d9e1f3be7..000000000 Binary files a/static/capture/ronv-gray-master.png and /dev/null differ diff --git a/static/capture/ronv-gray.png b/static/capture/ronv-gray.png new file mode 100644 index 000000000..93034dc95 Binary files /dev/null and b/static/capture/ronv-gray.png differ diff --git a/static/capture/ronv-jam.png b/static/capture/ronv-jam.png new file mode 100644 index 000000000..d9e0537a7 Binary files /dev/null and b/static/capture/ronv-jam.png differ diff --git a/static/capture/ronv-lines-master.png b/static/capture/ronv-lines-master.png deleted file mode 100644 index 6811b0dde..000000000 Binary files a/static/capture/ronv-lines-master.png and /dev/null differ diff --git a/static/capture/ronv-lines.png b/static/capture/ronv-lines.png new file mode 100644 index 000000000..7976816b4 Binary files /dev/null and b/static/capture/ronv-lines.png differ diff --git a/static/capture/ronv-listed.png b/static/capture/ronv-listed.png new file mode 100644 index 000000000..36c326ece Binary files /dev/null and b/static/capture/ronv-listed.png differ diff --git a/static/capture/ronv-minimalist.png b/static/capture/ronv-minimalist.png new file mode 100644 index 000000000..84b29a08f Binary files /dev/null and b/static/capture/ronv-minimalist.png differ diff --git a/static/capture/ronv-sidey-master.png b/static/capture/ronv-sidey-master.png deleted file mode 100644 index 54ef145a9..000000000 Binary files a/static/capture/ronv-sidey-master.png and /dev/null differ diff --git a/static/capture/ronv-sidey.png b/static/capture/ronv-sidey.png new file mode 100644 index 000000000..e91774ec6 Binary files /dev/null and b/static/capture/ronv-sidey.png differ diff --git a/static/capture/ronv-ultra-master.png b/static/capture/ronv-ultra-master.png deleted file mode 100644 index aa172b6bd..000000000 Binary files a/static/capture/ronv-ultra-master.png and /dev/null differ diff --git a/static/capture/ronv-ultra.png b/static/capture/ronv-ultra.png new file mode 100644 index 000000000..50141b344 Binary files /dev/null and b/static/capture/ronv-ultra.png differ diff --git a/static/capture/rosario-kasper-master.png b/static/capture/rosario-kasper-master.png deleted file mode 100644 index ff3c89137..000000000 Binary files a/static/capture/rosario-kasper-master.png and /dev/null differ diff --git a/static/capture/rosario-kasper.png b/static/capture/rosario-kasper.png new file mode 100644 index 000000000..91572158c Binary files /dev/null and b/static/capture/rosario-kasper.png differ diff --git a/static/capture/rowanoulton-galileo-theme-master.png b/static/capture/rowanoulton-galileo-theme-master.png deleted file mode 100644 index f194bc791..000000000 Binary files a/static/capture/rowanoulton-galileo-theme-master.png and /dev/null differ diff --git a/static/capture/runbytech-gatsby-theme-ultronele-master.png b/static/capture/runbytech-gatsby-theme-ultronele-master.png deleted file mode 100644 index 7fd064ba6..000000000 Binary files a/static/capture/runbytech-gatsby-theme-ultronele-master.png and /dev/null differ diff --git a/static/capture/runbytech-gatsby-theme-ultronele.png b/static/capture/runbytech-gatsby-theme-ultronele.png new file mode 100644 index 000000000..ebb39a374 Binary files /dev/null and b/static/capture/runbytech-gatsby-theme-ultronele.png differ diff --git a/static/capture/rundocs-jekyll-rtd-theme-master.png b/static/capture/rundocs-jekyll-rtd-theme-master.png deleted file mode 100644 index 0b9cebe3a..000000000 Binary files a/static/capture/rundocs-jekyll-rtd-theme-master.png and /dev/null differ diff --git a/static/capture/runningstream-hugograyscale-master.png b/static/capture/runningstream-hugograyscale-master.png deleted file mode 100644 index 111cad787..000000000 Binary files a/static/capture/runningstream-hugograyscale-master.png and /dev/null differ diff --git a/static/capture/runningstream-hugograyscale.png b/static/capture/runningstream-hugograyscale.png new file mode 100644 index 000000000..121bf0286 Binary files /dev/null and b/static/capture/runningstream-hugograyscale.png differ diff --git a/static/capture/ryanfitzgerald-devblog-master.png b/static/capture/ryanfitzgerald-devblog-master.png deleted file mode 100644 index 091d37f26..000000000 Binary files a/static/capture/ryanfitzgerald-devblog-master.png and /dev/null differ diff --git a/static/capture/ryanfitzgerald-devblog.png b/static/capture/ryanfitzgerald-devblog.png new file mode 100644 index 000000000..4c2ec2d40 Binary files /dev/null and b/static/capture/ryanfitzgerald-devblog.png differ diff --git a/static/capture/ryanwiemer-gatsby-starter-gcn-master.png b/static/capture/ryanwiemer-gatsby-starter-gcn-master.png deleted file mode 100644 index ae9435db5..000000000 Binary files a/static/capture/ryanwiemer-gatsby-starter-gcn-master.png and /dev/null differ diff --git a/static/capture/ryanwiemer-gatsby-starter-gcn.png b/static/capture/ryanwiemer-gatsby-starter-gcn.png new file mode 100644 index 000000000..6c656a2aa Binary files /dev/null and b/static/capture/ryanwiemer-gatsby-starter-gcn.png differ diff --git a/static/capture/s-kris-gatsby-minimal-portfolio-blog-master.png b/static/capture/s-kris-gatsby-minimal-portfolio-blog-master.png deleted file mode 100644 index 54e741488..000000000 Binary files a/static/capture/s-kris-gatsby-minimal-portfolio-blog-master.png and /dev/null differ diff --git a/static/capture/s-kris-gatsby-minimal-portfolio-blog.png b/static/capture/s-kris-gatsby-minimal-portfolio-blog.png new file mode 100644 index 000000000..8466528a3 Binary files /dev/null and b/static/capture/s-kris-gatsby-minimal-portfolio-blog.png differ diff --git a/static/capture/saey55-hugo-elate-theme-master.png b/static/capture/saey55-hugo-elate-theme-master.png deleted file mode 100644 index 5ad46204c..000000000 Binary files a/static/capture/saey55-hugo-elate-theme-master.png and /dev/null differ diff --git a/static/capture/sag-dev-hugo-minimalist-spa-master.png b/static/capture/sag-dev-hugo-minimalist-spa-master.png deleted file mode 100644 index a84164770..000000000 Binary files a/static/capture/sag-dev-hugo-minimalist-spa-master.png and /dev/null differ diff --git a/static/capture/sagar7993-gatsby-wordpress-typescript-scss-blog-master.png b/static/capture/sagar7993-gatsby-wordpress-typescript-scss-blog-master.png deleted file mode 100644 index 6c8423e77..000000000 Binary files a/static/capture/sagar7993-gatsby-wordpress-typescript-scss-blog-master.png and /dev/null differ diff --git a/static/capture/sagar7993-gatsby-wordpress-typescript-scss-blog.png b/static/capture/sagar7993-gatsby-wordpress-typescript-scss-blog.png new file mode 100644 index 000000000..f27fa502a Binary files /dev/null and b/static/capture/sagar7993-gatsby-wordpress-typescript-scss-blog.png differ diff --git a/static/capture/salcan-beyondnothing-master.png b/static/capture/salcan-beyondnothing-master.png deleted file mode 100644 index 6e46e2267..000000000 Binary files a/static/capture/salcan-beyondnothing-master.png and /dev/null differ diff --git a/static/capture/saleor-react-storefront.png b/static/capture/saleor-react-storefront.png new file mode 100644 index 000000000..018d917f9 Binary files /dev/null and b/static/capture/saleor-react-storefront.png differ diff --git a/static/capture/salgnt-travelogue-master.png b/static/capture/salgnt-travelogue-master.png deleted file mode 100644 index 1f5909dd4..000000000 Binary files a/static/capture/salgnt-travelogue-master.png and /dev/null differ diff --git a/static/capture/salgnt-travelogue.png b/static/capture/salgnt-travelogue.png new file mode 100644 index 000000000..bfddbcded Binary files /dev/null and b/static/capture/salgnt-travelogue.png differ diff --git a/static/capture/salsysd-hugo-assembly-master.png b/static/capture/salsysd-hugo-assembly-master.png deleted file mode 100644 index 36a21e371..000000000 Binary files a/static/capture/salsysd-hugo-assembly-master.png and /dev/null differ diff --git a/static/capture/samanyougarg-hanuman-master.png b/static/capture/samanyougarg-hanuman-master.png deleted file mode 100644 index b9abbf1d0..000000000 Binary files a/static/capture/samanyougarg-hanuman-master.png and /dev/null differ diff --git a/static/capture/samesies-barber-jekyll-master.png b/static/capture/samesies-barber-jekyll-master.png deleted file mode 100644 index cc772f449..000000000 Binary files a/static/capture/samesies-barber-jekyll-master.png and /dev/null differ diff --git a/static/capture/samme-brunch-phaser-master.png b/static/capture/samme-brunch-phaser-master.png deleted file mode 100644 index a628bb39f..000000000 Binary files a/static/capture/samme-brunch-phaser-master.png and /dev/null differ diff --git a/static/capture/samme-brunch-phaser.png b/static/capture/samme-brunch-phaser.png new file mode 100644 index 000000000..01b65b13b Binary files /dev/null and b/static/capture/samme-brunch-phaser.png differ diff --git a/static/capture/samuelhorn-jamdocs-master.png b/static/capture/samuelhorn-jamdocs-master.png deleted file mode 100644 index 0a8779809..000000000 Binary files a/static/capture/samuelhorn-jamdocs-master.png and /dev/null differ diff --git a/static/capture/samuelhorn-jamdocs.png b/static/capture/samuelhorn-jamdocs.png new file mode 100644 index 000000000..d1c2322d6 Binary files /dev/null and b/static/capture/samuelhorn-jamdocs.png differ diff --git a/static/capture/samuelkraft-notion-blog-nextjs.png b/static/capture/samuelkraft-notion-blog-nextjs.png new file mode 100644 index 000000000..13498dcf7 Binary files /dev/null and b/static/capture/samuelkraft-notion-blog-nextjs.png differ diff --git a/static/capture/santosfrancisco-gatsby-starter-cv-master.png b/static/capture/santosfrancisco-gatsby-starter-cv-master.png deleted file mode 100644 index 11b5b2e6b..000000000 Binary files a/static/capture/santosfrancisco-gatsby-starter-cv-master.png and /dev/null differ diff --git a/static/capture/santosfrancisco-gatsby-starter-cv.png b/static/capture/santosfrancisco-gatsby-starter-cv.png new file mode 100644 index 000000000..b7b5b709e Binary files /dev/null and b/static/capture/santosfrancisco-gatsby-starter-cv.png differ diff --git a/static/capture/sarasate-gate-master.png b/static/capture/sarasate-gate-master.png deleted file mode 100644 index f88baeca1..000000000 Binary files a/static/capture/sarasate-gate-master.png and /dev/null differ diff --git a/static/capture/saschajullmann-gatsby-starter-gatsbythemes-master.png b/static/capture/saschajullmann-gatsby-starter-gatsbythemes-master.png deleted file mode 100644 index 4a5f42fab..000000000 Binary files a/static/capture/saschajullmann-gatsby-starter-gatsbythemes-master.png and /dev/null differ diff --git a/static/capture/sblisesivdin-biscuit.png b/static/capture/sblisesivdin-biscuit.png new file mode 100644 index 000000000..6f7e89b8a Binary files /dev/null and b/static/capture/sblisesivdin-biscuit.png differ diff --git a/static/capture/schmanat-hugo-highlights-theme-master.png b/static/capture/schmanat-hugo-highlights-theme-master.png deleted file mode 100644 index ff0b97455..000000000 Binary files a/static/capture/schmanat-hugo-highlights-theme-master.png and /dev/null differ diff --git a/static/capture/schollz-onetwothree-master.png b/static/capture/schollz-onetwothree-master.png deleted file mode 100644 index 05dc2a066..000000000 Binary files a/static/capture/schollz-onetwothree-master.png and /dev/null differ diff --git a/static/capture/schollz-onetwothree.png b/static/capture/schollz-onetwothree.png new file mode 100644 index 000000000..e575a80fa Binary files /dev/null and b/static/capture/schollz-onetwothree.png differ diff --git a/static/capture/scotte-jekyll-clean-gh-pages.png b/static/capture/scotte-jekyll-clean-gh-pages.png deleted file mode 100644 index 761587558..000000000 Binary files a/static/capture/scotte-jekyll-clean-gh-pages.png and /dev/null differ diff --git a/static/capture/scotte-jekyll-clean.png b/static/capture/scotte-jekyll-clean.png new file mode 100644 index 000000000..35af16be2 Binary files /dev/null and b/static/capture/scotte-jekyll-clean.png differ diff --git a/static/capture/scottmathson-simpol-theme-master.png b/static/capture/scottmathson-simpol-theme-master.png deleted file mode 100644 index 4a5e3ffeb..000000000 Binary files a/static/capture/scottmathson-simpol-theme-master.png and /dev/null differ diff --git a/static/capture/scottmathson-simpol-theme.png b/static/capture/scottmathson-simpol-theme.png new file mode 100644 index 000000000..4ca2f18e7 Binary files /dev/null and b/static/capture/scottmathson-simpol-theme.png differ diff --git a/static/capture/scttcper-gatsby-casper-master.png b/static/capture/scttcper-gatsby-casper-master.png deleted file mode 100644 index e5f2bac0e..000000000 Binary files a/static/capture/scttcper-gatsby-casper-master.png and /dev/null differ diff --git a/static/capture/scttcper-gatsby-casper.png b/static/capture/scttcper-gatsby-casper.png new file mode 100644 index 000000000..169963079 Binary files /dev/null and b/static/capture/scttcper-gatsby-casper.png differ diff --git a/static/capture/sdtelectronics-jekyll-theme-antarctica.png b/static/capture/sdtelectronics-jekyll-theme-antarctica.png new file mode 100644 index 000000000..220ff1e13 Binary files /dev/null and b/static/capture/sdtelectronics-jekyll-theme-antarctica.png differ diff --git a/static/capture/seanlane-gochowdown-master.png b/static/capture/seanlane-gochowdown-master.png deleted file mode 100644 index 957c74d4f..000000000 Binary files a/static/capture/seanlane-gochowdown-master.png and /dev/null differ diff --git a/static/capture/seanlane-gochowdown.png b/static/capture/seanlane-gochowdown.png new file mode 100644 index 000000000..7494df3ff Binary files /dev/null and b/static/capture/seanlane-gochowdown.png differ diff --git a/static/capture/serg-yourfolio-master.png b/static/capture/serg-yourfolio-master.png deleted file mode 100644 index cf488df28..000000000 Binary files a/static/capture/serg-yourfolio-master.png and /dev/null differ diff --git a/static/capture/sergiokopplin-indigo-gh-pages.png b/static/capture/sergiokopplin-indigo-gh-pages.png deleted file mode 100644 index 45243f706..000000000 Binary files a/static/capture/sergiokopplin-indigo-gh-pages.png and /dev/null differ diff --git a/static/capture/sergiokopplin-indigo.png b/static/capture/sergiokopplin-indigo.png new file mode 100644 index 000000000..5ee65745d Binary files /dev/null and b/static/capture/sergiokopplin-indigo.png differ diff --git a/static/capture/sfreytag-friday-theme-master.png b/static/capture/sfreytag-friday-theme-master.png deleted file mode 100644 index 02351dccd..000000000 Binary files a/static/capture/sfreytag-friday-theme-master.png and /dev/null differ diff --git a/static/capture/sfreytag-friday-theme.png b/static/capture/sfreytag-friday-theme.png new file mode 100644 index 000000000..0c8505b91 Binary files /dev/null and b/static/capture/sfreytag-friday-theme.png differ diff --git a/static/capture/shaform-hugo-theme-den-master.png b/static/capture/shaform-hugo-theme-den-master.png deleted file mode 100644 index 07a2fdf81..000000000 Binary files a/static/capture/shaform-hugo-theme-den-master.png and /dev/null differ diff --git a/static/capture/shankar-hugo-grapes-master.png b/static/capture/shankar-hugo-grapes-master.png deleted file mode 100644 index 386f8fb89..000000000 Binary files a/static/capture/shankar-hugo-grapes-master.png and /dev/null differ diff --git a/static/capture/shantanu-deshmukh-vhealth-gatsby-master.png b/static/capture/shantanu-deshmukh-vhealth-gatsby-master.png deleted file mode 100644 index 54ca0944e..000000000 Binary files a/static/capture/shantanu-deshmukh-vhealth-gatsby-master.png and /dev/null differ diff --git a/static/capture/shantanu-deshmukh-vhealth-gatsby.png b/static/capture/shantanu-deshmukh-vhealth-gatsby.png new file mode 100644 index 000000000..e69c28be2 Binary files /dev/null and b/static/capture/shantanu-deshmukh-vhealth-gatsby.png differ diff --git a/static/capture/sharadcodes-gatsby-theme-serial-programmer.png b/static/capture/sharadcodes-gatsby-theme-serial-programmer.png new file mode 100644 index 000000000..ec9439a18 Binary files /dev/null and b/static/capture/sharadcodes-gatsby-theme-serial-programmer.png differ diff --git a/static/capture/sharadcodes-geekyll-starter-blog-master.png b/static/capture/sharadcodes-geekyll-starter-blog-master.png deleted file mode 100644 index d4762e6bf..000000000 Binary files a/static/capture/sharadcodes-geekyll-starter-blog-master.png and /dev/null differ diff --git a/static/capture/sharadcodes-geekyll-starter-blog.png b/static/capture/sharadcodes-geekyll-starter-blog.png new file mode 100644 index 000000000..4fcfae36a Binary files /dev/null and b/static/capture/sharadcodes-geekyll-starter-blog.png differ diff --git a/static/capture/sharadcodes-hugo-theme-serial-programmer.png b/static/capture/sharadcodes-hugo-theme-serial-programmer.png new file mode 100644 index 000000000..1d045024d Binary files /dev/null and b/static/capture/sharadcodes-hugo-theme-serial-programmer.png differ diff --git a/static/capture/sharadcodes-jekyll-theme-dark-reader-master.png b/static/capture/sharadcodes-jekyll-theme-dark-reader.png similarity index 100% rename from static/capture/sharadcodes-jekyll-theme-dark-reader-master.png rename to static/capture/sharadcodes-jekyll-theme-dark-reader.png diff --git a/static/capture/sharadcodes-jekyll-theme-material-you.png b/static/capture/sharadcodes-jekyll-theme-material-you.png new file mode 100644 index 000000000..699058a72 Binary files /dev/null and b/static/capture/sharadcodes-jekyll-theme-material-you.png differ diff --git a/static/capture/sharadcodes-jekyll-theme-milo-master.png b/static/capture/sharadcodes-jekyll-theme-milo-master.png deleted file mode 100644 index b4a43b0ca..000000000 Binary files a/static/capture/sharadcodes-jekyll-theme-milo-master.png and /dev/null differ diff --git a/static/capture/sharadcodes-jekyll-theme-milo.png b/static/capture/sharadcodes-jekyll-theme-milo.png new file mode 100644 index 000000000..c4a479486 Binary files /dev/null and b/static/capture/sharadcodes-jekyll-theme-milo.png differ diff --git a/static/capture/sharadcodes-jekyll-theme-retro-yellow-master.png b/static/capture/sharadcodes-jekyll-theme-retro-yellow-master.png deleted file mode 100644 index 794bd0b48..000000000 Binary files a/static/capture/sharadcodes-jekyll-theme-retro-yellow-master.png and /dev/null differ diff --git a/static/capture/sharadcodes-jekyll-theme-retro-yellow.png b/static/capture/sharadcodes-jekyll-theme-retro-yellow.png new file mode 100644 index 000000000..c8f7d504c Binary files /dev/null and b/static/capture/sharadcodes-jekyll-theme-retro-yellow.png differ diff --git a/static/capture/sharadcodes-jekyll-theme-serial-programmer.png b/static/capture/sharadcodes-jekyll-theme-serial-programmer.png new file mode 100644 index 000000000..3c59b2351 Binary files /dev/null and b/static/capture/sharadcodes-jekyll-theme-serial-programmer.png differ diff --git a/static/capture/sharu725-ashwath-master.png b/static/capture/sharu725-ashwath-master.png deleted file mode 100644 index 7206f4fe2..000000000 Binary files a/static/capture/sharu725-ashwath-master.png and /dev/null differ diff --git a/static/capture/sharu725-bheema-master.png b/static/capture/sharu725-bheema-master.png deleted file mode 100644 index 845410c94..000000000 Binary files a/static/capture/sharu725-bheema-master.png and /dev/null differ diff --git a/static/capture/sharu725-bheema.png b/static/capture/sharu725-bheema.png new file mode 100644 index 000000000..9058ed0fc Binary files /dev/null and b/static/capture/sharu725-bheema.png differ diff --git a/static/capture/sharu725-cards-master.png b/static/capture/sharu725-cards-master.png deleted file mode 100644 index a8eae1c98..000000000 Binary files a/static/capture/sharu725-cards-master.png and /dev/null differ diff --git a/static/capture/sharu725-cards.png b/static/capture/sharu725-cards.png new file mode 100644 index 000000000..d7dc33d6a Binary files /dev/null and b/static/capture/sharu725-cards.png differ diff --git a/static/capture/sharu725-gatok-master.png b/static/capture/sharu725-gatok-master.png deleted file mode 100644 index 2db4658f9..000000000 Binary files a/static/capture/sharu725-gatok-master.png and /dev/null differ diff --git a/static/capture/sharu725-hagura-gh-pages.png b/static/capture/sharu725-hagura-gh-pages.png deleted file mode 100644 index 0d09c1a18..000000000 Binary files a/static/capture/sharu725-hagura-gh-pages.png and /dev/null differ diff --git a/static/capture/sharu725-hagura.png b/static/capture/sharu725-hagura.png new file mode 100644 index 000000000..15879d32a Binary files /dev/null and b/static/capture/sharu725-hagura.png differ diff --git a/static/capture/sharu725-karna-master.png b/static/capture/sharu725-karna-master.png deleted file mode 100644 index b90cc0b04..000000000 Binary files a/static/capture/sharu725-karna-master.png and /dev/null differ diff --git a/static/capture/sharu725-karna.png b/static/capture/sharu725-karna.png new file mode 100644 index 000000000..6eceb5d0b Binary files /dev/null and b/static/capture/sharu725-karna.png differ diff --git a/static/capture/sharu725-online-cv-master.png b/static/capture/sharu725-online-cv-master.png deleted file mode 100644 index 416e5914a..000000000 Binary files a/static/capture/sharu725-online-cv-master.png and /dev/null differ diff --git a/static/capture/sharu725-online-cv.png b/static/capture/sharu725-online-cv.png new file mode 100644 index 000000000..fa9002269 Binary files /dev/null and b/static/capture/sharu725-online-cv.png differ diff --git a/static/capture/sharu725-slides-master.png b/static/capture/sharu725-slides-master.png deleted file mode 100644 index 2cf8c6d3c..000000000 Binary files a/static/capture/sharu725-slides-master.png and /dev/null differ diff --git a/static/capture/sharu725-thunder-master.png b/static/capture/sharu725-thunder-master.png deleted file mode 100644 index 7a6411b67..000000000 Binary files a/static/capture/sharu725-thunder-master.png and /dev/null differ diff --git a/static/capture/sharu725-thunder.png b/static/capture/sharu725-thunder.png new file mode 100644 index 000000000..e1e764002 Binary files /dev/null and b/static/capture/sharu725-thunder.png differ diff --git a/static/capture/sharu725-vyaasa-master.png b/static/capture/sharu725-vyaasa-master.png deleted file mode 100644 index d23f75f01..000000000 Binary files a/static/capture/sharu725-vyaasa-master.png and /dev/null differ diff --git a/static/capture/sharvaridesai-hexo-theme-edinburgh-master.png b/static/capture/sharvaridesai-hexo-theme-edinburgh-master.png deleted file mode 100644 index 3e38196ff..000000000 Binary files a/static/capture/sharvaridesai-hexo-theme-edinburgh-master.png and /dev/null differ diff --git a/static/capture/sharvaridesai-hexo-theme-edinburgh.png b/static/capture/sharvaridesai-hexo-theme-edinburgh.png new file mode 100644 index 000000000..0caa8d513 Binary files /dev/null and b/static/capture/sharvaridesai-hexo-theme-edinburgh.png differ diff --git a/static/capture/shawnteoh-matjek-gh-pages.png b/static/capture/shawnteoh-matjek-gh-pages.png deleted file mode 100644 index 7a068214e..000000000 Binary files a/static/capture/shawnteoh-matjek-gh-pages.png and /dev/null differ diff --git a/static/capture/shawnteoh-matjek.png b/static/capture/shawnteoh-matjek.png new file mode 100644 index 000000000..482ae1f91 Binary files /dev/null and b/static/capture/shawnteoh-matjek.png differ diff --git a/static/capture/shenliyang-hexo-theme-snippet-master.png b/static/capture/shenliyang-hexo-theme-snippet-master.png deleted file mode 100644 index 5bce5dcca..000000000 Binary files a/static/capture/shenliyang-hexo-theme-snippet-master.png and /dev/null differ diff --git a/static/capture/shenliyang-hexo-theme-snippet.png b/static/capture/shenliyang-hexo-theme-snippet.png new file mode 100644 index 000000000..7cbafd370 Binary files /dev/null and b/static/capture/shenliyang-hexo-theme-snippet.png differ diff --git a/static/capture/shenoybr-hugo-goa-master.png b/static/capture/shenoybr-hugo-goa-master.png deleted file mode 100644 index 1f064e810..000000000 Binary files a/static/capture/shenoybr-hugo-goa-master.png and /dev/null differ diff --git a/static/capture/shobhitchittora-gatsby-starter-fashion-portfolio-master.png b/static/capture/shobhitchittora-gatsby-starter-fashion-portfolio-master.png deleted file mode 100644 index 5659e8fe8..000000000 Binary files a/static/capture/shobhitchittora-gatsby-starter-fashion-portfolio-master.png and /dev/null differ diff --git a/static/capture/shobhitchittora-gatsby-starter-fashion-portfolio.png b/static/capture/shobhitchittora-gatsby-starter-fashion-portfolio.png new file mode 100644 index 000000000..fc1d15b5e Binary files /dev/null and b/static/capture/shobhitchittora-gatsby-starter-fashion-portfolio.png differ diff --git a/static/capture/siawyoung-immaculate-master.png b/static/capture/siawyoung-immaculate.png similarity index 100% rename from static/capture/siawyoung-immaculate-master.png rename to static/capture/siawyoung-immaculate.png diff --git a/static/capture/siegerts-hugo-theme-basic-master.png b/static/capture/siegerts-hugo-theme-basic-master.png deleted file mode 100644 index 62007ccaa..000000000 Binary files a/static/capture/siegerts-hugo-theme-basic-master.png and /dev/null differ diff --git a/static/capture/siegerts-hugo-theme-basic.png b/static/capture/siegerts-hugo-theme-basic.png new file mode 100644 index 000000000..2ec4fbc03 Binary files /dev/null and b/static/capture/siegerts-hugo-theme-basic.png differ diff --git a/static/capture/simarmannsingh-gatsby-netlifycms-starter-template.png b/static/capture/simarmannsingh-gatsby-netlifycms-starter-template.png new file mode 100644 index 000000000..833762e99 Binary files /dev/null and b/static/capture/simarmannsingh-gatsby-netlifycms-starter-template.png differ diff --git a/static/capture/simplecode-io-gatsby-crafty-theme-master.png b/static/capture/simplecode-io-gatsby-crafty-theme-master.png deleted file mode 100644 index 68456a1b5..000000000 Binary files a/static/capture/simplecode-io-gatsby-crafty-theme-master.png and /dev/null differ diff --git a/static/capture/simplecode-io-gatsby-crafty-theme.png b/static/capture/simplecode-io-gatsby-crafty-theme.png new file mode 100644 index 000000000..4f9610434 Binary files /dev/null and b/static/capture/simplecode-io-gatsby-crafty-theme.png differ diff --git a/static/capture/simpleyyt-jekyll-jacman-master.png b/static/capture/simpleyyt-jekyll-jacman-master.png deleted file mode 100644 index 98a1d9e18..000000000 Binary files a/static/capture/simpleyyt-jekyll-jacman-master.png and /dev/null differ diff --git a/static/capture/simpleyyt-jekyll-jacman.png b/static/capture/simpleyyt-jekyll-jacman.png new file mode 100644 index 000000000..d2e507e70 Binary files /dev/null and b/static/capture/simpleyyt-jekyll-jacman.png differ diff --git a/static/capture/simpleyyt-jekyll-simpleyyt-master.png b/static/capture/simpleyyt-jekyll-simpleyyt-master.png deleted file mode 100644 index 62c4a2000..000000000 Binary files a/static/capture/simpleyyt-jekyll-simpleyyt-master.png and /dev/null differ diff --git a/static/capture/simpleyyt-jekyll-simpleyyt.png b/static/capture/simpleyyt-jekyll-simpleyyt.png new file mode 100644 index 000000000..e811db531 Binary files /dev/null and b/static/capture/simpleyyt-jekyll-simpleyyt.png differ diff --git a/static/capture/simpleyyt-jekyll-theme-next-master.png b/static/capture/simpleyyt-jekyll-theme-next-master.png deleted file mode 100644 index 8fdbb21dd..000000000 Binary files a/static/capture/simpleyyt-jekyll-theme-next-master.png and /dev/null differ diff --git a/static/capture/simpleyyt-jekyll-theme-next.png b/static/capture/simpleyyt-jekyll-theme-next.png new file mode 100644 index 000000000..49af79011 Binary files /dev/null and b/static/capture/simpleyyt-jekyll-theme-next.png differ diff --git a/static/capture/simply007-kontent-sample-app-gatsby-intranet-master.png b/static/capture/simply007-kontent-sample-app-gatsby-intranet-master.png deleted file mode 100644 index 8fb8d6b6f..000000000 Binary files a/static/capture/simply007-kontent-sample-app-gatsby-intranet-master.png and /dev/null differ diff --git a/static/capture/simply007-kontent-sample-app-gatsby-intranet.png b/static/capture/simply007-kontent-sample-app-gatsby-intranet.png new file mode 100644 index 000000000..b0a862798 Binary files /dev/null and b/static/capture/simply007-kontent-sample-app-gatsby-intranet.png differ diff --git a/static/capture/simply007-kontent-sample-app-svelte-sapper-master.png b/static/capture/simply007-kontent-sample-app-svelte-sapper-master.png deleted file mode 100644 index cfeb88c74..000000000 Binary files a/static/capture/simply007-kontent-sample-app-svelte-sapper-master.png and /dev/null differ diff --git a/static/capture/simply007-kontent-sample-app-svelte-sapper.png b/static/capture/simply007-kontent-sample-app-svelte-sapper.png new file mode 100644 index 000000000..fff027a36 Binary files /dev/null and b/static/capture/simply007-kontent-sample-app-svelte-sapper.png differ diff --git a/static/capture/simply007-kontent-template-gatsby-landing-page-photon-master.png b/static/capture/simply007-kontent-template-gatsby-landing-page-photon-master.png deleted file mode 100644 index a71f357d0..000000000 Binary files a/static/capture/simply007-kontent-template-gatsby-landing-page-photon-master.png and /dev/null differ diff --git a/static/capture/simply007-kontent-template-gatsby-landing-page-photon.png b/static/capture/simply007-kontent-template-gatsby-landing-page-photon.png new file mode 100644 index 000000000..32ec61038 Binary files /dev/null and b/static/capture/simply007-kontent-template-gatsby-landing-page-photon.png differ diff --git a/static/capture/slashformotion-hugo-tufte.png b/static/capture/slashformotion-hugo-tufte.png new file mode 100644 index 000000000..751f8f2dd Binary files /dev/null and b/static/capture/slashformotion-hugo-tufte.png differ diff --git a/static/capture/smakosh-gatsby-apollo-starter-master.png b/static/capture/smakosh-gatsby-apollo-starter-master.png deleted file mode 100644 index 53ee808fa..000000000 Binary files a/static/capture/smakosh-gatsby-apollo-starter-master.png and /dev/null differ diff --git a/static/capture/smakosh-gatsby-apollo-starter.png b/static/capture/smakosh-gatsby-apollo-starter.png new file mode 100644 index 000000000..a9c9464ff Binary files /dev/null and b/static/capture/smakosh-gatsby-apollo-starter.png differ diff --git a/static/capture/smakosh-gatsby-app-starter-rest-api-master.png b/static/capture/smakosh-gatsby-app-starter-rest-api-master.png deleted file mode 100644 index b68f2542e..000000000 Binary files a/static/capture/smakosh-gatsby-app-starter-rest-api-master.png and /dev/null differ diff --git a/static/capture/smakosh-gatsby-app-starter-rest-api.png b/static/capture/smakosh-gatsby-app-starter-rest-api.png new file mode 100644 index 000000000..ea6d099cc Binary files /dev/null and b/static/capture/smakosh-gatsby-app-starter-rest-api.png differ diff --git a/static/capture/smakosh-gatsby-portfolio-dev-master.png b/static/capture/smakosh-gatsby-portfolio-dev-master.png deleted file mode 100644 index 89c67d458..000000000 Binary files a/static/capture/smakosh-gatsby-portfolio-dev-master.png and /dev/null differ diff --git a/static/capture/smakosh-gatsby-portfolio-dev.png b/static/capture/smakosh-gatsby-portfolio-dev.png new file mode 100644 index 000000000..2e4da1531 Binary files /dev/null and b/static/capture/smakosh-gatsby-portfolio-dev.png differ diff --git a/static/capture/smakosh-gatsby-starter-i18n-master.png b/static/capture/smakosh-gatsby-starter-i18n-master.png deleted file mode 100644 index 98d80d6fc..000000000 Binary files a/static/capture/smakosh-gatsby-starter-i18n-master.png and /dev/null differ diff --git a/static/capture/smallmuou-jekyll-pithy-master.png b/static/capture/smallmuou-jekyll-pithy-master.png deleted file mode 100644 index 7c3fcd68e..000000000 Binary files a/static/capture/smallmuou-jekyll-pithy-master.png and /dev/null differ diff --git a/static/capture/smallmuou-jekyll-pithy.png b/static/capture/smallmuou-jekyll-pithy.png new file mode 100644 index 000000000..5eca872f6 Binary files /dev/null and b/static/capture/smallmuou-jekyll-pithy.png differ diff --git a/static/capture/smastrom-headless-gatsby-multilang.png b/static/capture/smastrom-headless-gatsby-multilang.png new file mode 100644 index 000000000..e7e96e867 Binary files /dev/null and b/static/capture/smastrom-headless-gatsby-multilang.png differ diff --git a/static/capture/smolcodes-twentytwenyonetheme-main.png b/static/capture/smolcodes-twentytwenyonetheme-main.png deleted file mode 100644 index 6538ebc3b..000000000 Binary files a/static/capture/smolcodes-twentytwenyonetheme-main.png and /dev/null differ diff --git a/static/capture/smolcodes-twentytwenyonetheme.png b/static/capture/smolcodes-twentytwenyonetheme.png new file mode 100644 index 000000000..4228eca50 Binary files /dev/null and b/static/capture/smolcodes-twentytwenyonetheme.png differ diff --git a/static/capture/snipcart-11ty-demo-snipcart-master.png b/static/capture/snipcart-11ty-demo-snipcart-master.png deleted file mode 100644 index fe573b190..000000000 Binary files a/static/capture/snipcart-11ty-demo-snipcart-master.png and /dev/null differ diff --git a/static/capture/snipcart-11ty-demo-snipcart.png b/static/capture/snipcart-11ty-demo-snipcart.png new file mode 100644 index 000000000..d561a9be1 Binary files /dev/null and b/static/capture/snipcart-11ty-demo-snipcart.png differ diff --git a/static/capture/snipcart-directus-metalsmith-snipcart-master.png b/static/capture/snipcart-directus-metalsmith-snipcart-master.png deleted file mode 100644 index 6838d7f82..000000000 Binary files a/static/capture/snipcart-directus-metalsmith-snipcart-master.png and /dev/null differ diff --git a/static/capture/snipcart-directus-metalsmith-snipcart.png b/static/capture/snipcart-directus-metalsmith-snipcart.png new file mode 100644 index 000000000..b12ff9c93 Binary files /dev/null and b/static/capture/snipcart-directus-metalsmith-snipcart.png differ diff --git a/static/capture/snipcart-snipcart-middleman-integration-master.png b/static/capture/snipcart-snipcart-middleman-integration-master.png deleted file mode 100644 index d9cc37a8a..000000000 Binary files a/static/capture/snipcart-snipcart-middleman-integration-master.png and /dev/null differ diff --git a/static/capture/snipcart-snipcart-middleman-integration.png b/static/capture/snipcart-snipcart-middleman-integration.png new file mode 100644 index 000000000..ab42d68ca Binary files /dev/null and b/static/capture/snipcart-snipcart-middleman-integration.png differ diff --git a/static/capture/snipcart-stackbit-theme-planty-master.png b/static/capture/snipcart-stackbit-theme-planty-master.png deleted file mode 100644 index 1871312df..000000000 Binary files a/static/capture/snipcart-stackbit-theme-planty-master.png and /dev/null differ diff --git a/static/capture/snipcart-stackbit-theme-planty.png b/static/capture/snipcart-stackbit-theme-planty.png new file mode 100644 index 000000000..424fa0207 Binary files /dev/null and b/static/capture/snipcart-stackbit-theme-planty.png differ diff --git a/static/capture/songroger-murmur-master.png b/static/capture/songroger-murmur-master.png deleted file mode 100644 index e881eaac2..000000000 Binary files a/static/capture/songroger-murmur-master.png and /dev/null differ diff --git a/static/capture/songroger-murmur.png b/static/capture/songroger-murmur.png new file mode 100644 index 000000000..3528e4c04 Binary files /dev/null and b/static/capture/songroger-murmur.png differ diff --git a/static/capture/south-paw-awesome-gatsby-starter-master.png b/static/capture/south-paw-awesome-gatsby-starter-master.png deleted file mode 100644 index 759ca07bc..000000000 Binary files a/static/capture/south-paw-awesome-gatsby-starter-master.png and /dev/null differ diff --git a/static/capture/south-paw-awesome-gatsby-starter.png b/static/capture/south-paw-awesome-gatsby-starter.png new file mode 100644 index 000000000..8d639b6e9 Binary files /dev/null and b/static/capture/south-paw-awesome-gatsby-starter.png differ diff --git a/static/capture/spaceg-glas-master.png b/static/capture/spaceg-glas-master.png deleted file mode 100644 index 04ab63755..000000000 Binary files a/static/capture/spaceg-glas-master.png and /dev/null differ diff --git a/static/capture/sparanoid-almace-scaffolding-master.png b/static/capture/sparanoid-almace-scaffolding-master.png deleted file mode 100644 index de238c0d5..000000000 Binary files a/static/capture/sparanoid-almace-scaffolding-master.png and /dev/null differ diff --git a/static/capture/sparanoid-almace-scaffolding.png b/static/capture/sparanoid-almace-scaffolding.png new file mode 100644 index 000000000..64355f353 Binary files /dev/null and b/static/capture/sparanoid-almace-scaffolding.png differ diff --git a/static/capture/spech66-bootstrap-bp-hugo-startpage-master.png b/static/capture/spech66-bootstrap-bp-hugo-startpage-master.png deleted file mode 100644 index fe98e359e..000000000 Binary files a/static/capture/spech66-bootstrap-bp-hugo-startpage-master.png and /dev/null differ diff --git a/static/capture/spech66-bootstrap-bp-hugo-theme-master.png b/static/capture/spech66-bootstrap-bp-hugo-theme-master.png deleted file mode 100644 index fe25c4c87..000000000 Binary files a/static/capture/spech66-bootstrap-bp-hugo-theme-master.png and /dev/null differ diff --git a/static/capture/spf13-hyde-master.png b/static/capture/spf13-hyde-master.png deleted file mode 100644 index 40501e822..000000000 Binary files a/static/capture/spf13-hyde-master.png and /dev/null differ diff --git a/static/capture/spinalcms-11ty-docs-template.png b/static/capture/spinalcms-11ty-docs-template.png new file mode 100644 index 000000000..bdb51602b Binary files /dev/null and b/static/capture/spinalcms-11ty-docs-template.png differ diff --git a/static/capture/spookey-slick-master.png b/static/capture/spookey-slick-master.png deleted file mode 100644 index dbacdab43..000000000 Binary files a/static/capture/spookey-slick-master.png and /dev/null differ diff --git a/static/capture/squidfunk-mkdocs-material-master.png b/static/capture/squidfunk-mkdocs-material-master.png deleted file mode 100644 index 1bca4440f..000000000 Binary files a/static/capture/squidfunk-mkdocs-material-master.png and /dev/null differ diff --git a/static/capture/squidfunk-mkdocs-material.png b/static/capture/squidfunk-mkdocs-material.png new file mode 100644 index 000000000..4726061bf Binary files /dev/null and b/static/capture/squidfunk-mkdocs-material.png differ diff --git a/static/capture/ssokurenko-jekyll-smart-material-gh-pages.png b/static/capture/ssokurenko-jekyll-smart-material-gh-pages.png deleted file mode 100644 index 04e5f8b35..000000000 Binary files a/static/capture/ssokurenko-jekyll-smart-material-gh-pages.png and /dev/null differ diff --git a/static/capture/ssokurenko-jekyll-smart-material.png b/static/capture/ssokurenko-jekyll-smart-material.png new file mode 100644 index 000000000..425708c98 Binary files /dev/null and b/static/capture/ssokurenko-jekyll-smart-material.png differ diff --git a/static/capture/st4ple-solid-jekyll-master.png b/static/capture/st4ple-solid-jekyll-master.png deleted file mode 100644 index 65c572fe9..000000000 Binary files a/static/capture/st4ple-solid-jekyll-master.png and /dev/null differ diff --git a/static/capture/st4ple-solid-jekyll.png b/static/capture/st4ple-solid-jekyll.png new file mode 100644 index 000000000..844748087 Binary files /dev/null and b/static/capture/st4ple-solid-jekyll.png differ diff --git a/static/capture/stackbit-stackbit-theme-ampersand-master.png b/static/capture/stackbit-stackbit-theme-ampersand-master.png deleted file mode 100644 index bf2a301bf..000000000 Binary files a/static/capture/stackbit-stackbit-theme-ampersand-master.png and /dev/null differ diff --git a/static/capture/stackbit-stackbit-theme-azimuth-master.png b/static/capture/stackbit-stackbit-theme-azimuth-master.png deleted file mode 100644 index 9e6ade677..000000000 Binary files a/static/capture/stackbit-stackbit-theme-azimuth-master.png and /dev/null differ diff --git a/static/capture/stackbit-stackbit-theme-exto-master.png b/static/capture/stackbit-stackbit-theme-exto-master.png deleted file mode 100644 index cb9851f46..000000000 Binary files a/static/capture/stackbit-stackbit-theme-exto-master.png and /dev/null differ diff --git a/static/capture/stackbit-stackbit-theme-fjord-master.png b/static/capture/stackbit-stackbit-theme-fjord-master.png deleted file mode 100644 index 9f457c079..000000000 Binary files a/static/capture/stackbit-stackbit-theme-fjord-master.png and /dev/null differ diff --git a/static/capture/stackbit-stackbit-theme-fresh-master.png b/static/capture/stackbit-stackbit-theme-fresh-master.png deleted file mode 100644 index d755e8d75..000000000 Binary files a/static/capture/stackbit-stackbit-theme-fresh-master.png and /dev/null differ diff --git a/static/capture/stackbit-stackbit-theme-starter-master.png b/static/capture/stackbit-stackbit-theme-starter-master.png deleted file mode 100644 index 4b99261bd..000000000 Binary files a/static/capture/stackbit-stackbit-theme-starter-master.png and /dev/null differ diff --git a/static/capture/stackbit-themes-agency-nextjs.png b/static/capture/stackbit-themes-agency-nextjs.png new file mode 100644 index 000000000..02d01eea4 Binary files /dev/null and b/static/capture/stackbit-themes-agency-nextjs.png differ diff --git a/static/capture/stackbit-themes-ampersand-nextjs.png b/static/capture/stackbit-themes-ampersand-nextjs.png new file mode 100644 index 000000000..a8829458b Binary files /dev/null and b/static/capture/stackbit-themes-ampersand-nextjs.png differ diff --git a/static/capture/stackbit-themes-app-nextjs.png b/static/capture/stackbit-themes-app-nextjs.png new file mode 100644 index 000000000..f42256721 Binary files /dev/null and b/static/capture/stackbit-themes-app-nextjs.png differ diff --git a/static/capture/stackbit-themes-azimuth-gatsby-master.png b/static/capture/stackbit-themes-azimuth-gatsby-master.png deleted file mode 100644 index 0e25fb76f..000000000 Binary files a/static/capture/stackbit-themes-azimuth-gatsby-master.png and /dev/null differ diff --git a/static/capture/stackbit-themes-azimuth-hugo-master.png b/static/capture/stackbit-themes-azimuth-hugo-master.png deleted file mode 100644 index 0e25fb76f..000000000 Binary files a/static/capture/stackbit-themes-azimuth-hugo-master.png and /dev/null differ diff --git a/static/capture/stackbit-themes-azimuth-jekyll-master.png b/static/capture/stackbit-themes-azimuth-jekyll-master.png deleted file mode 100644 index 0e25fb76f..000000000 Binary files a/static/capture/stackbit-themes-azimuth-jekyll-master.png and /dev/null differ diff --git a/static/capture/stackbit-themes-azimuth-nextjs-master.png b/static/capture/stackbit-themes-azimuth-nextjs-master.png deleted file mode 100644 index 0e25fb76f..000000000 Binary files a/static/capture/stackbit-themes-azimuth-nextjs-master.png and /dev/null differ diff --git a/static/capture/stackbit-themes-azimuth-nextjs.png b/static/capture/stackbit-themes-azimuth-nextjs.png new file mode 100644 index 000000000..3e6e47088 Binary files /dev/null and b/static/capture/stackbit-themes-azimuth-nextjs.png differ diff --git a/static/capture/stackbit-themes-book-nextjs.png b/static/capture/stackbit-themes-book-nextjs.png new file mode 100644 index 000000000..9bba8e940 Binary files /dev/null and b/static/capture/stackbit-themes-book-nextjs.png differ diff --git a/static/capture/stackbit-themes-diy-gatsby-master.png b/static/capture/stackbit-themes-diy-gatsby-master.png deleted file mode 100644 index 9a94419ab..000000000 Binary files a/static/capture/stackbit-themes-diy-gatsby-master.png and /dev/null differ diff --git a/static/capture/stackbit-themes-diy-hugo-master.png b/static/capture/stackbit-themes-diy-hugo-master.png deleted file mode 100644 index 9a94419ab..000000000 Binary files a/static/capture/stackbit-themes-diy-hugo-master.png and /dev/null differ diff --git a/static/capture/stackbit-themes-diy-jekyll-master.png b/static/capture/stackbit-themes-diy-jekyll-master.png deleted file mode 100644 index 9a94419ab..000000000 Binary files a/static/capture/stackbit-themes-diy-jekyll-master.png and /dev/null differ diff --git a/static/capture/stackbit-stackbit-theme-diy-master.png b/static/capture/stackbit-themes-diy-nextjs.png similarity index 100% rename from static/capture/stackbit-stackbit-theme-diy-master.png rename to static/capture/stackbit-themes-diy-nextjs.png diff --git a/static/capture/stackbit-themes-event-nextjs.png b/static/capture/stackbit-themes-event-nextjs.png new file mode 100644 index 000000000..1094017e1 Binary files /dev/null and b/static/capture/stackbit-themes-event-nextjs.png differ diff --git a/static/capture/stackbit-themes-exto-gatsby-master.png b/static/capture/stackbit-themes-exto-gatsby-master.png deleted file mode 100644 index ca6eac677..000000000 Binary files a/static/capture/stackbit-themes-exto-gatsby-master.png and /dev/null differ diff --git a/static/capture/stackbit-themes-exto-hugo-master.png b/static/capture/stackbit-themes-exto-hugo-master.png deleted file mode 100644 index ca6eac677..000000000 Binary files a/static/capture/stackbit-themes-exto-hugo-master.png and /dev/null differ diff --git a/static/capture/stackbit-themes-exto-jekyll-master.png b/static/capture/stackbit-themes-exto-jekyll-master.png deleted file mode 100644 index ca6eac677..000000000 Binary files a/static/capture/stackbit-themes-exto-jekyll-master.png and /dev/null differ diff --git a/static/capture/stackbit-themes-exto-nextjs.png b/static/capture/stackbit-themes-exto-nextjs.png new file mode 100644 index 000000000..2e6e223d4 Binary files /dev/null and b/static/capture/stackbit-themes-exto-nextjs.png differ diff --git a/static/capture/stackbit-themes-fjord-gatsby-master.png b/static/capture/stackbit-themes-fjord-gatsby-master.png deleted file mode 100644 index 869e85a1d..000000000 Binary files a/static/capture/stackbit-themes-fjord-gatsby-master.png and /dev/null differ diff --git a/static/capture/stackbit-themes-fjord-hugo-master.png b/static/capture/stackbit-themes-fjord-hugo-master.png deleted file mode 100644 index 869e85a1d..000000000 Binary files a/static/capture/stackbit-themes-fjord-hugo-master.png and /dev/null differ diff --git a/static/capture/stackbit-themes-fjord-jekyll-master.png b/static/capture/stackbit-themes-fjord-jekyll-master.png deleted file mode 100644 index 869e85a1d..000000000 Binary files a/static/capture/stackbit-themes-fjord-jekyll-master.png and /dev/null differ diff --git a/static/capture/stackbit-themes-fjord-nextjs.png b/static/capture/stackbit-themes-fjord-nextjs.png new file mode 100644 index 000000000..6d8868c98 Binary files /dev/null and b/static/capture/stackbit-themes-fjord-nextjs.png differ diff --git a/static/capture/stackbit-themes-fresh-nextjs.png b/static/capture/stackbit-themes-fresh-nextjs.png new file mode 100644 index 000000000..7492dc5a0 Binary files /dev/null and b/static/capture/stackbit-themes-fresh-nextjs.png differ diff --git a/static/capture/stackbit-themes-libris-nextjs.png b/static/capture/stackbit-themes-libris-nextjs.png new file mode 100644 index 000000000..81e628784 Binary files /dev/null and b/static/capture/stackbit-themes-libris-nextjs.png differ diff --git a/static/capture/stackbit-themes-personal-nextjs.png b/static/capture/stackbit-themes-personal-nextjs.png new file mode 100644 index 000000000..b23b1fa40 Binary files /dev/null and b/static/capture/stackbit-themes-personal-nextjs.png differ diff --git a/static/capture/stackbit-themes-podcaster-nextjs.png b/static/capture/stackbit-themes-podcaster-nextjs.png new file mode 100644 index 000000000..397509e34 Binary files /dev/null and b/static/capture/stackbit-themes-podcaster-nextjs.png differ diff --git a/static/capture/stackbit-themes-stackbit-starter-gatsby-master.png b/static/capture/stackbit-themes-stackbit-starter-gatsby-master.png deleted file mode 100644 index 59cfc66b2..000000000 Binary files a/static/capture/stackbit-themes-stackbit-starter-gatsby-master.png and /dev/null differ diff --git a/static/capture/stackbit-themes-stackbit-starter-hugo-master.png b/static/capture/stackbit-themes-stackbit-starter-hugo-master.png deleted file mode 100644 index 59cfc66b2..000000000 Binary files a/static/capture/stackbit-themes-stackbit-starter-hugo-master.png and /dev/null differ diff --git a/static/capture/stackbit-themes-stackbit-starter-jekyll-master.png b/static/capture/stackbit-themes-stackbit-starter-jekyll-master.png deleted file mode 100644 index 59cfc66b2..000000000 Binary files a/static/capture/stackbit-themes-stackbit-starter-jekyll-master.png and /dev/null differ diff --git a/static/capture/stackbit-themes-stackbit-starter-nextjs-master.png b/static/capture/stackbit-themes-stackbit-starter-nextjs-master.png deleted file mode 100644 index 59cfc66b2..000000000 Binary files a/static/capture/stackbit-themes-stackbit-starter-nextjs-master.png and /dev/null differ diff --git a/static/capture/stackbit-stackbit-theme-vanilla-master.png b/static/capture/stackbit-themes-vanilla-jekyll.png similarity index 100% rename from static/capture/stackbit-stackbit-theme-vanilla-master.png rename to static/capture/stackbit-themes-vanilla-jekyll.png diff --git a/static/capture/stackbit-themes-vanilla-nextjs.png b/static/capture/stackbit-themes-vanilla-nextjs.png new file mode 100644 index 000000000..90f8651c8 Binary files /dev/null and b/static/capture/stackbit-themes-vanilla-nextjs.png differ diff --git a/static/capture/stackbithq-stackbit-theme-ampersand-master.png b/static/capture/stackbithq-stackbit-theme-ampersand-master.png deleted file mode 100644 index f5b057b30..000000000 Binary files a/static/capture/stackbithq-stackbit-theme-ampersand-master.png and /dev/null differ diff --git a/static/capture/stackbithq-stackbit-theme-azimuth-master.png b/static/capture/stackbithq-stackbit-theme-azimuth-master.png deleted file mode 100644 index 0e25fb76f..000000000 Binary files a/static/capture/stackbithq-stackbit-theme-azimuth-master.png and /dev/null differ diff --git a/static/capture/stackbithq-stackbit-theme-diy-master.png b/static/capture/stackbithq-stackbit-theme-diy-master.png deleted file mode 100644 index 9a94419ab..000000000 Binary files a/static/capture/stackbithq-stackbit-theme-diy-master.png and /dev/null differ diff --git a/static/capture/stackbithq-stackbit-theme-exto-master.png b/static/capture/stackbithq-stackbit-theme-exto-master.png deleted file mode 100644 index ca6eac677..000000000 Binary files a/static/capture/stackbithq-stackbit-theme-exto-master.png and /dev/null differ diff --git a/static/capture/stackbithq-stackbit-theme-fjord-master.png b/static/capture/stackbithq-stackbit-theme-fjord-master.png deleted file mode 100644 index 869e85a1d..000000000 Binary files a/static/capture/stackbithq-stackbit-theme-fjord-master.png and /dev/null differ diff --git a/static/capture/stackbithq-stackbit-theme-fresh-master.png b/static/capture/stackbithq-stackbit-theme-fresh-master.png deleted file mode 100644 index 513cd2695..000000000 Binary files a/static/capture/stackbithq-stackbit-theme-fresh-master.png and /dev/null differ diff --git a/static/capture/stackbithq-stackbit-theme-libris-master.png b/static/capture/stackbithq-stackbit-theme-libris-master.png deleted file mode 100644 index eabbef61b..000000000 Binary files a/static/capture/stackbithq-stackbit-theme-libris-master.png and /dev/null differ diff --git a/static/capture/stackbithq-stackbit-theme-starter-master.png b/static/capture/stackbithq-stackbit-theme-starter-master.png deleted file mode 100644 index 59cfc66b2..000000000 Binary files a/static/capture/stackbithq-stackbit-theme-starter-master.png and /dev/null differ diff --git a/static/capture/stackbithq-stackbit-theme-vanilla-master.png b/static/capture/stackbithq-stackbit-theme-vanilla-master.png deleted file mode 100644 index c008b7093..000000000 Binary files a/static/capture/stackbithq-stackbit-theme-vanilla-master.png and /dev/null differ diff --git a/static/capture/stackrole-gatsby-starter-foundation-master.png b/static/capture/stackrole-gatsby-starter-foundation-master.png deleted file mode 100644 index 4b73c5ddf..000000000 Binary files a/static/capture/stackrole-gatsby-starter-foundation-master.png and /dev/null differ diff --git a/static/capture/stackrole-gatsby-starter-foundation.png b/static/capture/stackrole-gatsby-starter-foundation.png new file mode 100644 index 000000000..b13f11cd9 Binary files /dev/null and b/static/capture/stackrole-gatsby-starter-foundation.png differ diff --git a/static/capture/statichunt-geeky-hugo.png b/static/capture/statichunt-geeky-hugo.png new file mode 100644 index 000000000..41d0a57de Binary files /dev/null and b/static/capture/statichunt-geeky-hugo.png differ diff --git a/static/capture/staticmania-blogge-hugo-theme.png b/static/capture/staticmania-blogge-hugo-theme.png new file mode 100644 index 000000000..34c27cf70 Binary files /dev/null and b/static/capture/staticmania-blogge-hugo-theme.png differ diff --git a/static/capture/staticmania-hugo-apsho.png b/static/capture/staticmania-hugo-apsho.png new file mode 100644 index 000000000..6d642271f Binary files /dev/null and b/static/capture/staticmania-hugo-apsho.png differ diff --git a/static/capture/staticmania-hugo-cohub.png b/static/capture/staticmania-hugo-cohub.png new file mode 100644 index 000000000..0407f0a60 Binary files /dev/null and b/static/capture/staticmania-hugo-cohub.png differ diff --git a/static/capture/staticmania-portio-hugo.png b/static/capture/staticmania-portio-hugo.png new file mode 100644 index 000000000..2dbf3036b Binary files /dev/null and b/static/capture/staticmania-portio-hugo.png differ diff --git a/static/capture/staticmania-roxo-eleventy.png b/static/capture/staticmania-roxo-eleventy.png new file mode 100644 index 000000000..c9e3dd733 Binary files /dev/null and b/static/capture/staticmania-roxo-eleventy.png differ diff --git a/static/capture/staticmania-roxo-hugo-master.png b/static/capture/staticmania-roxo-hugo-master.png deleted file mode 100644 index 47e64091a..000000000 Binary files a/static/capture/staticmania-roxo-hugo-master.png and /dev/null differ diff --git a/static/capture/stavrospanakakis-jekyll-cv.png b/static/capture/stavrospanakakis-jekyll-cv.png new file mode 100644 index 000000000..98a49cf7a Binary files /dev/null and b/static/capture/stavrospanakakis-jekyll-cv.png differ diff --git a/static/capture/stephen-cloud-gatsby-markdown-material-typescript-starter-master.png b/static/capture/stephen-cloud-gatsby-markdown-material-typescript-starter-master.png deleted file mode 100644 index 224bdbf8c..000000000 Binary files a/static/capture/stephen-cloud-gatsby-markdown-material-typescript-starter-master.png and /dev/null differ diff --git a/static/capture/stephen-cloud-gatsby-markdown-material-typescript-starter.png b/static/capture/stephen-cloud-gatsby-markdown-material-typescript-starter.png new file mode 100644 index 000000000..02c250ca6 Binary files /dev/null and b/static/capture/stephen-cloud-gatsby-markdown-material-typescript-starter.png differ diff --git a/static/capture/stevelane-hugo-icon-master.png b/static/capture/stevelane-hugo-icon-master.png deleted file mode 100644 index f5f36bc6f..000000000 Binary files a/static/capture/stevelane-hugo-icon-master.png and /dev/null differ diff --git a/static/capture/stijnvc-holo-alfa-master.png b/static/capture/stijnvc-holo-alfa-master.png deleted file mode 100644 index 96181e88e..000000000 Binary files a/static/capture/stijnvc-holo-alfa-master.png and /dev/null differ diff --git a/static/capture/stijnvc-holo-alfa.png b/static/capture/stijnvc-holo-alfa.png new file mode 100644 index 000000000..1ae2801e7 Binary files /dev/null and b/static/capture/stijnvc-holo-alfa.png differ diff --git a/static/capture/storyblok-storyblok-gridsome-boilerplate-moon-master.png b/static/capture/storyblok-storyblok-gridsome-boilerplate-moon-master.png deleted file mode 100644 index 06f65ddfc..000000000 Binary files a/static/capture/storyblok-storyblok-gridsome-boilerplate-moon-master.png and /dev/null differ diff --git a/static/capture/storyblok-storyblok-gridsome-boilerplate-moon.png b/static/capture/storyblok-storyblok-gridsome-boilerplate-moon.png new file mode 100644 index 000000000..ede9cbda1 Binary files /dev/null and b/static/capture/storyblok-storyblok-gridsome-boilerplate-moon.png differ diff --git a/static/capture/streetturtle-jekyll-clean-dark-gh-pages.png b/static/capture/streetturtle-jekyll-clean-dark-gh-pages.png deleted file mode 100644 index 11bc7677a..000000000 Binary files a/static/capture/streetturtle-jekyll-clean-dark-gh-pages.png and /dev/null differ diff --git a/static/capture/streetturtle-jekyll-clean-dark.png b/static/capture/streetturtle-jekyll-clean-dark.png new file mode 100644 index 000000000..93fcf0155 Binary files /dev/null and b/static/capture/streetturtle-jekyll-clean-dark.png differ diff --git a/static/capture/styxlab-gatsby-starter-try-ghost-master.png b/static/capture/styxlab-gatsby-starter-try-ghost-master.png deleted file mode 100644 index b36506526..000000000 Binary files a/static/capture/styxlab-gatsby-starter-try-ghost-master.png and /dev/null differ diff --git a/static/capture/styxlab-gatsby-starter-try-ghost.png b/static/capture/styxlab-gatsby-starter-try-ghost.png new file mode 100644 index 000000000..f1c1467b5 Binary files /dev/null and b/static/capture/styxlab-gatsby-starter-try-ghost.png differ diff --git a/static/capture/styxlab-next-cms-ghost-master.png b/static/capture/styxlab-next-cms-ghost-master.png deleted file mode 100644 index ef1d17618..000000000 Binary files a/static/capture/styxlab-next-cms-ghost-master.png and /dev/null differ diff --git a/static/capture/styxlab-next-cms-ghost.png b/static/capture/styxlab-next-cms-ghost.png new file mode 100644 index 000000000..802a85f9b Binary files /dev/null and b/static/capture/styxlab-next-cms-ghost.png differ diff --git a/static/capture/sudorook-capsule-master.png b/static/capture/sudorook-capsule-master.png deleted file mode 100644 index c62ca0bfc..000000000 Binary files a/static/capture/sudorook-capsule-master.png and /dev/null differ diff --git a/static/capture/suheb-resume-master.png b/static/capture/suheb-resume-master.png deleted file mode 100644 index a1e95a17a..000000000 Binary files a/static/capture/suheb-resume-master.png and /dev/null differ diff --git a/static/capture/suheb-resume.png b/static/capture/suheb-resume.png new file mode 100644 index 000000000..a30d47eaa Binary files /dev/null and b/static/capture/suheb-resume.png differ diff --git a/static/capture/suits-at-netlifycms-gridsome-master.png b/static/capture/suits-at-netlifycms-gridsome-master.png deleted file mode 100644 index 931b8ebb3..000000000 Binary files a/static/capture/suits-at-netlifycms-gridsome-master.png and /dev/null differ diff --git a/static/capture/suits-at-netlifycms-gridsome.png b/static/capture/suits-at-netlifycms-gridsome.png new file mode 100644 index 000000000..84e473179 Binary files /dev/null and b/static/capture/suits-at-netlifycms-gridsome.png differ diff --git a/static/capture/sujaykundu777-devlopr-jekyll-master.png b/static/capture/sujaykundu777-devlopr-jekyll-master.png deleted file mode 100644 index 7ab600843..000000000 Binary files a/static/capture/sujaykundu777-devlopr-jekyll-master.png and /dev/null differ diff --git a/static/capture/sujaykundu777-devlopr-jekyll.png b/static/capture/sujaykundu777-devlopr-jekyll.png new file mode 100644 index 000000000..c5afaa9f0 Binary files /dev/null and b/static/capture/sujaykundu777-devlopr-jekyll.png differ diff --git a/static/capture/sumeetmathpati-tiny-blog-master.png b/static/capture/sumeetmathpati-tiny-blog-master.png deleted file mode 100644 index e4a22bd7f..000000000 Binary files a/static/capture/sumeetmathpati-tiny-blog-master.png and /dev/null differ diff --git a/static/capture/sunbliss-photorama-gh-pages.png b/static/capture/sunbliss-photorama-gh-pages.png deleted file mode 100644 index 748114b57..000000000 Binary files a/static/capture/sunbliss-photorama-gh-pages.png and /dev/null differ diff --git a/static/capture/sunbliss-photorama.png b/static/capture/sunbliss-photorama.png new file mode 100644 index 000000000..77f7c3971 Binary files /dev/null and b/static/capture/sunbliss-photorama.png differ diff --git a/static/capture/surjithctly-neat-starter-master.png b/static/capture/surjithctly-neat-starter-master.png deleted file mode 100644 index 79846d228..000000000 Binary files a/static/capture/surjithctly-neat-starter-master.png and /dev/null differ diff --git a/static/capture/surjithctly-neat-starter.png b/static/capture/surjithctly-neat-starter.png new file mode 100644 index 000000000..b598d1d61 Binary files /dev/null and b/static/capture/surjithctly-neat-starter.png differ diff --git a/static/capture/svmiller-steve-ngvb-jekyll-template-master.png b/static/capture/svmiller-steve-ngvb-jekyll-template-master.png deleted file mode 100644 index 9c7d52758..000000000 Binary files a/static/capture/svmiller-steve-ngvb-jekyll-template-master.png and /dev/null differ diff --git a/static/capture/sw-yx-jamstack-hackathon-starter-master.png b/static/capture/sw-yx-jamstack-hackathon-starter-master.png deleted file mode 100644 index 3264efd5e..000000000 Binary files a/static/capture/sw-yx-jamstack-hackathon-starter-master.png and /dev/null differ diff --git a/static/capture/sw-yx-jamstack-hackathon-starter.png b/static/capture/sw-yx-jamstack-hackathon-starter.png new file mode 100644 index 000000000..01489c027 Binary files /dev/null and b/static/capture/sw-yx-jamstack-hackathon-starter.png differ diff --git a/static/capture/swanson-lagom-master.png b/static/capture/swanson-lagom-master.png deleted file mode 100644 index 7c3d6aaea..000000000 Binary files a/static/capture/swanson-lagom-master.png and /dev/null differ diff --git a/static/capture/swanson-lagom.png b/static/capture/swanson-lagom.png new file mode 100644 index 000000000..94ed31158 Binary files /dev/null and b/static/capture/swanson-lagom.png differ diff --git a/static/capture/swcool-landing-page-theme-master.png b/static/capture/swcool-landing-page-theme-master.png deleted file mode 100644 index 383895ee3..000000000 Binary files a/static/capture/swcool-landing-page-theme-master.png and /dev/null differ diff --git a/static/capture/sylhare-type-on-strap-master.png b/static/capture/sylhare-type-on-strap-master.png deleted file mode 100644 index 883bcd4f3..000000000 Binary files a/static/capture/sylhare-type-on-strap-master.png and /dev/null differ diff --git a/static/capture/sylhare-type-on-strap.png b/static/capture/sylhare-type-on-strap.png new file mode 100644 index 000000000..668ae7e17 Binary files /dev/null and b/static/capture/sylhare-type-on-strap.png differ diff --git a/static/capture/syui-hugo-theme-air-master.png b/static/capture/syui-hugo-theme-air-master.png deleted file mode 100644 index 60155df51..000000000 Binary files a/static/capture/syui-hugo-theme-air-master.png and /dev/null differ diff --git a/static/capture/syui-hugo-theme-wave-master.png b/static/capture/syui-hugo-theme-wave-master.png deleted file mode 100644 index 2c9d5acee..000000000 Binary files a/static/capture/syui-hugo-theme-wave-master.png and /dev/null differ diff --git a/static/capture/szhielelp-jekylltheme-projectgaia-master.png b/static/capture/szhielelp-jekylltheme-projectgaia-master.png deleted file mode 100644 index 2d433890c..000000000 Binary files a/static/capture/szhielelp-jekylltheme-projectgaia-master.png and /dev/null differ diff --git a/static/capture/sziv2p-jekyll-theme-scaffold-master.png b/static/capture/sziv2p-jekyll-theme-scaffold-master.png deleted file mode 100644 index aaedd70a8..000000000 Binary files a/static/capture/sziv2p-jekyll-theme-scaffold-master.png and /dev/null differ diff --git a/static/capture/t413-singlepaged-gh-pages.png b/static/capture/t413-singlepaged-gh-pages.png deleted file mode 100644 index e8fafc622..000000000 Binary files a/static/capture/t413-singlepaged-gh-pages.png and /dev/null differ diff --git a/static/capture/taikii-whiteplain-master.png b/static/capture/taikii-whiteplain-master.png deleted file mode 100644 index 241c3fc18..000000000 Binary files a/static/capture/taikii-whiteplain-master.png and /dev/null differ diff --git a/static/capture/tajacks-lightspeed.png b/static/capture/tajacks-lightspeed.png new file mode 100644 index 000000000..0bc7b4dfc Binary files /dev/null and b/static/capture/tajacks-lightspeed.png differ diff --git a/static/capture/taylantatli-halve-master.png b/static/capture/taylantatli-halve-master.png deleted file mode 100644 index f194bc791..000000000 Binary files a/static/capture/taylantatli-halve-master.png and /dev/null differ diff --git a/static/capture/taylantatli-halve.png b/static/capture/taylantatli-halve.png new file mode 100644 index 000000000..90e348ea9 Binary files /dev/null and b/static/capture/taylantatli-halve.png differ diff --git a/static/capture/taylantatli-moon-master.png b/static/capture/taylantatli-moon-master.png deleted file mode 100644 index 9d8a919cf..000000000 Binary files a/static/capture/taylantatli-moon-master.png and /dev/null differ diff --git a/static/capture/taylantatli-moon.png b/static/capture/taylantatli-moon.png new file mode 100644 index 000000000..6bcf09cb5 Binary files /dev/null and b/static/capture/taylantatli-moon.png differ diff --git a/static/capture/taylantatli-ramme-master.png b/static/capture/taylantatli-ramme-master.png deleted file mode 100644 index 30ec0608e..000000000 Binary files a/static/capture/taylantatli-ramme-master.png and /dev/null differ diff --git a/static/capture/taylantatli-ramme.png b/static/capture/taylantatli-ramme.png new file mode 100644 index 000000000..cf221d97e Binary files /dev/null and b/static/capture/taylantatli-ramme.png differ diff --git a/static/capture/tazeg-hugo-blog-jeffprod-master.png b/static/capture/tazeg-hugo-blog-jeffprod-master.png deleted file mode 100644 index 971a05805..000000000 Binary files a/static/capture/tazeg-hugo-blog-jeffprod-master.png and /dev/null differ diff --git a/static/capture/tblyler-light-hugo-master.png b/static/capture/tblyler-light-hugo-master.png deleted file mode 100644 index 34f308847..000000000 Binary files a/static/capture/tblyler-light-hugo-master.png and /dev/null differ diff --git a/static/capture/tcbutler320-jek.png b/static/capture/tcbutler320-jek.png new file mode 100644 index 000000000..3a0b03750 Binary files /dev/null and b/static/capture/tcbutler320-jek.png differ diff --git a/static/capture/tcbutler320-jekyll-theme-dumbarton-master.png b/static/capture/tcbutler320-jekyll-theme-dumbarton-master.png deleted file mode 100644 index e61663b0f..000000000 Binary files a/static/capture/tcbutler320-jekyll-theme-dumbarton-master.png and /dev/null differ diff --git a/static/capture/tcbutler320-jekyll-theme-dumbarton.png b/static/capture/tcbutler320-jekyll-theme-dumbarton.png new file mode 100644 index 000000000..95f38e8ab Binary files /dev/null and b/static/capture/tcbutler320-jekyll-theme-dumbarton.png differ diff --git a/static/capture/teaware-gatsby-starter-point-master.png b/static/capture/teaware-gatsby-starter-point-master.png deleted file mode 100644 index a421b53f0..000000000 Binary files a/static/capture/teaware-gatsby-starter-point-master.png and /dev/null differ diff --git a/static/capture/teaware-gatsby-starter-point.png b/static/capture/teaware-gatsby-starter-point.png new file mode 100644 index 000000000..e9db887a8 Binary files /dev/null and b/static/capture/teaware-gatsby-starter-point.png differ diff --git a/static/capture/thakkaryash94-gatsby-github-personal-website-master.png b/static/capture/thakkaryash94-gatsby-github-personal-website-master.png deleted file mode 100644 index 0bc8b0303..000000000 Binary files a/static/capture/thakkaryash94-gatsby-github-personal-website-master.png and /dev/null differ diff --git a/static/capture/thakkaryash94-gatsby-github-personal-website.png b/static/capture/thakkaryash94-gatsby-github-personal-website.png new file mode 100644 index 000000000..30c88247e Binary files /dev/null and b/static/capture/thakkaryash94-gatsby-github-personal-website.png differ diff --git a/static/capture/the-development-flex-master.png b/static/capture/the-development-flex-master.png deleted file mode 100644 index 04c9c8b65..000000000 Binary files a/static/capture/the-development-flex-master.png and /dev/null differ diff --git a/static/capture/the-development-flex.png b/static/capture/the-development-flex.png new file mode 100644 index 000000000..db422461c Binary files /dev/null and b/static/capture/the-development-flex.png differ diff --git a/static/capture/the2ne-hugo-frais-master.png b/static/capture/the2ne-hugo-frais-master.png deleted file mode 100644 index 66d3bb30e..000000000 Binary files a/static/capture/the2ne-hugo-frais-master.png and /dev/null differ diff --git a/static/capture/thebakerdev-gatsby-starter-zenii-master.png b/static/capture/thebakerdev-gatsby-starter-zenii-master.png deleted file mode 100644 index fd3272967..000000000 Binary files a/static/capture/thebakerdev-gatsby-starter-zenii-master.png and /dev/null differ diff --git a/static/capture/thebakerdev-gatsby-starter-zenii.png b/static/capture/thebakerdev-gatsby-starter-zenii.png new file mode 100644 index 000000000..cb6bca8f7 Binary files /dev/null and b/static/capture/thebakerdev-gatsby-starter-zenii.png differ diff --git a/static/capture/thecodemint-gatsby-starter-simple-master.png b/static/capture/thecodemint-gatsby-starter-simple-master.png deleted file mode 100644 index bb1658034..000000000 Binary files a/static/capture/thecodemint-gatsby-starter-simple-master.png and /dev/null differ diff --git a/static/capture/thedevslot-whatatheme-master.png b/static/capture/thedevslot-whatatheme-master.png deleted file mode 100644 index ec82eacd8..000000000 Binary files a/static/capture/thedevslot-whatatheme-master.png and /dev/null differ diff --git a/static/capture/thedevslot-whatatheme.png b/static/capture/thedevslot-whatatheme.png new file mode 100644 index 000000000..a3f660133 Binary files /dev/null and b/static/capture/thedevslot-whatatheme.png differ diff --git a/static/capture/themefisher-academia-hugo.png b/static/capture/themefisher-academia-hugo.png new file mode 100644 index 000000000..af91d5cb1 Binary files /dev/null and b/static/capture/themefisher-academia-hugo.png differ diff --git a/static/capture/themefisher-airspace-hugo-master.png b/static/capture/themefisher-airspace-hugo-master.png deleted file mode 100644 index b6a2809ff..000000000 Binary files a/static/capture/themefisher-airspace-hugo-master.png and /dev/null differ diff --git a/static/capture/themefisher-airspace-hugo.png b/static/capture/themefisher-airspace-hugo.png new file mode 100644 index 000000000..ac04040ea Binary files /dev/null and b/static/capture/themefisher-airspace-hugo.png differ diff --git a/static/capture/themefisher-bigspring-light.png b/static/capture/themefisher-bigspring-light.png new file mode 100644 index 000000000..db1483ae3 Binary files /dev/null and b/static/capture/themefisher-bigspring-light.png differ diff --git a/static/capture/themefisher-dot-hugo-documentation-theme-master.png b/static/capture/themefisher-dot-hugo-documentation-theme-master.png deleted file mode 100644 index 4f20d4cda..000000000 Binary files a/static/capture/themefisher-dot-hugo-documentation-theme-master.png and /dev/null differ diff --git a/static/capture/themefisher-dot-hugo.png b/static/capture/themefisher-dot-hugo.png new file mode 100644 index 000000000..e488b62b2 Binary files /dev/null and b/static/capture/themefisher-dot-hugo.png differ diff --git a/static/capture/themefisher-educenter-hugo.png b/static/capture/themefisher-educenter-hugo.png new file mode 100644 index 000000000..bf5e73c1a Binary files /dev/null and b/static/capture/themefisher-educenter-hugo.png differ diff --git a/static/capture/themefisher-hargo-hugo.png b/static/capture/themefisher-hargo-hugo.png new file mode 100644 index 000000000..bd02cf406 Binary files /dev/null and b/static/capture/themefisher-hargo-hugo.png differ diff --git a/static/capture/themefisher-infinity-hugo-master.png b/static/capture/themefisher-infinity-hugo-master.png deleted file mode 100644 index 672dd87e7..000000000 Binary files a/static/capture/themefisher-infinity-hugo-master.png and /dev/null differ diff --git a/static/capture/themefisher-infinity-hugo.png b/static/capture/themefisher-infinity-hugo.png new file mode 100644 index 000000000..8dcce0030 Binary files /dev/null and b/static/capture/themefisher-infinity-hugo.png differ diff --git a/static/capture/themefisher-kross-hugo-portfolio-template-master.png b/static/capture/themefisher-kross-hugo-portfolio-template-master.png deleted file mode 100644 index 7c1f4a0e9..000000000 Binary files a/static/capture/themefisher-kross-hugo-portfolio-template-master.png and /dev/null differ diff --git a/static/capture/themefisher-kross-hugo.png b/static/capture/themefisher-kross-hugo.png new file mode 100644 index 000000000..5c616aada Binary files /dev/null and b/static/capture/themefisher-kross-hugo.png differ diff --git a/static/capture/themefisher-meghna-hugo-master.png b/static/capture/themefisher-meghna-hugo-master.png deleted file mode 100644 index 9eba0110b..000000000 Binary files a/static/capture/themefisher-meghna-hugo-master.png and /dev/null differ diff --git a/static/capture/themefisher-navigator-hugo-master.png b/static/capture/themefisher-navigator-hugo-master.png deleted file mode 100644 index 76ab189ad..000000000 Binary files a/static/capture/themefisher-navigator-hugo-master.png and /dev/null differ diff --git a/static/capture/themefisher-parsa-hugo.png b/static/capture/themefisher-parsa-hugo.png new file mode 100644 index 000000000..cb8a07382 Binary files /dev/null and b/static/capture/themefisher-parsa-hugo.png differ diff --git a/static/capture/themefisher-restaurant-hugo-master.png b/static/capture/themefisher-restaurant-hugo-master.png deleted file mode 100644 index 0b8c67e42..000000000 Binary files a/static/capture/themefisher-restaurant-hugo-master.png and /dev/null differ diff --git a/static/capture/themefisher-timer-hugo-master.png b/static/capture/themefisher-timer-hugo-master.png deleted file mode 100644 index b71c76cb9..000000000 Binary files a/static/capture/themefisher-timer-hugo-master.png and /dev/null differ diff --git a/static/capture/themefisher-timer-hugo.png b/static/capture/themefisher-timer-hugo.png new file mode 100644 index 000000000..4c9fe6e6c Binary files /dev/null and b/static/capture/themefisher-timer-hugo.png differ diff --git a/static/capture/themefisher-twenty-twenty-hugo.png b/static/capture/themefisher-twenty-twenty-hugo.png new file mode 100644 index 000000000..746f6b2da Binary files /dev/null and b/static/capture/themefisher-twenty-twenty-hugo.png differ diff --git a/static/capture/themefisher-vex-hugo-master.png b/static/capture/themefisher-vex-hugo-master.png deleted file mode 100644 index 0003fe60e..000000000 Binary files a/static/capture/themefisher-vex-hugo-master.png and /dev/null differ diff --git a/static/capture/themefisher-vex-hugo.png b/static/capture/themefisher-vex-hugo.png new file mode 100644 index 000000000..41976a029 Binary files /dev/null and b/static/capture/themefisher-vex-hugo.png differ diff --git a/static/capture/themeselection-materio-mui-react-nextjs-admin-template-free.png b/static/capture/themeselection-materio-mui-react-nextjs-admin-template-free.png new file mode 100644 index 000000000..111b1bcb4 Binary files /dev/null and b/static/capture/themeselection-materio-mui-react-nextjs-admin-template-free.png differ diff --git a/static/capture/thenewdynamic-gohugo-theme-ananke.png b/static/capture/thenewdynamic-gohugo-theme-ananke.png new file mode 100644 index 000000000..9a6913390 Binary files /dev/null and b/static/capture/thenewdynamic-gohugo-theme-ananke.png differ diff --git a/static/capture/thephuse-strange_case-gh-pages.png b/static/capture/thephuse-strange_case-gh-pages.png deleted file mode 100644 index 2dbebd578..000000000 Binary files a/static/capture/thephuse-strange_case-gh-pages.png and /dev/null differ diff --git a/static/capture/thephuse-strange_case.png b/static/capture/thephuse-strange_case.png new file mode 100644 index 000000000..4f67a09b5 Binary files /dev/null and b/static/capture/thephuse-strange_case.png differ diff --git a/static/capture/thetrevorharmon-gatsby-starter-typescript-sass-master.png b/static/capture/thetrevorharmon-gatsby-starter-typescript-sass-master.png deleted file mode 100644 index 1e373151e..000000000 Binary files a/static/capture/thetrevorharmon-gatsby-starter-typescript-sass-master.png and /dev/null differ diff --git a/static/capture/thetrevorharmon-gatsby-starter-typescript-sass.png b/static/capture/thetrevorharmon-gatsby-starter-typescript-sass.png new file mode 100644 index 000000000..ceed4492d Binary files /dev/null and b/static/capture/thetrevorharmon-gatsby-starter-typescript-sass.png differ diff --git a/static/capture/thiagorossener-jekflix-template-master.png b/static/capture/thiagorossener-jekflix-template-master.png deleted file mode 100644 index 6493069b0..000000000 Binary files a/static/capture/thiagorossener-jekflix-template-master.png and /dev/null differ diff --git a/static/capture/thiagorossener-jekflix-template.png b/static/capture/thiagorossener-jekflix-template.png new file mode 100644 index 000000000..585f34c4d Binary files /dev/null and b/static/capture/thiagorossener-jekflix-template.png differ diff --git a/static/capture/thingsym-hugo-theme-techdoc-master.png b/static/capture/thingsym-hugo-theme-techdoc-master.png deleted file mode 100644 index 922566292..000000000 Binary files a/static/capture/thingsym-hugo-theme-techdoc-master.png and /dev/null differ diff --git a/static/capture/thinker3197-ink-master.png b/static/capture/thinker3197-ink-master.png deleted file mode 100644 index e94908851..000000000 Binary files a/static/capture/thinker3197-ink-master.png and /dev/null differ diff --git a/static/capture/thinker3197-ink.png b/static/capture/thinker3197-ink.png new file mode 100644 index 000000000..02d684158 Binary files /dev/null and b/static/capture/thinker3197-ink.png differ diff --git a/static/capture/thomasheller-crab-master.png b/static/capture/thomasheller-crab-master.png deleted file mode 100644 index 041273649..000000000 Binary files a/static/capture/thomasheller-crab-master.png and /dev/null differ diff --git a/static/capture/thomaswangio-gatsby-personal-starter-blog-master.png b/static/capture/thomaswangio-gatsby-personal-starter-blog-master.png deleted file mode 100644 index fb143cbea..000000000 Binary files a/static/capture/thomaswangio-gatsby-personal-starter-blog-master.png and /dev/null differ diff --git a/static/capture/thomaswangio-gatsby-personal-starter-blog.png b/static/capture/thomaswangio-gatsby-personal-starter-blog.png new file mode 100644 index 000000000..d312f34e9 Binary files /dev/null and b/static/capture/thomaswangio-gatsby-personal-starter-blog.png differ diff --git a/static/capture/thomaswangio-gatsby-starter-primer-master.png b/static/capture/thomaswangio-gatsby-starter-primer-master.png deleted file mode 100644 index 22f6e1a92..000000000 Binary files a/static/capture/thomaswangio-gatsby-starter-primer-master.png and /dev/null differ diff --git a/static/capture/thomaswangio-gatsby-starter-primer.png b/static/capture/thomaswangio-gatsby-starter-primer.png new file mode 100644 index 000000000..a18fe5a04 Binary files /dev/null and b/static/capture/thomaswangio-gatsby-starter-primer.png differ diff --git a/static/capture/thriveweb-yellowcake-master.png b/static/capture/thriveweb-yellowcake-master.png deleted file mode 100644 index 474910767..000000000 Binary files a/static/capture/thriveweb-yellowcake-master.png and /dev/null differ diff --git a/static/capture/thriveweb-yellowcake.png b/static/capture/thriveweb-yellowcake.png new file mode 100644 index 000000000..001c97a1d Binary files /dev/null and b/static/capture/thriveweb-yellowcake.png differ diff --git a/static/capture/thundermiracle-gatsby-simple-blog-master.png b/static/capture/thundermiracle-gatsby-simple-blog-master.png deleted file mode 100644 index f9ca86e21..000000000 Binary files a/static/capture/thundermiracle-gatsby-simple-blog-master.png and /dev/null differ diff --git a/static/capture/thundermiracle-gatsby-simple-blog.png b/static/capture/thundermiracle-gatsby-simple-blog.png new file mode 100644 index 000000000..be39d50b5 Binary files /dev/null and b/static/capture/thundermiracle-gatsby-simple-blog.png differ diff --git a/static/capture/tigefa4u-jekmdl-gh-pages.png b/static/capture/tigefa4u-jekmdl-gh-pages.png deleted file mode 100644 index a65944601..000000000 Binary files a/static/capture/tigefa4u-jekmdl-gh-pages.png and /dev/null differ diff --git a/static/capture/tigefa4u-jekmdl.png b/static/capture/tigefa4u-jekmdl.png new file mode 100644 index 000000000..d711b6dab Binary files /dev/null and b/static/capture/tigefa4u-jekmdl.png differ diff --git a/static/capture/timlrx-tailwind-nextjs-starter-blog-master.png b/static/capture/timlrx-tailwind-nextjs-starter-blog-master.png deleted file mode 100644 index 5bb6d2516..000000000 Binary files a/static/capture/timlrx-tailwind-nextjs-starter-blog-master.png and /dev/null differ diff --git a/static/capture/timlrx-tailwind-nextjs-starter-blog.png b/static/capture/timlrx-tailwind-nextjs-starter-blog.png new file mode 100644 index 000000000..0fc41de76 Binary files /dev/null and b/static/capture/timlrx-tailwind-nextjs-starter-blog.png differ diff --git a/static/capture/tnguyen-blueface-master.png b/static/capture/tnguyen-blueface-master.png deleted file mode 100644 index 3eb312fea..000000000 Binary files a/static/capture/tnguyen-blueface-master.png and /dev/null differ diff --git a/static/capture/tnguyen-blueface.png b/static/capture/tnguyen-blueface.png new file mode 100644 index 000000000..fb137e472 Binary files /dev/null and b/static/capture/tnguyen-blueface.png differ diff --git a/static/capture/tnwhitwell-hugo-startpage-theme-master.png b/static/capture/tnwhitwell-hugo-startpage-theme-master.png deleted file mode 100644 index 6f8dc418c..000000000 Binary files a/static/capture/tnwhitwell-hugo-startpage-theme-master.png and /dev/null differ diff --git a/static/capture/toboko-gatsby-starter-fine-master.png b/static/capture/toboko-gatsby-starter-fine-master.png deleted file mode 100644 index 8baa97abb..000000000 Binary files a/static/capture/toboko-gatsby-starter-fine-master.png and /dev/null differ diff --git a/static/capture/toboko-gatsby-starter-fine.png b/static/capture/toboko-gatsby-starter-fine.png new file mode 100644 index 000000000..eb4cdde3a Binary files /dev/null and b/static/capture/toboko-gatsby-starter-fine.png differ diff --git a/static/capture/tocttou-hacker-blog-master.png b/static/capture/tocttou-hacker-blog-master.png deleted file mode 100644 index 8b351d868..000000000 Binary files a/static/capture/tocttou-hacker-blog-master.png and /dev/null differ diff --git a/static/capture/tocttou-hacker-blog.png b/static/capture/tocttou-hacker-blog.png new file mode 100644 index 000000000..1cf5e2de5 Binary files /dev/null and b/static/capture/tocttou-hacker-blog.png differ diff --git a/static/capture/tolking-vuepress-theme-ououe-master.png b/static/capture/tolking-vuepress-theme-ououe-master.png deleted file mode 100644 index 39231fc5e..000000000 Binary files a/static/capture/tolking-vuepress-theme-ououe-master.png and /dev/null differ diff --git a/static/capture/tolking-vuepress-theme-ououe.png b/static/capture/tolking-vuepress-theme-ououe.png new file mode 100644 index 000000000..b38315508 Binary files /dev/null and b/static/capture/tolking-vuepress-theme-ououe.png differ diff --git a/static/capture/tomanistor-osprey-master.png b/static/capture/tomanistor-osprey-master.png deleted file mode 100644 index 19e385aab..000000000 Binary files a/static/capture/tomanistor-osprey-master.png and /dev/null differ diff --git a/static/capture/tomanistor-osprey.png b/static/capture/tomanistor-osprey.png new file mode 100644 index 000000000..b3a42d774 Binary files /dev/null and b/static/capture/tomanistor-osprey.png differ diff --git a/static/capture/tomekskuta-gatsby-starter-intl-master.png b/static/capture/tomekskuta-gatsby-starter-intl-master.png deleted file mode 100644 index a30928ced..000000000 Binary files a/static/capture/tomekskuta-gatsby-starter-intl-master.png and /dev/null differ diff --git a/static/capture/tomekskuta-gatsby-starter-intl.png b/static/capture/tomekskuta-gatsby-starter-intl.png new file mode 100644 index 000000000..13988fe5a Binary files /dev/null and b/static/capture/tomekskuta-gatsby-starter-intl.png differ diff --git a/static/capture/tomjohnson1492-documentation-theme-jekyll-gh-pages.png b/static/capture/tomjohnson1492-documentation-theme-jekyll-gh-pages.png deleted file mode 100644 index e8ccc28b9..000000000 Binary files a/static/capture/tomjohnson1492-documentation-theme-jekyll-gh-pages.png and /dev/null differ diff --git a/static/capture/tomjohnson1492-documentation-theme-jekyll.png b/static/capture/tomjohnson1492-documentation-theme-jekyll.png new file mode 100644 index 000000000..4a24c3e6b Binary files /dev/null and b/static/capture/tomjohnson1492-documentation-theme-jekyll.png differ diff --git a/static/capture/tomoyukikashiro-gatsby-starter-blog-amp-to-pwa-master.png b/static/capture/tomoyukikashiro-gatsby-starter-blog-amp-to-pwa-master.png deleted file mode 100644 index 93981ec52..000000000 Binary files a/static/capture/tomoyukikashiro-gatsby-starter-blog-amp-to-pwa-master.png and /dev/null differ diff --git a/static/capture/tomoyukikashiro-gatsby-starter-blog-amp-to-pwa.png b/static/capture/tomoyukikashiro-gatsby-starter-blog-amp-to-pwa.png new file mode 100644 index 000000000..7b6a74c81 Binary files /dev/null and b/static/capture/tomoyukikashiro-gatsby-starter-blog-amp-to-pwa.png differ diff --git a/static/capture/tomrutgers-middleman-starter-netlify-cms-master.png b/static/capture/tomrutgers-middleman-starter-netlify-cms-master.png deleted file mode 100644 index 685291a82..000000000 Binary files a/static/capture/tomrutgers-middleman-starter-netlify-cms-master.png and /dev/null differ diff --git a/static/capture/tomrutgers-middleman-starter-netlify-cms.png b/static/capture/tomrutgers-middleman-starter-netlify-cms.png new file mode 100644 index 000000000..5f250eea8 Binary files /dev/null and b/static/capture/tomrutgers-middleman-starter-netlify-cms.png differ diff --git a/static/capture/tosi29-inkblotty-master.png b/static/capture/tosi29-inkblotty-master.png deleted file mode 100644 index 51b2855fd..000000000 Binary files a/static/capture/tosi29-inkblotty-master.png and /dev/null differ diff --git a/static/capture/track3-hermit-master.png b/static/capture/track3-hermit-master.png deleted file mode 100644 index 651130c30..000000000 Binary files a/static/capture/track3-hermit-master.png and /dev/null differ diff --git a/static/capture/tradly-platform-butterflies.png b/static/capture/tradly-platform-butterflies.png new file mode 100644 index 000000000..9ed6b2a06 Binary files /dev/null and b/static/capture/tradly-platform-butterflies.png differ diff --git a/static/capture/transitive-bullshit-nextjs-notion-starter-kit.png b/static/capture/transitive-bullshit-nextjs-notion-starter-kit.png new file mode 100644 index 000000000..cac9639c3 Binary files /dev/null and b/static/capture/transitive-bullshit-nextjs-notion-starter-kit.png differ diff --git a/static/capture/tryghost-eleventy-starter-ghost-master.png b/static/capture/tryghost-eleventy-starter-ghost-master.png deleted file mode 100644 index 2730aedf0..000000000 Binary files a/static/capture/tryghost-eleventy-starter-ghost-master.png and /dev/null differ diff --git a/static/capture/tryghost-eleventy-starter-ghost.png b/static/capture/tryghost-eleventy-starter-ghost.png new file mode 100644 index 000000000..a8ab4fa5a Binary files /dev/null and b/static/capture/tryghost-eleventy-starter-ghost.png differ diff --git a/static/capture/tryghost-gatsby-starter-ghost-master.png b/static/capture/tryghost-gatsby-starter-ghost-master.png deleted file mode 100644 index e3fb48eb3..000000000 Binary files a/static/capture/tryghost-gatsby-starter-ghost-master.png and /dev/null differ diff --git a/static/capture/tryghost-gatsby-starter-ghost.png b/static/capture/tryghost-gatsby-starter-ghost.png new file mode 100644 index 000000000..84c1751d5 Binary files /dev/null and b/static/capture/tryghost-gatsby-starter-ghost.png differ diff --git a/static/capture/ttntm-11ty-landing-page.png b/static/capture/ttntm-11ty-landing-page.png new file mode 100644 index 000000000..126602e07 Binary files /dev/null and b/static/capture/ttntm-11ty-landing-page.png differ diff --git a/static/capture/ttntm-hugo-landing-page.png b/static/capture/ttntm-hugo-landing-page.png new file mode 100644 index 000000000..a29e9b18e Binary files /dev/null and b/static/capture/ttntm-hugo-landing-page.png differ diff --git a/static/capture/ttskch-jekyll-ttskch-theme-master.png b/static/capture/ttskch-jekyll-ttskch-theme-master.png deleted file mode 100644 index 9da0a1851..000000000 Binary files a/static/capture/ttskch-jekyll-ttskch-theme-master.png and /dev/null differ diff --git a/static/capture/ttskch-jekyll-ttskch-theme.png b/static/capture/ttskch-jekyll-ttskch-theme.png new file mode 100644 index 000000000..351ee7981 Binary files /dev/null and b/static/capture/ttskch-jekyll-ttskch-theme.png differ diff --git a/static/capture/tummychow-lanyon-hugo-master.png b/static/capture/tummychow-lanyon-hugo-master.png deleted file mode 100644 index 02df75d78..000000000 Binary files a/static/capture/tummychow-lanyon-hugo-master.png and /dev/null differ diff --git a/static/capture/tummychow-lanyon-hugo.png b/static/capture/tummychow-lanyon-hugo.png new file mode 100644 index 000000000..05c3bc66e Binary files /dev/null and b/static/capture/tummychow-lanyon-hugo.png differ diff --git a/static/capture/tybenz-exemplar-master.png b/static/capture/tybenz-exemplar-master.png deleted file mode 100644 index cfbfbce93..000000000 Binary files a/static/capture/tybenz-exemplar-master.png and /dev/null differ diff --git a/static/capture/tybenz-exemplar.png b/static/capture/tybenz-exemplar.png new file mode 100644 index 000000000..65f70c198 Binary files /dev/null and b/static/capture/tybenz-exemplar.png differ diff --git a/static/capture/tybenz-otter-pop-gh-pages.png b/static/capture/tybenz-otter-pop-gh-pages.png deleted file mode 100644 index 34225044f..000000000 Binary files a/static/capture/tybenz-otter-pop-gh-pages.png and /dev/null differ diff --git a/static/capture/tybenz-otter-pop.png b/static/capture/tybenz-otter-pop.png new file mode 100644 index 000000000..e8e259abe Binary files /dev/null and b/static/capture/tybenz-otter-pop.png differ diff --git a/static/capture/tylergreulich-gatsby-typescript-mdx-prismjs-starter-master.png b/static/capture/tylergreulich-gatsby-typescript-mdx-prismjs-starter-master.png deleted file mode 100644 index 385367bf6..000000000 Binary files a/static/capture/tylergreulich-gatsby-typescript-mdx-prismjs-starter-master.png and /dev/null differ diff --git a/static/capture/tylergreulich-gatsby-typescript-mdx-prismjs-starter.png b/static/capture/tylergreulich-gatsby-typescript-mdx-prismjs-starter.png new file mode 100644 index 000000000..11453040d Binary files /dev/null and b/static/capture/tylergreulich-gatsby-typescript-mdx-prismjs-starter.png differ diff --git a/static/capture/tylermroderick-fernfolio-11ty-template.png b/static/capture/tylermroderick-fernfolio-11ty-template.png new file mode 100644 index 000000000..695c4044a Binary files /dev/null and b/static/capture/tylermroderick-fernfolio-11ty-template.png differ diff --git a/static/capture/tzuehlke-jekyll-uno-timeline-master.png b/static/capture/tzuehlke-jekyll-uno-timeline-master.png deleted file mode 100644 index fc54d8186..000000000 Binary files a/static/capture/tzuehlke-jekyll-uno-timeline-master.png and /dev/null differ diff --git a/static/capture/ueno-llc-ueno-gatsby-starter-master.png b/static/capture/ueno-llc-ueno-gatsby-starter-master.png deleted file mode 100644 index 2eab45f6b..000000000 Binary files a/static/capture/ueno-llc-ueno-gatsby-starter-master.png and /dev/null differ diff --git a/static/capture/ueno-llc-ueno-gatsby-starter.png b/static/capture/ueno-llc-ueno-gatsby-starter.png new file mode 100644 index 000000000..c89317622 Binary files /dev/null and b/static/capture/ueno-llc-ueno-gatsby-starter.png differ diff --git a/static/capture/ugglr-gatsby-clean-portfolio-master.png b/static/capture/ugglr-gatsby-clean-portfolio.png similarity index 100% rename from static/capture/ugglr-gatsby-clean-portfolio-master.png rename to static/capture/ugglr-gatsby-clean-portfolio.png diff --git a/static/capture/uicardiodev-hugo-lime-master.png b/static/capture/uicardiodev-hugo-lime-master.png deleted file mode 100644 index a252df388..000000000 Binary files a/static/capture/uicardiodev-hugo-lime-master.png and /dev/null differ diff --git a/static/capture/uicardiodev-hugo-sodium-theme-master.png b/static/capture/uicardiodev-hugo-sodium-theme-master.png deleted file mode 100644 index 881ee2bea..000000000 Binary files a/static/capture/uicardiodev-hugo-sodium-theme-master.png and /dev/null differ diff --git a/static/capture/uicardiodev-hugo-uilite-master.png b/static/capture/uicardiodev-hugo-uilite-master.png deleted file mode 100644 index cc471bf98..000000000 Binary files a/static/capture/uicardiodev-hugo-uilite-master.png and /dev/null differ diff --git a/static/capture/unifreak-unifreak.github.io-master.png b/static/capture/unifreak-unifreak.github.io-master.png deleted file mode 100644 index 936ab498f..000000000 Binary files a/static/capture/unifreak-unifreak.github.io-master.png and /dev/null differ diff --git a/static/capture/unifreak-unifreak.github.io.png b/static/capture/unifreak-unifreak.github.io.png new file mode 100644 index 000000000..fe8acbfb5 Binary files /dev/null and b/static/capture/unifreak-unifreak.github.io.png differ diff --git a/static/capture/upagge-ublogger-master.png b/static/capture/upagge-ublogger-master.png deleted file mode 100644 index 786f0cc47..000000000 Binary files a/static/capture/upagge-ublogger-master.png and /dev/null differ diff --git a/static/capture/upagge-ublogger.png b/static/capture/upagge-ublogger.png new file mode 100644 index 000000000..6c80f3d48 Binary files /dev/null and b/static/capture/upagge-ublogger.png differ diff --git a/static/capture/v4iv-gatsby-starter-business-master.png b/static/capture/v4iv-gatsby-starter-business-master.png deleted file mode 100644 index dd88fa1a3..000000000 Binary files a/static/capture/v4iv-gatsby-starter-business-master.png and /dev/null differ diff --git a/static/capture/v4iv-gatsby-starter-business.png b/static/capture/v4iv-gatsby-starter-business.png new file mode 100644 index 000000000..09db8a725 Binary files /dev/null and b/static/capture/v4iv-gatsby-starter-business.png differ diff --git a/static/capture/vaga-hugo-theme-m10c-master.png b/static/capture/vaga-hugo-theme-m10c-master.png deleted file mode 100644 index a0ad15a86..000000000 Binary files a/static/capture/vaga-hugo-theme-m10c-master.png and /dev/null differ diff --git a/static/capture/vagr9k-gatsby-advanced-starter-master.png b/static/capture/vagr9k-gatsby-advanced-starter-master.png deleted file mode 100644 index f194bc791..000000000 Binary files a/static/capture/vagr9k-gatsby-advanced-starter-master.png and /dev/null differ diff --git a/static/capture/vagr9k-gatsby-advanced-starter.png b/static/capture/vagr9k-gatsby-advanced-starter.png new file mode 100644 index 000000000..3d273d766 Binary files /dev/null and b/static/capture/vagr9k-gatsby-advanced-starter.png differ diff --git a/static/capture/vagr9k-gatsby-material-starter-master.png b/static/capture/vagr9k-gatsby-material-starter-master.png deleted file mode 100644 index 5b6881227..000000000 Binary files a/static/capture/vagr9k-gatsby-material-starter-master.png and /dev/null differ diff --git a/static/capture/vagr9k-gatsby-material-starter.png b/static/capture/vagr9k-gatsby-material-starter.png new file mode 100644 index 000000000..eb119400b Binary files /dev/null and b/static/capture/vagr9k-gatsby-material-starter.png differ diff --git a/static/capture/vantagedesign-ace-documentation-master.png b/static/capture/vantagedesign-ace-documentation-master.png deleted file mode 100644 index 52c8c8e18..000000000 Binary files a/static/capture/vantagedesign-ace-documentation-master.png and /dev/null differ diff --git a/static/capture/vantagedesign-ace-documentation.png b/static/capture/vantagedesign-ace-documentation.png new file mode 100644 index 000000000..638c280f7 Binary files /dev/null and b/static/capture/vantagedesign-ace-documentation.png differ diff --git a/static/capture/vercel-next.js-master.png b/static/capture/vercel-next.js-master.png deleted file mode 100644 index c1f0fe544..000000000 Binary files a/static/capture/vercel-next.js-master.png and /dev/null differ diff --git a/static/capture/vercel-next.js.png b/static/capture/vercel-next.js.png new file mode 100644 index 000000000..59067e1ef Binary files /dev/null and b/static/capture/vercel-next.js.png differ diff --git a/static/capture/vfalanis-taken-master.png b/static/capture/vfalanis-taken-master.png deleted file mode 100644 index f1935d222..000000000 Binary files a/static/capture/vfalanis-taken-master.png and /dev/null differ diff --git a/static/capture/vfvong-jekyll-theme-quartz.png b/static/capture/vfvong-jekyll-theme-quartz.png new file mode 100644 index 000000000..f1f1c2736 Binary files /dev/null and b/static/capture/vfvong-jekyll-theme-quartz.png differ diff --git a/static/capture/vfvong-jekyll-theme-tao.png b/static/capture/vfvong-jekyll-theme-tao.png new file mode 100644 index 000000000..f0ad9c968 Binary files /dev/null and b/static/capture/vfvong-jekyll-theme-tao.png differ diff --git a/static/capture/victoriadrake-hugo-theme-introduction-master.png b/static/capture/victoriadrake-hugo-theme-introduction-master.png deleted file mode 100644 index bea9adbd3..000000000 Binary files a/static/capture/victoriadrake-hugo-theme-introduction-master.png and /dev/null differ diff --git a/static/capture/victoriadrake-hugo-theme-introduction.png b/static/capture/victoriadrake-hugo-theme-introduction.png new file mode 100644 index 000000000..7b41d8a69 Binary files /dev/null and b/static/capture/victoriadrake-hugo-theme-introduction.png differ diff --git a/static/capture/victoriadrake-hugo-theme-sam-master.png b/static/capture/victoriadrake-hugo-theme-sam-master.png deleted file mode 100644 index 161d8c681..000000000 Binary files a/static/capture/victoriadrake-hugo-theme-sam-master.png and /dev/null differ diff --git a/static/capture/victorvoid-space-jekyll-template-master.png b/static/capture/victorvoid-space-jekyll-template-master.png deleted file mode 100644 index e702c75fe..000000000 Binary files a/static/capture/victorvoid-space-jekyll-template-master.png and /dev/null differ diff --git a/static/capture/victorvoid-space-jekyll-template.png b/static/capture/victorvoid-space-jekyll-template.png new file mode 100644 index 000000000..421704235 Binary files /dev/null and b/static/capture/victorvoid-space-jekyll-template.png differ diff --git a/static/capture/vietanhdev-benice17-master.png b/static/capture/vietanhdev-benice17-master.png deleted file mode 100644 index 76a2c67fe..000000000 Binary files a/static/capture/vietanhdev-benice17-master.png and /dev/null differ diff --git a/static/capture/vietanhdev-benice17.png b/static/capture/vietanhdev-benice17.png new file mode 100644 index 000000000..49cf66a52 Binary files /dev/null and b/static/capture/vietanhdev-benice17.png differ diff --git a/static/capture/vietanhdev-hugo-curious.png b/static/capture/vietanhdev-hugo-curious.png new file mode 100644 index 000000000..12517fb77 Binary files /dev/null and b/static/capture/vietanhdev-hugo-curious.png differ diff --git a/static/capture/viko16-vuepress-theme-simple-master.png b/static/capture/viko16-vuepress-theme-simple-master.png deleted file mode 100644 index 89ba9b136..000000000 Binary files a/static/capture/viko16-vuepress-theme-simple-master.png and /dev/null differ diff --git a/static/capture/viko16-vuepress-theme-simple.png b/static/capture/viko16-vuepress-theme-simple.png new file mode 100644 index 000000000..827d3e4ab Binary files /dev/null and b/static/capture/viko16-vuepress-theme-simple.png differ diff --git a/static/capture/vimux-binario-master.png b/static/capture/vimux-binario-master.png deleted file mode 100644 index 6687b8bff..000000000 Binary files a/static/capture/vimux-binario-master.png and /dev/null differ diff --git a/static/capture/vimux-blank-master.png b/static/capture/vimux-blank-master.png deleted file mode 100644 index d0be3b919..000000000 Binary files a/static/capture/vimux-blank-master.png and /dev/null differ diff --git a/static/capture/vimux-mainroad-master.png b/static/capture/vimux-mainroad-master.png deleted file mode 100644 index 54bf888f6..000000000 Binary files a/static/capture/vimux-mainroad-master.png and /dev/null differ diff --git a/static/capture/vimux-mainroad.png b/static/capture/vimux-mainroad.png new file mode 100644 index 000000000..a3e298e51 Binary files /dev/null and b/static/capture/vimux-mainroad.png differ diff --git a/static/capture/vincentchan-mickey-master.png b/static/capture/vincentchan-mickey-master.png deleted file mode 100644 index 97a8250ed..000000000 Binary files a/static/capture/vincentchan-mickey-master.png and /dev/null differ diff --git a/static/capture/vincentchan-mickey.png b/static/capture/vincentchan-mickey.png new file mode 100644 index 000000000..28d61b146 Binary files /dev/null and b/static/capture/vincentchan-mickey.png differ diff --git a/static/capture/vinitkumar-white-paper-gh-pages.png b/static/capture/vinitkumar-white-paper-gh-pages.png deleted file mode 100644 index 5dde2c45d..000000000 Binary files a/static/capture/vinitkumar-white-paper-gh-pages.png and /dev/null differ diff --git a/static/capture/vinitkumar-white-paper.png b/static/capture/vinitkumar-white-paper.png new file mode 100644 index 000000000..60412049c Binary files /dev/null and b/static/capture/vinitkumar-white-paper.png differ diff --git a/static/capture/vividvilla-ezhil-master.png b/static/capture/vividvilla-ezhil-master.png deleted file mode 100644 index d87899940..000000000 Binary files a/static/capture/vividvilla-ezhil-master.png and /dev/null differ diff --git a/static/capture/vividvilla-ezhil.png b/static/capture/vividvilla-ezhil.png new file mode 100644 index 000000000..d33d3d011 Binary files /dev/null and b/static/capture/vividvilla-ezhil.png differ diff --git a/static/capture/volny-creative-theme-jekyll-master.png b/static/capture/volny-creative-theme-jekyll-master.png deleted file mode 100644 index 06f61d7b9..000000000 Binary files a/static/capture/volny-creative-theme-jekyll-master.png and /dev/null differ diff --git a/static/capture/volny-creative-theme-jekyll.png b/static/capture/volny-creative-theme-jekyll.png new file mode 100644 index 000000000..c1a5882e5 Binary files /dev/null and b/static/capture/volny-creative-theme-jekyll.png differ diff --git a/static/capture/volny-stylish-portfolio-jekyll-master.png b/static/capture/volny-stylish-portfolio-jekyll-master.png deleted file mode 100644 index 9f107bd38..000000000 Binary files a/static/capture/volny-stylish-portfolio-jekyll-master.png and /dev/null differ diff --git a/static/capture/volny-stylish-portfolio-jekyll.png b/static/capture/volny-stylish-portfolio-jekyll.png new file mode 100644 index 000000000..4fe383a94 Binary files /dev/null and b/static/capture/volny-stylish-portfolio-jekyll.png differ diff --git a/static/capture/vormwald-joon-master.png b/static/capture/vormwald-joon-master.png deleted file mode 100644 index 144f429ce..000000000 Binary files a/static/capture/vormwald-joon-master.png and /dev/null differ diff --git a/static/capture/vormwald-joon.png b/static/capture/vormwald-joon.png new file mode 100644 index 000000000..05579b116 Binary files /dev/null and b/static/capture/vormwald-joon.png differ diff --git a/static/capture/vszhub-not-pure-poole-master.png b/static/capture/vszhub-not-pure-poole-master.png deleted file mode 100644 index 4e34b2b5f..000000000 Binary files a/static/capture/vszhub-not-pure-poole-master.png and /dev/null differ diff --git a/static/capture/vszhub-not-pure-poole.png b/static/capture/vszhub-not-pure-poole.png new file mode 100644 index 000000000..097411f35 Binary files /dev/null and b/static/capture/vszhub-not-pure-poole.png differ diff --git a/static/capture/vvalchev-creative-theme-jekyll-new-master.png b/static/capture/vvalchev-creative-theme-jekyll-new-master.png deleted file mode 100644 index f6be4d8c1..000000000 Binary files a/static/capture/vvalchev-creative-theme-jekyll-new-master.png and /dev/null differ diff --git a/static/capture/vvalchev-creative-theme-jekyll-new.png b/static/capture/vvalchev-creative-theme-jekyll-new.png new file mode 100644 index 000000000..d4cd96712 Binary files /dev/null and b/static/capture/vvalchev-creative-theme-jekyll-new.png differ diff --git a/static/capture/vvelox-hugo-dusky-neon-potato-master.png b/static/capture/vvelox-hugo-dusky-neon-potato-master.png deleted file mode 100644 index 364dd6480..000000000 Binary files a/static/capture/vvelox-hugo-dusky-neon-potato-master.png and /dev/null differ diff --git a/static/capture/w3layouts-gatsby-starter-delog-master.png b/static/capture/w3layouts-gatsby-starter-delog-master.png deleted file mode 100644 index 423e6118a..000000000 Binary files a/static/capture/w3layouts-gatsby-starter-delog-master.png and /dev/null differ diff --git a/static/capture/w3layouts-gatsby-starter-delog.png b/static/capture/w3layouts-gatsby-starter-delog.png new file mode 100644 index 000000000..4c5daf9e2 Binary files /dev/null and b/static/capture/w3layouts-gatsby-starter-delog.png differ diff --git a/static/capture/wangchucheng-hugo-eureka-master.png b/static/capture/wangchucheng-hugo-eureka-master.png deleted file mode 100644 index bb4ff380e..000000000 Binary files a/static/capture/wangchucheng-hugo-eureka-master.png and /dev/null differ diff --git a/static/capture/wangonya-flexible-gatsby-master.png b/static/capture/wangonya-flexible-gatsby-master.png deleted file mode 100644 index d5b977ae0..000000000 Binary files a/static/capture/wangonya-flexible-gatsby-master.png and /dev/null differ diff --git a/static/capture/wangonya-flexible-gatsby.png b/static/capture/wangonya-flexible-gatsby.png new file mode 100644 index 000000000..c223ab37c Binary files /dev/null and b/static/capture/wangonya-flexible-gatsby.png differ diff --git a/static/capture/wangonya-the-plain-gatsby-master.png b/static/capture/wangonya-the-plain-gatsby-master.png deleted file mode 100644 index 483daa748..000000000 Binary files a/static/capture/wangonya-the-plain-gatsby-master.png and /dev/null differ diff --git a/static/capture/wangonya-the-plain-gatsby.png b/static/capture/wangonya-the-plain-gatsby.png new file mode 100644 index 000000000..863beb2b9 Binary files /dev/null and b/static/capture/wangonya-the-plain-gatsby.png differ diff --git a/static/capture/wannaxiao-vuepress-theme-resume-master.png b/static/capture/wannaxiao-vuepress-theme-resume-master.png deleted file mode 100644 index a233f0682..000000000 Binary files a/static/capture/wannaxiao-vuepress-theme-resume-master.png and /dev/null differ diff --git a/static/capture/wd-hugo-fabric-master.png b/static/capture/wd-hugo-fabric-master.png deleted file mode 100644 index 0882fc66b..000000000 Binary files a/static/capture/wd-hugo-fabric-master.png and /dev/null differ diff --git a/static/capture/webcu-gatsby-material-kit-react-master.png b/static/capture/webcu-gatsby-material-kit-react-master.png deleted file mode 100644 index cb76282b8..000000000 Binary files a/static/capture/webcu-gatsby-material-kit-react-master.png and /dev/null differ diff --git a/static/capture/webcu-gatsby-material-kit-react.png b/static/capture/webcu-gatsby-material-kit-react.png new file mode 100644 index 000000000..fe16b51eb Binary files /dev/null and b/static/capture/webcu-gatsby-material-kit-react.png differ diff --git a/static/capture/wemake-services-jekyll-theme-hackcss-gh-pages.png b/static/capture/wemake-services-jekyll-theme-hackcss.png similarity index 100% rename from static/capture/wemake-services-jekyll-theme-hackcss-gh-pages.png rename to static/capture/wemake-services-jekyll-theme-hackcss.png diff --git a/static/capture/wgao19-docusaurus-theme-no-style-master.png b/static/capture/wgao19-docusaurus-theme-no-style-master.png deleted file mode 100644 index c68c15607..000000000 Binary files a/static/capture/wgao19-docusaurus-theme-no-style-master.png and /dev/null differ diff --git a/static/capture/wgao19-docusaurus-theme-no-style.png b/static/capture/wgao19-docusaurus-theme-no-style.png new file mode 100644 index 000000000..4111879e0 Binary files /dev/null and b/static/capture/wgao19-docusaurus-theme-no-style.png differ diff --git a/static/capture/whoan-vuepress-theme-canvas-master.png b/static/capture/whoan-vuepress-theme-canvas-master.png deleted file mode 100644 index 95ae82e72..000000000 Binary files a/static/capture/whoan-vuepress-theme-canvas-master.png and /dev/null differ diff --git a/static/capture/whoan-vuepress-theme-canvas.png b/static/capture/whoan-vuepress-theme-canvas.png new file mode 100644 index 000000000..661ea085d Binary files /dev/null and b/static/capture/whoan-vuepress-theme-canvas.png differ diff --git a/static/capture/whoisryosuke-gatsby-documentation-starter-master.png b/static/capture/whoisryosuke-gatsby-documentation-starter-master.png deleted file mode 100644 index 521b35348..000000000 Binary files a/static/capture/whoisryosuke-gatsby-documentation-starter-master.png and /dev/null differ diff --git a/static/capture/whoisryosuke-gatsby-documentation-starter.png b/static/capture/whoisryosuke-gatsby-documentation-starter.png new file mode 100644 index 000000000..bdd9f35f5 Binary files /dev/null and b/static/capture/whoisryosuke-gatsby-documentation-starter.png differ diff --git a/static/capture/wild-flame-jekyll-simple-master.png b/static/capture/wild-flame-jekyll-simple.png similarity index 100% rename from static/capture/wild-flame-jekyll-simple-master.png rename to static/capture/wild-flame-jekyll-simple.png diff --git a/static/capture/wildhaber-gohugo-amp-develop.png b/static/capture/wildhaber-gohugo-amp.png similarity index 100% rename from static/capture/wildhaber-gohugo-amp-develop.png rename to static/capture/wildhaber-gohugo-amp.png diff --git a/static/capture/wileybaba-hugo-theme-robotico-master.png b/static/capture/wileybaba-hugo-theme-robotico-master.png deleted file mode 100644 index ce9813794..000000000 Binary files a/static/capture/wileybaba-hugo-theme-robotico-master.png and /dev/null differ diff --git a/static/capture/willcode4food-gatsby-starter-paperbase-master.png b/static/capture/willcode4food-gatsby-starter-paperbase-master.png deleted file mode 100644 index c1f1465d5..000000000 Binary files a/static/capture/willcode4food-gatsby-starter-paperbase-master.png and /dev/null differ diff --git a/static/capture/willcode4food-gatsby-starter-paperbase.png b/static/capture/willcode4food-gatsby-starter-paperbase.png new file mode 100644 index 000000000..8703a9cfc Binary files /dev/null and b/static/capture/willcode4food-gatsby-starter-paperbase.png differ diff --git a/static/capture/williamcanin-typing-jekyll-template-master.png b/static/capture/williamcanin-typing-jekyll-template-master.png deleted file mode 100644 index 9f23a3931..000000000 Binary files a/static/capture/williamcanin-typing-jekyll-template-master.png and /dev/null differ diff --git a/static/capture/williamcanin-typing-jekyll-template.png b/static/capture/williamcanin-typing-jekyll-template.png new file mode 100644 index 000000000..2fbc91fde Binary files /dev/null and b/static/capture/williamcanin-typing-jekyll-template.png differ diff --git a/static/capture/willianjusten-cards-jekyll-template-gh-pages.png b/static/capture/willianjusten-cards-jekyll-template-gh-pages.png deleted file mode 100644 index 9498c47b4..000000000 Binary files a/static/capture/willianjusten-cards-jekyll-template-gh-pages.png and /dev/null differ diff --git a/static/capture/willianjusten-cards-jekyll-template.png b/static/capture/willianjusten-cards-jekyll-template.png new file mode 100644 index 000000000..751e8309e Binary files /dev/null and b/static/capture/willianjusten-cards-jekyll-template.png differ diff --git a/static/capture/willianjusten-will-jekyll-template-gh-pages.png b/static/capture/willianjusten-will-jekyll-template-gh-pages.png deleted file mode 100644 index 4e4f8e092..000000000 Binary files a/static/capture/willianjusten-will-jekyll-template-gh-pages.png and /dev/null differ diff --git a/static/capture/willianjusten-will-jekyll-template.png b/static/capture/willianjusten-will-jekyll-template.png new file mode 100644 index 000000000..5cf6f51eb Binary files /dev/null and b/static/capture/willianjusten-will-jekyll-template.png differ diff --git a/static/capture/willjw3-gatsby-starter-developer-diary-master.png b/static/capture/willjw3-gatsby-starter-developer-diary-master.png deleted file mode 100644 index 7be7a49a5..000000000 Binary files a/static/capture/willjw3-gatsby-starter-developer-diary-master.png and /dev/null differ diff --git a/static/capture/willjw3-gatsby-starter-developer-diary.png b/static/capture/willjw3-gatsby-starter-developer-diary.png new file mode 100644 index 000000000..00d3fbf0e Binary files /dev/null and b/static/capture/willjw3-gatsby-starter-developer-diary.png differ diff --git a/static/capture/windedge-gatsby-tailwind-serif-master.png b/static/capture/windedge-gatsby-tailwind-serif-master.png deleted file mode 100644 index a9065687b..000000000 Binary files a/static/capture/windedge-gatsby-tailwind-serif-master.png and /dev/null differ diff --git a/static/capture/windedge-gatsby-tailwind-serif.png b/static/capture/windedge-gatsby-tailwind-serif.png new file mode 100644 index 000000000..fa74cc140 Binary files /dev/null and b/static/capture/windedge-gatsby-tailwind-serif.png differ diff --git a/static/capture/wiredcraft-carte-gh-pages.png b/static/capture/wiredcraft-carte-gh-pages.png deleted file mode 100644 index 49e96b71e..000000000 Binary files a/static/capture/wiredcraft-carte-gh-pages.png and /dev/null differ diff --git a/static/capture/wiredcraft-carte.png b/static/capture/wiredcraft-carte.png new file mode 100644 index 000000000..0bdc11be0 Binary files /dev/null and b/static/capture/wiredcraft-carte.png differ diff --git a/static/capture/wkocjan-gatsby-airtable-listing-master.png b/static/capture/wkocjan-gatsby-airtable-listing-master.png deleted file mode 100644 index 90194fead..000000000 Binary files a/static/capture/wkocjan-gatsby-airtable-listing-master.png and /dev/null differ diff --git a/static/capture/wkocjan-gatsby-airtable-listing.png b/static/capture/wkocjan-gatsby-airtable-listing.png new file mode 100644 index 000000000..1d16b83c9 Binary files /dev/null and b/static/capture/wkocjan-gatsby-airtable-listing.png differ diff --git a/static/capture/wkocjan-gatsby-contentful-portfolio-master.png b/static/capture/wkocjan-gatsby-contentful-portfolio-master.png deleted file mode 100644 index 60773eb86..000000000 Binary files a/static/capture/wkocjan-gatsby-contentful-portfolio-master.png and /dev/null differ diff --git a/static/capture/wkocjan-gatsby-contentful-portfolio.png b/static/capture/wkocjan-gatsby-contentful-portfolio.png new file mode 100644 index 000000000..98f2c6661 Binary files /dev/null and b/static/capture/wkocjan-gatsby-contentful-portfolio.png differ diff --git a/static/capture/wkocjan-gatsby-theme-intro-master.png b/static/capture/wkocjan-gatsby-theme-intro-master.png deleted file mode 100644 index 07b78c1a8..000000000 Binary files a/static/capture/wkocjan-gatsby-theme-intro-master.png and /dev/null differ diff --git a/static/capture/wkocjan-gatsby-theme-intro.png b/static/capture/wkocjan-gatsby-theme-intro.png new file mode 100644 index 000000000..4b7f88d60 Binary files /dev/null and b/static/capture/wkocjan-gatsby-theme-intro.png differ diff --git a/static/capture/wowthemesnet-affiliates-jekyll-theme-master.png b/static/capture/wowthemesnet-affiliates-jekyll-theme-master.png deleted file mode 100644 index 204918e3c..000000000 Binary files a/static/capture/wowthemesnet-affiliates-jekyll-theme-master.png and /dev/null differ diff --git a/static/capture/wowthemesnet-affiliates-jekyll-theme.png b/static/capture/wowthemesnet-affiliates-jekyll-theme.png new file mode 100644 index 000000000..8339d343b Binary files /dev/null and b/static/capture/wowthemesnet-affiliates-jekyll-theme.png differ diff --git a/static/capture/wowthemesnet-jekyll-theme-memoirs-master.png b/static/capture/wowthemesnet-jekyll-theme-memoirs-master.png deleted file mode 100644 index fd5971680..000000000 Binary files a/static/capture/wowthemesnet-jekyll-theme-memoirs-master.png and /dev/null differ diff --git a/static/capture/wowthemesnet-jekyll-theme-memoirs.png b/static/capture/wowthemesnet-jekyll-theme-memoirs.png new file mode 100644 index 000000000..81a999016 Binary files /dev/null and b/static/capture/wowthemesnet-jekyll-theme-memoirs.png differ diff --git a/static/capture/wowthemesnet-mediumish-theme-jekyll-master.png b/static/capture/wowthemesnet-mediumish-theme-jekyll-master.png deleted file mode 100644 index ca0e83834..000000000 Binary files a/static/capture/wowthemesnet-mediumish-theme-jekyll-master.png and /dev/null differ diff --git a/static/capture/wowthemesnet-mediumish-theme-jekyll.png b/static/capture/wowthemesnet-mediumish-theme-jekyll.png new file mode 100644 index 000000000..e2200ce10 Binary files /dev/null and b/static/capture/wowthemesnet-mediumish-theme-jekyll.png differ diff --git a/static/capture/wowthemesnet-mediumish-vuepress-blog-theme-master.png b/static/capture/wowthemesnet-mediumish-vuepress-blog-theme-master.png deleted file mode 100644 index c949fa78e..000000000 Binary files a/static/capture/wowthemesnet-mediumish-vuepress-blog-theme-master.png and /dev/null differ diff --git a/static/capture/wowthemesnet-mediumish-vuepress-blog-theme.png b/static/capture/wowthemesnet-mediumish-vuepress-blog-theme.png new file mode 100644 index 000000000..937881e37 Binary files /dev/null and b/static/capture/wowthemesnet-mediumish-vuepress-blog-theme.png differ diff --git a/static/capture/wowthemesnet-mundana-theme-jekyll-master.png b/static/capture/wowthemesnet-mundana-theme-jekyll-master.png deleted file mode 100644 index 7a0cb8765..000000000 Binary files a/static/capture/wowthemesnet-mundana-theme-jekyll-master.png and /dev/null differ diff --git a/static/capture/wowthemesnet-mundana-theme-jekyll.png b/static/capture/wowthemesnet-mundana-theme-jekyll.png new file mode 100644 index 000000000..096182707 Binary files /dev/null and b/static/capture/wowthemesnet-mundana-theme-jekyll.png differ diff --git a/static/capture/wrappixel-flexy-admin-nextjs-free.png b/static/capture/wrappixel-flexy-admin-nextjs-free.png new file mode 100644 index 000000000..3e82032cb Binary files /dev/null and b/static/capture/wrappixel-flexy-admin-nextjs-free.png differ diff --git a/static/capture/wrappixel-materialpro-nuxtjs-free.png b/static/capture/wrappixel-materialpro-nuxtjs-free.png new file mode 100644 index 000000000..de028dccf Binary files /dev/null and b/static/capture/wrappixel-materialpro-nuxtjs-free.png differ diff --git a/static/capture/wrappixel-xtreme-admin-nextjs-free.png b/static/capture/wrappixel-xtreme-admin-nextjs-free.png new file mode 100644 index 000000000..08872165b Binary files /dev/null and b/static/capture/wrappixel-xtreme-admin-nextjs-free.png differ diff --git a/static/capture/wu-kan-wu-kan.github.io-master.png b/static/capture/wu-kan-wu-kan.github.io-master.png deleted file mode 100644 index 7946aee55..000000000 Binary files a/static/capture/wu-kan-wu-kan.github.io-master.png and /dev/null differ diff --git a/static/capture/wu-kan-wu-kan.github.io.png b/static/capture/wu-kan-wu-kan.github.io.png new file mode 100644 index 000000000..0adceaa00 Binary files /dev/null and b/static/capture/wu-kan-wu-kan.github.io.png differ diff --git a/static/capture/xaprb-story-master.png b/static/capture/xaprb-story-master.png deleted file mode 100644 index dafdfc39c..000000000 Binary files a/static/capture/xaprb-story-master.png and /dev/null differ diff --git a/static/capture/xaprb-story.png b/static/capture/xaprb-story.png new file mode 100644 index 000000000..cf7a3a12c Binary files /dev/null and b/static/capture/xaprb-story.png differ diff --git a/static/capture/xaviablaza-hugo-lodi-theme-master.png b/static/capture/xaviablaza-hugo-lodi-theme-master.png deleted file mode 100644 index 3a178c0ce..000000000 Binary files a/static/capture/xaviablaza-hugo-lodi-theme-master.png and /dev/null differ diff --git a/static/capture/xdesro-nuxt-netlify-cms-starter-master.png b/static/capture/xdesro-nuxt-netlify-cms-starter-master.png deleted file mode 100644 index e086344c4..000000000 Binary files a/static/capture/xdesro-nuxt-netlify-cms-starter-master.png and /dev/null differ diff --git a/static/capture/xdesro-nuxt-netlify-cms-starter.png b/static/capture/xdesro-nuxt-netlify-cms-starter.png new file mode 100644 index 000000000..24d9ba4df Binary files /dev/null and b/static/capture/xdesro-nuxt-netlify-cms-starter.png differ diff --git a/static/capture/xianmin-hugo-theme-jane-master.png b/static/capture/xianmin-hugo-theme-jane-master.png deleted file mode 100644 index b8b2d9267..000000000 Binary files a/static/capture/xianmin-hugo-theme-jane-master.png and /dev/null differ diff --git a/static/capture/xianmin-hugo-theme-jane.png b/static/capture/xianmin-hugo-theme-jane.png new file mode 100644 index 000000000..63156d5eb Binary files /dev/null and b/static/capture/xianmin-hugo-theme-jane.png differ diff --git a/static/capture/xukimseven-hardcandy-jekyll-master.png b/static/capture/xukimseven-hardcandy-jekyll-master.png deleted file mode 100644 index 88d0a3200..000000000 Binary files a/static/capture/xukimseven-hardcandy-jekyll-master.png and /dev/null differ diff --git a/static/capture/xydac-xylo-gatsby-bulma-starter-master.png b/static/capture/xydac-xylo-gatsby-bulma-starter-master.png deleted file mode 100644 index c2ff83f45..000000000 Binary files a/static/capture/xydac-xylo-gatsby-bulma-starter-master.png and /dev/null differ diff --git a/static/capture/xydac-xylo-gatsby-bulma-starter.png b/static/capture/xydac-xylo-gatsby-bulma-starter.png new file mode 100644 index 000000000..b3f5c2037 Binary files /dev/null and b/static/capture/xydac-xylo-gatsby-bulma-starter.png differ diff --git a/static/capture/xzya-hugo-material-blog-master.png b/static/capture/xzya-hugo-material-blog-master.png deleted file mode 100644 index 3099a39cb..000000000 Binary files a/static/capture/xzya-hugo-material-blog-master.png and /dev/null differ diff --git a/static/capture/y7kim-agency-jekyll-theme-gh-pages.png b/static/capture/y7kim-agency-jekyll-theme-gh-pages.png deleted file mode 100644 index 36e9151df..000000000 Binary files a/static/capture/y7kim-agency-jekyll-theme-gh-pages.png and /dev/null differ diff --git a/static/capture/y7kim-agency-jekyll-theme.png b/static/capture/y7kim-agency-jekyll-theme.png new file mode 100644 index 000000000..6f1fc06b6 Binary files /dev/null and b/static/capture/y7kim-agency-jekyll-theme.png differ diff --git a/static/capture/yelog-hexo-theme-3-hexo-master.png b/static/capture/yelog-hexo-theme-3-hexo-master.png deleted file mode 100644 index eac76cc4b..000000000 Binary files a/static/capture/yelog-hexo-theme-3-hexo-master.png and /dev/null differ diff --git a/static/capture/yelog-hexo-theme-3-hexo.png b/static/capture/yelog-hexo-theme-3-hexo.png new file mode 100644 index 000000000..6f0822755 Binary files /dev/null and b/static/capture/yelog-hexo-theme-3-hexo.png differ diff --git a/static/capture/yenyuhsuan-hexo-theme-beantech-master.png b/static/capture/yenyuhsuan-hexo-theme-beantech-master.png deleted file mode 100644 index 051645f64..000000000 Binary files a/static/capture/yenyuhsuan-hexo-theme-beantech-master.png and /dev/null differ diff --git a/static/capture/ygoex-yetty.png b/static/capture/ygoex-yetty.png new file mode 100644 index 000000000..e87362bbe Binary files /dev/null and b/static/capture/ygoex-yetty.png differ diff --git a/static/capture/yihui-hugo-xmag-master.png b/static/capture/yihui-hugo-xmag-master.png deleted file mode 100644 index d02ca77fb..000000000 Binary files a/static/capture/yihui-hugo-xmag-master.png and /dev/null differ diff --git a/static/capture/yihui-hugo-xmag.png b/static/capture/yihui-hugo-xmag.png new file mode 100644 index 000000000..ad87e4455 Binary files /dev/null and b/static/capture/yihui-hugo-xmag.png differ diff --git a/static/capture/yihui-hugo-xmin-master.png b/static/capture/yihui-hugo-xmin-master.png deleted file mode 100644 index 061925bf2..000000000 Binary files a/static/capture/yihui-hugo-xmin-master.png and /dev/null differ diff --git a/static/capture/yihui-hugo-xmin.png b/static/capture/yihui-hugo-xmin.png new file mode 100644 index 000000000..5d78c630a Binary files /dev/null and b/static/capture/yihui-hugo-xmin.png differ diff --git a/static/capture/yiluyanxia-hexo-theme-antiquity-master.png b/static/capture/yiluyanxia-hexo-theme-antiquity-master.png deleted file mode 100644 index 70df665c0..000000000 Binary files a/static/capture/yiluyanxia-hexo-theme-antiquity-master.png and /dev/null differ diff --git a/static/capture/yinkakun-eleventy-duo-master.png b/static/capture/yinkakun-eleventy-duo-master.png deleted file mode 100644 index e91573b30..000000000 Binary files a/static/capture/yinkakun-eleventy-duo-master.png and /dev/null differ diff --git a/static/capture/yinkakun-eleventy-duo.png b/static/capture/yinkakun-eleventy-duo.png new file mode 100644 index 000000000..8d047f212 Binary files /dev/null and b/static/capture/yinkakun-eleventy-duo.png differ diff --git a/static/capture/yinkakun-gatsby-starter-glass.png b/static/capture/yinkakun-gatsby-starter-glass.png new file mode 100644 index 000000000..01cc246b9 Binary files /dev/null and b/static/capture/yinkakun-gatsby-starter-glass.png differ diff --git a/static/capture/yizeng-jekyll-theme-simple-texture-master.png b/static/capture/yizeng-jekyll-theme-simple-texture-master.png deleted file mode 100644 index d988a94d5..000000000 Binary files a/static/capture/yizeng-jekyll-theme-simple-texture-master.png and /dev/null differ diff --git a/static/capture/yizeng-jekyll-theme-simple-texture.png b/static/capture/yizeng-jekyll-theme-simple-texture.png new file mode 100644 index 000000000..422942322 Binary files /dev/null and b/static/capture/yizeng-jekyll-theme-simple-texture.png differ diff --git a/static/capture/yjpl-supply.png b/static/capture/yjpl-supply.png new file mode 100644 index 000000000..db469b636 Binary files /dev/null and b/static/capture/yjpl-supply.png differ diff --git a/static/capture/yonojoy-yax-coming-soon-jekyll-template-master.png b/static/capture/yonojoy-yax-coming-soon-jekyll-template-master.png deleted file mode 100644 index 5431d64ca..000000000 Binary files a/static/capture/yonojoy-yax-coming-soon-jekyll-template-master.png and /dev/null differ diff --git a/static/capture/yonojoy-yax-coming-soon-jekyll-template.png b/static/capture/yonojoy-yax-coming-soon-jekyll-template.png new file mode 100644 index 000000000..02fa576fa Binary files /dev/null and b/static/capture/yonojoy-yax-coming-soon-jekyll-template.png differ diff --git a/static/capture/yous-whiteglass-master.png b/static/capture/yous-whiteglass-master.png deleted file mode 100644 index de388496a..000000000 Binary files a/static/capture/yous-whiteglass-master.png and /dev/null differ diff --git a/static/capture/yous-whiteglass.png b/static/capture/yous-whiteglass.png new file mode 100644 index 000000000..254c28186 Binary files /dev/null and b/static/capture/yous-whiteglass.png differ diff --git a/static/capture/youssefraafatnasry-portfolyou-master.png b/static/capture/youssefraafatnasry-portfolyou-master.png deleted file mode 100644 index 37592e17b..000000000 Binary files a/static/capture/youssefraafatnasry-portfolyou-master.png and /dev/null differ diff --git a/static/capture/youssefraafatnasry-portfolyou.png b/static/capture/youssefraafatnasry-portfolyou.png new file mode 100644 index 000000000..1bb607025 Binary files /dev/null and b/static/capture/youssefraafatnasry-portfolyou.png differ diff --git a/static/capture/yscoder-vuepress-theme-indigo-master.png b/static/capture/yscoder-vuepress-theme-indigo-master.png deleted file mode 100644 index 9db49900b..000000000 Binary files a/static/capture/yscoder-vuepress-theme-indigo-master.png and /dev/null differ diff --git a/static/capture/yscoder-vuepress-theme-indigo.png b/static/capture/yscoder-vuepress-theme-indigo.png new file mode 100644 index 000000000..baf563d59 Binary files /dev/null and b/static/capture/yscoder-vuepress-theme-indigo.png differ diff --git a/static/capture/yubisaki-vuepress-theme-yubisaki-master.png b/static/capture/yubisaki-vuepress-theme-yubisaki-master.png deleted file mode 100644 index 70b819634..000000000 Binary files a/static/capture/yubisaki-vuepress-theme-yubisaki-master.png and /dev/null differ diff --git a/static/capture/yulijia-freshman21-master.png b/static/capture/yulijia-freshman21-master.png deleted file mode 100644 index 268ee48fe..000000000 Binary files a/static/capture/yulijia-freshman21-master.png and /dev/null differ diff --git a/static/capture/yulijia-freshman21.png b/static/capture/yulijia-freshman21.png new file mode 100644 index 000000000..1d1d6bd2a Binary files /dev/null and b/static/capture/yulijia-freshman21.png differ diff --git a/static/capture/yursan9-manis-hugo-theme-master.png b/static/capture/yursan9-manis-hugo-theme-master.png deleted file mode 100644 index b8662c4ba..000000000 Binary files a/static/capture/yursan9-manis-hugo-theme-master.png and /dev/null differ diff --git a/static/capture/yvesespinosa-jekyll-html5up-fractal-master.png b/static/capture/yvesespinosa-jekyll-html5up-fractal-master.png deleted file mode 100644 index f194bc791..000000000 Binary files a/static/capture/yvesespinosa-jekyll-html5up-fractal-master.png and /dev/null differ diff --git a/static/capture/zeespire-one-free.png b/static/capture/zeespire-one-free.png new file mode 100644 index 000000000..e42050218 Binary files /dev/null and b/static/capture/zeespire-one-free.png differ diff --git a/static/capture/zerostaticthemes-hugo-atlantic-theme.png b/static/capture/zerostaticthemes-hugo-atlantic-theme.png new file mode 100644 index 000000000..e7ada00b0 Binary files /dev/null and b/static/capture/zerostaticthemes-hugo-atlantic-theme.png differ diff --git a/static/capture/zerostaticthemes-hugo-serif-theme-master.png b/static/capture/zerostaticthemes-hugo-serif-theme-master.png deleted file mode 100644 index b4594f962..000000000 Binary files a/static/capture/zerostaticthemes-hugo-serif-theme-master.png and /dev/null differ diff --git a/static/capture/zerostaticthemes-hugo-serif-theme.png b/static/capture/zerostaticthemes-hugo-serif-theme.png new file mode 100644 index 000000000..707d049ac Binary files /dev/null and b/static/capture/zerostaticthemes-hugo-serif-theme.png differ diff --git a/static/capture/zerostaticthemes-hugo-winston-theme.png b/static/capture/zerostaticthemes-hugo-winston-theme.png new file mode 100644 index 000000000..54aa7517a Binary files /dev/null and b/static/capture/zerostaticthemes-hugo-winston-theme.png differ diff --git a/static/capture/zerostaticthemes-jekyll-atlantic-theme.png b/static/capture/zerostaticthemes-jekyll-atlantic-theme.png new file mode 100644 index 000000000..d3236b58e Binary files /dev/null and b/static/capture/zerostaticthemes-jekyll-atlantic-theme.png differ diff --git a/static/capture/zerostaticthemes-jekyll-serif-theme-master.png b/static/capture/zerostaticthemes-jekyll-serif-theme-master.png deleted file mode 100644 index 0641b439d..000000000 Binary files a/static/capture/zerostaticthemes-jekyll-serif-theme-master.png and /dev/null differ diff --git a/static/capture/zerostaticthemes-jekyll-serif-theme.png b/static/capture/zerostaticthemes-jekyll-serif-theme.png new file mode 100644 index 000000000..45eb12ba4 Binary files /dev/null and b/static/capture/zerostaticthemes-jekyll-serif-theme.png differ diff --git a/static/capture/zhaohuabing-hugo-theme-cleanwhite-master.png b/static/capture/zhaohuabing-hugo-theme-cleanwhite-master.png deleted file mode 100644 index 39e35e248..000000000 Binary files a/static/capture/zhaohuabing-hugo-theme-cleanwhite-master.png and /dev/null differ diff --git a/static/capture/zhaohuabing-hugo-theme-cleanwhite.png b/static/capture/zhaohuabing-hugo-theme-cleanwhite.png new file mode 100644 index 000000000..21f58f76b Binary files /dev/null and b/static/capture/zhaohuabing-hugo-theme-cleanwhite.png differ diff --git a/static/capture/zhe-hugo-theme-slim-master.png b/static/capture/zhe-hugo-theme-slim-master.png deleted file mode 100644 index 1aff9fb50..000000000 Binary files a/static/capture/zhe-hugo-theme-slim-master.png and /dev/null differ diff --git a/static/capture/zhonger-jekyll-theme-h2o-ac.png b/static/capture/zhonger-jekyll-theme-h2o-ac.png new file mode 100644 index 000000000..34d500805 Binary files /dev/null and b/static/capture/zhonger-jekyll-theme-h2o-ac.png differ diff --git a/static/capture/zivong-jekyll-theme-hydure.png b/static/capture/zivong-jekyll-theme-hydure.png new file mode 100644 index 000000000..ee61aacbc Binary files /dev/null and b/static/capture/zivong-jekyll-theme-hydure.png differ diff --git a/static/capture/zwbetz-gh-cayman-hugo-theme-master.png b/static/capture/zwbetz-gh-cayman-hugo-theme-master.png deleted file mode 100644 index c0a25080d..000000000 Binary files a/static/capture/zwbetz-gh-cayman-hugo-theme-master.png and /dev/null differ diff --git a/static/capture/zwbetz-gh-cayman-hugo-theme.png b/static/capture/zwbetz-gh-cayman-hugo-theme.png new file mode 100644 index 000000000..dfea8640d Binary files /dev/null and b/static/capture/zwbetz-gh-cayman-hugo-theme.png differ diff --git a/static/capture/zwbetz-gh-cupper-hugo-theme-master.png b/static/capture/zwbetz-gh-cupper-hugo-theme-master.png deleted file mode 100644 index d338b464d..000000000 Binary files a/static/capture/zwbetz-gh-cupper-hugo-theme-master.png and /dev/null differ diff --git a/static/capture/zwbetz-gh-cupper-hugo-theme.png b/static/capture/zwbetz-gh-cupper-hugo-theme.png new file mode 100644 index 000000000..77fddb763 Binary files /dev/null and b/static/capture/zwbetz-gh-cupper-hugo-theme.png differ diff --git a/static/capture/zwbetz-gh-minimal-bootstrap-hugo-theme-master.png b/static/capture/zwbetz-gh-minimal-bootstrap-hugo-theme-master.png deleted file mode 100644 index 2e3d2107c..000000000 Binary files a/static/capture/zwbetz-gh-minimal-bootstrap-hugo-theme-master.png and /dev/null differ diff --git a/static/capture/zwbetz-gh-minimal-bootstrap-hugo-theme.png b/static/capture/zwbetz-gh-minimal-bootstrap-hugo-theme.png new file mode 100644 index 000000000..2102b69f9 Binary files /dev/null and b/static/capture/zwbetz-gh-minimal-bootstrap-hugo-theme.png differ diff --git a/static/capture/zwbetz-gh-papercss-hugo-theme-master.png b/static/capture/zwbetz-gh-papercss-hugo-theme-master.png deleted file mode 100644 index d50ac8d7c..000000000 Binary files a/static/capture/zwbetz-gh-papercss-hugo-theme-master.png and /dev/null differ diff --git a/static/capture/zwbetz-gh-papercss-hugo-theme.png b/static/capture/zwbetz-gh-papercss-hugo-theme.png new file mode 100644 index 000000000..0a46e491b Binary files /dev/null and b/static/capture/zwbetz-gh-papercss-hugo-theme.png differ diff --git a/static/capture/zwbetz-gh-vanilla-bootstrap-hugo-theme-master.png b/static/capture/zwbetz-gh-vanilla-bootstrap-hugo-theme-master.png deleted file mode 100644 index 81f0b5e8a..000000000 Binary files a/static/capture/zwbetz-gh-vanilla-bootstrap-hugo-theme-master.png and /dev/null differ diff --git a/static/capture/zwbetz-gh-vanilla-bootstrap-hugo-theme.png b/static/capture/zwbetz-gh-vanilla-bootstrap-hugo-theme.png new file mode 100644 index 000000000..a06321e42 Binary files /dev/null and b/static/capture/zwbetz-gh-vanilla-bootstrap-hugo-theme.png differ diff --git a/static/capture/zxixia-jekyll-xixia-gh-pages.png b/static/capture/zxixia-jekyll-xixia-gh-pages.png deleted file mode 100644 index 1a91e494e..000000000 Binary files a/static/capture/zxixia-jekyll-xixia-gh-pages.png and /dev/null differ diff --git a/static/capture/zzossig-hugo-theme-zdoc-master.png b/static/capture/zzossig-hugo-theme-zdoc-master.png deleted file mode 100644 index e154681cf..000000000 Binary files a/static/capture/zzossig-hugo-theme-zdoc-master.png and /dev/null differ diff --git a/static/capture/zzossig-hugo-theme-zzo-master.png b/static/capture/zzossig-hugo-theme-zzo-master.png deleted file mode 100644 index 65fdda825..000000000 Binary files a/static/capture/zzossig-hugo-theme-zzo-master.png and /dev/null differ diff --git a/static/capture/zzzmisa-hugo-theme-doors-master.png b/static/capture/zzzmisa-hugo-theme-doors-master.png deleted file mode 100644 index 17217476b..000000000 Binary files a/static/capture/zzzmisa-hugo-theme-doors-master.png and /dev/null differ diff --git a/static/capture/zzzmisa-hugo-theme-doors.png b/static/capture/zzzmisa-hugo-theme-doors.png new file mode 100644 index 000000000..21f018e18 Binary files /dev/null and b/static/capture/zzzmisa-hugo-theme-doors.png differ diff --git a/static/images/Waihou.svg b/static/images/Waihou.svg deleted file mode 100644 index df5a896d1..000000000 --- a/static/images/Waihou.svg +++ /dev/null @@ -1,2947 +0,0 @@ - - - Waihou - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/images/banner/bg.svg b/static/images/banner/bg.svg new file mode 100644 index 000000000..bdd2c4bde --- /dev/null +++ b/static/images/banner/bg.svg @@ -0,0 +1,16 @@ + + + Group 2 + + + + + + + + + + + + + \ No newline at end of file diff --git a/static/images/banner/compose-banner.svg b/static/images/banner/compose-banner.svg new file mode 100644 index 000000000..f8dd5b7b7 --- /dev/null +++ b/static/images/banner/compose-banner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/images/banner/netlify-create.svg b/static/images/banner/netlify-create.svg new file mode 100644 index 000000000..2ad50b8e3 --- /dev/null +++ b/static/images/banner/netlify-create.svg @@ -0,0 +1,32 @@ + + + Group 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/static/images/icons/admin.svg b/static/images/icons/admin.svg new file mode 100644 index 000000000..c431d6d8f --- /dev/null +++ b/static/images/icons/admin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/images/icons/agency.svg b/static/images/icons/agency.svg deleted file mode 100644 index 791df6887..000000000 --- a/static/images/icons/agency.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/static/images/icons/algolia.svg b/static/images/icons/algolia.svg index 3b396e1c8..e7a5933f4 100644 --- a/static/images/icons/algolia.svg +++ b/static/images/icons/algolia.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/images/icons/astro.svg b/static/images/icons/astro.svg new file mode 100644 index 000000000..851e91118 --- /dev/null +++ b/static/images/icons/astro.svg @@ -0,0 +1,4 @@ + + + + diff --git a/static/images/icons/blog.svg b/static/images/icons/blog.svg index 1fc6ca6cf..5618ad834 100644 --- a/static/images/icons/blog.svg +++ b/static/images/icons/blog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/images/icons/bulma.svg b/static/images/icons/bulma.svg index 34c65acaf..badd3550f 100644 --- a/static/images/icons/bulma.svg +++ b/static/images/icons/bulma.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/static/images/icons/business.svg b/static/images/icons/business.svg new file mode 100644 index 000000000..74e13dc79 --- /dev/null +++ b/static/images/icons/business.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/images/icons/cecil.svg b/static/images/icons/cecil.svg index 001001dfd..3ce9daab3 100644 --- a/static/images/icons/cecil.svg +++ b/static/images/icons/cecil.svg @@ -1,7 +1,4 @@ - - - - +b2Z0d2FyZQBwYWludC5uZXQgNC4wLjE51NayZAAAAABJRU5ErkJggg=="/> \ No newline at end of file diff --git a/static/images/icons/chota.svg b/static/images/icons/chota.svg new file mode 100644 index 000000000..55ab06413 --- /dev/null +++ b/static/images/icons/chota.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/static/images/icons/cosmic.svg b/static/images/icons/cosmic.svg index 5c9071a4a..00d5f9db7 100644 --- a/static/images/icons/cosmic.svg +++ b/static/images/icons/cosmic.svg @@ -1,29 +1 @@ - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/static/images/icons/css.svg b/static/images/icons/css.svg new file mode 100644 index 000000000..e407677ba --- /dev/null +++ b/static/images/icons/css.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/static/images/icons/decapcms.svg b/static/images/icons/decapcms.svg new file mode 100644 index 000000000..57a3a2125 --- /dev/null +++ b/static/images/icons/decapcms.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/images/icons/directus.svg b/static/images/icons/directus.svg index 5eb444074..0a9437c6c 100644 --- a/static/images/icons/directus.svg +++ b/static/images/icons/directus.svg @@ -1,119 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/static/images/icons/documentation.svg b/static/images/icons/documentation.svg index 66459f88f..51c833ea8 100644 --- a/static/images/icons/documentation.svg +++ b/static/images/icons/documentation.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/images/icons/ecommerce.svg b/static/images/icons/ecommerce.svg new file mode 100644 index 000000000..8b4edcc80 --- /dev/null +++ b/static/images/icons/ecommerce.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/images/icons/event.svg b/static/images/icons/event.svg new file mode 100644 index 000000000..9fb42282a --- /dev/null +++ b/static/images/icons/event.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/images/icons/flotiq.svg b/static/images/icons/flotiq.svg new file mode 100644 index 000000000..aaaaf0177 --- /dev/null +++ b/static/images/icons/flotiq.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/images/icons/formspree.svg b/static/images/icons/formspree.svg index e327dbc3d..1795c5a56 100644 --- a/static/images/icons/formspree.svg +++ b/static/images/icons/formspree.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/images/icons/gatsby-bw.svg b/static/images/icons/gatsby-bw.svg index 47c9610ce..2dde24195 100644 --- a/static/images/icons/gatsby-bw.svg +++ b/static/images/icons/gatsby-bw.svg @@ -1 +1 @@ -Gatsby icon \ No newline at end of file + \ No newline at end of file diff --git a/static/images/icons/gozer.svg b/static/images/icons/gozer.svg new file mode 100644 index 000000000..efed12e59 --- /dev/null +++ b/static/images/icons/gozer.svg @@ -0,0 +1,3 @@ + + + diff --git a/static/images/icons/graphcms.svg b/static/images/icons/graphcms.svg new file mode 100644 index 000000000..6f2e8cd13 --- /dev/null +++ b/static/images/icons/graphcms.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/images/icons/hugo-bw.svg b/static/images/icons/hugo-bw.svg index dfb18f0ed..9d788aa71 100644 --- a/static/images/icons/hugo-bw.svg +++ b/static/images/icons/hugo-bw.svg @@ -1 +1 @@ -Hugo icon + \ No newline at end of file diff --git a/static/images/icons/hyde.svg b/static/images/icons/hyde.svg index 1c8e68cd7..67add8130 100644 --- a/static/images/icons/hyde.svg +++ b/static/images/icons/hyde.svg @@ -1,7 +1,4 @@ - - - - +AEFkb2JlIEltYWdlUmVhZHlxyWU8AAAAAElFTkSuQmCC"/> \ No newline at end of file diff --git a/static/images/icons/jigsaw.svg b/static/images/icons/jigsaw.svg index a6dcc4e60..67213651a 100644 --- a/static/images/icons/jigsaw.svg +++ b/static/images/icons/jigsaw.svg @@ -1,24 +1 @@ - - - - Group 14 Copy - Created with Sketch. - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/static/images/icons/kontent.svg b/static/images/icons/kontent.svg index 57878200b..0e1f1eccb 100644 --- a/static/images/icons/kontent.svg +++ b/static/images/icons/kontent.svg @@ -1 +1 @@ -kk-logo-short-color-pos-rgb-32px \ No newline at end of file + \ No newline at end of file diff --git a/static/images/icons/mailchimp.svg b/static/images/icons/mailchimp.svg index 31ac6ce86..c1bf3f1d1 100644 --- a/static/images/icons/mailchimp.svg +++ b/static/images/icons/mailchimp.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/images/icons/material-ui.svg b/static/images/icons/material-ui.svg new file mode 100644 index 000000000..d459d2841 --- /dev/null +++ b/static/images/icons/material-ui.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/static/images/icons/metalsmith.svg b/static/images/icons/metalsmith.svg index 23887f761..31d509450 100644 --- a/static/images/icons/metalsmith.svg +++ b/static/images/icons/metalsmith.svg @@ -1,29 +1 @@ - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/static/images/icons/next.svg b/static/images/icons/next.svg index 9eb2f6b72..2bf7c1e4d 100644 --- a/static/images/icons/next.svg +++ b/static/images/icons/next.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/static/images/icons/notion.svg b/static/images/icons/notion.svg new file mode 100644 index 000000000..815ecd964 --- /dev/null +++ b/static/images/icons/notion.svg @@ -0,0 +1 @@ +Notion icon \ No newline at end of file diff --git a/static/images/icons/noun_Square Abstract_327754.svg b/static/images/icons/noun_Square Abstract_327754.svg deleted file mode 100644 index 015df967a..000000000 --- a/static/images/icons/noun_Square Abstract_327754.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/static/images/icons/noun_Triangle Abstract_327762.svg b/static/images/icons/noun_Triangle Abstract_327762.svg deleted file mode 100644 index 6f5dd005a..000000000 --- a/static/images/icons/noun_Triangle Abstract_327762.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/static/images/icons/noun_Twelve Triangles_327786.svg b/static/images/icons/noun_Twelve Triangles_327786.svg deleted file mode 100644 index e732e7e5f..000000000 --- a/static/images/icons/noun_Twelve Triangles_327786.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/static/images/icons/noun_creating_327731.svg b/static/images/icons/noun_creating_327731.svg deleted file mode 100644 index ee388b11d..000000000 --- a/static/images/icons/noun_creating_327731.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/static/images/icons/noun_down_329586.svg b/static/images/icons/noun_down_329586.svg deleted file mode 100644 index cd4728a7d..000000000 --- a/static/images/icons/noun_down_329586.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/static/images/icons/noun_triangles_327743.svg b/static/images/icons/noun_triangles_327743.svg deleted file mode 100644 index 3f2ed836e..000000000 --- a/static/images/icons/noun_triangles_327743.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/static/images/icons/noun_triangles_329583.svg b/static/images/icons/noun_triangles_329583.svg deleted file mode 100644 index 076838ae4..000000000 --- a/static/images/icons/noun_triangles_329583.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/static/images/icons/personal.svg b/static/images/icons/personal.svg index ab7e1443b..2782104c2 100644 --- a/static/images/icons/personal.svg +++ b/static/images/icons/personal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/images/icons/portfolio.svg b/static/images/icons/portfolio.svg index cb0e89c69..8983bb46d 100644 --- a/static/images/icons/portfolio.svg +++ b/static/images/icons/portfolio.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/images/icons/prismic.svg b/static/images/icons/prismic.svg index 3ca5a5ba1..5d14f014a 100644 --- a/static/images/icons/prismic.svg +++ b/static/images/icons/prismic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/images/icons/remix.svg b/static/images/icons/remix.svg new file mode 100644 index 000000000..b94f0a171 --- /dev/null +++ b/static/images/icons/remix.svg @@ -0,0 +1,4 @@ + + + + diff --git a/static/images/icons/sanity.svg b/static/images/icons/sanity.svg index 4cc558744..0836236d0 100644 --- a/static/images/icons/sanity.svg +++ b/static/images/icons/sanity.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/images/icons/sapper.svg b/static/images/icons/sapper.svg index 2c818bc92..8f32c37cb 100644 --- a/static/images/icons/sapper.svg +++ b/static/images/icons/sapper.svg @@ -1,20 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/static/images/icons/scully.svg b/static/images/icons/scully.svg index a2654c618..8f71b3202 100644 --- a/static/images/icons/scully.svg +++ b/static/images/icons/scully.svg @@ -1,82 +1 @@ - -image/svg+xml -logo - - - - - - - - - + \ No newline at end of file diff --git a/static/images/icons/single-page.svg b/static/images/icons/single-page.svg new file mode 100644 index 000000000..2ef5ae210 --- /dev/null +++ b/static/images/icons/single-page.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/images/icons/stackbit.svg b/static/images/icons/stackbit.svg index ccb3a3c02..2a6dec826 100644 --- a/static/images/icons/stackbit.svg +++ b/static/images/icons/stackbit.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + \ No newline at end of file diff --git a/static/images/icons/statiq.svg b/static/images/icons/statiq.svg index b2ce5f279..d97f43307 100644 --- a/static/images/icons/statiq.svg +++ b/static/images/icons/statiq.svg @@ -1,143 +1 @@ - -image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/static/images/icons/storyblok.svg b/static/images/icons/storyblok.svg index ab8080efd..9e5c256f9 100644 --- a/static/images/icons/storyblok.svg +++ b/static/images/icons/storyblok.svg @@ -1,13 +1 @@ - - - - colored-standalone-square - Created with Sketch. - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/static/images/icons/styled-components.png b/static/images/icons/styled-components.png new file mode 100644 index 000000000..e20a0b276 Binary files /dev/null and b/static/images/icons/styled-components.png differ diff --git a/static/images/icons/stylus.svg b/static/images/icons/stylus.svg new file mode 100644 index 000000000..259921c70 --- /dev/null +++ b/static/images/icons/stylus.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + + diff --git a/static/images/icons/supabase.svg b/static/images/icons/supabase.svg new file mode 100644 index 000000000..ac43e170a --- /dev/null +++ b/static/images/icons/supabase.svg @@ -0,0 +1,99 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/static/images/icons/sveltekit.svg b/static/images/icons/sveltekit.svg new file mode 100644 index 000000000..e1734cda8 --- /dev/null +++ b/static/images/icons/sveltekit.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/static/images/icons/tailwind.svg b/static/images/icons/tailwind.svg index a66250634..2b1a4d67d 100644 --- a/static/images/icons/tailwind.svg +++ b/static/images/icons/tailwind.svg @@ -1,12 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/static/images/icons/tanstack.svg b/static/images/icons/tanstack.svg new file mode 100644 index 000000000..842f08ee1 --- /dev/null +++ b/static/images/icons/tanstack.svg @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/images/icons/tina.svg b/static/images/icons/tina.svg new file mode 100644 index 000000000..8b253d3f4 --- /dev/null +++ b/static/images/icons/tina.svg @@ -0,0 +1,4 @@ + + + + diff --git a/static/images/icons/unibit-pink.svg b/static/images/icons/unibit-pink.svg index 935db5593..66d67892b 100644 --- a/static/images/icons/unibit-pink.svg +++ b/static/images/icons/unibit-pink.svg @@ -1,22 +1 @@ - - - - Unibit Icon - Created with Sketch. - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/static/images/icons/vuetify.svg b/static/images/icons/vuetify.svg new file mode 100644 index 000000000..f6fc82b73 --- /dev/null +++ b/static/images/icons/vuetify.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/static/images/icons/w3css.svg b/static/images/icons/w3css.svg index 9adb1bb61..93c936fbd 100644 --- a/static/images/icons/w3css.svg +++ b/static/images/icons/w3css.svg @@ -1,68 +1 @@ - - - - - W3 CSS logo - - - - - - image/svg+xml - - W3 CSS logo - - - - - - - + \ No newline at end of file diff --git a/static/images/icons/wisp.svg b/static/images/icons/wisp.svg new file mode 100644 index 000000000..b1695314f --- /dev/null +++ b/static/images/icons/wisp.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/static/images/icons/zola.svg b/static/images/icons/zola.svg new file mode 100644 index 000000000..e1b899d17 --- /dev/null +++ b/static/images/icons/zola.svg @@ -0,0 +1,4 @@ + + + + diff --git a/static/images/jamstackthemes-screenshot.png b/static/images/jamstackthemes-screenshot.png index 83d2c2ad3..502f58bdc 100644 Binary files a/static/images/jamstackthemes-screenshot.png and b/static/images/jamstackthemes-screenshot.png differ diff --git a/static/images/patterns/Aare.png b/static/images/patterns/Aare.png deleted file mode 100644 index 26563622d..000000000 Binary files a/static/images/patterns/Aare.png and /dev/null differ diff --git a/static/images/patterns/Clarence.png b/static/images/patterns/Clarence.png deleted file mode 100644 index e0b384341..000000000 Binary files a/static/images/patterns/Clarence.png and /dev/null differ diff --git a/static/images/patterns/Doubs.png b/static/images/patterns/Doubs.png deleted file mode 100644 index 7a6cb6713..000000000 Binary files a/static/images/patterns/Doubs.png and /dev/null differ diff --git a/static/images/patterns/Hinterrhein.png b/static/images/patterns/Hinterrhein.png deleted file mode 100644 index ba6cd3960..000000000 Binary files a/static/images/patterns/Hinterrhein.png and /dev/null differ diff --git a/static/images/patterns/Inn.png b/static/images/patterns/Inn.png deleted file mode 100644 index e20233ef1..000000000 Binary files a/static/images/patterns/Inn.png and /dev/null differ diff --git a/static/images/patterns/Kander.png b/static/images/patterns/Kander.png deleted file mode 100644 index f56c2ac9a..000000000 Binary files a/static/images/patterns/Kander.png and /dev/null differ diff --git a/static/images/patterns/Linth.png b/static/images/patterns/Linth.png deleted file mode 100644 index 2fe70dea0..000000000 Binary files a/static/images/patterns/Linth.png and /dev/null differ diff --git a/static/images/patterns/Mataura.png b/static/images/patterns/Mataura.png deleted file mode 100644 index 36f329232..000000000 Binary files a/static/images/patterns/Mataura.png and /dev/null differ diff --git a/static/images/patterns/Mohaka.png b/static/images/patterns/Mohaka.png deleted file mode 100644 index 913e70d57..000000000 Binary files a/static/images/patterns/Mohaka.png and /dev/null differ diff --git a/static/images/patterns/Ngaruroro.png b/static/images/patterns/Ngaruroro.png deleted file mode 100644 index 6fdd64fae..000000000 Binary files a/static/images/patterns/Ngaruroro.png and /dev/null differ diff --git a/static/images/patterns/Oreti.png b/static/images/patterns/Oreti.png deleted file mode 100644 index b6a68e1bd..000000000 Binary files a/static/images/patterns/Oreti.png and /dev/null differ diff --git a/static/images/patterns/Rangitikei.png b/static/images/patterns/Rangitikei.png deleted file mode 100644 index 81addf945..000000000 Binary files a/static/images/patterns/Rangitikei.png and /dev/null differ diff --git a/static/images/patterns/Reuss.png b/static/images/patterns/Reuss.png deleted file mode 100644 index b255b690b..000000000 Binary files a/static/images/patterns/Reuss.png and /dev/null differ diff --git "a/static/images/patterns/Rh\303\264ne.png" "b/static/images/patterns/Rh\303\264ne.png" deleted file mode 100644 index d2a42a559..000000000 Binary files "a/static/images/patterns/Rh\303\264ne.png" and /dev/null differ diff --git a/static/images/patterns/Taieri.png b/static/images/patterns/Taieri.png deleted file mode 100644 index 4c0c9df12..000000000 Binary files a/static/images/patterns/Taieri.png and /dev/null differ diff --git a/static/images/patterns/Thur.png b/static/images/patterns/Thur.png deleted file mode 100644 index 69b337896..000000000 Binary files a/static/images/patterns/Thur.png and /dev/null differ diff --git a/static/images/patterns/Vorderrhein.png b/static/images/patterns/Vorderrhein.png deleted file mode 100644 index 018369404..000000000 Binary files a/static/images/patterns/Vorderrhein.png and /dev/null differ diff --git a/static/images/patterns/Waiau.png b/static/images/patterns/Waiau.png deleted file mode 100644 index 2771adc5f..000000000 Binary files a/static/images/patterns/Waiau.png and /dev/null differ diff --git a/static/images/patterns/Waihou.png b/static/images/patterns/Waihou.png deleted file mode 100644 index 57574f1d2..000000000 Binary files a/static/images/patterns/Waihou.png and /dev/null differ diff --git a/static/images/patterns/Waimakariri.png b/static/images/patterns/Waimakariri.png deleted file mode 100644 index 7d422d57d..000000000 Binary files a/static/images/patterns/Waimakariri.png and /dev/null differ diff --git a/static/images/patterns/Wairau.png b/static/images/patterns/Wairau.png deleted file mode 100644 index 8f0aa3786..000000000 Binary files a/static/images/patterns/Wairau.png and /dev/null differ diff --git a/static/images/patterns/Whangaehu.png b/static/images/patterns/Whangaehu.png deleted file mode 100644 index 248284c2c..000000000 Binary files a/static/images/patterns/Whangaehu.png and /dev/null differ diff --git a/static/images/social/linkedin.svg b/static/images/social/linkedin.svg deleted file mode 100755 index d28677121..000000000 --- a/static/images/social/linkedin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/static/images/social/medium.svg b/static/images/social/medium.svg deleted file mode 100755 index 70e15eefa..000000000 --- a/static/images/social/medium.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/static/images/theme/thumbnail/11ty-eleventy-base-blog-master.jpg b/static/images/theme/thumbnail/11ty-eleventy-base-blog-master.jpg deleted file mode 100644 index 8fa008eb6..000000000 Binary files a/static/images/theme/thumbnail/11ty-eleventy-base-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/11ty-eleventy-base-blog.jpg b/static/images/theme/thumbnail/11ty-eleventy-base-blog.jpg new file mode 100644 index 000000000..fee9786a4 Binary files /dev/null and b/static/images/theme/thumbnail/11ty-eleventy-base-blog.jpg differ diff --git a/static/images/theme/thumbnail/12vanblart-gridsome-airtable-starter-master.jpg b/static/images/theme/thumbnail/12vanblart-gridsome-airtable-starter-master.jpg deleted file mode 100644 index 1c9a85d9c..000000000 Binary files a/static/images/theme/thumbnail/12vanblart-gridsome-airtable-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/12vanblart-gridsome-airtable-starter.jpg b/static/images/theme/thumbnail/12vanblart-gridsome-airtable-starter.jpg new file mode 100644 index 000000000..5a4822453 Binary files /dev/null and b/static/images/theme/thumbnail/12vanblart-gridsome-airtable-starter.jpg differ diff --git a/static/images/theme/thumbnail/2-rec-hugo-myportfolio-theme-master.jpg b/static/images/theme/thumbnail/2-rec-hugo-myportfolio-theme-master.jpg deleted file mode 100644 index 5519e66c0..000000000 Binary files a/static/images/theme/thumbnail/2-rec-hugo-myportfolio-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/11ty-eleventy-base-blog-2x.jpg b/static/images/theme/thumbnail/2x/11ty-eleventy-base-blog-2x.jpg new file mode 100644 index 000000000..2171b8827 Binary files /dev/null and b/static/images/theme/thumbnail/2x/11ty-eleventy-base-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/11ty-eleventy-base-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/11ty-eleventy-base-blog-master-2x.jpg deleted file mode 100644 index d698cf310..000000000 Binary files a/static/images/theme/thumbnail/2x/11ty-eleventy-base-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/12vanblart-gridsome-airtable-starter-2x.jpg b/static/images/theme/thumbnail/2x/12vanblart-gridsome-airtable-starter-2x.jpg new file mode 100644 index 000000000..f5db1c03f Binary files /dev/null and b/static/images/theme/thumbnail/2x/12vanblart-gridsome-airtable-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/12vanblart-gridsome-airtable-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/12vanblart-gridsome-airtable-starter-master-2x.jpg deleted file mode 100644 index 1e1639764..000000000 Binary files a/static/images/theme/thumbnail/2x/12vanblart-gridsome-airtable-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/2-rec-hugo-myportfolio-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/2-rec-hugo-myportfolio-theme-master-2x.jpg deleted file mode 100644 index 61cebce68..000000000 Binary files a/static/images/theme/thumbnail/2x/2-rec-hugo-myportfolio-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/416serg-gatsby-starter-lightbox-2x.jpg b/static/images/theme/thumbnail/2x/416serg-gatsby-starter-lightbox-2x.jpg new file mode 100644 index 000000000..bfcc9cd77 Binary files /dev/null and b/static/images/theme/thumbnail/2x/416serg-gatsby-starter-lightbox-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/416serg-gatsby-starter-lightbox-master-2x.jpg b/static/images/theme/thumbnail/2x/416serg-gatsby-starter-lightbox-master-2x.jpg deleted file mode 100644 index 52fda1a6e..000000000 Binary files a/static/images/theme/thumbnail/2x/416serg-gatsby-starter-lightbox-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/526avijitgupta-gokarna-2x.jpg b/static/images/theme/thumbnail/2x/526avijitgupta-gokarna-2x.jpg new file mode 100644 index 000000000..c95648d54 Binary files /dev/null and b/static/images/theme/thumbnail/2x/526avijitgupta-gokarna-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/a9kitkumar-gatsby-ecommerce-2x.jpg b/static/images/theme/thumbnail/2x/a9kitkumar-gatsby-ecommerce-2x.jpg new file mode 100644 index 000000000..85f94ba87 Binary files /dev/null and b/static/images/theme/thumbnail/2x/a9kitkumar-gatsby-ecommerce-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/a9kitkumar-gatsby-ecommerce-master-2x.jpg b/static/images/theme/thumbnail/2x/a9kitkumar-gatsby-ecommerce-master-2x.jpg deleted file mode 100644 index 791b4f092..000000000 Binary files a/static/images/theme/thumbnail/2x/a9kitkumar-gatsby-ecommerce-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/aanupam23-hugo-sugoi-2x.jpg b/static/images/theme/thumbnail/2x/aanupam23-hugo-sugoi-2x.jpg new file mode 100644 index 000000000..7b9a1af1f Binary files /dev/null and b/static/images/theme/thumbnail/2x/aanupam23-hugo-sugoi-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/aanupam23-hugo-sugoi-master-2x.jpg b/static/images/theme/thumbnail/2x/aanupam23-hugo-sugoi-master-2x.jpg deleted file mode 100644 index a8a094723..000000000 Binary files a/static/images/theme/thumbnail/2x/aanupam23-hugo-sugoi-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/abhaynikam-gatsby-nice-blog-2x.jpg b/static/images/theme/thumbnail/2x/abhaynikam-gatsby-nice-blog-2x.jpg new file mode 100644 index 000000000..1e8541225 Binary files /dev/null and b/static/images/theme/thumbnail/2x/abhaynikam-gatsby-nice-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/abhaynikam-gatsby-nice-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/abhaynikam-gatsby-nice-blog-master-2x.jpg deleted file mode 100644 index 8fcd6cb58..000000000 Binary files a/static/images/theme/thumbnail/2x/abhaynikam-gatsby-nice-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/abhinavs-cookie-2x.jpg b/static/images/theme/thumbnail/2x/abhinavs-cookie-2x.jpg new file mode 100644 index 000000000..63488647a Binary files /dev/null and b/static/images/theme/thumbnail/2x/abhinavs-cookie-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/abhinavs-moonwalk-2x.jpg b/static/images/theme/thumbnail/2x/abhinavs-moonwalk-2x.jpg new file mode 100644 index 000000000..b06700fb8 Binary files /dev/null and b/static/images/theme/thumbnail/2x/abhinavs-moonwalk-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/abhinavs-moonwalk-master-2x.jpg b/static/images/theme/thumbnail/2x/abhinavs-moonwalk-master-2x.jpg deleted file mode 100644 index e6241e69e..000000000 Binary files a/static/images/theme/thumbnail/2x/abhinavs-moonwalk-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/abhn-soot-spirits-2x.jpg b/static/images/theme/thumbnail/2x/abhn-soot-spirits-2x.jpg new file mode 100644 index 000000000..9199bb93e Binary files /dev/null and b/static/images/theme/thumbnail/2x/abhn-soot-spirits-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/abhn-soot-spirits-master-2x.jpg b/static/images/theme/thumbnail/2x/abhn-soot-spirits-master-2x.jpg deleted file mode 100644 index d8a09907a..000000000 Binary files a/static/images/theme/thumbnail/2x/abhn-soot-spirits-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/abhn-wall-e-2x.jpg b/static/images/theme/thumbnail/2x/abhn-wall-e-2x.jpg new file mode 100644 index 000000000..451fab9af Binary files /dev/null and b/static/images/theme/thumbnail/2x/abhn-wall-e-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/abhn-wall-e-master-2x.jpg b/static/images/theme/thumbnail/2x/abhn-wall-e-master-2x.jpg deleted file mode 100644 index 804526b9c..000000000 Binary files a/static/images/theme/thumbnail/2x/abhn-wall-e-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/achariam-elyxel-master-2x.jpg b/static/images/theme/thumbnail/2x/achariam-elyxel-master-2x.jpg deleted file mode 100644 index c1382db05..000000000 Binary files a/static/images/theme/thumbnail/2x/achariam-elyxel-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/achary-engimo-2x.jpg b/static/images/theme/thumbnail/2x/achary-engimo-2x.jpg new file mode 100644 index 000000000..67de08382 Binary files /dev/null and b/static/images/theme/thumbnail/2x/achary-engimo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/achary-engimo-master-2x.jpg b/static/images/theme/thumbnail/2x/achary-engimo-master-2x.jpg deleted file mode 100644 index 18bb4254a..000000000 Binary files a/static/images/theme/thumbnail/2x/achary-engimo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/act-labs-gatsby-starter-act-blog-2x.jpg b/static/images/theme/thumbnail/2x/act-labs-gatsby-starter-act-blog-2x.jpg new file mode 100644 index 000000000..234f4b0d7 Binary files /dev/null and b/static/images/theme/thumbnail/2x/act-labs-gatsby-starter-act-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/act-labs-gatsby-starter-act-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/act-labs-gatsby-starter-act-blog-master-2x.jpg deleted file mode 100644 index de40843c9..000000000 Binary files a/static/images/theme/thumbnail/2x/act-labs-gatsby-starter-act-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/adisaktijrs-hexo-theme-minima-2x.jpg b/static/images/theme/thumbnail/2x/adisaktijrs-hexo-theme-minima-2x.jpg new file mode 100644 index 000000000..2b3739509 Binary files /dev/null and b/static/images/theme/thumbnail/2x/adisaktijrs-hexo-theme-minima-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/adisaktijrs-hexo-theme-minima-master-2x.jpg b/static/images/theme/thumbnail/2x/adisaktijrs-hexo-theme-minima-master-2x.jpg deleted file mode 100644 index 4573d8b08..000000000 Binary files a/static/images/theme/thumbnail/2x/adisaktijrs-hexo-theme-minima-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/adityatelange-hugo-papermod-2x.jpg b/static/images/theme/thumbnail/2x/adityatelange-hugo-papermod-2x.jpg new file mode 100644 index 000000000..25b1ccaa1 Binary files /dev/null and b/static/images/theme/thumbnail/2x/adityatelange-hugo-papermod-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/adityatelange-hugo-papermod-master-2x.jpg b/static/images/theme/thumbnail/2x/adityatelange-hugo-papermod-master-2x.jpg deleted file mode 100644 index d95844eb0..000000000 Binary files a/static/images/theme/thumbnail/2x/adityatelange-hugo-papermod-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/adueck-cayman-blog-2x.jpg b/static/images/theme/thumbnail/2x/adueck-cayman-blog-2x.jpg new file mode 100644 index 000000000..03aee0311 Binary files /dev/null and b/static/images/theme/thumbnail/2x/adueck-cayman-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/adueck-cayman-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/adueck-cayman-blog-master-2x.jpg deleted file mode 100644 index 60109ba84..000000000 Binary files a/static/images/theme/thumbnail/2x/adueck-cayman-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/adueck-good-clean-read-2x.jpg b/static/images/theme/thumbnail/2x/adueck-good-clean-read-2x.jpg new file mode 100644 index 000000000..430d40b03 Binary files /dev/null and b/static/images/theme/thumbnail/2x/adueck-good-clean-read-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/adueck-good-clean-read-master-2x.jpg b/static/images/theme/thumbnail/2x/adueck-good-clean-read-master-2x.jpg deleted file mode 100644 index 55c8f11c9..000000000 Binary files a/static/images/theme/thumbnail/2x/adueck-good-clean-read-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/aerohub-hugo-faq-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/aerohub-hugo-faq-theme-master-2x.jpg deleted file mode 100644 index 47698b4b7..000000000 Binary files a/static/images/theme/thumbnail/2x/aerohub-hugo-faq-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/aerohub-hugo-identity-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/aerohub-hugo-identity-theme-master-2x.jpg deleted file mode 100644 index c8f871f2e..000000000 Binary files a/static/images/theme/thumbnail/2x/aerohub-hugo-identity-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/aerohub-hugo-orbit-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/aerohub-hugo-orbit-theme-master-2x.jpg deleted file mode 100644 index 99526ec3a..000000000 Binary files a/static/images/theme/thumbnail/2x/aerohub-hugo-orbit-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/aerohub-hugrid-master-2x.jpg b/static/images/theme/thumbnail/2x/aerohub-hugrid-master-2x.jpg deleted file mode 100644 index e2931cdab..000000000 Binary files a/static/images/theme/thumbnail/2x/aerohub-hugrid-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/agility-agility-gatsby-starter-2x.jpg b/static/images/theme/thumbnail/2x/agility-agility-gatsby-starter-2x.jpg new file mode 100644 index 000000000..54a4d240f Binary files /dev/null and b/static/images/theme/thumbnail/2x/agility-agility-gatsby-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/agility-agility-gatsby-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/agility-agility-gatsby-starter-master-2x.jpg deleted file mode 100644 index 40a1ac872..000000000 Binary files a/static/images/theme/thumbnail/2x/agility-agility-gatsby-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/agusmakmun-agusmakmun.github.io-2x.jpg b/static/images/theme/thumbnail/2x/agusmakmun-agusmakmun.github.io-2x.jpg new file mode 100644 index 000000000..deb88cdb9 Binary files /dev/null and b/static/images/theme/thumbnail/2x/agusmakmun-agusmakmun.github.io-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/agusmakmun-agusmakmun.github.io-master-2x.jpg b/static/images/theme/thumbnail/2x/agusmakmun-agusmakmun.github.io-master-2x.jpg deleted file mode 100644 index fc17b6b9c..000000000 Binary files a/static/images/theme/thumbnail/2x/agusmakmun-agusmakmun.github.io-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/aigarsdz-brume-2x.jpg b/static/images/theme/thumbnail/2x/aigarsdz-brume-2x.jpg new file mode 100644 index 000000000..08854e17a Binary files /dev/null and b/static/images/theme/thumbnail/2x/aigarsdz-brume-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/aigarsdz-brume-master-2x.jpg b/static/images/theme/thumbnail/2x/aigarsdz-brume-master-2x.jpg deleted file mode 100644 index 8b4d92114..000000000 Binary files a/static/images/theme/thumbnail/2x/aigarsdz-brume-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/airrayagroupwebdesign-sciblog-master-2x.jpg b/static/images/theme/thumbnail/2x/airrayagroupwebdesign-sciblog-master-2x.jpg deleted file mode 100644 index a5a8afe24..000000000 Binary files a/static/images/theme/thumbnail/2x/airrayagroupwebdesign-sciblog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ajayns-gatsby-absurd-2x.jpg b/static/images/theme/thumbnail/2x/ajayns-gatsby-absurd-2x.jpg new file mode 100644 index 000000000..b1ac72f47 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ajayns-gatsby-absurd-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ajayns-gatsby-absurd-master-2x.jpg b/static/images/theme/thumbnail/2x/ajayns-gatsby-absurd-master-2x.jpg deleted file mode 100644 index b9a8ebb0a..000000000 Binary files a/static/images/theme/thumbnail/2x/ajayns-gatsby-absurd-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/akiritsu-project-negya-2x.jpg b/static/images/theme/thumbnail/2x/akiritsu-project-negya-2x.jpg new file mode 100644 index 000000000..5785a264e Binary files /dev/null and b/static/images/theme/thumbnail/2x/akiritsu-project-negya-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/akiritsu-project-negya-master-2x.jpg b/static/images/theme/thumbnail/2x/akiritsu-project-negya-master-2x.jpg deleted file mode 100644 index 65b67b87d..000000000 Binary files a/static/images/theme/thumbnail/2x/akiritsu-project-negya-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/aksakalli-jekyll-doc-theme-2x.jpg b/static/images/theme/thumbnail/2x/aksakalli-jekyll-doc-theme-2x.jpg new file mode 100644 index 000000000..9ceb34168 Binary files /dev/null and b/static/images/theme/thumbnail/2x/aksakalli-jekyll-doc-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/aksakalli-jekyll-doc-theme-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/aksakalli-jekyll-doc-theme-gh-pages-2x.jpg deleted file mode 100644 index 2f4266a41..000000000 Binary files a/static/images/theme/thumbnail/2x/aksakalli-jekyll-doc-theme-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/akshayagarwal007-jekyll-mono-master-2x.jpg b/static/images/theme/thumbnail/2x/akshayagarwal007-jekyll-mono-master-2x.jpg deleted file mode 100644 index e92ca378a..000000000 Binary files a/static/images/theme/thumbnail/2x/akshayagarwal007-jekyll-mono-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/akzhy-gatsby-starter-elemental-2x.jpg b/static/images/theme/thumbnail/2x/akzhy-gatsby-starter-elemental-2x.jpg new file mode 100644 index 000000000..3297db4d2 Binary files /dev/null and b/static/images/theme/thumbnail/2x/akzhy-gatsby-starter-elemental-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/akzhy-gatsby-starter-elemental-master-2x.jpg b/static/images/theme/thumbnail/2x/akzhy-gatsby-starter-elemental-master-2x.jpg deleted file mode 100644 index 1c1984391..000000000 Binary files a/static/images/theme/thumbnail/2x/akzhy-gatsby-starter-elemental-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/alainpham-alainpham.github.io-2x.jpg b/static/images/theme/thumbnail/2x/alainpham-alainpham.github.io-2x.jpg new file mode 100644 index 000000000..d73ae433c Binary files /dev/null and b/static/images/theme/thumbnail/2x/alainpham-alainpham.github.io-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/alainpham-alainpham.github.io-master-2x.jpg b/static/images/theme/thumbnail/2x/alainpham-alainpham.github.io-master-2x.jpg deleted file mode 100644 index 21ed16b79..000000000 Binary files a/static/images/theme/thumbnail/2x/alainpham-alainpham.github.io-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/alanorth-hugo-theme-bootstrap4-blog-2x.jpg b/static/images/theme/thumbnail/2x/alanorth-hugo-theme-bootstrap4-blog-2x.jpg new file mode 100644 index 000000000..d31afcced Binary files /dev/null and b/static/images/theme/thumbnail/2x/alanorth-hugo-theme-bootstrap4-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/alanorth-hugo-theme-bootstrap4-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/alanorth-hugo-theme-bootstrap4-blog-master-2x.jpg deleted file mode 100644 index a265eb8f6..000000000 Binary files a/static/images/theme/thumbnail/2x/alanorth-hugo-theme-bootstrap4-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/alanta-memoirs-theme-2x.jpg b/static/images/theme/thumbnail/2x/alanta-memoirs-theme-2x.jpg new file mode 100644 index 000000000..5f53791a7 Binary files /dev/null and b/static/images/theme/thumbnail/2x/alanta-memoirs-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/alanta-memoirs-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/alanta-memoirs-theme-master-2x.jpg deleted file mode 100644 index 4a5818f42..000000000 Binary files a/static/images/theme/thumbnail/2x/alanta-memoirs-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/alex-shpak-hugo-book-2x.jpg b/static/images/theme/thumbnail/2x/alex-shpak-hugo-book-2x.jpg new file mode 100644 index 000000000..575303fba Binary files /dev/null and b/static/images/theme/thumbnail/2x/alex-shpak-hugo-book-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/alex-shpak-hugo-book-master-2x.jpg b/static/images/theme/thumbnail/2x/alex-shpak-hugo-book-master-2x.jpg deleted file mode 100644 index 0114b09de..000000000 Binary files a/static/images/theme/thumbnail/2x/alex-shpak-hugo-book-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/alexander-heimbuch-vuepress-theme-casper-2x.jpg b/static/images/theme/thumbnail/2x/alexander-heimbuch-vuepress-theme-casper-2x.jpg new file mode 100644 index 000000000..17beaf81b Binary files /dev/null and b/static/images/theme/thumbnail/2x/alexander-heimbuch-vuepress-theme-casper-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/alexander-heimbuch-vuepress-theme-casper-master-2x.jpg b/static/images/theme/thumbnail/2x/alexander-heimbuch-vuepress-theme-casper-master-2x.jpg deleted file mode 100644 index a5e499229..000000000 Binary files a/static/images/theme/thumbnail/2x/alexander-heimbuch-vuepress-theme-casper-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/alexanderussell-progress-for-jekyll-2x.jpg b/static/images/theme/thumbnail/2x/alexanderussell-progress-for-jekyll-2x.jpg new file mode 100644 index 000000000..2a75e5b40 Binary files /dev/null and b/static/images/theme/thumbnail/2x/alexanderussell-progress-for-jekyll-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/alexanderussell-progress-for-jekyll-master-2x.jpg b/static/images/theme/thumbnail/2x/alexanderussell-progress-for-jekyll-master-2x.jpg deleted file mode 100644 index 9ecb1e8dd..000000000 Binary files a/static/images/theme/thumbnail/2x/alexanderussell-progress-for-jekyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/alexcarpenter-butane-jekyll-theme-2x.jpg b/static/images/theme/thumbnail/2x/alexcarpenter-butane-jekyll-theme-2x.jpg new file mode 100644 index 000000000..23ccb69e4 Binary files /dev/null and b/static/images/theme/thumbnail/2x/alexcarpenter-butane-jekyll-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/alexcarpenter-butane-jekyll-theme-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/alexcarpenter-butane-jekyll-theme-gh-pages-2x.jpg deleted file mode 100644 index e247ab324..000000000 Binary files a/static/images/theme/thumbnail/2x/alexcarpenter-butane-jekyll-theme-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/alexcarpenter-library-jekyll-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/alexcarpenter-library-jekyll-theme-master-2x.jpg deleted file mode 100644 index fb5279d08..000000000 Binary files a/static/images/theme/thumbnail/2x/alexcarpenter-library-jekyll-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/alexcarpenter-material-jekyll-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/alexcarpenter-material-jekyll-theme-master-2x.jpg deleted file mode 100644 index fb5279d08..000000000 Binary files a/static/images/theme/thumbnail/2x/alexcarpenter-material-jekyll-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/alexfinn-simple-a-2x.jpg b/static/images/theme/thumbnail/2x/alexfinn-simple-a-2x.jpg new file mode 100644 index 000000000..53c6f1581 Binary files /dev/null and b/static/images/theme/thumbnail/2x/alexfinn-simple-a-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/alexfinn-simple-a-master-2x.jpg b/static/images/theme/thumbnail/2x/alexfinn-simple-a-master-2x.jpg deleted file mode 100644 index dafb7ea38..000000000 Binary files a/static/images/theme/thumbnail/2x/alexfinn-simple-a-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/aliifam-jdox-2x.jpg b/static/images/theme/thumbnail/2x/aliifam-jdox-2x.jpg new file mode 100644 index 000000000..fd273e50f Binary files /dev/null and b/static/images/theme/thumbnail/2x/aliifam-jdox-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/alixedi-typewriter-2x.jpg b/static/images/theme/thumbnail/2x/alixedi-typewriter-2x.jpg new file mode 100644 index 000000000..844fdc3ce Binary files /dev/null and b/static/images/theme/thumbnail/2x/alixedi-typewriter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/alixedi-typewriter-master-2x.jpg b/static/images/theme/thumbnail/2x/alixedi-typewriter-master-2x.jpg deleted file mode 100644 index 2e042d651..000000000 Binary files a/static/images/theme/thumbnail/2x/alixedi-typewriter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/allnightgrocery-hugo-theme-blueberry-detox-master-2x.jpg b/static/images/theme/thumbnail/2x/allnightgrocery-hugo-theme-blueberry-detox-master-2x.jpg deleted file mode 100644 index b24259fe7..000000000 Binary files a/static/images/theme/thumbnail/2x/allnightgrocery-hugo-theme-blueberry-detox-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/alperenbozkurt-jblog-2x.jpg b/static/images/theme/thumbnail/2x/alperenbozkurt-jblog-2x.jpg new file mode 100644 index 000000000..167835120 Binary files /dev/null and b/static/images/theme/thumbnail/2x/alperenbozkurt-jblog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/alperenbozkurt-jblog-master-2x.jpg b/static/images/theme/thumbnail/2x/alperenbozkurt-jblog-master-2x.jpg deleted file mode 100644 index a60ac1ef0..000000000 Binary files a/static/images/theme/thumbnail/2x/alperenbozkurt-jblog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/altcointrading-trading-2x.jpg b/static/images/theme/thumbnail/2x/altcointrading-trading-2x.jpg new file mode 100644 index 000000000..956a0af38 Binary files /dev/null and b/static/images/theme/thumbnail/2x/altcointrading-trading-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/altcointrading-trading-master-2x.jpg b/static/images/theme/thumbnail/2x/altcointrading-trading-master-2x.jpg deleted file mode 100644 index cce86d7bb..000000000 Binary files a/static/images/theme/thumbnail/2x/altcointrading-trading-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/alxshelepenok-gatsby-starter-lumen-2x.jpg b/static/images/theme/thumbnail/2x/alxshelepenok-gatsby-starter-lumen-2x.jpg new file mode 100644 index 000000000..a0e91c689 Binary files /dev/null and b/static/images/theme/thumbnail/2x/alxshelepenok-gatsby-starter-lumen-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/alxshelepenok-gatsby-starter-lumen-master-2x.jpg b/static/images/theme/thumbnail/2x/alxshelepenok-gatsby-starter-lumen-master-2x.jpg deleted file mode 100644 index 0d93b9bcf..000000000 Binary files a/static/images/theme/thumbnail/2x/alxshelepenok-gatsby-starter-lumen-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/alynxzhou-hexo-theme-aria-2x.jpg b/static/images/theme/thumbnail/2x/alynxzhou-hexo-theme-aria-2x.jpg new file mode 100644 index 000000000..37b01de2e Binary files /dev/null and b/static/images/theme/thumbnail/2x/alynxzhou-hexo-theme-aria-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/alynxzhou-hexo-theme-aria-master-2x.jpg b/static/images/theme/thumbnail/2x/alynxzhou-hexo-theme-aria-master-2x.jpg deleted file mode 100644 index 050437b1e..000000000 Binary files a/static/images/theme/thumbnail/2x/alynxzhou-hexo-theme-aria-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/amandeepmittal-gatsby-bulma-quickstart-2x.jpg b/static/images/theme/thumbnail/2x/amandeepmittal-gatsby-bulma-quickstart-2x.jpg new file mode 100644 index 000000000..848fd7d3a Binary files /dev/null and b/static/images/theme/thumbnail/2x/amandeepmittal-gatsby-bulma-quickstart-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/amandeepmittal-gatsby-bulma-quickstart-master-2x.jpg b/static/images/theme/thumbnail/2x/amandeepmittal-gatsby-bulma-quickstart-master-2x.jpg deleted file mode 100644 index ca79a0c2b..000000000 Binary files a/static/images/theme/thumbnail/2x/amandeepmittal-gatsby-bulma-quickstart-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ammarjabakji-gatsby-markdown-blog-starter-2x.jpg b/static/images/theme/thumbnail/2x/ammarjabakji-gatsby-markdown-blog-starter-2x.jpg new file mode 100644 index 000000000..6adbf73fa Binary files /dev/null and b/static/images/theme/thumbnail/2x/ammarjabakji-gatsby-markdown-blog-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ammarjabakji-gatsby-markdown-blog-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/ammarjabakji-gatsby-markdown-blog-starter-master-2x.jpg deleted file mode 100644 index e1f264a05..000000000 Binary files a/static/images/theme/thumbnail/2x/ammarjabakji-gatsby-markdown-blog-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/anandubajith-block-log-master-2x.jpg b/static/images/theme/thumbnail/2x/anandubajith-block-log-master-2x.jpg deleted file mode 100644 index b06cb5972..000000000 Binary files a/static/images/theme/thumbnail/2x/anandubajith-block-log-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/andrewbanchich-forty-jekyll-theme-2x.jpg b/static/images/theme/thumbnail/2x/andrewbanchich-forty-jekyll-theme-2x.jpg new file mode 100644 index 000000000..fa18e9d28 Binary files /dev/null and b/static/images/theme/thumbnail/2x/andrewbanchich-forty-jekyll-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/andrewbanchich-forty-jekyll-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/andrewbanchich-forty-jekyll-theme-master-2x.jpg deleted file mode 100644 index ecc716075..000000000 Binary files a/static/images/theme/thumbnail/2x/andrewbanchich-forty-jekyll-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/andrewhwanpark-brutalist-blog-2x.jpg b/static/images/theme/thumbnail/2x/andrewhwanpark-brutalist-blog-2x.jpg new file mode 100644 index 000000000..650143780 Binary files /dev/null and b/static/images/theme/thumbnail/2x/andrewhwanpark-brutalist-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/andrewhwanpark-dark-poole-2x.jpg b/static/images/theme/thumbnail/2x/andrewhwanpark-dark-poole-2x.jpg new file mode 100644 index 000000000..f2c7ae960 Binary files /dev/null and b/static/images/theme/thumbnail/2x/andrewhwanpark-dark-poole-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/andrewhwanpark-dark-poole-master-2x.jpg b/static/images/theme/thumbnail/2x/andrewhwanpark-dark-poole-master-2x.jpg deleted file mode 100644 index b134cc621..000000000 Binary files a/static/images/theme/thumbnail/2x/andrewhwanpark-dark-poole-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/andybelldesign-hylia-2x.jpg b/static/images/theme/thumbnail/2x/andybelldesign-hylia-2x.jpg new file mode 100644 index 000000000..40fcda5af Binary files /dev/null and b/static/images/theme/thumbnail/2x/andybelldesign-hylia-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/andybelldesign-hylia-master-2x.jpg b/static/images/theme/thumbnail/2x/andybelldesign-hylia-master-2x.jpg deleted file mode 100644 index 55716b9f6..000000000 Binary files a/static/images/theme/thumbnail/2x/andybelldesign-hylia-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/andykenward-gatsby-starter-default-typescript-2x.jpg b/static/images/theme/thumbnail/2x/andykenward-gatsby-starter-default-typescript-2x.jpg new file mode 100644 index 000000000..c5448cdc1 Binary files /dev/null and b/static/images/theme/thumbnail/2x/andykenward-gatsby-starter-default-typescript-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/andykenward-gatsby-starter-default-typescript-master-2x.jpg b/static/images/theme/thumbnail/2x/andykenward-gatsby-starter-default-typescript-master-2x.jpg deleted file mode 100644 index 8beb1f541..000000000 Binary files a/static/images/theme/thumbnail/2x/andykenward-gatsby-starter-default-typescript-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/angelostavrow-indigo-master-2x.jpg b/static/images/theme/thumbnail/2x/angelostavrow-indigo-master-2x.jpg deleted file mode 100644 index 6f8667a4f..000000000 Binary files a/static/images/theme/thumbnail/2x/angelostavrow-indigo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ankit-kumar-jat-limp-dark-master-2x.jpg b/static/images/theme/thumbnail/2x/ankit-kumar-jat-limp-dark-master-2x.jpg deleted file mode 100644 index ac6deea6a..000000000 Binary files a/static/images/theme/thumbnail/2x/ankit-kumar-jat-limp-dark-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ankitsultana-accent-2x.jpg b/static/images/theme/thumbnail/2x/ankitsultana-accent-2x.jpg new file mode 100644 index 000000000..65c754910 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ankitsultana-accent-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ankitsultana-accent-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/ankitsultana-accent-gh-pages-2x.jpg deleted file mode 100644 index 5254c4bb6..000000000 Binary files a/static/images/theme/thumbnail/2x/ankitsultana-accent-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ankitsultana-chaplin-2x.jpg b/static/images/theme/thumbnail/2x/ankitsultana-chaplin-2x.jpg new file mode 100644 index 000000000..680de789d Binary files /dev/null and b/static/images/theme/thumbnail/2x/ankitsultana-chaplin-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ankitsultana-chaplin-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/ankitsultana-chaplin-gh-pages-2x.jpg deleted file mode 100644 index 18167cda6..000000000 Binary files a/static/images/theme/thumbnail/2x/ankitsultana-chaplin-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ankitsultana-researcher-2x.jpg b/static/images/theme/thumbnail/2x/ankitsultana-researcher-2x.jpg new file mode 100644 index 000000000..da95af0b3 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ankitsultana-researcher-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ankitsultana-researcher-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/ankitsultana-researcher-gh-pages-2x.jpg deleted file mode 100644 index b21fe870f..000000000 Binary files a/static/images/theme/thumbnail/2x/ankitsultana-researcher-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/anna-morawska-gatsby-material-design-for-bootstrap-2x.jpg b/static/images/theme/thumbnail/2x/anna-morawska-gatsby-material-design-for-bootstrap-2x.jpg new file mode 100644 index 000000000..366895e6a Binary files /dev/null and b/static/images/theme/thumbnail/2x/anna-morawska-gatsby-material-design-for-bootstrap-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/anna-morawska-gatsby-material-design-for-bootstrap-master-2x.jpg b/static/images/theme/thumbnail/2x/anna-morawska-gatsby-material-design-for-bootstrap-master-2x.jpg deleted file mode 100644 index 8de93fe83..000000000 Binary files a/static/images/theme/thumbnail/2x/anna-morawska-gatsby-material-design-for-bootstrap-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/anoun-gatsby-starter-material-business-markdown-2x.jpg b/static/images/theme/thumbnail/2x/anoun-gatsby-starter-material-business-markdown-2x.jpg new file mode 100644 index 000000000..b4c3f5d09 Binary files /dev/null and b/static/images/theme/thumbnail/2x/anoun-gatsby-starter-material-business-markdown-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/anoun-gatsby-starter-material-business-markdown-master-2x.jpg b/static/images/theme/thumbnail/2x/anoun-gatsby-starter-material-business-markdown-master-2x.jpg deleted file mode 100644 index ff6fb9bbb..000000000 Binary files a/static/images/theme/thumbnail/2x/anoun-gatsby-starter-material-business-markdown-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/antonpolishko-hugo-stellar-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/antonpolishko-hugo-stellar-theme-master-2x.jpg deleted file mode 100644 index 5e5ecf77f..000000000 Binary files a/static/images/theme/thumbnail/2x/antonpolishko-hugo-stellar-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-aerial-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-aerial-2x.jpg new file mode 100644 index 000000000..56abf1b1f Binary files /dev/null and b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-aerial-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-aerial-master-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-aerial-master-2x.jpg deleted file mode 100644 index 69677f2d6..000000000 Binary files a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-aerial-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-casual-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-casual-2x.jpg new file mode 100644 index 000000000..97b723089 Binary files /dev/null and b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-casual-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-casual-master-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-casual-master-2x.jpg deleted file mode 100644 index e3ef55d90..000000000 Binary files a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-casual-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-directive-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-directive-2x.jpg new file mode 100644 index 000000000..0b98dc6aa Binary files /dev/null and b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-directive-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-directive-master-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-directive-master-2x.jpg deleted file mode 100644 index d169abb4c..000000000 Binary files a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-directive-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-eventually-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-eventually-2x.jpg new file mode 100644 index 000000000..c1036a132 Binary files /dev/null and b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-eventually-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-eventually-master-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-eventually-master-2x.jpg deleted file mode 100644 index 56f41ef55..000000000 Binary files a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-eventually-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-fractal-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-fractal-2x.jpg new file mode 100644 index 000000000..307f1f954 Binary files /dev/null and b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-fractal-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-fractal-master-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-fractal-master-2x.jpg deleted file mode 100644 index d16647acf..000000000 Binary files a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-fractal-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-grayscale-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-grayscale-2x.jpg new file mode 100644 index 000000000..e90aab3e6 Binary files /dev/null and b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-grayscale-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-grayscale-master-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-grayscale-master-2x.jpg deleted file mode 100644 index 6c54c6366..000000000 Binary files a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-grayscale-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-highlights-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-highlights-2x.jpg new file mode 100644 index 000000000..062918b80 Binary files /dev/null and b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-highlights-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-highlights-master-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-highlights-master-2x.jpg deleted file mode 100644 index 895c3aa4f..000000000 Binary files a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-highlights-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-hyperspace-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-hyperspace-2x.jpg new file mode 100644 index 000000000..aed06d783 Binary files /dev/null and b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-hyperspace-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-hyperspace-master-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-hyperspace-master-2x.jpg deleted file mode 100644 index 658310e06..000000000 Binary files a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-hyperspace-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-identity-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-identity-2x.jpg new file mode 100644 index 000000000..ac9a5f259 Binary files /dev/null and b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-identity-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-identity-master-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-identity-master-2x.jpg deleted file mode 100644 index 96f007253..000000000 Binary files a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-identity-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-multiverse-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-multiverse-2x.jpg new file mode 100644 index 000000000..6d78681cf Binary files /dev/null and b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-multiverse-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-multiverse-master-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-multiverse-master-2x.jpg deleted file mode 100644 index 255ca6830..000000000 Binary files a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-multiverse-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-newage-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-newage-2x.jpg new file mode 100644 index 000000000..c73493e3d Binary files /dev/null and b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-newage-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-newage-master-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-newage-master-2x.jpg deleted file mode 100644 index da0913fcd..000000000 Binary files a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-newage-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-overflow-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-overflow-2x.jpg new file mode 100644 index 000000000..a1797beb3 Binary files /dev/null and b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-overflow-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-overflow-master-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-overflow-master-2x.jpg deleted file mode 100644 index c88b5ef4d..000000000 Binary files a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-overflow-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-paradigmshift-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-paradigmshift-2x.jpg new file mode 100644 index 000000000..2da2729b5 Binary files /dev/null and b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-paradigmshift-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-paradigmshift-master-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-paradigmshift-master-2x.jpg deleted file mode 100644 index 9bdd0e6bd..000000000 Binary files a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-paradigmshift-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-prologue-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-prologue-2x.jpg new file mode 100644 index 000000000..68006119a Binary files /dev/null and b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-prologue-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-prologue-master-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-prologue-master-2x.jpg deleted file mode 100644 index ba790c146..000000000 Binary files a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-prologue-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-readonly-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-readonly-2x.jpg new file mode 100644 index 000000000..571451816 Binary files /dev/null and b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-readonly-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-readonly-master-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-readonly-master-2x.jpg deleted file mode 100644 index cd11a7b8e..000000000 Binary files a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-readonly-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-resume-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-resume-2x.jpg new file mode 100644 index 000000000..6d7e276da Binary files /dev/null and b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-resume-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-resume-master-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-resume-master-2x.jpg deleted file mode 100644 index 7f1408053..000000000 Binary files a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-resume-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-solidstate-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-solidstate-2x.jpg new file mode 100644 index 000000000..87d7f339b Binary files /dev/null and b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-solidstate-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-solidstate-master-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-solidstate-master-2x.jpg deleted file mode 100644 index d002cdd1b..000000000 Binary files a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-solidstate-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-spectral-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-spectral-2x.jpg new file mode 100644 index 000000000..a0c32323f Binary files /dev/null and b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-spectral-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-spectral-master-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-spectral-master-2x.jpg deleted file mode 100644 index 05b510837..000000000 Binary files a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-spectral-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-stylish-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-stylish-2x.jpg new file mode 100644 index 000000000..8bfd14869 Binary files /dev/null and b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-stylish-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-stylish-master-2x.jpg b/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-stylish-master-2x.jpg deleted file mode 100644 index be23fb5e6..000000000 Binary files a/static/images/theme/thumbnail/2x/anubhavsrivastava-gatsby-starter-stylish-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/app-generator-eleventy-soft-ui-design-2x.jpg b/static/images/theme/thumbnail/2x/app-generator-eleventy-soft-ui-design-2x.jpg new file mode 100644 index 000000000..3cc0e0e11 Binary files /dev/null and b/static/images/theme/thumbnail/2x/app-generator-eleventy-soft-ui-design-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/app-generator-gatsbyjs-starter-tailwindplay-2x.jpg b/static/images/theme/thumbnail/2x/app-generator-gatsbyjs-starter-tailwindplay-2x.jpg new file mode 100644 index 000000000..98f704bdf Binary files /dev/null and b/static/images/theme/thumbnail/2x/app-generator-gatsbyjs-starter-tailwindplay-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/app-generator-gatsbyjs-starter-tailwindplay-master-2x.jpg b/static/images/theme/thumbnail/2x/app-generator-gatsbyjs-starter-tailwindplay-master-2x.jpg deleted file mode 100644 index f76491293..000000000 Binary files a/static/images/theme/thumbnail/2x/app-generator-gatsbyjs-starter-tailwindplay-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/appernetic-hugo-nederburg-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/appernetic-hugo-nederburg-theme-master-2x.jpg deleted file mode 100644 index 4e4ea8a86..000000000 Binary files a/static/images/theme/thumbnail/2x/appernetic-hugo-nederburg-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/apvarun-blist-hugo-theme-2x.jpg b/static/images/theme/thumbnail/2x/apvarun-blist-hugo-theme-2x.jpg new file mode 100644 index 000000000..f585b3236 Binary files /dev/null and b/static/images/theme/thumbnail/2x/apvarun-blist-hugo-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/apvarun-digital-garden-hugo-theme-2x.jpg b/static/images/theme/thumbnail/2x/apvarun-digital-garden-hugo-theme-2x.jpg new file mode 100644 index 000000000..2dd6e4a8b Binary files /dev/null and b/static/images/theme/thumbnail/2x/apvarun-digital-garden-hugo-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/apvarun-productlog-nextjs-theme-2x.jpg b/static/images/theme/thumbnail/2x/apvarun-productlog-nextjs-theme-2x.jpg new file mode 100644 index 000000000..673b461a5 Binary files /dev/null and b/static/images/theme/thumbnail/2x/apvarun-productlog-nextjs-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/apvarun-showfolio-hugo-theme-2x.jpg b/static/images/theme/thumbnail/2x/apvarun-showfolio-hugo-theme-2x.jpg new file mode 100644 index 000000000..b23819216 Binary files /dev/null and b/static/images/theme/thumbnail/2x/apvarun-showfolio-hugo-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ar363-eleventy-stylus-blog-theme-2x.jpg b/static/images/theme/thumbnail/2x/ar363-eleventy-stylus-blog-theme-2x.jpg new file mode 100644 index 000000000..5f87d0ec3 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ar363-eleventy-stylus-blog-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/arhen-hugo-cereus-pro-theme-2x.jpg b/static/images/theme/thumbnail/2x/arhen-hugo-cereus-pro-theme-2x.jpg new file mode 100644 index 000000000..383d3f884 Binary files /dev/null and b/static/images/theme/thumbnail/2x/arhen-hugo-cereus-pro-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/arhen-hugo-cereus-pro-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/arhen-hugo-cereus-pro-theme-master-2x.jpg deleted file mode 100644 index c6a8e8ab5..000000000 Binary files a/static/images/theme/thumbnail/2x/arhen-hugo-cereus-pro-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/arjayosma-nextacular-2x.jpg b/static/images/theme/thumbnail/2x/arjayosma-nextacular-2x.jpg new file mode 100644 index 000000000..c9496e7db Binary files /dev/null and b/static/images/theme/thumbnail/2x/arjayosma-nextacular-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/arkadianriver-spectral-2x.jpg b/static/images/theme/thumbnail/2x/arkadianriver-spectral-2x.jpg new file mode 100644 index 000000000..3a4a41b15 Binary files /dev/null and b/static/images/theme/thumbnail/2x/arkadianriver-spectral-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/arkadianriver-spectral-master-2x.jpg b/static/images/theme/thumbnail/2x/arkadianriver-spectral-master-2x.jpg deleted file mode 100644 index f59b63272..000000000 Binary files a/static/images/theme/thumbnail/2x/arkadianriver-spectral-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/aron-bordin-neo-hpstr-jekyll-theme-2x.jpg b/static/images/theme/thumbnail/2x/aron-bordin-neo-hpstr-jekyll-theme-2x.jpg new file mode 100644 index 000000000..ff5a25ba1 Binary files /dev/null and b/static/images/theme/thumbnail/2x/aron-bordin-neo-hpstr-jekyll-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/aron-bordin-neo-hpstr-jekyll-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/aron-bordin-neo-hpstr-jekyll-theme-master-2x.jpg deleted file mode 100644 index 3ca70a628..000000000 Binary files a/static/images/theme/thumbnail/2x/aron-bordin-neo-hpstr-jekyll-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/arpitbatra123-eleventy-blog-mnml-2x.jpg b/static/images/theme/thumbnail/2x/arpitbatra123-eleventy-blog-mnml-2x.jpg new file mode 100644 index 000000000..92bfd4657 Binary files /dev/null and b/static/images/theme/thumbnail/2x/arpitbatra123-eleventy-blog-mnml-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/arpitbatra123-eleventy-blog-mnml-master-2x.jpg b/static/images/theme/thumbnail/2x/arpitbatra123-eleventy-blog-mnml-master-2x.jpg deleted file mode 100644 index 5b04ac3a8..000000000 Binary files a/static/images/theme/thumbnail/2x/arpitbatra123-eleventy-blog-mnml-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/artemsheludko-adam-blog-2x.jpg b/static/images/theme/thumbnail/2x/artemsheludko-adam-blog-2x.jpg new file mode 100644 index 000000000..3dd48c635 Binary files /dev/null and b/static/images/theme/thumbnail/2x/artemsheludko-adam-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/artemsheludko-adam-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/artemsheludko-adam-blog-master-2x.jpg deleted file mode 100644 index 0f73f031a..000000000 Binary files a/static/images/theme/thumbnail/2x/artemsheludko-adam-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/artemsheludko-bef-2x.jpg b/static/images/theme/thumbnail/2x/artemsheludko-bef-2x.jpg new file mode 100644 index 000000000..3376076b7 Binary files /dev/null and b/static/images/theme/thumbnail/2x/artemsheludko-bef-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/artemsheludko-bef-master-2x.jpg b/static/images/theme/thumbnail/2x/artemsheludko-bef-master-2x.jpg deleted file mode 100644 index bde290a66..000000000 Binary files a/static/images/theme/thumbnail/2x/artemsheludko-bef-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/artemsheludko-flexible-jekyll-master-2x.jpg b/static/images/theme/thumbnail/2x/artemsheludko-flexible-jekyll-master-2x.jpg deleted file mode 100644 index 44ef1062d..000000000 Binary files a/static/images/theme/thumbnail/2x/artemsheludko-flexible-jekyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/artemsheludko-fresh-master-2x.jpg b/static/images/theme/thumbnail/2x/artemsheludko-fresh-master-2x.jpg deleted file mode 100644 index 78ff66491..000000000 Binary files a/static/images/theme/thumbnail/2x/artemsheludko-fresh-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/artemsheludko-monday-2x.jpg b/static/images/theme/thumbnail/2x/artemsheludko-monday-2x.jpg new file mode 100644 index 000000000..1a7530f65 Binary files /dev/null and b/static/images/theme/thumbnail/2x/artemsheludko-monday-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/artemsheludko-monday-master-2x.jpg b/static/images/theme/thumbnail/2x/artemsheludko-monday-master-2x.jpg deleted file mode 100644 index e695701df..000000000 Binary files a/static/images/theme/thumbnail/2x/artemsheludko-monday-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/artemsheludko-mr-brown-2x.jpg b/static/images/theme/thumbnail/2x/artemsheludko-mr-brown-2x.jpg new file mode 100644 index 000000000..1a7530f65 Binary files /dev/null and b/static/images/theme/thumbnail/2x/artemsheludko-mr-brown-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/artemsheludko-mr-brown-master-2x.jpg b/static/images/theme/thumbnail/2x/artemsheludko-mr-brown-master-2x.jpg deleted file mode 100644 index e695701df..000000000 Binary files a/static/images/theme/thumbnail/2x/artemsheludko-mr-brown-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/arulrajnet-attila-master-2x.jpg b/static/images/theme/thumbnail/2x/arulrajnet-attila-master-2x.jpg deleted file mode 100644 index 51de70bbc..000000000 Binary files a/static/images/theme/thumbnail/2x/arulrajnet-attila-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ashr81-gatsby-theme-profile-builder-2x.jpg b/static/images/theme/thumbnail/2x/ashr81-gatsby-theme-profile-builder-2x.jpg new file mode 100644 index 000000000..1fa3db4d2 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ashr81-gatsby-theme-profile-builder-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ashr81-gatsby-theme-profile-builder-master-2x.jpg b/static/images/theme/thumbnail/2x/ashr81-gatsby-theme-profile-builder-master-2x.jpg deleted file mode 100644 index 378b3b459..000000000 Binary files a/static/images/theme/thumbnail/2x/ashr81-gatsby-theme-profile-builder-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/aslammultidots-blogger-2x.jpg b/static/images/theme/thumbnail/2x/aslammultidots-blogger-2x.jpg new file mode 100644 index 000000000..c4ae4f42f Binary files /dev/null and b/static/images/theme/thumbnail/2x/aslammultidots-blogger-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/aslammultidots-blogger-master-2x.jpg b/static/images/theme/thumbnail/2x/aslammultidots-blogger-master-2x.jpg deleted file mode 100644 index b1e9286ad..000000000 Binary files a/static/images/theme/thumbnail/2x/aslammultidots-blogger-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/aspirethemes-type-2x.jpg b/static/images/theme/thumbnail/2x/aspirethemes-type-2x.jpg new file mode 100644 index 000000000..bf6407639 Binary files /dev/null and b/static/images/theme/thumbnail/2x/aspirethemes-type-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/aspirethemes-type-master-2x.jpg b/static/images/theme/thumbnail/2x/aspirethemes-type-master-2x.jpg deleted file mode 100644 index a6ba83eb8..000000000 Binary files a/static/images/theme/thumbnail/2x/aspirethemes-type-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/avianto-hugo-kiera-master-2x.jpg b/static/images/theme/thumbnail/2x/avianto-hugo-kiera-master-2x.jpg deleted file mode 100644 index c787bc5ca..000000000 Binary files a/static/images/theme/thumbnail/2x/avianto-hugo-kiera-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/avivero-gatsby-redux-starter-2x.jpg b/static/images/theme/thumbnail/2x/avivero-gatsby-redux-starter-2x.jpg new file mode 100644 index 000000000..f9e4394ed Binary files /dev/null and b/static/images/theme/thumbnail/2x/avivero-gatsby-redux-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/avivero-gatsby-redux-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/avivero-gatsby-redux-starter-master-2x.jpg deleted file mode 100644 index adbbf7f5f..000000000 Binary files a/static/images/theme/thumbnail/2x/avivero-gatsby-redux-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/aweekj-kiko-plus-2x.jpg b/static/images/theme/thumbnail/2x/aweekj-kiko-plus-2x.jpg new file mode 100644 index 000000000..c5393b248 Binary files /dev/null and b/static/images/theme/thumbnail/2x/aweekj-kiko-plus-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/aweekj-kiko-plus-master-2x.jpg b/static/images/theme/thumbnail/2x/aweekj-kiko-plus-master-2x.jpg deleted file mode 100644 index 0fff5b455..000000000 Binary files a/static/images/theme/thumbnail/2x/aweekj-kiko-plus-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/azmelanar-hugo-theme-pixyll-master-2x.jpg b/static/images/theme/thumbnail/2x/azmelanar-hugo-theme-pixyll-master-2x.jpg deleted file mode 100644 index 746faf2ea..000000000 Binary files a/static/images/theme/thumbnail/2x/azmelanar-hugo-theme-pixyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/bagseye-bonneville-2x.jpg b/static/images/theme/thumbnail/2x/bagseye-bonneville-2x.jpg new file mode 100644 index 000000000..01b3a6473 Binary files /dev/null and b/static/images/theme/thumbnail/2x/bagseye-bonneville-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/bagseye-bonneville-master-2x.jpg b/static/images/theme/thumbnail/2x/bagseye-bonneville-master-2x.jpg deleted file mode 100644 index 5035bc3c3..000000000 Binary files a/static/images/theme/thumbnail/2x/bagseye-bonneville-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/bake-solar-theme-hugo-master-2x.jpg b/static/images/theme/thumbnail/2x/bake-solar-theme-hugo-master-2x.jpg deleted file mode 100644 index 5adfcd19f..000000000 Binary files a/static/images/theme/thumbnail/2x/bake-solar-theme-hugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/balaramadurai-hugo-travelify-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/balaramadurai-hugo-travelify-theme-master-2x.jpg deleted file mode 100644 index e0adb796a..000000000 Binary files a/static/images/theme/thumbnail/2x/balaramadurai-hugo-travelify-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/baobabkoodaa-blog-2x.jpg b/static/images/theme/thumbnail/2x/baobabkoodaa-blog-2x.jpg new file mode 100644 index 000000000..dc6eba855 Binary files /dev/null and b/static/images/theme/thumbnail/2x/baobabkoodaa-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/baobabkoodaa-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/baobabkoodaa-blog-master-2x.jpg deleted file mode 100644 index 917c1baed..000000000 Binary files a/static/images/theme/thumbnail/2x/baobabkoodaa-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/baobabkoodaa-gatsby-starter-infinite-scroll-2x.jpg b/static/images/theme/thumbnail/2x/baobabkoodaa-gatsby-starter-infinite-scroll-2x.jpg new file mode 100644 index 000000000..ad9e2b109 Binary files /dev/null and b/static/images/theme/thumbnail/2x/baobabkoodaa-gatsby-starter-infinite-scroll-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/baobabkoodaa-gatsby-starter-infinite-scroll-master-2x.jpg b/static/images/theme/thumbnail/2x/baobabkoodaa-gatsby-starter-infinite-scroll-master-2x.jpg deleted file mode 100644 index 37c9366f0..000000000 Binary files a/static/images/theme/thumbnail/2x/baobabkoodaa-gatsby-starter-infinite-scroll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/baobabkoodaa-gatsby-starter-photo-book-2x.jpg b/static/images/theme/thumbnail/2x/baobabkoodaa-gatsby-starter-photo-book-2x.jpg new file mode 100644 index 000000000..1737cea0e Binary files /dev/null and b/static/images/theme/thumbnail/2x/baobabkoodaa-gatsby-starter-photo-book-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/baobabkoodaa-gatsby-starter-photo-book-master-2x.jpg b/static/images/theme/thumbnail/2x/baobabkoodaa-gatsby-starter-photo-book-master-2x.jpg deleted file mode 100644 index 447b491f8..000000000 Binary files a/static/images/theme/thumbnail/2x/baobabkoodaa-gatsby-starter-photo-book-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/barryclark-jekyll-now-2x.jpg b/static/images/theme/thumbnail/2x/barryclark-jekyll-now-2x.jpg new file mode 100644 index 000000000..37b16a102 Binary files /dev/null and b/static/images/theme/thumbnail/2x/barryclark-jekyll-now-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/barryclark-jekyll-now-master-2x.jpg b/static/images/theme/thumbnail/2x/barryclark-jekyll-now-master-2x.jpg deleted file mode 100644 index bab7f6ae9..000000000 Binary files a/static/images/theme/thumbnail/2x/barryclark-jekyll-now-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/bawn92-sleek_blog-2x.jpg b/static/images/theme/thumbnail/2x/bawn92-sleek_blog-2x.jpg new file mode 100644 index 000000000..5e5ff6e7f Binary files /dev/null and b/static/images/theme/thumbnail/2x/bawn92-sleek_blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/bawn92-sleek_blog-master-2x.jpg b/static/images/theme/thumbnail/2x/bawn92-sleek_blog-master-2x.jpg deleted file mode 100644 index fe5b376f0..000000000 Binary files a/static/images/theme/thumbnail/2x/bawn92-sleek_blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/bdhu-minimalist-2x.jpg b/static/images/theme/thumbnail/2x/bdhu-minimalist-2x.jpg new file mode 100644 index 000000000..83c06085e Binary files /dev/null and b/static/images/theme/thumbnail/2x/bdhu-minimalist-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/bdougie-casper-cms-template-2x.jpg b/static/images/theme/thumbnail/2x/bdougie-casper-cms-template-2x.jpg new file mode 100644 index 000000000..2c68deb82 Binary files /dev/null and b/static/images/theme/thumbnail/2x/bdougie-casper-cms-template-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/bdougie-casper-cms-template-master-2x.jpg b/static/images/theme/thumbnail/2x/bdougie-casper-cms-template-master-2x.jpg deleted file mode 100644 index 7fd7c59b7..000000000 Binary files a/static/images/theme/thumbnail/2x/bdougie-casper-cms-template-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/bdougie-hyde-cms-theme-2x.jpg b/static/images/theme/thumbnail/2x/bdougie-hyde-cms-theme-2x.jpg new file mode 100644 index 000000000..b0f47d7e5 Binary files /dev/null and b/static/images/theme/thumbnail/2x/bdougie-hyde-cms-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/bdougie-hyde-cms-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/bdougie-hyde-cms-theme-master-2x.jpg deleted file mode 100644 index ab0d81d3f..000000000 Binary files a/static/images/theme/thumbnail/2x/bdougie-hyde-cms-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ben-siewert-gatsby-starter-auth-aws-amplify-2x.jpg b/static/images/theme/thumbnail/2x/ben-siewert-gatsby-starter-auth-aws-amplify-2x.jpg new file mode 100644 index 000000000..e0a6e3027 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ben-siewert-gatsby-starter-auth-aws-amplify-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ben-siewert-gatsby-starter-auth-aws-amplify-master-2x.jpg b/static/images/theme/thumbnail/2x/ben-siewert-gatsby-starter-auth-aws-amplify-master-2x.jpg deleted file mode 100644 index 8d1ff9b59..000000000 Binary files a/static/images/theme/thumbnail/2x/ben-siewert-gatsby-starter-auth-aws-amplify-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/bencentra-centrarium-master-2x.jpg b/static/images/theme/thumbnail/2x/bencentra-centrarium-master-2x.jpg deleted file mode 100644 index dce93f5d3..000000000 Binary files a/static/images/theme/thumbnail/2x/bencentra-centrarium-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/benjamin-glitsos-gatsby-kea-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/benjamin-glitsos-gatsby-kea-starter-master-2x.jpg deleted file mode 100644 index 0955c04f9..000000000 Binary files a/static/images/theme/thumbnail/2x/benjamin-glitsos-gatsby-kea-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/benjamingrobertson-gatsby-starter-accessibility-2x.jpg b/static/images/theme/thumbnail/2x/benjamingrobertson-gatsby-starter-accessibility-2x.jpg new file mode 100644 index 000000000..62c46b9ac Binary files /dev/null and b/static/images/theme/thumbnail/2x/benjamingrobertson-gatsby-starter-accessibility-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/benjamingrobertson-gatsby-starter-accessibility-master-2x.jpg b/static/images/theme/thumbnail/2x/benjamingrobertson-gatsby-starter-accessibility-master-2x.jpg deleted file mode 100644 index 4e6f06142..000000000 Binary files a/static/images/theme/thumbnail/2x/benjamingrobertson-gatsby-starter-accessibility-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/benradford-slate-and-simple-jekyll-theme-2x.jpg b/static/images/theme/thumbnail/2x/benradford-slate-and-simple-jekyll-theme-2x.jpg new file mode 100644 index 000000000..fa009e422 Binary files /dev/null and b/static/images/theme/thumbnail/2x/benradford-slate-and-simple-jekyll-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/benradford-slate-and-simple-jekyll-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/benradford-slate-and-simple-jekyll-theme-master-2x.jpg deleted file mode 100644 index c746a4a45..000000000 Binary files a/static/images/theme/thumbnail/2x/benradford-slate-and-simple-jekyll-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/bep-docuapi-2x.jpg b/static/images/theme/thumbnail/2x/bep-docuapi-2x.jpg new file mode 100644 index 000000000..bb325466d Binary files /dev/null and b/static/images/theme/thumbnail/2x/bep-docuapi-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/bep-docuapi-master-2x.jpg b/static/images/theme/thumbnail/2x/bep-docuapi-master-2x.jpg deleted file mode 100644 index 9f5f4b6b8..000000000 Binary files a/static/images/theme/thumbnail/2x/bep-docuapi-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/bigcommerce-gatsby-bigcommerce-netlify-cms-starter-2x.jpg b/static/images/theme/thumbnail/2x/bigcommerce-gatsby-bigcommerce-netlify-cms-starter-2x.jpg new file mode 100644 index 000000000..ee62abfaa Binary files /dev/null and b/static/images/theme/thumbnail/2x/bigcommerce-gatsby-bigcommerce-netlify-cms-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/bigcommerce-gatsby-bigcommerce-netlify-cms-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/bigcommerce-gatsby-bigcommerce-netlify-cms-starter-master-2x.jpg deleted file mode 100644 index 0c540b1df..000000000 Binary files a/static/images/theme/thumbnail/2x/bigcommerce-gatsby-bigcommerce-netlify-cms-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/bijenkorf-james-wakefield-gatsby-firebase-hosting-starter-2x.jpg b/static/images/theme/thumbnail/2x/bijenkorf-james-wakefield-gatsby-firebase-hosting-starter-2x.jpg new file mode 100644 index 000000000..e2cc41bcd Binary files /dev/null and b/static/images/theme/thumbnail/2x/bijenkorf-james-wakefield-gatsby-firebase-hosting-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/bijenkorf-james-wakefield-gatsby-firebase-hosting-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/bijenkorf-james-wakefield-gatsby-firebase-hosting-starter-master-2x.jpg deleted file mode 100644 index 29f0b29d4..000000000 Binary files a/static/images/theme/thumbnail/2x/bijenkorf-james-wakefield-gatsby-firebase-hosting-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/billyfish152-renge-master-2x.jpg b/static/images/theme/thumbnail/2x/billyfish152-renge-master-2x.jpg deleted file mode 100644 index 63a656093..000000000 Binary files a/static/images/theme/thumbnail/2x/billyfish152-renge-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/billyjacoby-gatsby-react-bootstrap-starter-2x.jpg b/static/images/theme/thumbnail/2x/billyjacoby-gatsby-react-bootstrap-starter-2x.jpg new file mode 100644 index 000000000..2eab157fd Binary files /dev/null and b/static/images/theme/thumbnail/2x/billyjacoby-gatsby-react-bootstrap-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/billyjacoby-gatsby-react-bootstrap-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/billyjacoby-gatsby-react-bootstrap-starter-master-2x.jpg deleted file mode 100644 index 0056790be..000000000 Binary files a/static/images/theme/thumbnail/2x/billyjacoby-gatsby-react-bootstrap-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/biomadeira-jasper-master-2x.jpg b/static/images/theme/thumbnail/2x/biomadeira-jasper-master-2x.jpg deleted file mode 100644 index 7510a3410..000000000 Binary files a/static/images/theme/thumbnail/2x/biomadeira-jasper-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/biomadeira-sustain-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/biomadeira-sustain-gh-pages-2x.jpg deleted file mode 100644 index 8f5b4dd11..000000000 Binary files a/static/images/theme/thumbnail/2x/biomadeira-sustain-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/biomadeira-vitae-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/biomadeira-vitae-gh-pages-2x.jpg deleted file mode 100644 index 6f7123108..000000000 Binary files a/static/images/theme/thumbnail/2x/biomadeira-vitae-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/bit-ranger-blog-2x.jpg b/static/images/theme/thumbnail/2x/bit-ranger-blog-2x.jpg new file mode 100644 index 000000000..d6df2f477 Binary files /dev/null and b/static/images/theme/thumbnail/2x/bit-ranger-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/bit-ranger-blog-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/bit-ranger-blog-gh-pages-2x.jpg deleted file mode 100644 index 5170d592e..000000000 Binary files a/static/images/theme/thumbnail/2x/bit-ranger-blog-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/bjacquemet-personal-web-master-2x.jpg b/static/images/theme/thumbnail/2x/bjacquemet-personal-web-master-2x.jpg deleted file mode 100644 index 5d0f162da..000000000 Binary files a/static/images/theme/thumbnail/2x/bjacquemet-personal-web-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/blakenoll-gatsby-starter-styled-components-2x.jpg b/static/images/theme/thumbnail/2x/blakenoll-gatsby-starter-styled-components-2x.jpg new file mode 100644 index 000000000..87cc9e534 Binary files /dev/null and b/static/images/theme/thumbnail/2x/blakenoll-gatsby-starter-styled-components-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/blakenoll-gatsby-starter-styled-components-master-2x.jpg b/static/images/theme/thumbnail/2x/blakenoll-gatsby-starter-styled-components-master-2x.jpg deleted file mode 100644 index 01717e995..000000000 Binary files a/static/images/theme/thumbnail/2x/blakenoll-gatsby-starter-styled-components-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/blankoworld-hugo_theme_adam_eve-master-2x.jpg b/static/images/theme/thumbnail/2x/blankoworld-hugo_theme_adam_eve-master-2x.jpg deleted file mode 100644 index fada0d020..000000000 Binary files a/static/images/theme/thumbnail/2x/blankoworld-hugo_theme_adam_eve-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/blazity-next-saas-starter-2x.jpg b/static/images/theme/thumbnail/2x/blazity-next-saas-starter-2x.jpg new file mode 100644 index 000000000..b15910ab7 Binary files /dev/null and b/static/images/theme/thumbnail/2x/blazity-next-saas-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/blleng-hexo-theme-lx-2x.jpg b/static/images/theme/thumbnail/2x/blleng-hexo-theme-lx-2x.jpg new file mode 100644 index 000000000..ec45e38fc Binary files /dev/null and b/static/images/theme/thumbnail/2x/blleng-hexo-theme-lx-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/blleng-hexo-theme-lx-master-2x.jpg b/static/images/theme/thumbnail/2x/blleng-hexo-theme-lx-master-2x.jpg deleted file mode 100644 index 353ca3b7c..000000000 Binary files a/static/images/theme/thumbnail/2x/blleng-hexo-theme-lx-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/bluepeter-gatsby-material-ui-business-starter-2x.jpg b/static/images/theme/thumbnail/2x/bluepeter-gatsby-material-ui-business-starter-2x.jpg new file mode 100644 index 000000000..c433fc5dc Binary files /dev/null and b/static/images/theme/thumbnail/2x/bluepeter-gatsby-material-ui-business-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/bluepeter-gatsby-material-ui-business-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/bluepeter-gatsby-material-ui-business-starter-master-2x.jpg deleted file mode 100644 index 70b2b9ffd..000000000 Binary files a/static/images/theme/thumbnail/2x/bluepeter-gatsby-material-ui-business-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/borekb-gatsby-starter-mobx-2x.jpg b/static/images/theme/thumbnail/2x/borekb-gatsby-starter-mobx-2x.jpg new file mode 100644 index 000000000..e1a877d2f Binary files /dev/null and b/static/images/theme/thumbnail/2x/borekb-gatsby-starter-mobx-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/borekb-gatsby-starter-mobx-master-2x.jpg b/static/images/theme/thumbnail/2x/borekb-gatsby-starter-mobx-master-2x.jpg deleted file mode 100644 index f060c6591..000000000 Binary files a/static/images/theme/thumbnail/2x/borekb-gatsby-starter-mobx-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/boywithsilverwings-gatsby-blog-starter-2x.jpg b/static/images/theme/thumbnail/2x/boywithsilverwings-gatsby-blog-starter-2x.jpg new file mode 100644 index 000000000..a742283a7 Binary files /dev/null and b/static/images/theme/thumbnail/2x/boywithsilverwings-gatsby-blog-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/boywithsilverwings-gatsby-blog-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/boywithsilverwings-gatsby-blog-starter-master-2x.jpg deleted file mode 100644 index 49a062bf6..000000000 Binary files a/static/images/theme/thumbnail/2x/boywithsilverwings-gatsby-blog-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/boywithsilverwings-gatsby-careers-page-2x.jpg b/static/images/theme/thumbnail/2x/boywithsilverwings-gatsby-careers-page-2x.jpg new file mode 100644 index 000000000..0053a4aee Binary files /dev/null and b/static/images/theme/thumbnail/2x/boywithsilverwings-gatsby-careers-page-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/boywithsilverwings-gatsby-careers-page-master-2x.jpg b/static/images/theme/thumbnail/2x/boywithsilverwings-gatsby-careers-page-master-2x.jpg deleted file mode 100644 index 8ef4b7c1e..000000000 Binary files a/static/images/theme/thumbnail/2x/boywithsilverwings-gatsby-careers-page-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/bradykondek-streamer-2x.jpg b/static/images/theme/thumbnail/2x/bradykondek-streamer-2x.jpg new file mode 100644 index 000000000..a07ab4327 Binary files /dev/null and b/static/images/theme/thumbnail/2x/bradykondek-streamer-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/bradykondek-streamer-master-2x.jpg b/static/images/theme/thumbnail/2x/bradykondek-streamer-master-2x.jpg deleted file mode 100644 index 233dcd72d..000000000 Binary files a/static/images/theme/thumbnail/2x/bradykondek-streamer-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/brennanbrown-enjoyment-work-2x.jpg b/static/images/theme/thumbnail/2x/brennanbrown-enjoyment-work-2x.jpg new file mode 100644 index 000000000..4e5f6fd1f Binary files /dev/null and b/static/images/theme/thumbnail/2x/brennanbrown-enjoyment-work-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/brennanbrown-purelog-2x.jpg b/static/images/theme/thumbnail/2x/brennanbrown-purelog-2x.jpg new file mode 100644 index 000000000..ba3eedb16 Binary files /dev/null and b/static/images/theme/thumbnail/2x/brennanbrown-purelog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/brennanbrown-watery-2x.jpg b/static/images/theme/thumbnail/2x/brennanbrown-watery-2x.jpg new file mode 100644 index 000000000..a0e170c9a Binary files /dev/null and b/static/images/theme/thumbnail/2x/brennanbrown-watery-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/brianmaierjr-long-haul-2x.jpg b/static/images/theme/thumbnail/2x/brianmaierjr-long-haul-2x.jpg new file mode 100644 index 000000000..619653218 Binary files /dev/null and b/static/images/theme/thumbnail/2x/brianmaierjr-long-haul-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/brianmaierjr-long-haul-master-2x.jpg b/static/images/theme/thumbnail/2x/brianmaierjr-long-haul-master-2x.jpg deleted file mode 100644 index 8b10bb07e..000000000 Binary files a/static/images/theme/thumbnail/2x/brianmaierjr-long-haul-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/brijeshb42-bitwiser-material-2x.jpg b/static/images/theme/thumbnail/2x/brijeshb42-bitwiser-material-2x.jpg new file mode 100644 index 000000000..fbdd1703b Binary files /dev/null and b/static/images/theme/thumbnail/2x/brijeshb42-bitwiser-material-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/brijeshb42-bitwiser-material-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/brijeshb42-bitwiser-material-gh-pages-2x.jpg deleted file mode 100644 index b610498ef..000000000 Binary files a/static/images/theme/thumbnail/2x/brijeshb42-bitwiser-material-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/brohlson-gatsby-datocms-starter-2x.jpg b/static/images/theme/thumbnail/2x/brohlson-gatsby-datocms-starter-2x.jpg new file mode 100644 index 000000000..a01ea7c0c Binary files /dev/null and b/static/images/theme/thumbnail/2x/brohlson-gatsby-datocms-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/brohlson-gatsby-datocms-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/brohlson-gatsby-datocms-starter-master-2x.jpg deleted file mode 100644 index 93921d9d7..000000000 Binary files a/static/images/theme/thumbnail/2x/brohlson-gatsby-datocms-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/brunch-brunch.github.io-2x.jpg b/static/images/theme/thumbnail/2x/brunch-brunch.github.io-2x.jpg new file mode 100644 index 000000000..ff24eaabf Binary files /dev/null and b/static/images/theme/thumbnail/2x/brunch-brunch.github.io-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/brunch-brunch.github.io-source-2x.jpg b/static/images/theme/thumbnail/2x/brunch-brunch.github.io-source-2x.jpg deleted file mode 100644 index f12912051..000000000 Binary files a/static/images/theme/thumbnail/2x/brunch-brunch.github.io-source-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/brxck-gatsby-starter-stripe-2x.jpg b/static/images/theme/thumbnail/2x/brxck-gatsby-starter-stripe-2x.jpg new file mode 100644 index 000000000..8ab1e7065 Binary files /dev/null and b/static/images/theme/thumbnail/2x/brxck-gatsby-starter-stripe-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/brxck-gatsby-starter-stripe-master-2x.jpg b/static/images/theme/thumbnail/2x/brxck-gatsby-starter-stripe-master-2x.jpg deleted file mode 100644 index b7c7b55f3..000000000 Binary files a/static/images/theme/thumbnail/2x/brxck-gatsby-starter-stripe-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/brycematheson-allegiant-master-2x.jpg b/static/images/theme/thumbnail/2x/brycematheson-allegiant-master-2x.jpg deleted file mode 100644 index 997d6a3c3..000000000 Binary files a/static/images/theme/thumbnail/2x/brycematheson-allegiant-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/budparr-gohugo-theme-ananke-2x.jpg b/static/images/theme/thumbnail/2x/budparr-gohugo-theme-ananke-2x.jpg new file mode 100644 index 000000000..5d0c56197 Binary files /dev/null and b/static/images/theme/thumbnail/2x/budparr-gohugo-theme-ananke-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/budparr-gohugo-theme-ananke-master-2x.jpg b/static/images/theme/thumbnail/2x/budparr-gohugo-theme-ananke-master-2x.jpg deleted file mode 100644 index 8f5fe66fb..000000000 Binary files a/static/images/theme/thumbnail/2x/budparr-gohugo-theme-ananke-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/bul-ikana-hugo-cards-master-2x.jpg b/static/images/theme/thumbnail/2x/bul-ikana-hugo-cards-master-2x.jpg deleted file mode 100644 index ab5080575..000000000 Binary files a/static/images/theme/thumbnail/2x/bul-ikana-hugo-cards-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/buttercms-gatsby-starter-buttercms-2x.jpg b/static/images/theme/thumbnail/2x/buttercms-gatsby-starter-buttercms-2x.jpg new file mode 100644 index 000000000..bd4c6fbb1 Binary files /dev/null and b/static/images/theme/thumbnail/2x/buttercms-gatsby-starter-buttercms-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/buttercms-gatsby-starter-buttercms-master-2x.jpg b/static/images/theme/thumbnail/2x/buttercms-gatsby-starter-buttercms-master-2x.jpg deleted file mode 100644 index 8b9d2dae9..000000000 Binary files a/static/images/theme/thumbnail/2x/buttercms-gatsby-starter-buttercms-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/caki0915-gatsby-starter-redux-2x.jpg b/static/images/theme/thumbnail/2x/caki0915-gatsby-starter-redux-2x.jpg new file mode 100644 index 000000000..a708cde11 Binary files /dev/null and b/static/images/theme/thumbnail/2x/caki0915-gatsby-starter-redux-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/caki0915-gatsby-starter-redux-master-2x.jpg b/static/images/theme/thumbnail/2x/caki0915-gatsby-starter-redux-master-2x.jpg deleted file mode 100644 index c5a4e7e86..000000000 Binary files a/static/images/theme/thumbnail/2x/caki0915-gatsby-starter-redux-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/calintat-minimal-master-2x.jpg b/static/images/theme/thumbnail/2x/calintat-minimal-master-2x.jpg deleted file mode 100644 index 2756184e2..000000000 Binary files a/static/images/theme/thumbnail/2x/calintat-minimal-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/calpa-gatsby-starter-calpa-blog-2x.jpg b/static/images/theme/thumbnail/2x/calpa-gatsby-starter-calpa-blog-2x.jpg new file mode 100644 index 000000000..7ac0b173a Binary files /dev/null and b/static/images/theme/thumbnail/2x/calpa-gatsby-starter-calpa-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/calpa-gatsby-starter-calpa-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/calpa-gatsby-starter-calpa-blog-master-2x.jpg deleted file mode 100644 index 754641db3..000000000 Binary files a/static/images/theme/thumbnail/2x/calpa-gatsby-starter-calpa-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/canhtran-maverick-2x.jpg b/static/images/theme/thumbnail/2x/canhtran-maverick-2x.jpg new file mode 100644 index 000000000..a136183ed Binary files /dev/null and b/static/images/theme/thumbnail/2x/canhtran-maverick-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/carsonip-hugo-theme-minos-master-2x.jpg b/static/images/theme/thumbnail/2x/carsonip-hugo-theme-minos-master-2x.jpg deleted file mode 100644 index e14f12720..000000000 Binary files a/static/images/theme/thumbnail/2x/carsonip-hugo-theme-minos-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/cboettig-hugo-now-ui-master-2x.jpg b/static/images/theme/thumbnail/2x/cboettig-hugo-now-ui-master-2x.jpg deleted file mode 100644 index a804b8bb3..000000000 Binary files a/static/images/theme/thumbnail/2x/cboettig-hugo-now-ui-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/cdeck3r-onedly-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/cdeck3r-onedly-theme-master-2x.jpg deleted file mode 100644 index 608a27cf8..000000000 Binary files a/static/images/theme/thumbnail/2x/cdeck3r-onedly-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/cfrome77-hugo-theme-sky-master-2x.jpg b/static/images/theme/thumbnail/2x/cfrome77-hugo-theme-sky-master-2x.jpg deleted file mode 100644 index a183f2948..000000000 Binary files a/static/images/theme/thumbnail/2x/cfrome77-hugo-theme-sky-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/chaooo-hexo-theme-bluelake-2x.jpg b/static/images/theme/thumbnail/2x/chaooo-hexo-theme-bluelake-2x.jpg new file mode 100644 index 000000000..f25e73a56 Binary files /dev/null and b/static/images/theme/thumbnail/2x/chaooo-hexo-theme-bluelake-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/chaooo-hexo-theme-bluelake-master-2x.jpg b/static/images/theme/thumbnail/2x/chaooo-hexo-theme-bluelake-master-2x.jpg deleted file mode 100644 index 08a2f0474..000000000 Binary files a/static/images/theme/thumbnail/2x/chaooo-hexo-theme-bluelake-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/chec-commercejs-chopchop-demo-2x.jpg b/static/images/theme/thumbnail/2x/chec-commercejs-chopchop-demo-2x.jpg new file mode 100644 index 000000000..9744d3aca Binary files /dev/null and b/static/images/theme/thumbnail/2x/chec-commercejs-chopchop-demo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/chec-commercejs-nextjs-demo-store-2x.jpg b/static/images/theme/thumbnail/2x/chec-commercejs-nextjs-demo-store-2x.jpg new file mode 100644 index 000000000..36cbed330 Binary files /dev/null and b/static/images/theme/thumbnail/2x/chec-commercejs-nextjs-demo-store-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/chec-commercejs-nextjs-demo-store-master-2x.jpg b/static/images/theme/thumbnail/2x/chec-commercejs-nextjs-demo-store-master-2x.jpg deleted file mode 100644 index ca5c9909f..000000000 Binary files a/static/images/theme/thumbnail/2x/chec-commercejs-nextjs-demo-store-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/chec-commercejs-vuejs-boilerplate-2x.jpg b/static/images/theme/thumbnail/2x/chec-commercejs-vuejs-boilerplate-2x.jpg new file mode 100644 index 000000000..8d23a7d22 Binary files /dev/null and b/static/images/theme/thumbnail/2x/chec-commercejs-vuejs-boilerplate-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/chec-commercejs-vuejs-boilerplate-master-2x.jpg b/static/images/theme/thumbnail/2x/chec-commercejs-vuejs-boilerplate-master-2x.jpg deleted file mode 100644 index 8ca7f4783..000000000 Binary files a/static/images/theme/thumbnail/2x/chec-commercejs-vuejs-boilerplate-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/chesterhow-tale-2x.jpg b/static/images/theme/thumbnail/2x/chesterhow-tale-2x.jpg new file mode 100644 index 000000000..d1e75ac76 Binary files /dev/null and b/static/images/theme/thumbnail/2x/chesterhow-tale-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/chesterhow-tale-master-2x.jpg b/static/images/theme/thumbnail/2x/chesterhow-tale-master-2x.jpg deleted file mode 100644 index 559919f28..000000000 Binary files a/static/images/theme/thumbnail/2x/chesterhow-tale-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/chetanverma16-react-portfolio-template-2x.jpg b/static/images/theme/thumbnail/2x/chetanverma16-react-portfolio-template-2x.jpg new file mode 100644 index 000000000..f7164da95 Binary files /dev/null and b/static/images/theme/thumbnail/2x/chetanverma16-react-portfolio-template-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/chibicode-solo-2x.jpg b/static/images/theme/thumbnail/2x/chibicode-solo-2x.jpg new file mode 100644 index 000000000..da1f9d595 Binary files /dev/null and b/static/images/theme/thumbnail/2x/chibicode-solo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/chibicode-solo-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/chibicode-solo-gh-pages-2x.jpg deleted file mode 100644 index 18d493a68..000000000 Binary files a/static/images/theme/thumbnail/2x/chibicode-solo-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/chipsenkbeil-grid-side-master-2x.jpg b/static/images/theme/thumbnail/2x/chipsenkbeil-grid-side-master-2x.jpg deleted file mode 100644 index eacc95f25..000000000 Binary files a/static/images/theme/thumbnail/2x/chipsenkbeil-grid-side-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/chipzoller-hugo-clarity-master-2x.jpg b/static/images/theme/thumbnail/2x/chipzoller-hugo-clarity-master-2x.jpg deleted file mode 100644 index f7fc89749..000000000 Binary files a/static/images/theme/thumbnail/2x/chipzoller-hugo-clarity-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/chringel21-chringel-hugo-theme-2x.jpg b/static/images/theme/thumbnail/2x/chringel21-chringel-hugo-theme-2x.jpg new file mode 100644 index 000000000..9be6d8d63 Binary files /dev/null and b/static/images/theme/thumbnail/2x/chringel21-chringel-hugo-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/chrisbobbe-jekyll-theme-prologue-2x.jpg b/static/images/theme/thumbnail/2x/chrisbobbe-jekyll-theme-prologue-2x.jpg new file mode 100644 index 000000000..9983e9790 Binary files /dev/null and b/static/images/theme/thumbnail/2x/chrisbobbe-jekyll-theme-prologue-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/chrisbobbe-jekyll-theme-prologue-master-2x.jpg b/static/images/theme/thumbnail/2x/chrisbobbe-jekyll-theme-prologue-master-2x.jpg deleted file mode 100644 index ad8149298..000000000 Binary files a/static/images/theme/thumbnail/2x/chrisbobbe-jekyll-theme-prologue-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/chrisnmorrison-revista-gatsby-blog-magazine-2x.jpg b/static/images/theme/thumbnail/2x/chrisnmorrison-revista-gatsby-blog-magazine-2x.jpg new file mode 100644 index 000000000..c575087da Binary files /dev/null and b/static/images/theme/thumbnail/2x/chrisnmorrison-revista-gatsby-blog-magazine-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/chrisrhymes-bulma-clean-theme-2x.jpg b/static/images/theme/thumbnail/2x/chrisrhymes-bulma-clean-theme-2x.jpg new file mode 100644 index 000000000..0d8770a2e Binary files /dev/null and b/static/images/theme/thumbnail/2x/chrisrhymes-bulma-clean-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/chrisrhymes-bulma-clean-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/chrisrhymes-bulma-clean-theme-master-2x.jpg deleted file mode 100644 index 43b13f76a..000000000 Binary files a/static/images/theme/thumbnail/2x/chrisrhymes-bulma-clean-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/chrisrhymes-mere-blog-theme-2x.jpg b/static/images/theme/thumbnail/2x/chrisrhymes-mere-blog-theme-2x.jpg new file mode 100644 index 000000000..082436e9f Binary files /dev/null and b/static/images/theme/thumbnail/2x/chrisrhymes-mere-blog-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/chrisrhymes-mere-blog-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/chrisrhymes-mere-blog-theme-master-2x.jpg deleted file mode 100644 index ac9f1e8db..000000000 Binary files a/static/images/theme/thumbnail/2x/chrisrhymes-mere-blog-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/chrissimpkins-cinder-2x.jpg b/static/images/theme/thumbnail/2x/chrissimpkins-cinder-2x.jpg new file mode 100644 index 000000000..3f56367f0 Binary files /dev/null and b/static/images/theme/thumbnail/2x/chrissimpkins-cinder-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/chrissimpkins-cinder-master-2x.jpg b/static/images/theme/thumbnail/2x/chrissimpkins-cinder-master-2x.jpg deleted file mode 100644 index c3457a7ad..000000000 Binary files a/static/images/theme/thumbnail/2x/chrissimpkins-cinder-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/christianezeani-panthera-jekyll-2x.jpg b/static/images/theme/thumbnail/2x/christianezeani-panthera-jekyll-2x.jpg new file mode 100644 index 000000000..b23c9707a Binary files /dev/null and b/static/images/theme/thumbnail/2x/christianezeani-panthera-jekyll-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/christianezeani-panthera-jekyll-master-2x.jpg b/static/images/theme/thumbnail/2x/christianezeani-panthera-jekyll-master-2x.jpg deleted file mode 100644 index 886f8a5e6..000000000 Binary files a/static/images/theme/thumbnail/2x/christianezeani-panthera-jekyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/christianmendoza-hugo-split-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/christianmendoza-hugo-split-theme-master-2x.jpg deleted file mode 100644 index 707be0cc9..000000000 Binary files a/static/images/theme/thumbnail/2x/christianmendoza-hugo-split-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/cjsheets-mkdocs-rtd-dropdown-master-2x.jpg b/static/images/theme/thumbnail/2x/cjsheets-mkdocs-rtd-dropdown-master-2x.jpg deleted file mode 100644 index 4f2f13b53..000000000 Binary files a/static/images/theme/thumbnail/2x/cjsheets-mkdocs-rtd-dropdown-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/clark-zhao-bohu-jekyll-theme-2x.jpg b/static/images/theme/thumbnail/2x/clark-zhao-bohu-jekyll-theme-2x.jpg new file mode 100644 index 000000000..b04ceeb9b Binary files /dev/null and b/static/images/theme/thumbnail/2x/clark-zhao-bohu-jekyll-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/clark-zhao-bohu-jekyll-theme-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/clark-zhao-bohu-jekyll-theme-gh-pages-2x.jpg deleted file mode 100644 index f8be37cc8..000000000 Binary files a/static/images/theme/thumbnail/2x/clark-zhao-bohu-jekyll-theme-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/clarkhacks-minimal-text-master-2x.jpg b/static/images/theme/thumbnail/2x/clarkhacks-minimal-text-master-2x.jpg deleted file mode 100644 index 33ebd2606..000000000 Binary files a/static/images/theme/thumbnail/2x/clarkhacks-minimal-text-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/clayh53-tufte-jekyll-2x.jpg b/static/images/theme/thumbnail/2x/clayh53-tufte-jekyll-2x.jpg new file mode 100644 index 000000000..aed4a9328 Binary files /dev/null and b/static/images/theme/thumbnail/2x/clayh53-tufte-jekyll-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/clayh53-tufte-jekyll-master-2x.jpg b/static/images/theme/thumbnail/2x/clayh53-tufte-jekyll-master-2x.jpg deleted file mode 100644 index 05a892534..000000000 Binary files a/static/images/theme/thumbnail/2x/clayh53-tufte-jekyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/cloudcannon-aviator-jekyll-theme-2x.jpg b/static/images/theme/thumbnail/2x/cloudcannon-aviator-jekyll-theme-2x.jpg new file mode 100644 index 000000000..90bd6b227 Binary files /dev/null and b/static/images/theme/thumbnail/2x/cloudcannon-aviator-jekyll-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/cloudcannon-aviator-jekyll-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/cloudcannon-aviator-jekyll-theme-master-2x.jpg deleted file mode 100644 index 5130fb5b9..000000000 Binary files a/static/images/theme/thumbnail/2x/cloudcannon-aviator-jekyll-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/cloudcannon-cause-jekyll-template-2x.jpg b/static/images/theme/thumbnail/2x/cloudcannon-cause-jekyll-template-2x.jpg new file mode 100644 index 000000000..c6805f89e Binary files /dev/null and b/static/images/theme/thumbnail/2x/cloudcannon-cause-jekyll-template-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/cloudcannon-cause-jekyll-template-master-2x.jpg b/static/images/theme/thumbnail/2x/cloudcannon-cause-jekyll-template-master-2x.jpg deleted file mode 100644 index ebe9b5f63..000000000 Binary files a/static/images/theme/thumbnail/2x/cloudcannon-cause-jekyll-template-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/cloudcannon-dopetrope-jekyll-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/cloudcannon-dopetrope-jekyll-theme-master-2x.jpg deleted file mode 100644 index 50cb5c6ee..000000000 Binary files a/static/images/theme/thumbnail/2x/cloudcannon-dopetrope-jekyll-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/cloudcannon-edition-jekyll-template-2x.jpg b/static/images/theme/thumbnail/2x/cloudcannon-edition-jekyll-template-2x.jpg new file mode 100644 index 000000000..523694184 Binary files /dev/null and b/static/images/theme/thumbnail/2x/cloudcannon-edition-jekyll-template-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/cloudcannon-edition-jekyll-template-master-2x.jpg b/static/images/theme/thumbnail/2x/cloudcannon-edition-jekyll-template-master-2x.jpg deleted file mode 100644 index d7d901c18..000000000 Binary files a/static/images/theme/thumbnail/2x/cloudcannon-edition-jekyll-template-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/cloudcannon-frisco-jekyll-template-2x.jpg b/static/images/theme/thumbnail/2x/cloudcannon-frisco-jekyll-template-2x.jpg new file mode 100644 index 000000000..aa7151887 Binary files /dev/null and b/static/images/theme/thumbnail/2x/cloudcannon-frisco-jekyll-template-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/cloudcannon-frisco-jekyll-template-master-2x.jpg b/static/images/theme/thumbnail/2x/cloudcannon-frisco-jekyll-template-master-2x.jpg deleted file mode 100644 index ca5581df8..000000000 Binary files a/static/images/theme/thumbnail/2x/cloudcannon-frisco-jekyll-template-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/cloudcannon-hydra-jekyll-template-2x.jpg b/static/images/theme/thumbnail/2x/cloudcannon-hydra-jekyll-template-2x.jpg new file mode 100644 index 000000000..36dc6a777 Binary files /dev/null and b/static/images/theme/thumbnail/2x/cloudcannon-hydra-jekyll-template-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/cloudcannon-hydra-jekyll-template-master-2x.jpg b/static/images/theme/thumbnail/2x/cloudcannon-hydra-jekyll-template-master-2x.jpg deleted file mode 100644 index 05463ac4e..000000000 Binary files a/static/images/theme/thumbnail/2x/cloudcannon-hydra-jekyll-template-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/cloudcannon-justice-jekyll-template-2x.jpg b/static/images/theme/thumbnail/2x/cloudcannon-justice-jekyll-template-2x.jpg new file mode 100644 index 000000000..c9277f2d0 Binary files /dev/null and b/static/images/theme/thumbnail/2x/cloudcannon-justice-jekyll-template-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/cloudcannon-justice-jekyll-template-master-2x.jpg b/static/images/theme/thumbnail/2x/cloudcannon-justice-jekyll-template-master-2x.jpg deleted file mode 100644 index 8086a5f80..000000000 Binary files a/static/images/theme/thumbnail/2x/cloudcannon-justice-jekyll-template-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/cloudcannon-malt-jekyll-template-2x.jpg b/static/images/theme/thumbnail/2x/cloudcannon-malt-jekyll-template-2x.jpg new file mode 100644 index 000000000..671c2dd4c Binary files /dev/null and b/static/images/theme/thumbnail/2x/cloudcannon-malt-jekyll-template-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/cloudcannon-malt-jekyll-template-master-2x.jpg b/static/images/theme/thumbnail/2x/cloudcannon-malt-jekyll-template-master-2x.jpg deleted file mode 100644 index 3b38fc1d6..000000000 Binary files a/static/images/theme/thumbnail/2x/cloudcannon-malt-jekyll-template-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/cloudcannon-strata-jekyll-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/cloudcannon-strata-jekyll-theme-master-2x.jpg deleted file mode 100644 index e25865ecb..000000000 Binary files a/static/images/theme/thumbnail/2x/cloudcannon-strata-jekyll-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/cloudcannon-twenty-jekyll-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/cloudcannon-twenty-jekyll-theme-master-2x.jpg deleted file mode 100644 index 62029b3da..000000000 Binary files a/static/images/theme/thumbnail/2x/cloudcannon-twenty-jekyll-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/cloudcannon-urban-jekyll-template-2x.jpg b/static/images/theme/thumbnail/2x/cloudcannon-urban-jekyll-template-2x.jpg new file mode 100644 index 000000000..cf7f24dac Binary files /dev/null and b/static/images/theme/thumbnail/2x/cloudcannon-urban-jekyll-template-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/cloudcannon-urban-jekyll-template-master-2x.jpg b/static/images/theme/thumbnail/2x/cloudcannon-urban-jekyll-template-master-2x.jpg deleted file mode 100644 index 17474a269..000000000 Binary files a/static/images/theme/thumbnail/2x/cloudcannon-urban-jekyll-template-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/codeasashu-hcz-jekyll-blog-2x.jpg b/static/images/theme/thumbnail/2x/codeasashu-hcz-jekyll-blog-2x.jpg new file mode 100644 index 000000000..56f615918 Binary files /dev/null and b/static/images/theme/thumbnail/2x/codeasashu-hcz-jekyll-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/codeasashu-hcz-jekyll-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/codeasashu-hcz-jekyll-blog-master-2x.jpg deleted file mode 100644 index f43ad11b8..000000000 Binary files a/static/images/theme/thumbnail/2x/codeasashu-hcz-jekyll-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-dimension-2x.jpg b/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-dimension-2x.jpg new file mode 100644 index 000000000..69a6c7a14 Binary files /dev/null and b/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-dimension-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-dimension-master-2x.jpg b/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-dimension-master-2x.jpg deleted file mode 100644 index d252b1dc8..000000000 Binary files a/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-dimension-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-forty-2x.jpg b/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-forty-2x.jpg new file mode 100644 index 000000000..888e406c3 Binary files /dev/null and b/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-forty-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-forty-master-2x.jpg b/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-forty-master-2x.jpg deleted file mode 100644 index 188ce4d89..000000000 Binary files a/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-forty-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-photon-2x.jpg b/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-photon-2x.jpg new file mode 100644 index 000000000..7e72ffbd4 Binary files /dev/null and b/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-photon-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-photon-master-2x.jpg b/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-photon-master-2x.jpg deleted file mode 100644 index 38d7bdf88..000000000 Binary files a/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-photon-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-stellar-2x.jpg b/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-stellar-2x.jpg new file mode 100644 index 000000000..2e4dbbba3 Binary files /dev/null and b/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-stellar-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-stellar-master-2x.jpg b/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-stellar-master-2x.jpg deleted file mode 100644 index ae2127851..000000000 Binary files a/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-stellar-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-strata-2x.jpg b/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-strata-2x.jpg new file mode 100644 index 000000000..05dc8780a Binary files /dev/null and b/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-strata-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-strata-master-2x.jpg b/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-strata-master-2x.jpg deleted file mode 100644 index 461ba090f..000000000 Binary files a/static/images/theme/thumbnail/2x/codebushi-gatsby-starter-strata-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/coderzh-hugo-pacman-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/coderzh-hugo-pacman-theme-master-2x.jpg deleted file mode 100644 index 5b0693bdf..000000000 Binary files a/static/images/theme/thumbnail/2x/coderzh-hugo-pacman-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/codexfelis-paws-template-2x.jpg b/static/images/theme/thumbnail/2x/codexfelis-paws-template-2x.jpg new file mode 100644 index 000000000..1456edf1e Binary files /dev/null and b/static/images/theme/thumbnail/2x/codexfelis-paws-template-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/codinfox-codinfox-lanyon-2x.jpg b/static/images/theme/thumbnail/2x/codinfox-codinfox-lanyon-2x.jpg new file mode 100644 index 000000000..71dbf6e82 Binary files /dev/null and b/static/images/theme/thumbnail/2x/codinfox-codinfox-lanyon-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/codinfox-codinfox-lanyon-dev-2x.jpg b/static/images/theme/thumbnail/2x/codinfox-codinfox-lanyon-dev-2x.jpg deleted file mode 100644 index be3d1ddf5..000000000 Binary files a/static/images/theme/thumbnail/2x/codinfox-codinfox-lanyon-dev-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/colbyfayock-gatsby-starter-sass-2x.jpg b/static/images/theme/thumbnail/2x/colbyfayock-gatsby-starter-sass-2x.jpg new file mode 100644 index 000000000..e562dfb2a Binary files /dev/null and b/static/images/theme/thumbnail/2x/colbyfayock-gatsby-starter-sass-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/colbyfayock-gatsby-starter-sass-master-2x.jpg b/static/images/theme/thumbnail/2x/colbyfayock-gatsby-starter-sass-master-2x.jpg deleted file mode 100644 index 4e18d0169..000000000 Binary files a/static/images/theme/thumbnail/2x/colbyfayock-gatsby-starter-sass-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/coletownsend-balzac-for-jekyll-2x.jpg b/static/images/theme/thumbnail/2x/coletownsend-balzac-for-jekyll-2x.jpg new file mode 100644 index 000000000..568882752 Binary files /dev/null and b/static/images/theme/thumbnail/2x/coletownsend-balzac-for-jekyll-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/coletownsend-balzac-for-jekyll-master-2x.jpg b/static/images/theme/thumbnail/2x/coletownsend-balzac-for-jekyll-master-2x.jpg deleted file mode 100644 index d037f0be0..000000000 Binary files a/static/images/theme/thumbnail/2x/coletownsend-balzac-for-jekyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/collective-gatsby-starter-plone-2x.jpg b/static/images/theme/thumbnail/2x/collective-gatsby-starter-plone-2x.jpg new file mode 100644 index 000000000..b5b1a4eec Binary files /dev/null and b/static/images/theme/thumbnail/2x/collective-gatsby-starter-plone-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/collective-gatsby-starter-plone-master-2x.jpg b/static/images/theme/thumbnail/2x/collective-gatsby-starter-plone-master-2x.jpg deleted file mode 100644 index c6da5fb89..000000000 Binary files a/static/images/theme/thumbnail/2x/collective-gatsby-starter-plone-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/contentful-userland-gatsby-contentful-starter-2x.jpg b/static/images/theme/thumbnail/2x/contentful-userland-gatsby-contentful-starter-2x.jpg new file mode 100644 index 000000000..1ce863f3e Binary files /dev/null and b/static/images/theme/thumbnail/2x/contentful-userland-gatsby-contentful-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/contentful-userland-gatsby-contentful-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/contentful-userland-gatsby-contentful-starter-master-2x.jpg deleted file mode 100644 index 2c34792d0..000000000 Binary files a/static/images/theme/thumbnail/2x/contentful-userland-gatsby-contentful-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/contentstack-gatsby-starter-contentstack-2x.jpg b/static/images/theme/thumbnail/2x/contentstack-gatsby-starter-contentstack-2x.jpg new file mode 100644 index 000000000..42a073d78 Binary files /dev/null and b/static/images/theme/thumbnail/2x/contentstack-gatsby-starter-contentstack-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/contentstack-gatsby-starter-contentstack-master-2x.jpg b/static/images/theme/thumbnail/2x/contentstack-gatsby-starter-contentstack-master-2x.jpg deleted file mode 100644 index af541571c..000000000 Binary files a/static/images/theme/thumbnail/2x/contentstack-gatsby-starter-contentstack-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/cosmicjs-gatsby-agency-portfolio-2x.jpg b/static/images/theme/thumbnail/2x/cosmicjs-gatsby-agency-portfolio-2x.jpg new file mode 100644 index 000000000..729153a8e Binary files /dev/null and b/static/images/theme/thumbnail/2x/cosmicjs-gatsby-agency-portfolio-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/cosmicjs-gatsby-agency-portfolio-master-2x.jpg b/static/images/theme/thumbnail/2x/cosmicjs-gatsby-agency-portfolio-master-2x.jpg deleted file mode 100644 index 86b51a50c..000000000 Binary files a/static/images/theme/thumbnail/2x/cosmicjs-gatsby-agency-portfolio-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/cosmicjs-gatsby-blog-cosmicjs-2x.jpg b/static/images/theme/thumbnail/2x/cosmicjs-gatsby-blog-cosmicjs-2x.jpg new file mode 100644 index 000000000..53a69f4f4 Binary files /dev/null and b/static/images/theme/thumbnail/2x/cosmicjs-gatsby-blog-cosmicjs-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/cosmicjs-gatsby-blog-cosmicjs-master-2x.jpg b/static/images/theme/thumbnail/2x/cosmicjs-gatsby-blog-cosmicjs-master-2x.jpg deleted file mode 100644 index ee8e82454..000000000 Binary files a/static/images/theme/thumbnail/2x/cosmicjs-gatsby-blog-cosmicjs-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/cosmicjs-gatsby-docs-app-2x.jpg b/static/images/theme/thumbnail/2x/cosmicjs-gatsby-docs-app-2x.jpg new file mode 100644 index 000000000..3ab973df8 Binary files /dev/null and b/static/images/theme/thumbnail/2x/cosmicjs-gatsby-docs-app-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/cosmicjs-gatsby-docs-app-master-2x.jpg b/static/images/theme/thumbnail/2x/cosmicjs-gatsby-docs-app-master-2x.jpg deleted file mode 100644 index 9d4ecfac1..000000000 Binary files a/static/images/theme/thumbnail/2x/cosmicjs-gatsby-docs-app-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/cosmicjs-gatsby-localization-app-starter-2x.jpg b/static/images/theme/thumbnail/2x/cosmicjs-gatsby-localization-app-starter-2x.jpg new file mode 100644 index 000000000..290b7077f Binary files /dev/null and b/static/images/theme/thumbnail/2x/cosmicjs-gatsby-localization-app-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/cosmicjs-gatsby-localization-app-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/cosmicjs-gatsby-localization-app-starter-master-2x.jpg deleted file mode 100644 index 449df6180..000000000 Binary files a/static/images/theme/thumbnail/2x/cosmicjs-gatsby-localization-app-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/cosmicjs-gatsby-starter-2x.jpg b/static/images/theme/thumbnail/2x/cosmicjs-gatsby-starter-2x.jpg new file mode 100644 index 000000000..3c4b2ecc1 Binary files /dev/null and b/static/images/theme/thumbnail/2x/cosmicjs-gatsby-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/cosmicjs-gatsby-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/cosmicjs-gatsby-starter-master-2x.jpg deleted file mode 100644 index 21d438797..000000000 Binary files a/static/images/theme/thumbnail/2x/cosmicjs-gatsby-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/cotes2020-jekyll-theme-chirpy-2x.jpg b/static/images/theme/thumbnail/2x/cotes2020-jekyll-theme-chirpy-2x.jpg new file mode 100644 index 000000000..af4faed31 Binary files /dev/null and b/static/images/theme/thumbnail/2x/cotes2020-jekyll-theme-chirpy-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/cotes2020-jekyll-theme-chirpy-master-2x.jpg b/static/images/theme/thumbnail/2x/cotes2020-jekyll-theme-chirpy-master-2x.jpg deleted file mode 100644 index 0e992f71a..000000000 Binary files a/static/images/theme/thumbnail/2x/cotes2020-jekyll-theme-chirpy-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/craigary-nobelium-2x.jpg b/static/images/theme/thumbnail/2x/craigary-nobelium-2x.jpg new file mode 100644 index 000000000..bc8984040 Binary files /dev/null and b/static/images/theme/thumbnail/2x/craigary-nobelium-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/creasoft-dev-fundamenty-2x.jpg b/static/images/theme/thumbnail/2x/creasoft-dev-fundamenty-2x.jpg new file mode 100644 index 000000000..9e1d9a2a7 Binary files /dev/null and b/static/images/theme/thumbnail/2x/creasoft-dev-fundamenty-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/creasoft-dev-fundamenty-master-2x.jpg b/static/images/theme/thumbnail/2x/creasoft-dev-fundamenty-master-2x.jpg deleted file mode 100644 index f0a6e5b1e..000000000 Binary files a/static/images/theme/thumbnail/2x/creasoft-dev-fundamenty-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/cssandstuff-hugo-theme-winning-master-2x.jpg b/static/images/theme/thumbnail/2x/cssandstuff-hugo-theme-winning-master-2x.jpg deleted file mode 100644 index 1844fa7bc..000000000 Binary files a/static/images/theme/thumbnail/2x/cssandstuff-hugo-theme-winning-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/curtiscde-hugo-theme-dopetrope-2x.jpg b/static/images/theme/thumbnail/2x/curtiscde-hugo-theme-dopetrope-2x.jpg new file mode 100644 index 000000000..f8059f1f1 Binary files /dev/null and b/static/images/theme/thumbnail/2x/curtiscde-hugo-theme-dopetrope-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/curtiscde-hugo-theme-massively-2x.jpg b/static/images/theme/thumbnail/2x/curtiscde-hugo-theme-massively-2x.jpg new file mode 100644 index 000000000..452f51137 Binary files /dev/null and b/static/images/theme/thumbnail/2x/curtiscde-hugo-theme-massively-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/curtistimson-hugo-theme-dopetrope-2x.jpg b/static/images/theme/thumbnail/2x/curtistimson-hugo-theme-dopetrope-2x.jpg new file mode 100644 index 000000000..f8059f1f1 Binary files /dev/null and b/static/images/theme/thumbnail/2x/curtistimson-hugo-theme-dopetrope-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/curtistimson-hugo-theme-dopetrope-master-2x.jpg b/static/images/theme/thumbnail/2x/curtistimson-hugo-theme-dopetrope-master-2x.jpg deleted file mode 100644 index e49f6d346..000000000 Binary files a/static/images/theme/thumbnail/2x/curtistimson-hugo-theme-dopetrope-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/curtistimson-hugo-theme-massively-2x.jpg b/static/images/theme/thumbnail/2x/curtistimson-hugo-theme-massively-2x.jpg new file mode 100644 index 000000000..bc5a524fb Binary files /dev/null and b/static/images/theme/thumbnail/2x/curtistimson-hugo-theme-massively-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/curtistimson-hugo-theme-massively-master-2x.jpg b/static/images/theme/thumbnail/2x/curtistimson-hugo-theme-massively-master-2x.jpg deleted file mode 100644 index 95de8eec7..000000000 Binary files a/static/images/theme/thumbnail/2x/curtistimson-hugo-theme-massively-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/cvluca-gatsby-starter-markdown-2x.jpg b/static/images/theme/thumbnail/2x/cvluca-gatsby-starter-markdown-2x.jpg new file mode 100644 index 000000000..da559e542 Binary files /dev/null and b/static/images/theme/thumbnail/2x/cvluca-gatsby-starter-markdown-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/cvluca-gatsby-starter-markdown-master-2x.jpg b/static/images/theme/thumbnail/2x/cvluca-gatsby-starter-markdown-master-2x.jpg deleted file mode 100644 index 296d71907..000000000 Binary files a/static/images/theme/thumbnail/2x/cvluca-gatsby-starter-markdown-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/cwlsn-gatsby-simple-contentful-starter-2x.jpg b/static/images/theme/thumbnail/2x/cwlsn-gatsby-simple-contentful-starter-2x.jpg new file mode 100644 index 000000000..c99fd8a0b Binary files /dev/null and b/static/images/theme/thumbnail/2x/cwlsn-gatsby-simple-contentful-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/cwlsn-gatsby-simple-contentful-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/cwlsn-gatsby-simple-contentful-starter-master-2x.jpg deleted file mode 100644 index 94186c90d..000000000 Binary files a/static/images/theme/thumbnail/2x/cwlsn-gatsby-simple-contentful-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/cyevgeniy-jekyll-true-minimal-2x.jpg b/static/images/theme/thumbnail/2x/cyevgeniy-jekyll-true-minimal-2x.jpg new file mode 100644 index 000000000..da84ebad1 Binary files /dev/null and b/static/images/theme/thumbnail/2x/cyevgeniy-jekyll-true-minimal-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/cyevgeniy-jekyll-true-minimal-master-2x.jpg b/static/images/theme/thumbnail/2x/cyevgeniy-jekyll-true-minimal-master-2x.jpg deleted file mode 100644 index 3b3d8d185..000000000 Binary files a/static/images/theme/thumbnail/2x/cyevgeniy-jekyll-true-minimal-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/d-kusk-minimage-master-2x.jpg b/static/images/theme/thumbnail/2x/d-kusk-minimage-master-2x.jpg deleted file mode 100644 index e23ff68ac..000000000 Binary files a/static/images/theme/thumbnail/2x/d-kusk-minimage-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/daattali-beautiful-jekyll-2x.jpg b/static/images/theme/thumbnail/2x/daattali-beautiful-jekyll-2x.jpg new file mode 100644 index 000000000..279d3d942 Binary files /dev/null and b/static/images/theme/thumbnail/2x/daattali-beautiful-jekyll-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/daattali-beautiful-jekyll-master-2x.jpg b/static/images/theme/thumbnail/2x/daattali-beautiful-jekyll-master-2x.jpg deleted file mode 100644 index 5285a74c9..000000000 Binary files a/static/images/theme/thumbnail/2x/daattali-beautiful-jekyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/dabit3-gatsby-auth-starter-aws-amplify-2x.jpg b/static/images/theme/thumbnail/2x/dabit3-gatsby-auth-starter-aws-amplify-2x.jpg new file mode 100644 index 000000000..38789f553 Binary files /dev/null and b/static/images/theme/thumbnail/2x/dabit3-gatsby-auth-starter-aws-amplify-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/dabit3-gatsby-auth-starter-aws-amplify-master-2x.jpg b/static/images/theme/thumbnail/2x/dabit3-gatsby-auth-starter-aws-amplify-master-2x.jpg deleted file mode 100644 index 779e11847..000000000 Binary files a/static/images/theme/thumbnail/2x/dabit3-gatsby-auth-starter-aws-amplify-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/dafiulh-vredeburg-2x.jpg b/static/images/theme/thumbnail/2x/dafiulh-vredeburg-2x.jpg new file mode 100644 index 000000000..8704b87e6 Binary files /dev/null and b/static/images/theme/thumbnail/2x/dafiulh-vredeburg-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/dafiulh-vredeburg-master-2x.jpg b/static/images/theme/thumbnail/2x/dafiulh-vredeburg-master-2x.jpg deleted file mode 100644 index ecaa01d90..000000000 Binary files a/static/images/theme/thumbnail/2x/dafiulh-vredeburg-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/damassi-gatsby-starter-typescript-rebass-netlifycms-2x.jpg b/static/images/theme/thumbnail/2x/damassi-gatsby-starter-typescript-rebass-netlifycms-2x.jpg new file mode 100644 index 000000000..d5c2bbb4e Binary files /dev/null and b/static/images/theme/thumbnail/2x/damassi-gatsby-starter-typescript-rebass-netlifycms-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/damassi-gatsby-starter-typescript-rebass-netlifycms-master-2x.jpg b/static/images/theme/thumbnail/2x/damassi-gatsby-starter-typescript-rebass-netlifycms-master-2x.jpg deleted file mode 100644 index 3d104851f..000000000 Binary files a/static/images/theme/thumbnail/2x/damassi-gatsby-starter-typescript-rebass-netlifycms-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/danielbayerlein-middleman-casper-2x.jpg b/static/images/theme/thumbnail/2x/danielbayerlein-middleman-casper-2x.jpg new file mode 100644 index 000000000..0fbc0e0f0 Binary files /dev/null and b/static/images/theme/thumbnail/2x/danielbayerlein-middleman-casper-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/danielbayerlein-middleman-casper-master-2x.jpg b/static/images/theme/thumbnail/2x/danielbayerlein-middleman-casper-master-2x.jpg deleted file mode 100644 index 434806969..000000000 Binary files a/static/images/theme/thumbnail/2x/danielbayerlein-middleman-casper-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/danielkellyio-awake-template-2x.jpg b/static/images/theme/thumbnail/2x/danielkellyio-awake-template-2x.jpg new file mode 100644 index 000000000..3e8cff0ad Binary files /dev/null and b/static/images/theme/thumbnail/2x/danielkellyio-awake-template-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/danielkellyio-awake-template-master-2x.jpg b/static/images/theme/thumbnail/2x/danielkellyio-awake-template-master-2x.jpg deleted file mode 100644 index dd9883274..000000000 Binary files a/static/images/theme/thumbnail/2x/danielkellyio-awake-template-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/danielkvist-hugo-piercer-theme-2x.jpg b/static/images/theme/thumbnail/2x/danielkvist-hugo-piercer-theme-2x.jpg new file mode 100644 index 000000000..dc613e236 Binary files /dev/null and b/static/images/theme/thumbnail/2x/danielkvist-hugo-piercer-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/danielkvist-hugo-piercer-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/danielkvist-hugo-piercer-theme-master-2x.jpg deleted file mode 100644 index c4a11ed59..000000000 Binary files a/static/images/theme/thumbnail/2x/danielkvist-hugo-piercer-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/danielkvist-hugo-terrassa-theme-2x.jpg b/static/images/theme/thumbnail/2x/danielkvist-hugo-terrassa-theme-2x.jpg new file mode 100644 index 000000000..34dee0e61 Binary files /dev/null and b/static/images/theme/thumbnail/2x/danielkvist-hugo-terrassa-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/danielkvist-hugo-terrassa-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/danielkvist-hugo-terrassa-theme-master-2x.jpg deleted file mode 100644 index 71dfbc03d..000000000 Binary files a/static/images/theme/thumbnail/2x/danielkvist-hugo-terrassa-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/danilowoz-gatsby-advanced-blog-system-2x.jpg b/static/images/theme/thumbnail/2x/danilowoz-gatsby-advanced-blog-system-2x.jpg new file mode 100644 index 000000000..3fddbd118 Binary files /dev/null and b/static/images/theme/thumbnail/2x/danilowoz-gatsby-advanced-blog-system-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/danilowoz-gatsby-advanced-blog-system-master-2x.jpg b/static/images/theme/thumbnail/2x/danilowoz-gatsby-advanced-blog-system-master-2x.jpg deleted file mode 100644 index a8d617295..000000000 Binary files a/static/images/theme/thumbnail/2x/danilowoz-gatsby-advanced-blog-system-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/danshai-gatsbyv2-scientific-blog-machine-learning-2x.jpg b/static/images/theme/thumbnail/2x/danshai-gatsbyv2-scientific-blog-machine-learning-2x.jpg new file mode 100644 index 000000000..d0f593337 Binary files /dev/null and b/static/images/theme/thumbnail/2x/danshai-gatsbyv2-scientific-blog-machine-learning-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/danshai-gatsbyv2-scientific-blog-machine-learning-master-2x.jpg b/static/images/theme/thumbnail/2x/danshai-gatsbyv2-scientific-blog-machine-learning-master-2x.jpg deleted file mode 100644 index 461d9ac40..000000000 Binary files a/static/images/theme/thumbnail/2x/danshai-gatsbyv2-scientific-blog-machine-learning-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/danurbanowicz-eleventy-netlify-boilerplate-2x.jpg b/static/images/theme/thumbnail/2x/danurbanowicz-eleventy-netlify-boilerplate-2x.jpg new file mode 100644 index 000000000..4c20434cd Binary files /dev/null and b/static/images/theme/thumbnail/2x/danurbanowicz-eleventy-netlify-boilerplate-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/danurbanowicz-eleventy-netlify-boilerplate-master-2x.jpg b/static/images/theme/thumbnail/2x/danurbanowicz-eleventy-netlify-boilerplate-master-2x.jpg deleted file mode 100644 index c340abc14..000000000 Binary files a/static/images/theme/thumbnail/2x/danurbanowicz-eleventy-netlify-boilerplate-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/darshanbaral-aafu-master-2x.jpg b/static/images/theme/thumbnail/2x/darshanbaral-aafu-master-2x.jpg deleted file mode 100644 index f2c2223da..000000000 Binary files a/static/images/theme/thumbnail/2x/darshanbaral-aafu-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/darshanbaral-khata-master-2x.jpg b/static/images/theme/thumbnail/2x/darshanbaral-khata-master-2x.jpg deleted file mode 100644 index 08c43f013..000000000 Binary files a/static/images/theme/thumbnail/2x/darshanbaral-khata-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/darshanbaral-kitab-master-2x.jpg b/static/images/theme/thumbnail/2x/darshanbaral-kitab-master-2x.jpg deleted file mode 100644 index 2d05bd132..000000000 Binary files a/static/images/theme/thumbnail/2x/darshanbaral-kitab-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/darshanbaral-mero-master-2x.jpg b/static/images/theme/thumbnail/2x/darshanbaral-mero-master-2x.jpg deleted file mode 100644 index 60975f1f1..000000000 Binary files a/static/images/theme/thumbnail/2x/darshanbaral-mero-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/darshanbaral-sada-master-2x.jpg b/static/images/theme/thumbnail/2x/darshanbaral-sada-master-2x.jpg deleted file mode 100644 index db7274eb0..000000000 Binary files a/static/images/theme/thumbnail/2x/darshanbaral-sada-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/dashdashzako-hugo-journal-2x.jpg b/static/images/theme/thumbnail/2x/dashdashzako-hugo-journal-2x.jpg new file mode 100644 index 000000000..4a2974f71 Binary files /dev/null and b/static/images/theme/thumbnail/2x/dashdashzako-hugo-journal-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/dashdashzako-hugo-journal-master-2x.jpg b/static/images/theme/thumbnail/2x/dashdashzako-hugo-journal-master-2x.jpg deleted file mode 100644 index 312a06975..000000000 Binary files a/static/images/theme/thumbnail/2x/dashdashzako-hugo-journal-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/dashdashzako-paperback-master-2x.jpg b/static/images/theme/thumbnail/2x/dashdashzako-paperback-master-2x.jpg deleted file mode 100644 index 1ba2a4a97..000000000 Binary files a/static/images/theme/thumbnail/2x/dashdashzako-paperback-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/dashingcode-front-cover-2x.jpg b/static/images/theme/thumbnail/2x/dashingcode-front-cover-2x.jpg new file mode 100644 index 000000000..2cec20698 Binary files /dev/null and b/static/images/theme/thumbnail/2x/dashingcode-front-cover-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/dashingcode-front-cover-master-2x.jpg b/static/images/theme/thumbnail/2x/dashingcode-front-cover-master-2x.jpg deleted file mode 100644 index 1b118667d..000000000 Binary files a/static/images/theme/thumbnail/2x/dashingcode-front-cover-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/datocms-gatsby-portfolio-2x.jpg b/static/images/theme/thumbnail/2x/datocms-gatsby-portfolio-2x.jpg new file mode 100644 index 000000000..a458548dc Binary files /dev/null and b/static/images/theme/thumbnail/2x/datocms-gatsby-portfolio-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/datocms-gatsby-portfolio-master-2x.jpg b/static/images/theme/thumbnail/2x/datocms-gatsby-portfolio-master-2x.jpg deleted file mode 100644 index 800abbcf2..000000000 Binary files a/static/images/theme/thumbnail/2x/datocms-gatsby-portfolio-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/daviddarnes-alembic-2x.jpg b/static/images/theme/thumbnail/2x/daviddarnes-alembic-2x.jpg new file mode 100644 index 000000000..ddd158223 Binary files /dev/null and b/static/images/theme/thumbnail/2x/daviddarnes-alembic-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/daviddarnes-alembic-master-2x.jpg b/static/images/theme/thumbnail/2x/daviddarnes-alembic-master-2x.jpg deleted file mode 100644 index e15b7c37a..000000000 Binary files a/static/images/theme/thumbnail/2x/daviddarnes-alembic-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/daviddarnes-garth-2x.jpg b/static/images/theme/thumbnail/2x/daviddarnes-garth-2x.jpg new file mode 100644 index 000000000..a2e189689 Binary files /dev/null and b/static/images/theme/thumbnail/2x/daviddarnes-garth-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/daviddarnes-garth-master-2x.jpg b/static/images/theme/thumbnail/2x/daviddarnes-garth-master-2x.jpg deleted file mode 100644 index f555f7580..000000000 Binary files a/static/images/theme/thumbnail/2x/daviddarnes-garth-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/davidhampgonsalves-hugo-black-and-light-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/davidhampgonsalves-hugo-black-and-light-theme-master-2x.jpg deleted file mode 100644 index a8adcd63e..000000000 Binary files a/static/images/theme/thumbnail/2x/davidhampgonsalves-hugo-black-and-light-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/davshoward-gatsby-starter-honey-2x.jpg b/static/images/theme/thumbnail/2x/davshoward-gatsby-starter-honey-2x.jpg new file mode 100644 index 000000000..7d5a2720c Binary files /dev/null and b/static/images/theme/thumbnail/2x/davshoward-gatsby-starter-honey-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/davshoward-gatsby-starter-honey-master-2x.jpg b/static/images/theme/thumbnail/2x/davshoward-gatsby-starter-honey-master-2x.jpg deleted file mode 100644 index 8ace7fc9b..000000000 Binary files a/static/images/theme/thumbnail/2x/davshoward-gatsby-starter-honey-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/dbtek-dbyll-2x.jpg b/static/images/theme/thumbnail/2x/dbtek-dbyll-2x.jpg new file mode 100644 index 000000000..773c10df3 Binary files /dev/null and b/static/images/theme/thumbnail/2x/dbtek-dbyll-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/dbtek-dbyll-master-2x.jpg b/static/images/theme/thumbnail/2x/dbtek-dbyll-master-2x.jpg deleted file mode 100644 index af151ec83..000000000 Binary files a/static/images/theme/thumbnail/2x/dbtek-dbyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/dbtek-paper-2x.jpg b/static/images/theme/thumbnail/2x/dbtek-paper-2x.jpg new file mode 100644 index 000000000..635ff0606 Binary files /dev/null and b/static/images/theme/thumbnail/2x/dbtek-paper-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/dbtek-paper-master-2x.jpg b/static/images/theme/thumbnail/2x/dbtek-paper-master-2x.jpg deleted file mode 100644 index b106a36f6..000000000 Binary files a/static/images/theme/thumbnail/2x/dbtek-paper-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ddbullfrog-resumecard-2x.jpg b/static/images/theme/thumbnail/2x/ddbullfrog-resumecard-2x.jpg new file mode 100644 index 000000000..6b041c3fd Binary files /dev/null and b/static/images/theme/thumbnail/2x/ddbullfrog-resumecard-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ddbullfrog-resumecard-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/ddbullfrog-resumecard-gh-pages-2x.jpg deleted file mode 100644 index 5aa2454fa..000000000 Binary files a/static/images/theme/thumbnail/2x/ddbullfrog-resumecard-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/de-souza-hugo-flex-2x.jpg b/static/images/theme/thumbnail/2x/de-souza-hugo-flex-2x.jpg new file mode 100644 index 000000000..3125167a6 Binary files /dev/null and b/static/images/theme/thumbnail/2x/de-souza-hugo-flex-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/de-souza-hugo-flex-master-2x.jpg b/static/images/theme/thumbnail/2x/de-souza-hugo-flex-master-2x.jpg deleted file mode 100644 index 35d296899..000000000 Binary files a/static/images/theme/thumbnail/2x/de-souza-hugo-flex-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/deamme-gatsby-starter-prismic-resume-2x.jpg b/static/images/theme/thumbnail/2x/deamme-gatsby-starter-prismic-resume-2x.jpg new file mode 100644 index 000000000..7c7074bc1 Binary files /dev/null and b/static/images/theme/thumbnail/2x/deamme-gatsby-starter-prismic-resume-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/deamme-gatsby-starter-prismic-resume-master-2x.jpg b/static/images/theme/thumbnail/2x/deamme-gatsby-starter-prismic-resume-master-2x.jpg deleted file mode 100644 index e288a184f..000000000 Binary files a/static/images/theme/thumbnail/2x/deamme-gatsby-starter-prismic-resume-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/deepidea-web-presentation-2x.jpg b/static/images/theme/thumbnail/2x/deepidea-web-presentation-2x.jpg new file mode 100644 index 000000000..a0f931009 Binary files /dev/null and b/static/images/theme/thumbnail/2x/deepidea-web-presentation-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/deepidea-web-presentation-master-2x.jpg b/static/images/theme/thumbnail/2x/deepidea-web-presentation-master-2x.jpg deleted file mode 100644 index 8f22e7b9a..000000000 Binary files a/static/images/theme/thumbnail/2x/deepidea-web-presentation-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/denjones-hexo-theme-chan-2x.jpg b/static/images/theme/thumbnail/2x/denjones-hexo-theme-chan-2x.jpg new file mode 100644 index 000000000..e38a12497 Binary files /dev/null and b/static/images/theme/thumbnail/2x/denjones-hexo-theme-chan-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/denjones-hexo-theme-chan-master-2x.jpg b/static/images/theme/thumbnail/2x/denjones-hexo-theme-chan-master-2x.jpg deleted file mode 100644 index 0513bb098..000000000 Binary files a/static/images/theme/thumbnail/2x/denjones-hexo-theme-chan-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/denningk-gatsby-starter-typescript-jest-2x.jpg b/static/images/theme/thumbnail/2x/denningk-gatsby-starter-typescript-jest-2x.jpg new file mode 100644 index 000000000..27d72393b Binary files /dev/null and b/static/images/theme/thumbnail/2x/denningk-gatsby-starter-typescript-jest-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/denningk-gatsby-starter-typescript-jest-master-2x.jpg b/static/images/theme/thumbnail/2x/denningk-gatsby-starter-typescript-jest-master-2x.jpg deleted file mode 100644 index bfe41c95a..000000000 Binary files a/static/images/theme/thumbnail/2x/denningk-gatsby-starter-typescript-jest-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/devcows-hugo-universal-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/devcows-hugo-universal-theme-master-2x.jpg deleted file mode 100644 index e09f93875..000000000 Binary files a/static/images/theme/thumbnail/2x/devcows-hugo-universal-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/devlocker-breakfast-2x.jpg b/static/images/theme/thumbnail/2x/devlocker-breakfast-2x.jpg new file mode 100644 index 000000000..22ec327b4 Binary files /dev/null and b/static/images/theme/thumbnail/2x/devlocker-breakfast-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/devlocker-breakfast-master-2x.jpg b/static/images/theme/thumbnail/2x/devlocker-breakfast-master-2x.jpg deleted file mode 100644 index 772e0597d..000000000 Binary files a/static/images/theme/thumbnail/2x/devlocker-breakfast-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/dfcommunity-hexo-web-nary-2x.jpg b/static/images/theme/thumbnail/2x/dfcommunity-hexo-web-nary-2x.jpg new file mode 100644 index 000000000..bf4d08169 Binary files /dev/null and b/static/images/theme/thumbnail/2x/dfcommunity-hexo-web-nary-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/dfcommunity-hexo-web-nary-master-2x.jpg b/static/images/theme/thumbnail/2x/dfcommunity-hexo-web-nary-master-2x.jpg deleted file mode 100644 index b8e26c5b9..000000000 Binary files a/static/images/theme/thumbnail/2x/dfcommunity-hexo-web-nary-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/dgraph-io-hugo-dgraph-theme-2x.jpg b/static/images/theme/thumbnail/2x/dgraph-io-hugo-dgraph-theme-2x.jpg new file mode 100644 index 000000000..8f6e099bd Binary files /dev/null and b/static/images/theme/thumbnail/2x/dgraph-io-hugo-dgraph-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/dgraph-io-hugo-dgraph-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/dgraph-io-hugo-dgraph-theme-master-2x.jpg deleted file mode 100644 index 238dbebf1..000000000 Binary files a/static/images/theme/thumbnail/2x/dgraph-io-hugo-dgraph-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/dieghernan-chulapa-2x.jpg b/static/images/theme/thumbnail/2x/dieghernan-chulapa-2x.jpg new file mode 100644 index 000000000..19688d4eb Binary files /dev/null and b/static/images/theme/thumbnail/2x/dieghernan-chulapa-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/diezcami-arctic-fox-theme-2x.jpg b/static/images/theme/thumbnail/2x/diezcami-arctic-fox-theme-2x.jpg new file mode 100644 index 000000000..d361ee608 Binary files /dev/null and b/static/images/theme/thumbnail/2x/diezcami-arctic-fox-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/diezcami-arctic-fox-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/diezcami-arctic-fox-theme-master-2x.jpg deleted file mode 100644 index d5fc94966..000000000 Binary files a/static/images/theme/thumbnail/2x/diezcami-arctic-fox-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/diezcami-polar-bear-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/diezcami-polar-bear-theme-master-2x.jpg deleted file mode 100644 index ac5421104..000000000 Binary files a/static/images/theme/thumbnail/2x/diezcami-polar-bear-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/digitalcraftsman-hugo-artists-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/digitalcraftsman-hugo-artists-theme-master-2x.jpg deleted file mode 100644 index 1421181a1..000000000 Binary files a/static/images/theme/thumbnail/2x/digitalcraftsman-hugo-artists-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/digitalcraftsman-hugo-cactus-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/digitalcraftsman-hugo-cactus-theme-master-2x.jpg deleted file mode 100644 index 1421181a1..000000000 Binary files a/static/images/theme/thumbnail/2x/digitalcraftsman-hugo-cactus-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/digitalcraftsman-hugo-creative-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/digitalcraftsman-hugo-creative-theme-master-2x.jpg deleted file mode 100644 index 1421181a1..000000000 Binary files a/static/images/theme/thumbnail/2x/digitalcraftsman-hugo-creative-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/digitalcraftsman-hugo-freelancer-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/digitalcraftsman-hugo-freelancer-theme-master-2x.jpg deleted file mode 100644 index 1421181a1..000000000 Binary files a/static/images/theme/thumbnail/2x/digitalcraftsman-hugo-freelancer-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/digitalcraftsman-hugo-hikari-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/digitalcraftsman-hugo-hikari-theme-master-2x.jpg deleted file mode 100644 index 1421181a1..000000000 Binary files a/static/images/theme/thumbnail/2x/digitalcraftsman-hugo-hikari-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/digitalcraftsman-hugo-icarus-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/digitalcraftsman-hugo-icarus-theme-master-2x.jpg deleted file mode 100644 index d54422111..000000000 Binary files a/static/images/theme/thumbnail/2x/digitalcraftsman-hugo-icarus-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/digitalcraftsman-hugo-type-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/digitalcraftsman-hugo-type-theme-master-2x.jpg deleted file mode 100644 index 1421181a1..000000000 Binary files a/static/images/theme/thumbnail/2x/digitalcraftsman-hugo-type-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/digitalmindch-gridster-jekyll-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/digitalmindch-gridster-jekyll-theme-master-2x.jpg deleted file mode 100644 index 0787bca8c..000000000 Binary files a/static/images/theme/thumbnail/2x/digitalmindch-gridster-jekyll-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/dikiaap-mangan-2x.jpg b/static/images/theme/thumbnail/2x/dikiaap-mangan-2x.jpg new file mode 100644 index 000000000..a39f46ba5 Binary files /dev/null and b/static/images/theme/thumbnail/2x/dikiaap-mangan-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/dikiaap-mangan-master-2x.jpg b/static/images/theme/thumbnail/2x/dikiaap-mangan-master-2x.jpg deleted file mode 100644 index faf8762ca..000000000 Binary files a/static/images/theme/thumbnail/2x/dikiaap-mangan-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/dirkfabisch-mediator-2x.jpg b/static/images/theme/thumbnail/2x/dirkfabisch-mediator-2x.jpg new file mode 100644 index 000000000..d06f08db7 Binary files /dev/null and b/static/images/theme/thumbnail/2x/dirkfabisch-mediator-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/dirkfabisch-mediator-master-2x.jpg b/static/images/theme/thumbnail/2x/dirkfabisch-mediator-master-2x.jpg deleted file mode 100644 index cb059ffa9..000000000 Binary files a/static/images/theme/thumbnail/2x/dirkfabisch-mediator-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/dirtyf-hylia-forestry-2x.jpg b/static/images/theme/thumbnail/2x/dirtyf-hylia-forestry-2x.jpg new file mode 100644 index 000000000..39a635e34 Binary files /dev/null and b/static/images/theme/thumbnail/2x/dirtyf-hylia-forestry-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/dirtyf-hylia-forestry-master-2x.jpg b/static/images/theme/thumbnail/2x/dirtyf-hylia-forestry-master-2x.jpg deleted file mode 100644 index e42c28767..000000000 Binary files a/static/images/theme/thumbnail/2x/dirtyf-hylia-forestry-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/diwao-hestia-pure-master-2x.jpg b/static/images/theme/thumbnail/2x/diwao-hestia-pure-master-2x.jpg deleted file mode 100644 index 0af92bc10..000000000 Binary files a/static/images/theme/thumbnail/2x/diwao-hestia-pure-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/dldx-hpstr-hugo-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/dldx-hpstr-hugo-theme-master-2x.jpg deleted file mode 100644 index 029b9c6ca..000000000 Binary files a/static/images/theme/thumbnail/2x/dldx-hpstr-hugo-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/dominicabela-gatsby-starter-material-ui-2x.jpg b/static/images/theme/thumbnail/2x/dominicabela-gatsby-starter-material-ui-2x.jpg new file mode 100644 index 000000000..2a317e1c7 Binary files /dev/null and b/static/images/theme/thumbnail/2x/dominicabela-gatsby-starter-material-ui-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/dominicabela-gatsby-starter-material-ui-master-2x.jpg b/static/images/theme/thumbnail/2x/dominicabela-gatsby-starter-material-ui-master-2x.jpg deleted file mode 100644 index a226ac553..000000000 Binary files a/static/images/theme/thumbnail/2x/dominicabela-gatsby-starter-material-ui-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/dongchuan-yummy-jekyll-2x.jpg b/static/images/theme/thumbnail/2x/dongchuan-yummy-jekyll-2x.jpg new file mode 100644 index 000000000..4f89b3fcd Binary files /dev/null and b/static/images/theme/thumbnail/2x/dongchuan-yummy-jekyll-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/dongchuan-yummy-jekyll-master-2x.jpg b/static/images/theme/thumbnail/2x/dongchuan-yummy-jekyll-master-2x.jpg deleted file mode 100644 index 7c11953ec..000000000 Binary files a/static/images/theme/thumbnail/2x/dongchuan-yummy-jekyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/dplesca-purehugo-2x.jpg b/static/images/theme/thumbnail/2x/dplesca-purehugo-2x.jpg new file mode 100644 index 000000000..0f2dd70cd Binary files /dev/null and b/static/images/theme/thumbnail/2x/dplesca-purehugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/dplesca-purehugo-master-2x.jpg b/static/images/theme/thumbnail/2x/dplesca-purehugo-master-2x.jpg deleted file mode 100644 index 2a46d89d8..000000000 Binary files a/static/images/theme/thumbnail/2x/dplesca-purehugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/drassil-git-wiki-2x.jpg b/static/images/theme/thumbnail/2x/drassil-git-wiki-2x.jpg new file mode 100644 index 000000000..56b95f83d Binary files /dev/null and b/static/images/theme/thumbnail/2x/drassil-git-wiki-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/drassil-git-wiki-master-2x.jpg b/static/images/theme/thumbnail/2x/drassil-git-wiki-master-2x.jpg deleted file mode 100644 index 53eaa6578..000000000 Binary files a/static/images/theme/thumbnail/2x/drassil-git-wiki-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/drvy-minimal-block-2x.jpg b/static/images/theme/thumbnail/2x/drvy-minimal-block-2x.jpg new file mode 100644 index 000000000..2650f5c8e Binary files /dev/null and b/static/images/theme/thumbnail/2x/drvy-minimal-block-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/drvy-minimal-block-master-2x.jpg b/static/images/theme/thumbnail/2x/drvy-minimal-block-master-2x.jpg deleted file mode 100644 index ac7021be1..000000000 Binary files a/static/images/theme/thumbnail/2x/drvy-minimal-block-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/dschau-gatsby-blog-starter-kit-2x.jpg b/static/images/theme/thumbnail/2x/dschau-gatsby-blog-starter-kit-2x.jpg new file mode 100644 index 000000000..26e2dcc27 Binary files /dev/null and b/static/images/theme/thumbnail/2x/dschau-gatsby-blog-starter-kit-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/dschau-gatsby-blog-starter-kit-master-2x.jpg b/static/images/theme/thumbnail/2x/dschau-gatsby-blog-starter-kit-master-2x.jpg deleted file mode 100644 index f22d7bbc5..000000000 Binary files a/static/images/theme/thumbnail/2x/dschau-gatsby-blog-starter-kit-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/durianstack-gatsby-tailwindcss-sass-starter-2x.jpg b/static/images/theme/thumbnail/2x/durianstack-gatsby-tailwindcss-sass-starter-2x.jpg new file mode 100644 index 000000000..7359705c7 Binary files /dev/null and b/static/images/theme/thumbnail/2x/durianstack-gatsby-tailwindcss-sass-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/durianstack-gatsby-tailwindcss-sass-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/durianstack-gatsby-tailwindcss-sass-starter-master-2x.jpg deleted file mode 100644 index fa288265c..000000000 Binary files a/static/images/theme/thumbnail/2x/durianstack-gatsby-tailwindcss-sass-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/dwyfrequency-gatsby-ghub-2x.jpg b/static/images/theme/thumbnail/2x/dwyfrequency-gatsby-ghub-2x.jpg new file mode 100644 index 000000000..87a9ee4b8 Binary files /dev/null and b/static/images/theme/thumbnail/2x/dwyfrequency-gatsby-ghub-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/dwyfrequency-gatsby-ghub-master-2x.jpg b/static/images/theme/thumbnail/2x/dwyfrequency-gatsby-ghub-master-2x.jpg deleted file mode 100644 index 656b94402..000000000 Binary files a/static/images/theme/thumbnail/2x/dwyfrequency-gatsby-ghub-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/dyndna-lanyon-plus-2x.jpg b/static/images/theme/thumbnail/2x/dyndna-lanyon-plus-2x.jpg new file mode 100644 index 000000000..d11922d47 Binary files /dev/null and b/static/images/theme/thumbnail/2x/dyndna-lanyon-plus-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/dyndna-lanyon-plus-master-2x.jpg b/static/images/theme/thumbnail/2x/dyndna-lanyon-plus-master-2x.jpg deleted file mode 100644 index 912a1483b..000000000 Binary files a/static/images/theme/thumbnail/2x/dyndna-lanyon-plus-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/dyutibarma-monochrome-2x.jpg b/static/images/theme/thumbnail/2x/dyutibarma-monochrome-2x.jpg new file mode 100644 index 000000000..ab65e2b21 Binary files /dev/null and b/static/images/theme/thumbnail/2x/dyutibarma-monochrome-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/dyutibarma-monochrome-master-2x.jpg b/static/images/theme/thumbnail/2x/dyutibarma-monochrome-master-2x.jpg deleted file mode 100644 index 18f95f5ba..000000000 Binary files a/static/images/theme/thumbnail/2x/dyutibarma-monochrome-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/dzello-reveal-hugo-2x.jpg b/static/images/theme/thumbnail/2x/dzello-reveal-hugo-2x.jpg new file mode 100644 index 000000000..a06ad5464 Binary files /dev/null and b/static/images/theme/thumbnail/2x/dzello-reveal-hugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/dzello-reveal-hugo-master-2x.jpg b/static/images/theme/thumbnail/2x/dzello-reveal-hugo-master-2x.jpg deleted file mode 100644 index 0eabfdce6..000000000 Binary files a/static/images/theme/thumbnail/2x/dzello-reveal-hugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/edavidaja-docter-2x.jpg b/static/images/theme/thumbnail/2x/edavidaja-docter-2x.jpg new file mode 100644 index 000000000..a7a9f912c Binary files /dev/null and b/static/images/theme/thumbnail/2x/edavidaja-docter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/edavidaja-docter-master-2x.jpg b/static/images/theme/thumbnail/2x/edavidaja-docter-master-2x.jpg deleted file mode 100644 index 1f8b3f401..000000000 Binary files a/static/images/theme/thumbnail/2x/edavidaja-docter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/eddiewebb-hugo-resume-master-2x.jpg b/static/images/theme/thumbnail/2x/eddiewebb-hugo-resume-master-2x.jpg deleted file mode 100644 index b82d0aa35..000000000 Binary files a/static/images/theme/thumbnail/2x/eddiewebb-hugo-resume-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/eliasson-liquorice-master-2x.jpg b/static/images/theme/thumbnail/2x/eliasson-liquorice-master-2x.jpg deleted file mode 100644 index b579c5e87..000000000 Binary files a/static/images/theme/thumbnail/2x/eliasson-liquorice-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/eliottvincent-bay-2x.jpg b/static/images/theme/thumbnail/2x/eliottvincent-bay-2x.jpg new file mode 100644 index 000000000..2bac17c53 Binary files /dev/null and b/static/images/theme/thumbnail/2x/eliottvincent-bay-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/eliottvincent-bay-master-2x.jpg b/static/images/theme/thumbnail/2x/eliottvincent-bay-master-2x.jpg deleted file mode 100644 index d08a13300..000000000 Binary files a/static/images/theme/thumbnail/2x/eliottvincent-bay-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ellekasai-resumecards-2x.jpg b/static/images/theme/thumbnail/2x/ellekasai-resumecards-2x.jpg new file mode 100644 index 000000000..2497d620a Binary files /dev/null and b/static/images/theme/thumbnail/2x/ellekasai-resumecards-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ellekasai-resumecards-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/ellekasai-resumecards-gh-pages-2x.jpg deleted file mode 100644 index 8bf86b964..000000000 Binary files a/static/images/theme/thumbnail/2x/ellekasai-resumecards-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ellekasai-shiori-2x.jpg b/static/images/theme/thumbnail/2x/ellekasai-shiori-2x.jpg new file mode 100644 index 000000000..244ba9eef Binary files /dev/null and b/static/images/theme/thumbnail/2x/ellekasai-shiori-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ellekasai-shiori-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/ellekasai-shiori-gh-pages-2x.jpg deleted file mode 100644 index 76044d8b9..000000000 Binary files a/static/images/theme/thumbnail/2x/ellekasai-shiori-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/elotroalex-ed-2x.jpg b/static/images/theme/thumbnail/2x/elotroalex-ed-2x.jpg new file mode 100644 index 000000000..cd138659f Binary files /dev/null and b/static/images/theme/thumbnail/2x/elotroalex-ed-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/elotroalex-ed-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/elotroalex-ed-gh-pages-2x.jpg deleted file mode 100644 index 0267f41c8..000000000 Binary files a/static/images/theme/thumbnail/2x/elotroalex-ed-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/email2vimalraj-gatsby-starter-tech-blog-2x.jpg b/static/images/theme/thumbnail/2x/email2vimalraj-gatsby-starter-tech-blog-2x.jpg new file mode 100644 index 000000000..bbf8b2221 Binary files /dev/null and b/static/images/theme/thumbnail/2x/email2vimalraj-gatsby-starter-tech-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/email2vimalraj-gatsby-starter-tech-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/email2vimalraj-gatsby-starter-tech-blog-master-2x.jpg deleted file mode 100644 index acd7333a8..000000000 Binary files a/static/images/theme/thumbnail/2x/email2vimalraj-gatsby-starter-tech-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/emasuriano-gatsby-starter-event-calendar-2x.jpg b/static/images/theme/thumbnail/2x/emasuriano-gatsby-starter-event-calendar-2x.jpg new file mode 100644 index 000000000..3ce94e70c Binary files /dev/null and b/static/images/theme/thumbnail/2x/emasuriano-gatsby-starter-event-calendar-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/emasuriano-gatsby-starter-event-calendar-master-2x.jpg b/static/images/theme/thumbnail/2x/emasuriano-gatsby-starter-event-calendar-master-2x.jpg deleted file mode 100644 index ab875c9f0..000000000 Binary files a/static/images/theme/thumbnail/2x/emasuriano-gatsby-starter-event-calendar-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/emasuriano-gatsby-starter-mate-2x.jpg b/static/images/theme/thumbnail/2x/emasuriano-gatsby-starter-mate-2x.jpg new file mode 100644 index 000000000..2001b96bf Binary files /dev/null and b/static/images/theme/thumbnail/2x/emasuriano-gatsby-starter-mate-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/emasuriano-gatsby-starter-mate-master-2x.jpg b/static/images/theme/thumbnail/2x/emasuriano-gatsby-starter-mate-master-2x.jpg deleted file mode 100644 index 8af6a1147..000000000 Binary files a/static/images/theme/thumbnail/2x/emasuriano-gatsby-starter-mate-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/emielh-hallo-hugo-master-2x.jpg b/static/images/theme/thumbnail/2x/emielh-hallo-hugo-master-2x.jpg deleted file mode 100644 index ba18318a5..000000000 Binary files a/static/images/theme/thumbnail/2x/emielh-hallo-hugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/emielh-stip-hugo-master-2x.jpg b/static/images/theme/thumbnail/2x/emielh-stip-hugo-master-2x.jpg deleted file mode 100644 index 5fcffed8e..000000000 Binary files a/static/images/theme/thumbnail/2x/emielh-stip-hugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/emielh-tale-hugo-master-2x.jpg b/static/images/theme/thumbnail/2x/emielh-tale-hugo-master-2x.jpg deleted file mode 100644 index 51d3bedda..000000000 Binary files a/static/images/theme/thumbnail/2x/emielh-tale-hugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/emilbaehr-automatic-app-landing-page-2x.jpg b/static/images/theme/thumbnail/2x/emilbaehr-automatic-app-landing-page-2x.jpg new file mode 100644 index 000000000..0b9ae8694 Binary files /dev/null and b/static/images/theme/thumbnail/2x/emilbaehr-automatic-app-landing-page-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/emilbaehr-automatic-app-landing-page-master-2x.jpg b/static/images/theme/thumbnail/2x/emilbaehr-automatic-app-landing-page-master-2x.jpg deleted file mode 100644 index a0056601c..000000000 Binary files a/static/images/theme/thumbnail/2x/emilbaehr-automatic-app-landing-page-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/endymion1818-gatsby-starter-carraway-2x.jpg b/static/images/theme/thumbnail/2x/endymion1818-gatsby-starter-carraway-2x.jpg new file mode 100644 index 000000000..2068f27cd Binary files /dev/null and b/static/images/theme/thumbnail/2x/endymion1818-gatsby-starter-carraway-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/endymion1818-gatsby-starter-carraway-master-2x.jpg b/static/images/theme/thumbnail/2x/endymion1818-gatsby-starter-carraway-master-2x.jpg deleted file mode 100644 index 761e6e4c3..000000000 Binary files a/static/images/theme/thumbnail/2x/endymion1818-gatsby-starter-carraway-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/epilocal-newsliner-gatsby-2x.jpg b/static/images/theme/thumbnail/2x/epilocal-newsliner-gatsby-2x.jpg new file mode 100644 index 000000000..c6b336e2d Binary files /dev/null and b/static/images/theme/thumbnail/2x/epilocal-newsliner-gatsby-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/erayaydin-jekyll-bulma-2x.jpg b/static/images/theme/thumbnail/2x/erayaydin-jekyll-bulma-2x.jpg new file mode 100644 index 000000000..a26fc329b Binary files /dev/null and b/static/images/theme/thumbnail/2x/erayaydin-jekyll-bulma-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/erayaydin-jekyll-bulma-master-2x.jpg b/static/images/theme/thumbnail/2x/erayaydin-jekyll-bulma-master-2x.jpg deleted file mode 100644 index 8aaf49c4a..000000000 Binary files a/static/images/theme/thumbnail/2x/erayaydin-jekyll-bulma-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/esappear-hexo-theme-clover-master-2x.jpg b/static/images/theme/thumbnail/2x/esappear-hexo-theme-clover-master-2x.jpg deleted file mode 100644 index 3fe20eb1c..000000000 Binary files a/static/images/theme/thumbnail/2x/esappear-hexo-theme-clover-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/escapemanuele-gatsby-contentful-blog-portfolio-2x.jpg b/static/images/theme/thumbnail/2x/escapemanuele-gatsby-contentful-blog-portfolio-2x.jpg new file mode 100644 index 000000000..cd501b9b8 Binary files /dev/null and b/static/images/theme/thumbnail/2x/escapemanuele-gatsby-contentful-blog-portfolio-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/escapemanuele-gatsby-contentful-blog-portfolio-master-2x.jpg b/static/images/theme/thumbnail/2x/escapemanuele-gatsby-contentful-blog-portfolio-master-2x.jpg deleted file mode 100644 index 553693ce7..000000000 Binary files a/static/images/theme/thumbnail/2x/escapemanuele-gatsby-contentful-blog-portfolio-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/eshlox-simplicity-master-2x.jpg b/static/images/theme/thumbnail/2x/eshlox-simplicity-master-2x.jpg deleted file mode 100644 index cd4a1c646..000000000 Binary files a/static/images/theme/thumbnail/2x/eshlox-simplicity-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/excentris-compass-2x.jpg b/static/images/theme/thumbnail/2x/excentris-compass-2x.jpg new file mode 100644 index 000000000..87b409f0d Binary files /dev/null and b/static/images/theme/thumbnail/2x/excentris-compass-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/excentris-compass-master-2x.jpg b/static/images/theme/thumbnail/2x/excentris-compass-master-2x.jpg deleted file mode 100644 index 9adcca94e..000000000 Binary files a/static/images/theme/thumbnail/2x/excentris-compass-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/exchangerate-api-rlstevenson-jekyll-theme-2x.jpg b/static/images/theme/thumbnail/2x/exchangerate-api-rlstevenson-jekyll-theme-2x.jpg new file mode 100644 index 000000000..5d0c23434 Binary files /dev/null and b/static/images/theme/thumbnail/2x/exchangerate-api-rlstevenson-jekyll-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/exchangerate-api-rlstevenson-jekyll-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/exchangerate-api-rlstevenson-jekyll-theme-master-2x.jpg deleted file mode 100644 index c778f1fb0..000000000 Binary files a/static/images/theme/thumbnail/2x/exchangerate-api-rlstevenson-jekyll-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/exchangerate-api-strange-case-master-2x.jpg b/static/images/theme/thumbnail/2x/exchangerate-api-strange-case-master-2x.jpg deleted file mode 100644 index 66247e391..000000000 Binary files a/static/images/theme/thumbnail/2x/exchangerate-api-strange-case-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ezrasavard-ezora-jekyll-theme-2x.jpg b/static/images/theme/thumbnail/2x/ezrasavard-ezora-jekyll-theme-2x.jpg new file mode 100644 index 000000000..d0178cb65 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ezrasavard-ezora-jekyll-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ezrasavard-ezora-jekyll-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/ezrasavard-ezora-jekyll-theme-master-2x.jpg deleted file mode 100644 index 8abc84765..000000000 Binary files a/static/images/theme/thumbnail/2x/ezrasavard-ezora-jekyll-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/fabe-gatsby-starter-deck-2x.jpg b/static/images/theme/thumbnail/2x/fabe-gatsby-starter-deck-2x.jpg new file mode 100644 index 000000000..c0e4dd2bb Binary files /dev/null and b/static/images/theme/thumbnail/2x/fabe-gatsby-starter-deck-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/fabe-gatsby-starter-deck-master-2x.jpg b/static/images/theme/thumbnail/2x/fabe-gatsby-starter-deck-master-2x.jpg deleted file mode 100644 index 4b101fc5d..000000000 Binary files a/static/images/theme/thumbnail/2x/fabe-gatsby-starter-deck-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/fabe-gatsby-universal-2x.jpg b/static/images/theme/thumbnail/2x/fabe-gatsby-universal-2x.jpg new file mode 100644 index 000000000..ac17026d6 Binary files /dev/null and b/static/images/theme/thumbnail/2x/fabe-gatsby-universal-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/fabe-gatsby-universal-master-2x.jpg b/static/images/theme/thumbnail/2x/fabe-gatsby-universal-master-2x.jpg deleted file mode 100644 index ccc9f0235..000000000 Binary files a/static/images/theme/thumbnail/2x/fabe-gatsby-universal-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/fabien0102-gatsby-starter-2x.jpg b/static/images/theme/thumbnail/2x/fabien0102-gatsby-starter-2x.jpg new file mode 100644 index 000000000..cf8c786f7 Binary files /dev/null and b/static/images/theme/thumbnail/2x/fabien0102-gatsby-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/fabien0102-gatsby-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/fabien0102-gatsby-starter-master-2x.jpg deleted file mode 100644 index 3743d16d5..000000000 Binary files a/static/images/theme/thumbnail/2x/fabien0102-gatsby-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/fareez-ahamed-millikyl-2x.jpg b/static/images/theme/thumbnail/2x/fareez-ahamed-millikyl-2x.jpg new file mode 100644 index 000000000..c5cd75195 Binary files /dev/null and b/static/images/theme/thumbnail/2x/fareez-ahamed-millikyl-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/fareez-ahamed-millikyl-master-2x.jpg b/static/images/theme/thumbnail/2x/fareez-ahamed-millikyl-master-2x.jpg deleted file mode 100644 index 55124ef71..000000000 Binary files a/static/images/theme/thumbnail/2x/fareez-ahamed-millikyl-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/fastbyte01-keepit-2x.jpg b/static/images/theme/thumbnail/2x/fastbyte01-keepit-2x.jpg new file mode 100644 index 000000000..b47a8b47d Binary files /dev/null and b/static/images/theme/thumbnail/2x/fastbyte01-keepit-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/fastbyte01-keepit-master-2x.jpg b/static/images/theme/thumbnail/2x/fastbyte01-keepit-master-2x.jpg deleted file mode 100644 index 2827644f4..000000000 Binary files a/static/images/theme/thumbnail/2x/fastbyte01-keepit-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/felicianotech-hugo-theme-lean-launch-page-master-2x.jpg b/static/images/theme/thumbnail/2x/felicianotech-hugo-theme-lean-launch-page-master-2x.jpg deleted file mode 100644 index a211c85da..000000000 Binary files a/static/images/theme/thumbnail/2x/felicianotech-hugo-theme-lean-launch-page-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ferrolho-jekyll-theme-libretto-2x.jpg b/static/images/theme/thumbnail/2x/ferrolho-jekyll-theme-libretto-2x.jpg new file mode 100644 index 000000000..2b18de1f1 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ferrolho-jekyll-theme-libretto-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ferrolho-jekyll-theme-libretto-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/ferrolho-jekyll-theme-libretto-gh-pages-2x.jpg deleted file mode 100644 index 0ab05f8ef..000000000 Binary files a/static/images/theme/thumbnail/2x/ferrolho-jekyll-theme-libretto-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/fhavrlent-gatsby-contentful-typescript-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/fhavrlent-gatsby-contentful-typescript-starter-master-2x.jpg deleted file mode 100644 index 78d480574..000000000 Binary files a/static/images/theme/thumbnail/2x/fhavrlent-gatsby-contentful-typescript-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/fiatjaf-classless-hugo-master-2x.jpg b/static/images/theme/thumbnail/2x/fiatjaf-classless-hugo-master-2x.jpg deleted file mode 100644 index 47aa44197..000000000 Binary files a/static/images/theme/thumbnail/2x/fiatjaf-classless-hugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-blog-1-2x.jpg b/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-blog-1-2x.jpg new file mode 100644 index 000000000..1c356cc6e Binary files /dev/null and b/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-blog-1-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-blog-2-2x.jpg b/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-blog-2-2x.jpg new file mode 100644 index 000000000..ebab3c631 Binary files /dev/null and b/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-blog-2-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-event-1-2x.jpg b/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-event-1-2x.jpg new file mode 100644 index 000000000..4c2e0d561 Binary files /dev/null and b/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-event-1-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-event-2-2x.jpg b/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-event-2-2x.jpg new file mode 100644 index 000000000..b5d24eab8 Binary files /dev/null and b/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-event-2-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-portfolio-1-2x.jpg b/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-portfolio-1-2x.jpg new file mode 100644 index 000000000..7f29f3097 Binary files /dev/null and b/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-portfolio-1-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-portfolio-2-2x.jpg b/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-portfolio-2-2x.jpg new file mode 100644 index 000000000..fe63c6ecc Binary files /dev/null and b/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-portfolio-2-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-recipe-1-2x.jpg b/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-recipe-1-2x.jpg new file mode 100644 index 000000000..2b9b2b1bc Binary files /dev/null and b/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-recipe-1-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-recipe-2-2x.jpg b/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-recipe-2-2x.jpg new file mode 100644 index 000000000..f81a83772 Binary files /dev/null and b/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-recipe-2-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-shop-1-2x.jpg b/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-shop-1-2x.jpg new file mode 100644 index 000000000..9ce12994c Binary files /dev/null and b/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-shop-1-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-shop-2-2x.jpg b/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-shop-2-2x.jpg new file mode 100644 index 000000000..a41784c5e Binary files /dev/null and b/static/images/theme/thumbnail/2x/flotiq-flotiq-gatsby-shop-2-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/fncnt-vncnt-hugo-master-2x.jpg b/static/images/theme/thumbnail/2x/fncnt-vncnt-hugo-master-2x.jpg deleted file mode 100644 index 0d9fe24c2..000000000 Binary files a/static/images/theme/thumbnail/2x/fncnt-vncnt-hugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/fongandrew-hydeout-2x.jpg b/static/images/theme/thumbnail/2x/fongandrew-hydeout-2x.jpg new file mode 100644 index 000000000..36b8d02c1 Binary files /dev/null and b/static/images/theme/thumbnail/2x/fongandrew-hydeout-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/fongandrew-hydeout-master-2x.jpg b/static/images/theme/thumbnail/2x/fongandrew-hydeout-master-2x.jpg deleted file mode 100644 index ade99093c..000000000 Binary files a/static/images/theme/thumbnail/2x/fongandrew-hydeout-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/forestryio-ubuild-jekyll-2x.jpg b/static/images/theme/thumbnail/2x/forestryio-ubuild-jekyll-2x.jpg new file mode 100644 index 000000000..18c052e5f Binary files /dev/null and b/static/images/theme/thumbnail/2x/forestryio-ubuild-jekyll-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/forestryio-ubuild-jekyll-master-2x.jpg b/static/images/theme/thumbnail/2x/forestryio-ubuild-jekyll-master-2x.jpg deleted file mode 100644 index df596ec00..000000000 Binary files a/static/images/theme/thumbnail/2x/forestryio-ubuild-jekyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/forever-jekyll-forever-jekyll-2x.jpg b/static/images/theme/thumbnail/2x/forever-jekyll-forever-jekyll-2x.jpg new file mode 100644 index 000000000..9d8217485 Binary files /dev/null and b/static/images/theme/thumbnail/2x/forever-jekyll-forever-jekyll-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/formspree-blogophonic-hugo-2x.jpg b/static/images/theme/thumbnail/2x/formspree-blogophonic-hugo-2x.jpg new file mode 100644 index 000000000..c398fa84c Binary files /dev/null and b/static/images/theme/thumbnail/2x/formspree-blogophonic-hugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/formspree-blogophonic-hugo-master-2x.jpg b/static/images/theme/thumbnail/2x/formspree-blogophonic-hugo-master-2x.jpg deleted file mode 100644 index d7684f3ed..000000000 Binary files a/static/images/theme/thumbnail/2x/formspree-blogophonic-hugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/foxandgeese-tiny-agency-2x.jpg b/static/images/theme/thumbnail/2x/foxandgeese-tiny-agency-2x.jpg new file mode 100644 index 000000000..2263542c4 Binary files /dev/null and b/static/images/theme/thumbnail/2x/foxandgeese-tiny-agency-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/foxandgeese-tiny-agency-master-2x.jpg b/static/images/theme/thumbnail/2x/foxandgeese-tiny-agency-master-2x.jpg deleted file mode 100644 index 446b6a1fd..000000000 Binary files a/static/images/theme/thumbnail/2x/foxandgeese-tiny-agency-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/frankievalentine-gatsby-craftcms-barebones-2x.jpg b/static/images/theme/thumbnail/2x/frankievalentine-gatsby-craftcms-barebones-2x.jpg new file mode 100644 index 000000000..3c4ba8bed Binary files /dev/null and b/static/images/theme/thumbnail/2x/frankievalentine-gatsby-craftcms-barebones-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/frankievalentine-gatsby-craftcms-barebones-master-2x.jpg b/static/images/theme/thumbnail/2x/frankievalentine-gatsby-craftcms-barebones-master-2x.jpg deleted file mode 100644 index 29f8b4a73..000000000 Binary files a/static/images/theme/thumbnail/2x/frankievalentine-gatsby-craftcms-barebones-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/friedger-gatsby-starter-blockstack-2x.jpg b/static/images/theme/thumbnail/2x/friedger-gatsby-starter-blockstack-2x.jpg new file mode 100644 index 000000000..49615cc80 Binary files /dev/null and b/static/images/theme/thumbnail/2x/friedger-gatsby-starter-blockstack-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/friedger-gatsby-starter-blockstack-master-2x.jpg b/static/images/theme/thumbnail/2x/friedger-gatsby-starter-blockstack-master-2x.jpg deleted file mode 100644 index 005a16a17..000000000 Binary files a/static/images/theme/thumbnail/2x/friedger-gatsby-starter-blockstack-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/friendlyuser-vuepress-theme-cool-starter-2x.jpg b/static/images/theme/thumbnail/2x/friendlyuser-vuepress-theme-cool-starter-2x.jpg new file mode 100644 index 000000000..a5da35bab Binary files /dev/null and b/static/images/theme/thumbnail/2x/friendlyuser-vuepress-theme-cool-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/friendlyuser-vuepress-theme-cool-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/friendlyuser-vuepress-theme-cool-starter-master-2x.jpg deleted file mode 100644 index b4e99b60f..000000000 Binary files a/static/images/theme/thumbnail/2x/friendlyuser-vuepress-theme-cool-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/frjo-hugo-theme-zen-master-2x.jpg b/static/images/theme/thumbnail/2x/frjo-hugo-theme-zen-master-2x.jpg deleted file mode 100644 index 9b10a59a3..000000000 Binary files a/static/images/theme/thumbnail/2x/frjo-hugo-theme-zen-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/frnki-gatsby-typescript-starter-blog-2x.jpg b/static/images/theme/thumbnail/2x/frnki-gatsby-typescript-starter-blog-2x.jpg new file mode 100644 index 000000000..2e7a52958 Binary files /dev/null and b/static/images/theme/thumbnail/2x/frnki-gatsby-typescript-starter-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/frnki-gatsby-typescript-starter-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/frnki-gatsby-typescript-starter-blog-master-2x.jpg deleted file mode 100644 index 8514d12eb..000000000 Binary files a/static/images/theme/thumbnail/2x/frnki-gatsby-typescript-starter-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/fromendworld-loffer-2x.jpg b/static/images/theme/thumbnail/2x/fromendworld-loffer-2x.jpg new file mode 100644 index 000000000..86862c45e Binary files /dev/null and b/static/images/theme/thumbnail/2x/fromendworld-loffer-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/fromendworld-loffer-master-2x.jpg b/static/images/theme/thumbnail/2x/fromendworld-loffer-master-2x.jpg deleted file mode 100644 index 0dd8c93ab..000000000 Binary files a/static/images/theme/thumbnail/2x/fromendworld-loffer-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/fullit-fullit.github.io-2x.jpg b/static/images/theme/thumbnail/2x/fullit-fullit.github.io-2x.jpg new file mode 100644 index 000000000..418c94b8b Binary files /dev/null and b/static/images/theme/thumbnail/2x/fullit-fullit.github.io-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/fullit-fullit.github.io-master-2x.jpg b/static/images/theme/thumbnail/2x/fullit-fullit.github.io-master-2x.jpg deleted file mode 100644 index 1d1e500a0..000000000 Binary files a/static/images/theme/thumbnail/2x/fullit-fullit.github.io-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/funkydan2-alpha-church-master-2x.jpg b/static/images/theme/thumbnail/2x/funkydan2-alpha-church-master-2x.jpg deleted file mode 100644 index 11336e763..000000000 Binary files a/static/images/theme/thumbnail/2x/funkydan2-alpha-church-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/g1eny0ung-hugo-theme-dream-master-2x.jpg b/static/images/theme/thumbnail/2x/g1eny0ung-hugo-theme-dream-master-2x.jpg deleted file mode 100644 index 667d29aeb..000000000 Binary files a/static/images/theme/thumbnail/2x/g1eny0ung-hugo-theme-dream-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/gallenhu-hexo-theme-daily-2x.jpg b/static/images/theme/thumbnail/2x/gallenhu-hexo-theme-daily-2x.jpg new file mode 100644 index 000000000..89b6ac45e Binary files /dev/null and b/static/images/theme/thumbnail/2x/gallenhu-hexo-theme-daily-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gallenhu-hexo-theme-daily-master-2x.jpg b/static/images/theme/thumbnail/2x/gallenhu-hexo-theme-daily-master-2x.jpg deleted file mode 100644 index 4645000e9..000000000 Binary files a/static/images/theme/thumbnail/2x/gallenhu-hexo-theme-daily-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ganevru-gatsby-starter-blog-grommet-2x.jpg b/static/images/theme/thumbnail/2x/ganevru-gatsby-starter-blog-grommet-2x.jpg new file mode 100644 index 000000000..2be05fad2 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ganevru-gatsby-starter-blog-grommet-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ganevru-gatsby-starter-blog-grommet-master-2x.jpg b/static/images/theme/thumbnail/2x/ganevru-gatsby-starter-blog-grommet-master-2x.jpg deleted file mode 100644 index 06e4bbfc8..000000000 Binary files a/static/images/theme/thumbnail/2x/ganevru-gatsby-starter-blog-grommet-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/gaohaoyang-gaohaoyang.github.io-2x.jpg b/static/images/theme/thumbnail/2x/gaohaoyang-gaohaoyang.github.io-2x.jpg new file mode 100644 index 000000000..53a39176e Binary files /dev/null and b/static/images/theme/thumbnail/2x/gaohaoyang-gaohaoyang.github.io-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gaohaoyang-gaohaoyang.github.io-master-2x.jpg b/static/images/theme/thumbnail/2x/gaohaoyang-gaohaoyang.github.io-master-2x.jpg deleted file mode 100644 index 2db1e83c8..000000000 Binary files a/static/images/theme/thumbnail/2x/gaohaoyang-gaohaoyang.github.io-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/garvincasimir-hugo-h5bp-simple-master-2x.jpg b/static/images/theme/thumbnail/2x/garvincasimir-hugo-h5bp-simple-master-2x.jpg deleted file mode 100644 index c52d184b1..000000000 Binary files a/static/images/theme/thumbnail/2x/garvincasimir-hugo-h5bp-simple-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/gatsbycentral-gatsby-starter-wordpress-2x.jpg b/static/images/theme/thumbnail/2x/gatsbycentral-gatsby-starter-wordpress-2x.jpg new file mode 100644 index 000000000..978e8f698 Binary files /dev/null and b/static/images/theme/thumbnail/2x/gatsbycentral-gatsby-starter-wordpress-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gatsbycentral-gatsby-starter-wordpress-master-2x.jpg b/static/images/theme/thumbnail/2x/gatsbycentral-gatsby-starter-wordpress-master-2x.jpg deleted file mode 100644 index 553232bb1..000000000 Binary files a/static/images/theme/thumbnail/2x/gatsbycentral-gatsby-starter-wordpress-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/gatsbycentral-gatsby-v2-starter-casper-2x.jpg b/static/images/theme/thumbnail/2x/gatsbycentral-gatsby-v2-starter-casper-2x.jpg new file mode 100644 index 000000000..23f2d476d Binary files /dev/null and b/static/images/theme/thumbnail/2x/gatsbycentral-gatsby-v2-starter-casper-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gatsbycentral-gatsby-v2-starter-casper-master-2x.jpg b/static/images/theme/thumbnail/2x/gatsbycentral-gatsby-v2-starter-casper-master-2x.jpg deleted file mode 100644 index aceea39ee..000000000 Binary files a/static/images/theme/thumbnail/2x/gatsbycentral-gatsby-v2-starter-casper-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/gatsbycentral-gatsby-v2-starter-lumen-2x.jpg b/static/images/theme/thumbnail/2x/gatsbycentral-gatsby-v2-starter-lumen-2x.jpg new file mode 100644 index 000000000..d37e78f01 Binary files /dev/null and b/static/images/theme/thumbnail/2x/gatsbycentral-gatsby-v2-starter-lumen-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gatsbycentral-gatsby-v2-starter-lumen-master-2x.jpg b/static/images/theme/thumbnail/2x/gatsbycentral-gatsby-v2-starter-lumen-master-2x.jpg deleted file mode 100644 index 47a241f1f..000000000 Binary files a/static/images/theme/thumbnail/2x/gatsbycentral-gatsby-v2-starter-lumen-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/gatsbyjs-gatsby-starter-blog-2x.jpg b/static/images/theme/thumbnail/2x/gatsbyjs-gatsby-starter-blog-2x.jpg new file mode 100644 index 000000000..c1c590e47 Binary files /dev/null and b/static/images/theme/thumbnail/2x/gatsbyjs-gatsby-starter-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gatsbyjs-gatsby-starter-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/gatsbyjs-gatsby-starter-blog-master-2x.jpg deleted file mode 100644 index b77145cdc..000000000 Binary files a/static/images/theme/thumbnail/2x/gatsbyjs-gatsby-starter-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/gatsbyjs-gatsby-starter-default-2x.jpg b/static/images/theme/thumbnail/2x/gatsbyjs-gatsby-starter-default-2x.jpg new file mode 100644 index 000000000..76ccc5721 Binary files /dev/null and b/static/images/theme/thumbnail/2x/gatsbyjs-gatsby-starter-default-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gatsbyjs-gatsby-starter-default-master-2x.jpg b/static/images/theme/thumbnail/2x/gatsbyjs-gatsby-starter-default-master-2x.jpg deleted file mode 100644 index b15cf3d84..000000000 Binary files a/static/images/theme/thumbnail/2x/gatsbyjs-gatsby-starter-default-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/gchauras-much-worse-jekyll-theme-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/gchauras-much-worse-jekyll-theme-gh-pages-2x.jpg deleted file mode 100644 index ac5421104..000000000 Binary files a/static/images/theme/thumbnail/2x/gchauras-much-worse-jekyll-theme-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/gcushen-hugo-academic-2x.jpg b/static/images/theme/thumbnail/2x/gcushen-hugo-academic-2x.jpg new file mode 100644 index 000000000..20c2f3d4e Binary files /dev/null and b/static/images/theme/thumbnail/2x/gcushen-hugo-academic-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gcushen-hugo-academic-master-2x.jpg b/static/images/theme/thumbnail/2x/gcushen-hugo-academic-master-2x.jpg deleted file mode 100644 index 6dd3968b1..000000000 Binary files a/static/images/theme/thumbnail/2x/gcushen-hugo-academic-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/gdg-managua-jekyll-mdl-master-2x.jpg b/static/images/theme/thumbnail/2x/gdg-managua-jekyll-mdl-master-2x.jpg deleted file mode 100644 index f9f5c4335..000000000 Binary files a/static/images/theme/thumbnail/2x/gdg-managua-jekyll-mdl-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/gdgtoulouse-devfest-theme-hugo-2x.jpg b/static/images/theme/thumbnail/2x/gdgtoulouse-devfest-theme-hugo-2x.jpg new file mode 100644 index 000000000..17fbf38f5 Binary files /dev/null and b/static/images/theme/thumbnail/2x/gdgtoulouse-devfest-theme-hugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gdgtoulouse-devfest-theme-hugo-master-2x.jpg b/static/images/theme/thumbnail/2x/gdgtoulouse-devfest-theme-hugo-master-2x.jpg deleted file mode 100644 index 86df6e7df..000000000 Binary files a/static/images/theme/thumbnail/2x/gdgtoulouse-devfest-theme-hugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/geocine-gatsby-starter-devto-2x.jpg b/static/images/theme/thumbnail/2x/geocine-gatsby-starter-devto-2x.jpg new file mode 100644 index 000000000..87bb96e15 Binary files /dev/null and b/static/images/theme/thumbnail/2x/geocine-gatsby-starter-devto-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/geocine-gatsby-starter-devto-master-2x.jpg b/static/images/theme/thumbnail/2x/geocine-gatsby-starter-devto-master-2x.jpg deleted file mode 100644 index aafb745e0..000000000 Binary files a/static/images/theme/thumbnail/2x/geocine-gatsby-starter-devto-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/geocine-gatsby-starter-organization-2x.jpg b/static/images/theme/thumbnail/2x/geocine-gatsby-starter-organization-2x.jpg new file mode 100644 index 000000000..dc0db18b7 Binary files /dev/null and b/static/images/theme/thumbnail/2x/geocine-gatsby-starter-organization-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/geocine-gatsby-starter-organization-master-2x.jpg b/static/images/theme/thumbnail/2x/geocine-gatsby-starter-organization-master-2x.jpg deleted file mode 100644 index e7fe5e6e5..000000000 Binary files a/static/images/theme/thumbnail/2x/geocine-gatsby-starter-organization-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/geschke-hugo-tikva-master-2x.jpg b/static/images/theme/thumbnail/2x/geschke-hugo-tikva-master-2x.jpg deleted file mode 100644 index de04e51e9..000000000 Binary files a/static/images/theme/thumbnail/2x/geschke-hugo-tikva-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/gesquive-slate-2x.jpg b/static/images/theme/thumbnail/2x/gesquive-slate-2x.jpg new file mode 100644 index 000000000..d6b13f864 Binary files /dev/null and b/static/images/theme/thumbnail/2x/gesquive-slate-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gesquive-slate-master-2x.jpg b/static/images/theme/thumbnail/2x/gesquive-slate-master-2x.jpg deleted file mode 100644 index caf244060..000000000 Binary files a/static/images/theme/thumbnail/2x/gesquive-slate-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/gethugothemes-andromeda-light-2x.jpg b/static/images/theme/thumbnail/2x/gethugothemes-andromeda-light-2x.jpg new file mode 100644 index 000000000..47b9f984a Binary files /dev/null and b/static/images/theme/thumbnail/2x/gethugothemes-andromeda-light-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gethugothemes-apollo-hugo-2x.jpg b/static/images/theme/thumbnail/2x/gethugothemes-apollo-hugo-2x.jpg new file mode 100644 index 000000000..cf352f662 Binary files /dev/null and b/static/images/theme/thumbnail/2x/gethugothemes-apollo-hugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gethugothemes-bookworm-light-2x.jpg b/static/images/theme/thumbnail/2x/gethugothemes-bookworm-light-2x.jpg new file mode 100644 index 000000000..1c3a39c7f Binary files /dev/null and b/static/images/theme/thumbnail/2x/gethugothemes-bookworm-light-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gethugothemes-geeky-hugo-2x.jpg b/static/images/theme/thumbnail/2x/gethugothemes-geeky-hugo-2x.jpg new file mode 100644 index 000000000..c4d832a4a Binary files /dev/null and b/static/images/theme/thumbnail/2x/gethugothemes-geeky-hugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gethugothemes-influencer-hugo-2x.jpg b/static/images/theme/thumbnail/2x/gethugothemes-influencer-hugo-2x.jpg new file mode 100644 index 000000000..e40e45e12 Binary files /dev/null and b/static/images/theme/thumbnail/2x/gethugothemes-influencer-hugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gethugothemes-liva-hugo-2x.jpg b/static/images/theme/thumbnail/2x/gethugothemes-liva-hugo-2x.jpg new file mode 100644 index 000000000..ca3bed1c3 Binary files /dev/null and b/static/images/theme/thumbnail/2x/gethugothemes-liva-hugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gethugothemes-navigator-hugo-2x.jpg b/static/images/theme/thumbnail/2x/gethugothemes-navigator-hugo-2x.jpg new file mode 100644 index 000000000..460099d21 Binary files /dev/null and b/static/images/theme/thumbnail/2x/gethugothemes-navigator-hugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gethugothemes-northendlab-light-2x.jpg b/static/images/theme/thumbnail/2x/gethugothemes-northendlab-light-2x.jpg new file mode 100644 index 000000000..1d6c9dce8 Binary files /dev/null and b/static/images/theme/thumbnail/2x/gethugothemes-northendlab-light-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gethugothemes-omega-hugo-2x.jpg b/static/images/theme/thumbnail/2x/gethugothemes-omega-hugo-2x.jpg new file mode 100644 index 000000000..dddb8231d Binary files /dev/null and b/static/images/theme/thumbnail/2x/gethugothemes-omega-hugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gethugothemes-persian-hugo-2x.jpg b/static/images/theme/thumbnail/2x/gethugothemes-persian-hugo-2x.jpg new file mode 100644 index 000000000..f9b2ca9ea Binary files /dev/null and b/static/images/theme/thumbnail/2x/gethugothemes-persian-hugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gethugothemes-restaurant-hugo-2x.jpg b/static/images/theme/thumbnail/2x/gethugothemes-restaurant-hugo-2x.jpg new file mode 100644 index 000000000..7532ebac9 Binary files /dev/null and b/static/images/theme/thumbnail/2x/gethugothemes-restaurant-hugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gethugothemes-techfeed-hugo-2x.jpg b/static/images/theme/thumbnail/2x/gethugothemes-techfeed-hugo-2x.jpg new file mode 100644 index 000000000..7f675d674 Binary files /dev/null and b/static/images/theme/thumbnail/2x/gethugothemes-techfeed-hugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gethugothemes-touchy-hugo-2x.jpg b/static/images/theme/thumbnail/2x/gethugothemes-touchy-hugo-2x.jpg new file mode 100644 index 000000000..340c62f6a Binary files /dev/null and b/static/images/theme/thumbnail/2x/gethugothemes-touchy-hugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gherciu-gatsby-all-in-2x.jpg b/static/images/theme/thumbnail/2x/gherciu-gatsby-all-in-2x.jpg new file mode 100644 index 000000000..a9a078182 Binary files /dev/null and b/static/images/theme/thumbnail/2x/gherciu-gatsby-all-in-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gherciu-gatsby-all-in-master-2x.jpg b/static/images/theme/thumbnail/2x/gherciu-gatsby-all-in-master-2x.jpg deleted file mode 100644 index 04692acd5..000000000 Binary files a/static/images/theme/thumbnail/2x/gherciu-gatsby-all-in-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/gildasio-clyell-2x.jpg b/static/images/theme/thumbnail/2x/gildasio-clyell-2x.jpg new file mode 100644 index 000000000..90d693898 Binary files /dev/null and b/static/images/theme/thumbnail/2x/gildasio-clyell-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gildasio-clyell-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/gildasio-clyell-gh-pages-2x.jpg deleted file mode 100644 index e228da23b..000000000 Binary files a/static/images/theme/thumbnail/2x/gildasio-clyell-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/gillkyle-gatsby-starter-landing-page-2x.jpg b/static/images/theme/thumbnail/2x/gillkyle-gatsby-starter-landing-page-2x.jpg new file mode 100644 index 000000000..a4c9b7ff7 Binary files /dev/null and b/static/images/theme/thumbnail/2x/gillkyle-gatsby-starter-landing-page-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gillkyle-gatsby-starter-landing-page-master-2x.jpg b/static/images/theme/thumbnail/2x/gillkyle-gatsby-starter-landing-page-master-2x.jpg deleted file mode 100644 index 4a7a80c8e..000000000 Binary files a/static/images/theme/thumbnail/2x/gillkyle-gatsby-starter-landing-page-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/gilsondev-pelican-clean-blog-2x.jpg b/static/images/theme/thumbnail/2x/gilsondev-pelican-clean-blog-2x.jpg new file mode 100644 index 000000000..2eb9dfe63 Binary files /dev/null and b/static/images/theme/thumbnail/2x/gilsondev-pelican-clean-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gilsondev-pelican-clean-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/gilsondev-pelican-clean-blog-master-2x.jpg deleted file mode 100644 index 571112171..000000000 Binary files a/static/images/theme/thumbnail/2x/gilsondev-pelican-clean-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/gizak-nofancy-master-2x.jpg b/static/images/theme/thumbnail/2x/gizak-nofancy-master-2x.jpg deleted file mode 100644 index 55b8d8292..000000000 Binary files a/static/images/theme/thumbnail/2x/gizak-nofancy-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/gjuniioor-darcli-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/gjuniioor-darcli-gh-pages-2x.jpg deleted file mode 100644 index ac5421104..000000000 Binary files a/static/images/theme/thumbnail/2x/gjuniioor-darcli-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/gkmngrgn-hugo-alageek-theme-2x.jpg b/static/images/theme/thumbnail/2x/gkmngrgn-hugo-alageek-theme-2x.jpg new file mode 100644 index 000000000..345066d7e Binary files /dev/null and b/static/images/theme/thumbnail/2x/gkmngrgn-hugo-alageek-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gkmngrgn-hugo-alageek-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/gkmngrgn-hugo-alageek-theme-master-2x.jpg deleted file mode 100644 index f461de34c..000000000 Binary files a/static/images/theme/thumbnail/2x/gkmngrgn-hugo-alageek-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/gmlunesa-gatsby-starter-personal-portfolio-2x.jpg b/static/images/theme/thumbnail/2x/gmlunesa-gatsby-starter-personal-portfolio-2x.jpg new file mode 100644 index 000000000..17184321c Binary files /dev/null and b/static/images/theme/thumbnail/2x/gmlunesa-gatsby-starter-personal-portfolio-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gmlunesa-gatsby-starter-personal-portfolio-main-2x.jpg b/static/images/theme/thumbnail/2x/gmlunesa-gatsby-starter-personal-portfolio-main-2x.jpg deleted file mode 100644 index c1d6b8dcd..000000000 Binary files a/static/images/theme/thumbnail/2x/gmlunesa-gatsby-starter-personal-portfolio-main-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/gomah-bluise-2x.jpg b/static/images/theme/thumbnail/2x/gomah-bluise-2x.jpg new file mode 100644 index 000000000..c0e92f102 Binary files /dev/null and b/static/images/theme/thumbnail/2x/gomah-bluise-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gomah-bluise-master-2x.jpg b/static/images/theme/thumbnail/2x/gomah-bluise-master-2x.jpg deleted file mode 100644 index 707b4dc78..000000000 Binary files a/static/images/theme/thumbnail/2x/gomah-bluise-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/gonapps-org-hugo-apps-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/gonapps-org-hugo-apps-theme-master-2x.jpg deleted file mode 100644 index 9a6360622..000000000 Binary files a/static/images/theme/thumbnail/2x/gonapps-org-hugo-apps-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/goodroot-hugo-classic-2x.jpg b/static/images/theme/thumbnail/2x/goodroot-hugo-classic-2x.jpg new file mode 100644 index 000000000..98b7437ea Binary files /dev/null and b/static/images/theme/thumbnail/2x/goodroot-hugo-classic-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/goodroot-hugo-classic-master-2x.jpg b/static/images/theme/thumbnail/2x/goodroot-hugo-classic-master-2x.jpg deleted file mode 100644 index 100746059..000000000 Binary files a/static/images/theme/thumbnail/2x/goodroot-hugo-classic-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/graphcms-gatsby-graphcms-tailwindcss-example-2x.jpg b/static/images/theme/thumbnail/2x/graphcms-gatsby-graphcms-tailwindcss-example-2x.jpg new file mode 100644 index 000000000..651fead56 Binary files /dev/null and b/static/images/theme/thumbnail/2x/graphcms-gatsby-graphcms-tailwindcss-example-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/graphcms-gatsby-graphcms-tailwindcss-example-master-2x.jpg b/static/images/theme/thumbnail/2x/graphcms-gatsby-graphcms-tailwindcss-example-master-2x.jpg deleted file mode 100644 index 7b1659f79..000000000 Binary files a/static/images/theme/thumbnail/2x/graphcms-gatsby-graphcms-tailwindcss-example-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/graphcms-gatsby-starter-graphcms-blog-2x.jpg b/static/images/theme/thumbnail/2x/graphcms-gatsby-starter-graphcms-blog-2x.jpg new file mode 100644 index 000000000..b421e80e6 Binary files /dev/null and b/static/images/theme/thumbnail/2x/graphcms-gatsby-starter-graphcms-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/graphcms-graphcms-commerce-starter-2x.jpg b/static/images/theme/thumbnail/2x/graphcms-graphcms-commerce-starter-2x.jpg new file mode 100644 index 000000000..d41c5df35 Binary files /dev/null and b/static/images/theme/thumbnail/2x/graphcms-graphcms-commerce-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/graphcms-reference-marketing-website-2x.jpg b/static/images/theme/thumbnail/2x/graphcms-reference-marketing-website-2x.jpg new file mode 100644 index 000000000..844c127eb Binary files /dev/null and b/static/images/theme/thumbnail/2x/graphcms-reference-marketing-website-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog-2x.jpg b/static/images/theme/thumbnail/2x/greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog-2x.jpg new file mode 100644 index 000000000..2c1392116 Binary files /dev/null and b/static/images/theme/thumbnail/2x/greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog-master-2x.jpg deleted file mode 100644 index 629456129..000000000 Binary files a/static/images/theme/thumbnail/2x/greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/greglobinski-gatsby-starter-hero-blog-2x.jpg b/static/images/theme/thumbnail/2x/greglobinski-gatsby-starter-hero-blog-2x.jpg new file mode 100644 index 000000000..76a8d8f7e Binary files /dev/null and b/static/images/theme/thumbnail/2x/greglobinski-gatsby-starter-hero-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/greglobinski-gatsby-starter-hero-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/greglobinski-gatsby-starter-hero-blog-master-2x.jpg deleted file mode 100644 index 622651617..000000000 Binary files a/static/images/theme/thumbnail/2x/greglobinski-gatsby-starter-hero-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/gridsome-gridsome-starter-blog-2x.jpg b/static/images/theme/thumbnail/2x/gridsome-gridsome-starter-blog-2x.jpg new file mode 100644 index 000000000..fcd9031f2 Binary files /dev/null and b/static/images/theme/thumbnail/2x/gridsome-gridsome-starter-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gridsome-gridsome-starter-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/gridsome-gridsome-starter-blog-master-2x.jpg deleted file mode 100644 index 061b817e0..000000000 Binary files a/static/images/theme/thumbnail/2x/gridsome-gridsome-starter-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/gristlabs-mkdocs-windmill-2x.jpg b/static/images/theme/thumbnail/2x/gristlabs-mkdocs-windmill-2x.jpg new file mode 100644 index 000000000..d32154c9d Binary files /dev/null and b/static/images/theme/thumbnail/2x/gristlabs-mkdocs-windmill-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gristlabs-mkdocs-windmill-master-2x.jpg b/static/images/theme/thumbnail/2x/gristlabs-mkdocs-windmill-master-2x.jpg deleted file mode 100644 index 792c90117..000000000 Binary files a/static/images/theme/thumbnail/2x/gristlabs-mkdocs-windmill-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/grrinchas-aliquam-2x.jpg b/static/images/theme/thumbnail/2x/grrinchas-aliquam-2x.jpg new file mode 100644 index 000000000..e7c0b21df Binary files /dev/null and b/static/images/theme/thumbnail/2x/grrinchas-aliquam-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/grrinchas-aliquam-master-2x.jpg b/static/images/theme/thumbnail/2x/grrinchas-aliquam-master-2x.jpg deleted file mode 100644 index da45d3d00..000000000 Binary files a/static/images/theme/thumbnail/2x/grrinchas-aliquam-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/guangmean-niello-master-2x.jpg b/static/images/theme/thumbnail/2x/guangmean-niello-master-2x.jpg deleted file mode 100644 index 5b4d7f4bf..000000000 Binary files a/static/images/theme/thumbnail/2x/guangmean-niello-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/gundamew-hugo-bingo-master-2x.jpg b/static/images/theme/thumbnail/2x/gundamew-hugo-bingo-master-2x.jpg deleted file mode 100644 index bedd57ee1..000000000 Binary files a/static/images/theme/thumbnail/2x/gundamew-hugo-bingo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/guovz-pithy-master-2x.jpg b/static/images/theme/thumbnail/2x/guovz-pithy-master-2x.jpg deleted file mode 100644 index 2f0937e3f..000000000 Binary files a/static/images/theme/thumbnail/2x/guovz-pithy-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/gurusabarish-hugo-profile-2x.jpg b/static/images/theme/thumbnail/2x/gurusabarish-hugo-profile-2x.jpg new file mode 100644 index 000000000..2b5b36798 Binary files /dev/null and b/static/images/theme/thumbnail/2x/gurusabarish-hugo-profile-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/gurusabarish-hugo-profile-master-2x.jpg b/static/images/theme/thumbnail/2x/gurusabarish-hugo-profile-master-2x.jpg deleted file mode 100644 index ad3c0303d..000000000 Binary files a/static/images/theme/thumbnail/2x/gurusabarish-hugo-profile-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/gyorb-hugo-dusk-master-2x.jpg b/static/images/theme/thumbnail/2x/gyorb-hugo-dusk-master-2x.jpg deleted file mode 100644 index 00607504d..000000000 Binary files a/static/images/theme/thumbnail/2x/gyorb-hugo-dusk-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/h-enk-doks-2x.jpg b/static/images/theme/thumbnail/2x/h-enk-doks-2x.jpg new file mode 100644 index 000000000..b86acbe58 Binary files /dev/null and b/static/images/theme/thumbnail/2x/h-enk-doks-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/h-enk-doks-master-2x.jpg b/static/images/theme/thumbnail/2x/h-enk-doks-master-2x.jpg deleted file mode 100644 index ded8c05ae..000000000 Binary files a/static/images/theme/thumbnail/2x/h-enk-doks-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/h01000110-windows-95-2x.jpg b/static/images/theme/thumbnail/2x/h01000110-windows-95-2x.jpg new file mode 100644 index 000000000..6c6a8a652 Binary files /dev/null and b/static/images/theme/thumbnail/2x/h01000110-windows-95-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/h01000110-windows-95-master-2x.jpg b/static/images/theme/thumbnail/2x/h01000110-windows-95-master-2x.jpg deleted file mode 100644 index f982124b5..000000000 Binary files a/static/images/theme/thumbnail/2x/h01000110-windows-95-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/hadisinaee-avicenna-develop-2x.jpg b/static/images/theme/thumbnail/2x/hadisinaee-avicenna-develop-2x.jpg deleted file mode 100644 index aead02da3..000000000 Binary files a/static/images/theme/thumbnail/2x/hadisinaee-avicenna-develop-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/haezl-gatsby-starter-haezl-master-2x.jpg b/static/images/theme/thumbnail/2x/haezl-gatsby-starter-haezl-master-2x.jpg deleted file mode 100644 index 20d2ae726..000000000 Binary files a/static/images/theme/thumbnail/2x/haezl-gatsby-starter-haezl-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/hagnerd-gatsby-starter-blog-mdx-2x.jpg b/static/images/theme/thumbnail/2x/hagnerd-gatsby-starter-blog-mdx-2x.jpg new file mode 100644 index 000000000..f993d666e Binary files /dev/null and b/static/images/theme/thumbnail/2x/hagnerd-gatsby-starter-blog-mdx-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/hagnerd-gatsby-starter-blog-mdx-master-2x.jpg b/static/images/theme/thumbnail/2x/hagnerd-gatsby-starter-blog-mdx-master-2x.jpg deleted file mode 100644 index 3beb4b32c..000000000 Binary files a/static/images/theme/thumbnail/2x/hagnerd-gatsby-starter-blog-mdx-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/halogenica-beautifulhugo-master-2x.jpg b/static/images/theme/thumbnail/2x/halogenica-beautifulhugo-master-2x.jpg deleted file mode 100644 index 72dc9c1ec..000000000 Binary files a/static/images/theme/thumbnail/2x/halogenica-beautifulhugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/harshil1712-gatsby-starter-googlesheets-2x.jpg b/static/images/theme/thumbnail/2x/harshil1712-gatsby-starter-googlesheets-2x.jpg new file mode 100644 index 000000000..3ed9594f5 Binary files /dev/null and b/static/images/theme/thumbnail/2x/harshil1712-gatsby-starter-googlesheets-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/harshil1712-gatsby-starter-googlesheets-master-2x.jpg b/static/images/theme/thumbnail/2x/harshil1712-gatsby-starter-googlesheets-master-2x.jpg deleted file mode 100644 index 350326dd7..000000000 Binary files a/static/images/theme/thumbnail/2x/harshil1712-gatsby-starter-googlesheets-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/hasura-gatsby-gitbook-starter-2x.jpg b/static/images/theme/thumbnail/2x/hasura-gatsby-gitbook-starter-2x.jpg new file mode 100644 index 000000000..240efd815 Binary files /dev/null and b/static/images/theme/thumbnail/2x/hasura-gatsby-gitbook-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/hasura-gatsby-gitbook-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/hasura-gatsby-gitbook-starter-master-2x.jpg deleted file mode 100644 index a1c6a4a33..000000000 Binary files a/static/images/theme/thumbnail/2x/hasura-gatsby-gitbook-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/hauke96-hugo-theme-hamburg-master-2x.jpg b/static/images/theme/thumbnail/2x/hauke96-hugo-theme-hamburg-master-2x.jpg deleted file mode 100644 index 47b6257c9..000000000 Binary files a/static/images/theme/thumbnail/2x/hauke96-hugo-theme-hamburg-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/hdcdstr8fwd-foundation-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/hdcdstr8fwd-foundation-theme-master-2x.jpg deleted file mode 100644 index b5b332d28..000000000 Binary files a/static/images/theme/thumbnail/2x/hdcdstr8fwd-foundation-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/heiswayi-textlog-2x.jpg b/static/images/theme/thumbnail/2x/heiswayi-textlog-2x.jpg new file mode 100644 index 000000000..2af0b618e Binary files /dev/null and b/static/images/theme/thumbnail/2x/heiswayi-textlog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/heiswayi-textlog-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/heiswayi-textlog-gh-pages-2x.jpg deleted file mode 100644 index a6f41af04..000000000 Binary files a/static/images/theme/thumbnail/2x/heiswayi-textlog-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/heiswayi-the-plain-2x.jpg b/static/images/theme/thumbnail/2x/heiswayi-the-plain-2x.jpg new file mode 100644 index 000000000..4f101eadd Binary files /dev/null and b/static/images/theme/thumbnail/2x/heiswayi-the-plain-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/heiswayi-the-plain-master-2x.jpg b/static/images/theme/thumbnail/2x/heiswayi-the-plain-master-2x.jpg deleted file mode 100644 index dad7405ba..000000000 Binary files a/static/images/theme/thumbnail/2x/heiswayi-the-plain-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/heiswayi-thinkspace-2x.jpg b/static/images/theme/thumbnail/2x/heiswayi-thinkspace-2x.jpg new file mode 100644 index 000000000..9731637d7 Binary files /dev/null and b/static/images/theme/thumbnail/2x/heiswayi-thinkspace-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/heiswayi-thinkspace-master-2x.jpg b/static/images/theme/thumbnail/2x/heiswayi-thinkspace-master-2x.jpg deleted file mode 100644 index fc226e1ee..000000000 Binary files a/static/images/theme/thumbnail/2x/heiswayi-thinkspace-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/heliumjk-heliumjk.github.io-2x.jpg b/static/images/theme/thumbnail/2x/heliumjk-heliumjk.github.io-2x.jpg new file mode 100644 index 000000000..145f5e0be Binary files /dev/null and b/static/images/theme/thumbnail/2x/heliumjk-heliumjk.github.io-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/heliumjk-heliumjk.github.io-master-2x.jpg b/static/images/theme/thumbnail/2x/heliumjk-heliumjk.github.io-master-2x.jpg deleted file mode 100644 index 670f7c368..000000000 Binary files a/static/images/theme/thumbnail/2x/heliumjk-heliumjk.github.io-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/hellocosmin-gridsome-starter-bleda-2x.jpg b/static/images/theme/thumbnail/2x/hellocosmin-gridsome-starter-bleda-2x.jpg new file mode 100644 index 000000000..f6b80ea8e Binary files /dev/null and b/static/images/theme/thumbnail/2x/hellocosmin-gridsome-starter-bleda-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/hellocosmin-gridsome-starter-bleda-master-2x.jpg b/static/images/theme/thumbnail/2x/hellocosmin-gridsome-starter-bleda-master-2x.jpg deleted file mode 100644 index b7d70ae95..000000000 Binary files a/static/images/theme/thumbnail/2x/hellocosmin-gridsome-starter-bleda-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/hemangsk-devjournal-2x.jpg b/static/images/theme/thumbnail/2x/hemangsk-devjournal-2x.jpg new file mode 100644 index 000000000..569a05c09 Binary files /dev/null and b/static/images/theme/thumbnail/2x/hemangsk-devjournal-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/hemangsk-devjournal-master-2x.jpg b/static/images/theme/thumbnail/2x/hemangsk-devjournal-master-2x.jpg deleted file mode 100644 index e220ee6cc..000000000 Binary files a/static/images/theme/thumbnail/2x/hemangsk-devjournal-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/hemangsk-gravity-2x.jpg b/static/images/theme/thumbnail/2x/hemangsk-gravity-2x.jpg new file mode 100644 index 000000000..c2e0ce6f9 Binary files /dev/null and b/static/images/theme/thumbnail/2x/hemangsk-gravity-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/hemangsk-gravity-master-2x.jpg b/static/images/theme/thumbnail/2x/hemangsk-gravity-master-2x.jpg deleted file mode 100644 index af1309089..000000000 Binary files a/static/images/theme/thumbnail/2x/hemangsk-gravity-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/hemangsk-safarnama-2x.jpg b/static/images/theme/thumbnail/2x/hemangsk-safarnama-2x.jpg new file mode 100644 index 000000000..04655f790 Binary files /dev/null and b/static/images/theme/thumbnail/2x/hemangsk-safarnama-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/hemangsk-safarnama-master-2x.jpg b/static/images/theme/thumbnail/2x/hemangsk-safarnama-master-2x.jpg deleted file mode 100644 index 6ce79a42a..000000000 Binary files a/static/images/theme/thumbnail/2x/hemangsk-safarnama-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/henryhuang-hexo-theme-aloha-2x.jpg b/static/images/theme/thumbnail/2x/henryhuang-hexo-theme-aloha-2x.jpg new file mode 100644 index 000000000..d149d1be3 Binary files /dev/null and b/static/images/theme/thumbnail/2x/henryhuang-hexo-theme-aloha-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/henryhuang-hexo-theme-aloha-master-2x.jpg b/static/images/theme/thumbnail/2x/henryhuang-hexo-theme-aloha-master-2x.jpg deleted file mode 100644 index 28706089a..000000000 Binary files a/static/images/theme/thumbnail/2x/henryhuang-hexo-theme-aloha-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/henrythemes-jekyll-book-theme-2x.jpg b/static/images/theme/thumbnail/2x/henrythemes-jekyll-book-theme-2x.jpg new file mode 100644 index 000000000..29d888795 Binary files /dev/null and b/static/images/theme/thumbnail/2x/henrythemes-jekyll-book-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/henrythemes-jekyll-book-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/henrythemes-jekyll-book-theme-master-2x.jpg deleted file mode 100644 index 32c6597e6..000000000 Binary files a/static/images/theme/thumbnail/2x/henrythemes-jekyll-book-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/henrythemes-jekyll-bootstrap-theme-2x.jpg b/static/images/theme/thumbnail/2x/henrythemes-jekyll-bootstrap-theme-2x.jpg new file mode 100644 index 000000000..9eaf5d569 Binary files /dev/null and b/static/images/theme/thumbnail/2x/henrythemes-jekyll-bootstrap-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/henrythemes-jekyll-bootstrap-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/henrythemes-jekyll-bootstrap-theme-master-2x.jpg deleted file mode 100644 index 6a7d7c005..000000000 Binary files a/static/images/theme/thumbnail/2x/henrythemes-jekyll-bootstrap-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/henrythemes-jekyll-minimal-theme-2x.jpg b/static/images/theme/thumbnail/2x/henrythemes-jekyll-minimal-theme-2x.jpg new file mode 100644 index 000000000..c00f17c78 Binary files /dev/null and b/static/images/theme/thumbnail/2x/henrythemes-jekyll-minimal-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/henrythemes-jekyll-minimal-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/henrythemes-jekyll-minimal-theme-master-2x.jpg deleted file mode 100644 index a15bf86cd..000000000 Binary files a/static/images/theme/thumbnail/2x/henrythemes-jekyll-minimal-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/himali-patel-myclicks-2x.jpg b/static/images/theme/thumbnail/2x/himali-patel-myclicks-2x.jpg new file mode 100644 index 000000000..5e51e77ce Binary files /dev/null and b/static/images/theme/thumbnail/2x/himali-patel-myclicks-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/himali-patel-myclicks-master-2x.jpg b/static/images/theme/thumbnail/2x/himali-patel-myclicks-master-2x.jpg deleted file mode 100644 index 57bd98c8d..000000000 Binary files a/static/images/theme/thumbnail/2x/himali-patel-myclicks-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/histaff-website-static-2x.jpg b/static/images/theme/thumbnail/2x/histaff-website-static-2x.jpg new file mode 100644 index 000000000..cb324645e Binary files /dev/null and b/static/images/theme/thumbnail/2x/histaff-website-static-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/histaff-website-static-master-2x.jpg b/static/images/theme/thumbnail/2x/histaff-website-static-master-2x.jpg deleted file mode 100644 index c817471ef..000000000 Binary files a/static/images/theme/thumbnail/2x/histaff-website-static-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/hmfaysal-hmfaysal-omega-theme-2x.jpg b/static/images/theme/thumbnail/2x/hmfaysal-hmfaysal-omega-theme-2x.jpg new file mode 100644 index 000000000..e28549f81 Binary files /dev/null and b/static/images/theme/thumbnail/2x/hmfaysal-hmfaysal-omega-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/hmfaysal-hmfaysal-omega-theme-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/hmfaysal-hmfaysal-omega-theme-gh-pages-2x.jpg deleted file mode 100644 index 4ce05ffda..000000000 Binary files a/static/images/theme/thumbnail/2x/hmfaysal-hmfaysal-omega-theme-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/hmfaysal-jekyll-hmfaysal-theme-2x.jpg b/static/images/theme/thumbnail/2x/hmfaysal-jekyll-hmfaysal-theme-2x.jpg new file mode 100644 index 000000000..5756deab5 Binary files /dev/null and b/static/images/theme/thumbnail/2x/hmfaysal-jekyll-hmfaysal-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/hmfaysal-jekyll-hmfaysal-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/hmfaysal-jekyll-hmfaysal-theme-master-2x.jpg deleted file mode 100644 index b7b6d66c5..000000000 Binary files a/static/images/theme/thumbnail/2x/hmfaysal-jekyll-hmfaysal-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/hmfaysal-notepad-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/hmfaysal-notepad-gh-pages-2x.jpg deleted file mode 100644 index 8e562c06d..000000000 Binary files a/static/images/theme/thumbnail/2x/hmfaysal-notepad-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/holger1411-11straps-2x.jpg b/static/images/theme/thumbnail/2x/holger1411-11straps-2x.jpg new file mode 100644 index 000000000..fcbe70476 Binary files /dev/null and b/static/images/theme/thumbnail/2x/holger1411-11straps-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/holger1411-brook-dev-2x.jpg b/static/images/theme/thumbnail/2x/holger1411-brook-dev-2x.jpg new file mode 100644 index 000000000..e4c106119 Binary files /dev/null and b/static/images/theme/thumbnail/2x/holger1411-brook-dev-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/holman-left-2x.jpg b/static/images/theme/thumbnail/2x/holman-left-2x.jpg new file mode 100644 index 000000000..53700f742 Binary files /dev/null and b/static/images/theme/thumbnail/2x/holman-left-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/holman-left-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/holman-left-gh-pages-2x.jpg deleted file mode 100644 index 5d60714aa..000000000 Binary files a/static/images/theme/thumbnail/2x/holman-left-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/htdvisser-hugo-base16-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/htdvisser-hugo-base16-theme-master-2x.jpg deleted file mode 100644 index bb55d6a22..000000000 Binary files a/static/images/theme/thumbnail/2x/htdvisser-hugo-base16-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/htr3n-hyde-hyde-master-2x.jpg b/static/images/theme/thumbnail/2x/htr3n-hyde-hyde-master-2x.jpg deleted file mode 100644 index e5aedee95..000000000 Binary files a/static/images/theme/thumbnail/2x/htr3n-hyde-hyde-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/hugo-sid-hugo-blog-awesome-2x.jpg b/static/images/theme/thumbnail/2x/hugo-sid-hugo-blog-awesome-2x.jpg new file mode 100644 index 000000000..eca6ec6b0 Binary files /dev/null and b/static/images/theme/thumbnail/2x/hugo-sid-hugo-blog-awesome-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/hugocarreira-jekyll-materializecss-2x.jpg b/static/images/theme/thumbnail/2x/hugocarreira-jekyll-materializecss-2x.jpg new file mode 100644 index 000000000..f8b4ff21e Binary files /dev/null and b/static/images/theme/thumbnail/2x/hugocarreira-jekyll-materializecss-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/hugocarreira-jekyll-materializecss-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/hugocarreira-jekyll-materializecss-gh-pages-2x.jpg deleted file mode 100644 index 3f082df74..000000000 Binary files a/static/images/theme/thumbnail/2x/hugocarreira-jekyll-materializecss-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/hugocarreira-jekyll-vision-casper-theme-2x.jpg b/static/images/theme/thumbnail/2x/hugocarreira-jekyll-vision-casper-theme-2x.jpg new file mode 100644 index 000000000..d48a850c0 Binary files /dev/null and b/static/images/theme/thumbnail/2x/hugocarreira-jekyll-vision-casper-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/hugocarreira-jekyll-vision-casper-theme-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/hugocarreira-jekyll-vision-casper-theme-gh-pages-2x.jpg deleted file mode 100644 index 2ed235023..000000000 Binary files a/static/images/theme/thumbnail/2x/hugocarreira-jekyll-vision-casper-theme-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/hugoferreira-papyrus-theme-2x.jpg b/static/images/theme/thumbnail/2x/hugoferreira-papyrus-theme-2x.jpg new file mode 100644 index 000000000..798813d69 Binary files /dev/null and b/static/images/theme/thumbnail/2x/hugoferreira-papyrus-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/hugoferreira-papyrus-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/hugoferreira-papyrus-theme-master-2x.jpg deleted file mode 100644 index e709fa78f..000000000 Binary files a/static/images/theme/thumbnail/2x/hugoferreira-papyrus-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/humrochagf-colordrop-2x.jpg b/static/images/theme/thumbnail/2x/humrochagf-colordrop-2x.jpg new file mode 100644 index 000000000..dfcab8da6 Binary files /dev/null and b/static/images/theme/thumbnail/2x/humrochagf-colordrop-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/humrochagf-colordrop-master-2x.jpg b/static/images/theme/thumbnail/2x/humrochagf-colordrop-master-2x.jpg deleted file mode 100644 index 862eb208c..000000000 Binary files a/static/images/theme/thumbnail/2x/humrochagf-colordrop-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/huweihuang-hexo-theme-huweihuang-2x.jpg b/static/images/theme/thumbnail/2x/huweihuang-hexo-theme-huweihuang-2x.jpg new file mode 100644 index 000000000..e01172ea3 Binary files /dev/null and b/static/images/theme/thumbnail/2x/huweihuang-hexo-theme-huweihuang-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/huweihuang-hexo-theme-huweihuang-master-2x.jpg b/static/images/theme/thumbnail/2x/huweihuang-hexo-theme-huweihuang-master-2x.jpg deleted file mode 100644 index ed5ea48b7..000000000 Binary files a/static/images/theme/thumbnail/2x/huweihuang-hexo-theme-huweihuang-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/huyb1991-hugo-lamp-master-2x.jpg b/static/images/theme/thumbnail/2x/huyb1991-hugo-lamp-master-2x.jpg deleted file mode 100644 index 4188b8fb2..000000000 Binary files a/static/images/theme/thumbnail/2x/huyb1991-hugo-lamp-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/huyingjie-hexo-theme-a-rsnippet-master-2x.jpg b/static/images/theme/thumbnail/2x/huyingjie-hexo-theme-a-rsnippet-master-2x.jpg deleted file mode 100644 index 7a3a51c99..000000000 Binary files a/static/images/theme/thumbnail/2x/huyingjie-hexo-theme-a-rsnippet-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/icyris-hugo-theme-yuki-master-2x.jpg b/static/images/theme/thumbnail/2x/icyris-hugo-theme-yuki-master-2x.jpg deleted file mode 100644 index 42e525a71..000000000 Binary files a/static/images/theme/thumbnail/2x/icyris-hugo-theme-yuki-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ifedyukin-mekyll-2x.jpg b/static/images/theme/thumbnail/2x/ifedyukin-mekyll-2x.jpg new file mode 100644 index 000000000..110469812 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ifedyukin-mekyll-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ifedyukin-mekyll-master-2x.jpg b/static/images/theme/thumbnail/2x/ifedyukin-mekyll-master-2x.jpg deleted file mode 100644 index b162c0436..000000000 Binary files a/static/images/theme/thumbnail/2x/ifedyukin-mekyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ijjk-notion-blog-2x.jpg b/static/images/theme/thumbnail/2x/ijjk-notion-blog-2x.jpg new file mode 100644 index 000000000..ed9f671cf Binary files /dev/null and b/static/images/theme/thumbnail/2x/ijjk-notion-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ijsucceed-onepress-master-2x.jpg b/static/images/theme/thumbnail/2x/ijsucceed-onepress-master-2x.jpg deleted file mode 100644 index 1e6f126df..000000000 Binary files a/static/images/theme/thumbnail/2x/ijsucceed-onepress-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/imedadel-gatsby-london-2x.jpg b/static/images/theme/thumbnail/2x/imedadel-gatsby-london-2x.jpg new file mode 100644 index 000000000..e70a33ccb Binary files /dev/null and b/static/images/theme/thumbnail/2x/imedadel-gatsby-london-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/imedadel-gatsby-london-master-2x.jpg b/static/images/theme/thumbnail/2x/imedadel-gatsby-london-master-2x.jpg deleted file mode 100644 index 5387ad0b5..000000000 Binary files a/static/images/theme/thumbnail/2x/imedadel-gatsby-london-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/inded-jekyll_modern-blog-2x.jpg b/static/images/theme/thumbnail/2x/inded-jekyll_modern-blog-2x.jpg new file mode 100644 index 000000000..1197f6c9f Binary files /dev/null and b/static/images/theme/thumbnail/2x/inded-jekyll_modern-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/inded-jekyll_modern-blog-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/inded-jekyll_modern-blog-gh-pages-2x.jpg deleted file mode 100644 index bda7039bb..000000000 Binary files a/static/images/theme/thumbnail/2x/inded-jekyll_modern-blog-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/insidiousmind-material-bliss-jekyll-theme-2x.jpg b/static/images/theme/thumbnail/2x/insidiousmind-material-bliss-jekyll-theme-2x.jpg new file mode 100644 index 000000000..66bd116a7 Binary files /dev/null and b/static/images/theme/thumbnail/2x/insidiousmind-material-bliss-jekyll-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/insidiousmind-material-bliss-jekyll-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/insidiousmind-material-bliss-jekyll-theme-master-2x.jpg deleted file mode 100644 index 1fa4c9d3c..000000000 Binary files a/static/images/theme/thumbnail/2x/insidiousmind-material-bliss-jekyll-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/issydennis-gatsby-snipcart-2x.jpg b/static/images/theme/thumbnail/2x/issydennis-gatsby-snipcart-2x.jpg new file mode 100644 index 000000000..97c078597 Binary files /dev/null and b/static/images/theme/thumbnail/2x/issydennis-gatsby-snipcart-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/issydennis-gatsby-snipcart-master-2x.jpg b/static/images/theme/thumbnail/2x/issydennis-gatsby-snipcart-master-2x.jpg deleted file mode 100644 index eb98bda10..000000000 Binary files a/static/images/theme/thumbnail/2x/issydennis-gatsby-snipcart-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/it-gro-hugo-theme-w3css-basic-2x.jpg b/static/images/theme/thumbnail/2x/it-gro-hugo-theme-w3css-basic-2x.jpg new file mode 100644 index 000000000..02a3866f0 Binary files /dev/null and b/static/images/theme/thumbnail/2x/it-gro-hugo-theme-w3css-basic-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/it-gro-hugo-theme-w3css-basic-master-2x.jpg b/static/images/theme/thumbnail/2x/it-gro-hugo-theme-w3css-basic-master-2x.jpg deleted file mode 100644 index 854ad0ce4..000000000 Binary files a/static/images/theme/thumbnail/2x/it-gro-hugo-theme-w3css-basic-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/itisbenjamin-nice_blog-master-2x.jpg b/static/images/theme/thumbnail/2x/itisbenjamin-nice_blog-master-2x.jpg deleted file mode 100644 index ac5421104..000000000 Binary files a/static/images/theme/thumbnail/2x/itisbenjamin-nice_blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/itsmeaga1n-minimal-categorized-2x.jpg b/static/images/theme/thumbnail/2x/itsmeaga1n-minimal-categorized-2x.jpg new file mode 100644 index 000000000..1afea6a7e Binary files /dev/null and b/static/images/theme/thumbnail/2x/itsmeaga1n-minimal-categorized-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/itsmeaga1n-minimal-categorized-master-2x.jpg b/static/images/theme/thumbnail/2x/itsmeaga1n-minimal-categorized-master-2x.jpg deleted file mode 100644 index e7c4291f6..000000000 Binary files a/static/images/theme/thumbnail/2x/itsmeaga1n-minimal-categorized-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/itsnwa-darkfolio-2x.jpg b/static/images/theme/thumbnail/2x/itsnwa-darkfolio-2x.jpg new file mode 100644 index 000000000..127f1463d Binary files /dev/null and b/static/images/theme/thumbnail/2x/itsnwa-darkfolio-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/itsnwa-darkfolio-master-2x.jpg b/static/images/theme/thumbnail/2x/itsnwa-darkfolio-master-2x.jpg deleted file mode 100644 index 488a29fd8..000000000 Binary files a/static/images/theme/thumbnail/2x/itsnwa-darkfolio-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/itsnwa-gridsome-forestry-starter-2x.jpg b/static/images/theme/thumbnail/2x/itsnwa-gridsome-forestry-starter-2x.jpg new file mode 100644 index 000000000..e3ecc199e Binary files /dev/null and b/static/images/theme/thumbnail/2x/itsnwa-gridsome-forestry-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/itsnwa-gridsome-forestry-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/itsnwa-gridsome-forestry-starter-master-2x.jpg deleted file mode 100644 index 961bd54cc..000000000 Binary files a/static/images/theme/thumbnail/2x/itsnwa-gridsome-forestry-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/itsrifat-rifyll-2x.jpg b/static/images/theme/thumbnail/2x/itsrifat-rifyll-2x.jpg new file mode 100644 index 000000000..eba1b6124 Binary files /dev/null and b/static/images/theme/thumbnail/2x/itsrifat-rifyll-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/itsrifat-rifyll-master-2x.jpg b/static/images/theme/thumbnail/2x/itsrifat-rifyll-master-2x.jpg deleted file mode 100644 index 7ce739762..000000000 Binary files a/static/images/theme/thumbnail/2x/itsrifat-rifyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ivanchou-hugo-theme-vec-master-2x.jpg b/static/images/theme/thumbnail/2x/ivanchou-hugo-theme-vec-master-2x.jpg deleted file mode 100644 index 5644df1ba..000000000 Binary files a/static/images/theme/thumbnail/2x/ivanchou-hugo-theme-vec-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/iwiedenm-jekyll-theme-massively-src-2x.jpg b/static/images/theme/thumbnail/2x/iwiedenm-jekyll-theme-massively-src-2x.jpg new file mode 100644 index 000000000..78f113669 Binary files /dev/null and b/static/images/theme/thumbnail/2x/iwiedenm-jekyll-theme-massively-src-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/iwiedenm-jekyll-theme-massively-src-master-2x.jpg b/static/images/theme/thumbnail/2x/iwiedenm-jekyll-theme-massively-src-master-2x.jpg deleted file mode 100644 index 527e2b52d..000000000 Binary files a/static/images/theme/thumbnail/2x/iwiedenm-jekyll-theme-massively-src-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/iwilsonq-gatsby-starter-reasonml-2x.jpg b/static/images/theme/thumbnail/2x/iwilsonq-gatsby-starter-reasonml-2x.jpg new file mode 100644 index 000000000..a388ce46b Binary files /dev/null and b/static/images/theme/thumbnail/2x/iwilsonq-gatsby-starter-reasonml-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/iwilsonq-gatsby-starter-reasonml-master-2x.jpg b/static/images/theme/thumbnail/2x/iwilsonq-gatsby-starter-reasonml-master-2x.jpg deleted file mode 100644 index 62db13782..000000000 Binary files a/static/images/theme/thumbnail/2x/iwilsonq-gatsby-starter-reasonml-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ixartz-astro-boilerplate-2x.jpg b/static/images/theme/thumbnail/2x/ixartz-astro-boilerplate-2x.jpg new file mode 100644 index 000000000..3dc51075a Binary files /dev/null and b/static/images/theme/thumbnail/2x/ixartz-astro-boilerplate-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ixartz-eleventy-starter-boilerplate-2x.jpg b/static/images/theme/thumbnail/2x/ixartz-eleventy-starter-boilerplate-2x.jpg new file mode 100644 index 000000000..456c77835 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ixartz-eleventy-starter-boilerplate-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ixartz-eleventy-starter-boilerplate-master-2x.jpg b/static/images/theme/thumbnail/2x/ixartz-eleventy-starter-boilerplate-master-2x.jpg deleted file mode 100644 index 980c4cf6e..000000000 Binary files a/static/images/theme/thumbnail/2x/ixartz-eleventy-starter-boilerplate-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ixartz-next-js-blog-boilerplate-2x.jpg b/static/images/theme/thumbnail/2x/ixartz-next-js-blog-boilerplate-2x.jpg new file mode 100644 index 000000000..6dcacd2b4 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ixartz-next-js-blog-boilerplate-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ixartz-next-js-blog-boilerplate-master-2x.jpg b/static/images/theme/thumbnail/2x/ixartz-next-js-blog-boilerplate-master-2x.jpg deleted file mode 100644 index 0fe19b503..000000000 Binary files a/static/images/theme/thumbnail/2x/ixartz-next-js-blog-boilerplate-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ixartz-next-js-boilerplate-2x.jpg b/static/images/theme/thumbnail/2x/ixartz-next-js-boilerplate-2x.jpg new file mode 100644 index 000000000..529ddba6f Binary files /dev/null and b/static/images/theme/thumbnail/2x/ixartz-next-js-boilerplate-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ixartz-next-js-boilerplate-master-2x.jpg b/static/images/theme/thumbnail/2x/ixartz-next-js-boilerplate-master-2x.jpg deleted file mode 100644 index e061c5980..000000000 Binary files a/static/images/theme/thumbnail/2x/ixartz-next-js-boilerplate-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ixartz-next-js-landing-page-starter-template-2x.jpg b/static/images/theme/thumbnail/2x/ixartz-next-js-landing-page-starter-template-2x.jpg new file mode 100644 index 000000000..532f70349 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ixartz-next-js-landing-page-starter-template-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jackbravo-gatsby-starter-i18n-blog-2x.jpg b/static/images/theme/thumbnail/2x/jackbravo-gatsby-starter-i18n-blog-2x.jpg new file mode 100644 index 000000000..f80e8080c Binary files /dev/null and b/static/images/theme/thumbnail/2x/jackbravo-gatsby-starter-i18n-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jackbravo-gatsby-starter-i18n-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/jackbravo-gatsby-starter-i18n-blog-master-2x.jpg deleted file mode 100644 index af0054200..000000000 Binary files a/static/images/theme/thumbnail/2x/jackbravo-gatsby-starter-i18n-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jacobsun-edidor-master-2x.jpg b/static/images/theme/thumbnail/2x/jacobsun-edidor-master-2x.jpg deleted file mode 100644 index 78ce79fdf..000000000 Binary files a/static/images/theme/thumbnail/2x/jacobsun-edidor-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jacobtomlinson-carte-noire-2x.jpg b/static/images/theme/thumbnail/2x/jacobtomlinson-carte-noire-2x.jpg new file mode 100644 index 000000000..1d3e027bc Binary files /dev/null and b/static/images/theme/thumbnail/2x/jacobtomlinson-carte-noire-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jacobtomlinson-carte-noire-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/jacobtomlinson-carte-noire-gh-pages-2x.jpg deleted file mode 100644 index 65f69bd19..000000000 Binary files a/static/images/theme/thumbnail/2x/jacobtomlinson-carte-noire-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jaden-twentyfourteen-master-2x.jpg b/static/images/theme/thumbnail/2x/jaden-twentyfourteen-master-2x.jpg deleted file mode 100644 index 1266798b5..000000000 Binary files a/static/images/theme/thumbnail/2x/jaden-twentyfourteen-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jaehee0113-console-2x.jpg b/static/images/theme/thumbnail/2x/jaehee0113-console-2x.jpg new file mode 100644 index 000000000..5b8ee1031 Binary files /dev/null and b/static/images/theme/thumbnail/2x/jaehee0113-console-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jaehee0113-console-master-2x.jpg b/static/images/theme/thumbnail/2x/jaehee0113-console-master-2x.jpg deleted file mode 100644 index efc2e5016..000000000 Binary files a/static/images/theme/thumbnail/2x/jaehee0113-console-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jaeyeophan-gatsby-starter-bee-2x.jpg b/static/images/theme/thumbnail/2x/jaeyeophan-gatsby-starter-bee-2x.jpg new file mode 100644 index 000000000..bc02bbf7c Binary files /dev/null and b/static/images/theme/thumbnail/2x/jaeyeophan-gatsby-starter-bee-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jaeyeophan-gatsby-starter-bee-master-2x.jpg b/static/images/theme/thumbnail/2x/jaeyeophan-gatsby-starter-bee-master-2x.jpg deleted file mode 100644 index aa962ef07..000000000 Binary files a/static/images/theme/thumbnail/2x/jaeyeophan-gatsby-starter-bee-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jake-101-bael-template-2x.jpg b/static/images/theme/thumbnail/2x/jake-101-bael-template-2x.jpg new file mode 100644 index 000000000..4ab0776c6 Binary files /dev/null and b/static/images/theme/thumbnail/2x/jake-101-bael-template-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jake-101-bael-template-master-2x.jpg b/static/images/theme/thumbnail/2x/jake-101-bael-template-master-2x.jpg deleted file mode 100644 index b4b92094c..000000000 Binary files a/static/images/theme/thumbnail/2x/jake-101-bael-template-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jameshamann-jekyll-material-theme-2x.jpg b/static/images/theme/thumbnail/2x/jameshamann-jekyll-material-theme-2x.jpg new file mode 100644 index 000000000..8546c8784 Binary files /dev/null and b/static/images/theme/thumbnail/2x/jameshamann-jekyll-material-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jameshamann-jekyll-material-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/jameshamann-jekyll-material-theme-master-2x.jpg deleted file mode 100644 index a8d9f96f3..000000000 Binary files a/static/images/theme/thumbnail/2x/jameshamann-jekyll-material-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jamigibbs-phantom-2x.jpg b/static/images/theme/thumbnail/2x/jamigibbs-phantom-2x.jpg new file mode 100644 index 000000000..b77ac5498 Binary files /dev/null and b/static/images/theme/thumbnail/2x/jamigibbs-phantom-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jamigibbs-phantom-master-2x.jpg b/static/images/theme/thumbnail/2x/jamigibbs-phantom-master-2x.jpg deleted file mode 100644 index 6276f2798..000000000 Binary files a/static/images/theme/thumbnail/2x/jamigibbs-phantom-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/janczizikow-sleek-2x.jpg b/static/images/theme/thumbnail/2x/janczizikow-sleek-2x.jpg new file mode 100644 index 000000000..2bceed903 Binary files /dev/null and b/static/images/theme/thumbnail/2x/janczizikow-sleek-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/janczizikow-sleek-master-2x.jpg b/static/images/theme/thumbnail/2x/janczizikow-sleek-master-2x.jpg deleted file mode 100644 index 307b35a3d..000000000 Binary files a/static/images/theme/thumbnail/2x/janczizikow-sleek-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jannikbuschke-gatsby-antd-docs-2x.jpg b/static/images/theme/thumbnail/2x/jannikbuschke-gatsby-antd-docs-2x.jpg new file mode 100644 index 000000000..c450fd184 Binary files /dev/null and b/static/images/theme/thumbnail/2x/jannikbuschke-gatsby-antd-docs-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jannikbuschke-gatsby-antd-docs-master-2x.jpg b/static/images/theme/thumbnail/2x/jannikbuschke-gatsby-antd-docs-master-2x.jpg deleted file mode 100644 index 6b4200c3d..000000000 Binary files a/static/images/theme/thumbnail/2x/jannikbuschke-gatsby-antd-docs-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/janraasch-hugo-scroll-2x.jpg b/static/images/theme/thumbnail/2x/janraasch-hugo-scroll-2x.jpg new file mode 100644 index 000000000..4bbb295c7 Binary files /dev/null and b/static/images/theme/thumbnail/2x/janraasch-hugo-scroll-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jarrekk-jalpc-2x.jpg b/static/images/theme/thumbnail/2x/jarrekk-jalpc-2x.jpg new file mode 100644 index 000000000..5c992b634 Binary files /dev/null and b/static/images/theme/thumbnail/2x/jarrekk-jalpc-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jarrekk-jalpc-master-2x.jpg b/static/images/theme/thumbnail/2x/jarrekk-jalpc-master-2x.jpg deleted file mode 100644 index 66e4880bf..000000000 Binary files a/static/images/theme/thumbnail/2x/jarrekk-jalpc-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jasoncostello-slate-2x.jpg b/static/images/theme/thumbnail/2x/jasoncostello-slate-2x.jpg new file mode 100644 index 000000000..17454fae8 Binary files /dev/null and b/static/images/theme/thumbnail/2x/jasoncostello-slate-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jasoncostello-slate-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/jasoncostello-slate-gh-pages-2x.jpg deleted file mode 100644 index 4d0600ef2..000000000 Binary files a/static/images/theme/thumbnail/2x/jasoncostello-slate-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jaymehta20-nextjs-blog-page-2x.jpg b/static/images/theme/thumbnail/2x/jaymehta20-nextjs-blog-page-2x.jpg new file mode 100644 index 000000000..6835279ff Binary files /dev/null and b/static/images/theme/thumbnail/2x/jaymehta20-nextjs-blog-page-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jbub-ghostwriter-master-2x.jpg b/static/images/theme/thumbnail/2x/jbub-ghostwriter-master-2x.jpg deleted file mode 100644 index 9579c1582..000000000 Binary files a/static/images/theme/thumbnail/2x/jbub-ghostwriter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jdh8-sweet-16-master-2x.jpg b/static/images/theme/thumbnail/2x/jdh8-sweet-16-master-2x.jpg deleted file mode 100644 index 391f7fb0b..000000000 Binary files a/static/images/theme/thumbnail/2x/jdh8-sweet-16-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jeblister-bulma-master-2x.jpg b/static/images/theme/thumbnail/2x/jeblister-bulma-master-2x.jpg deleted file mode 100644 index a804b8bb3..000000000 Binary files a/static/images/theme/thumbnail/2x/jeblister-bulma-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jeblister-kube-2x.jpg b/static/images/theme/thumbnail/2x/jeblister-kube-2x.jpg new file mode 100644 index 000000000..e68e924c5 Binary files /dev/null and b/static/images/theme/thumbnail/2x/jeblister-kube-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jeblister-kube-master-2x.jpg b/static/images/theme/thumbnail/2x/jeblister-kube-master-2x.jpg deleted file mode 100644 index 20d796286..000000000 Binary files a/static/images/theme/thumbnail/2x/jeblister-kube-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jeffreytse-jekyll-theme-yat-2x.jpg b/static/images/theme/thumbnail/2x/jeffreytse-jekyll-theme-yat-2x.jpg new file mode 100644 index 000000000..7ab0c8f03 Binary files /dev/null and b/static/images/theme/thumbnail/2x/jeffreytse-jekyll-theme-yat-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jeffreytse-jekyll-theme-yat-master-2x.jpg b/static/images/theme/thumbnail/2x/jeffreytse-jekyll-theme-yat-master-2x.jpg deleted file mode 100644 index 54101160e..000000000 Binary files a/static/images/theme/thumbnail/2x/jeffreytse-jekyll-theme-yat-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jekyll-garden-jekyll-garden.github.io-2x.jpg b/static/images/theme/thumbnail/2x/jekyll-garden-jekyll-garden.github.io-2x.jpg new file mode 100644 index 000000000..7794bee2a Binary files /dev/null and b/static/images/theme/thumbnail/2x/jekyll-garden-jekyll-garden.github.io-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jekyll-one-j1-template-starter-2x.jpg b/static/images/theme/thumbnail/2x/jekyll-one-j1-template-starter-2x.jpg new file mode 100644 index 000000000..c79a82d17 Binary files /dev/null and b/static/images/theme/thumbnail/2x/jekyll-one-j1-template-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jekyller-jasper2-master-2x.jpg b/static/images/theme/thumbnail/2x/jekyller-jasper2-master-2x.jpg deleted file mode 100644 index df8f7b563..000000000 Binary files a/static/images/theme/thumbnail/2x/jekyller-jasper2-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jekyller-online-cv-2x.jpg b/static/images/theme/thumbnail/2x/jekyller-online-cv-2x.jpg new file mode 100644 index 000000000..00792262c Binary files /dev/null and b/static/images/theme/thumbnail/2x/jekyller-online-cv-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jekyller-online-cv-master-2x.jpg b/static/images/theme/thumbnail/2x/jekyller-online-cv-master-2x.jpg deleted file mode 100644 index bcda4d1bf..000000000 Binary files a/static/images/theme/thumbnail/2x/jekyller-online-cv-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jekyller-panelcv-2x.jpg b/static/images/theme/thumbnail/2x/jekyller-panelcv-2x.jpg new file mode 100644 index 000000000..8e4fa5d85 Binary files /dev/null and b/static/images/theme/thumbnail/2x/jekyller-panelcv-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jekyller-panelcv-master-2x.jpg b/static/images/theme/thumbnail/2x/jekyller-panelcv-master-2x.jpg deleted file mode 100644 index 55cc52255..000000000 Binary files a/static/images/theme/thumbnail/2x/jekyller-panelcv-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jekynewage-jekynewage.github.io-2x.jpg b/static/images/theme/thumbnail/2x/jekynewage-jekynewage.github.io-2x.jpg new file mode 100644 index 000000000..9c03f0f18 Binary files /dev/null and b/static/images/theme/thumbnail/2x/jekynewage-jekynewage.github.io-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jekynewage-jekynewage.github.io-master-2x.jpg b/static/images/theme/thumbnail/2x/jekynewage-jekynewage.github.io-master-2x.jpg deleted file mode 100644 index 0a050505b..000000000 Binary files a/static/images/theme/thumbnail/2x/jekynewage-jekynewage.github.io-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jeromelachaud-freelancer-theme-2x.jpg b/static/images/theme/thumbnail/2x/jeromelachaud-freelancer-theme-2x.jpg new file mode 100644 index 000000000..3ac1fbc7f Binary files /dev/null and b/static/images/theme/thumbnail/2x/jeromelachaud-freelancer-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jeromelachaud-freelancer-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/jeromelachaud-freelancer-theme-master-2x.jpg deleted file mode 100644 index 62aba0e29..000000000 Binary files a/static/images/theme/thumbnail/2x/jeromelachaud-freelancer-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jeromelachaud-grayscale-theme-2x.jpg b/static/images/theme/thumbnail/2x/jeromelachaud-grayscale-theme-2x.jpg new file mode 100644 index 000000000..339af59cb Binary files /dev/null and b/static/images/theme/thumbnail/2x/jeromelachaud-grayscale-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jeromelachaud-grayscale-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/jeromelachaud-grayscale-theme-master-2x.jpg deleted file mode 100644 index dc1d9ca02..000000000 Binary files a/static/images/theme/thumbnail/2x/jeromelachaud-grayscale-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jerryc127-hexo-theme-butterfly-2x.jpg b/static/images/theme/thumbnail/2x/jerryc127-hexo-theme-butterfly-2x.jpg new file mode 100644 index 000000000..c0034be79 Binary files /dev/null and b/static/images/theme/thumbnail/2x/jerryc127-hexo-theme-butterfly-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jerryc127-hexo-theme-butterfly-master-2x.jpg b/static/images/theme/thumbnail/2x/jerryc127-hexo-theme-butterfly-master-2x.jpg deleted file mode 100644 index 1c948a0bf..000000000 Binary files a/static/images/theme/thumbnail/2x/jerryc127-hexo-theme-butterfly-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jesselau76-hugo-w3-simple-master-2x.jpg b/static/images/theme/thumbnail/2x/jesselau76-hugo-w3-simple-master-2x.jpg deleted file mode 100644 index 062706ce1..000000000 Binary files a/static/images/theme/thumbnail/2x/jesselau76-hugo-w3-simple-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jitinnair1-gradfolio-2x.jpg b/static/images/theme/thumbnail/2x/jitinnair1-gradfolio-2x.jpg new file mode 100644 index 000000000..e6c5e9220 Binary files /dev/null and b/static/images/theme/thumbnail/2x/jitinnair1-gradfolio-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jjcav84-mdbreact-gatsby-starter-2x.jpg b/static/images/theme/thumbnail/2x/jjcav84-mdbreact-gatsby-starter-2x.jpg new file mode 100644 index 000000000..cc8f925c3 Binary files /dev/null and b/static/images/theme/thumbnail/2x/jjcav84-mdbreact-gatsby-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jjcav84-mdbreact-gatsby-starter-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/jjcav84-mdbreact-gatsby-starter-gh-pages-2x.jpg deleted file mode 100644 index ba1e619ca..000000000 Binary files a/static/images/theme/thumbnail/2x/jjcav84-mdbreact-gatsby-starter-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jkytoela-next-startd-2x.jpg b/static/images/theme/thumbnail/2x/jkytoela-next-startd-2x.jpg new file mode 100644 index 000000000..520edb8be Binary files /dev/null and b/static/images/theme/thumbnail/2x/jkytoela-next-startd-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jmau111-gatsby-juma-2x.jpg b/static/images/theme/thumbnail/2x/jmau111-gatsby-juma-2x.jpg new file mode 100644 index 000000000..92d11f7b1 Binary files /dev/null and b/static/images/theme/thumbnail/2x/jmau111-gatsby-juma-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jmau111-gatsby-nes-2x.jpg b/static/images/theme/thumbnail/2x/jmau111-gatsby-nes-2x.jpg new file mode 100644 index 000000000..3c6664519 Binary files /dev/null and b/static/images/theme/thumbnail/2x/jmau111-gatsby-nes-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jmau111-hugo-theme-ava-2x.jpg b/static/images/theme/thumbnail/2x/jmau111-hugo-theme-ava-2x.jpg new file mode 100644 index 000000000..384dfb38b Binary files /dev/null and b/static/images/theme/thumbnail/2x/jmau111-hugo-theme-ava-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jmschrack-dark-portfolio-template-11ty-2x.jpg b/static/images/theme/thumbnail/2x/jmschrack-dark-portfolio-template-11ty-2x.jpg new file mode 100644 index 000000000..d30d1925c Binary files /dev/null and b/static/images/theme/thumbnail/2x/jmschrack-dark-portfolio-template-11ty-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jmschrack-dark-portfolio-template-11ty-dev-2x.jpg b/static/images/theme/thumbnail/2x/jmschrack-dark-portfolio-template-11ty-dev-2x.jpg deleted file mode 100644 index 8330d6adc..000000000 Binary files a/static/images/theme/thumbnail/2x/jmschrack-dark-portfolio-template-11ty-dev-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jnjosh-internet-weblog-master-2x.jpg b/static/images/theme/thumbnail/2x/jnjosh-internet-weblog-master-2x.jpg deleted file mode 100644 index ee1321327..000000000 Binary files a/static/images/theme/thumbnail/2x/jnjosh-internet-weblog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/johncoene-marat-2x.jpg b/static/images/theme/thumbnail/2x/johncoene-marat-2x.jpg new file mode 100644 index 000000000..e5d19767a Binary files /dev/null and b/static/images/theme/thumbnail/2x/johncoene-marat-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/johncoene-marat-master-2x.jpg b/static/images/theme/thumbnail/2x/johncoene-marat-master-2x.jpg deleted file mode 100644 index e3c775cb9..000000000 Binary files a/static/images/theme/thumbnail/2x/johncoene-marat-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/johnotander-pixyll-master-2x.jpg b/static/images/theme/thumbnail/2x/johnotander-pixyll-master-2x.jpg deleted file mode 100644 index 1d5ab4c4d..000000000 Binary files a/static/images/theme/thumbnail/2x/johnotander-pixyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/josephdyer-skeleventy-2x.jpg b/static/images/theme/thumbnail/2x/josephdyer-skeleventy-2x.jpg new file mode 100644 index 000000000..9ccdebae6 Binary files /dev/null and b/static/images/theme/thumbnail/2x/josephdyer-skeleventy-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/josephdyer-skeleventy-master-2x.jpg b/static/images/theme/thumbnail/2x/josephdyer-skeleventy-master-2x.jpg deleted file mode 100644 index ad09f3d31..000000000 Binary files a/static/images/theme/thumbnail/2x/josephdyer-skeleventy-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/josephhutch-aether-master-2x.jpg b/static/images/theme/thumbnail/2x/josephhutch-aether-master-2x.jpg deleted file mode 100644 index 5c3e7812c..000000000 Binary files a/static/images/theme/thumbnail/2x/josephhutch-aether-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/joshgerdes-jekyll-uno-2x.jpg b/static/images/theme/thumbnail/2x/joshgerdes-jekyll-uno-2x.jpg new file mode 100644 index 000000000..af67ae660 Binary files /dev/null and b/static/images/theme/thumbnail/2x/joshgerdes-jekyll-uno-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/joshgerdes-jekyll-uno-master-2x.jpg b/static/images/theme/thumbnail/2x/joshgerdes-jekyll-uno-master-2x.jpg deleted file mode 100644 index 9e2898fb1..000000000 Binary files a/static/images/theme/thumbnail/2x/joshgerdes-jekyll-uno-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/joshuaavalon-jekyll-avalon-2x.jpg b/static/images/theme/thumbnail/2x/joshuaavalon-jekyll-avalon-2x.jpg new file mode 100644 index 000000000..e0e489c8c Binary files /dev/null and b/static/images/theme/thumbnail/2x/joshuaavalon-jekyll-avalon-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/joshuaavalon-jekyll-avalon-master-2x.jpg b/static/images/theme/thumbnail/2x/joshuaavalon-jekyll-avalon-master-2x.jpg deleted file mode 100644 index cec458e8f..000000000 Binary files a/static/images/theme/thumbnail/2x/joshuaavalon-jekyll-avalon-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jota-ele-ene-just-me-2x.jpg b/static/images/theme/thumbnail/2x/jota-ele-ene-just-me-2x.jpg new file mode 100644 index 000000000..4e2f96208 Binary files /dev/null and b/static/images/theme/thumbnail/2x/jota-ele-ene-just-me-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/joway-hugo-theme-yinyang-2x.jpg b/static/images/theme/thumbnail/2x/joway-hugo-theme-yinyang-2x.jpg new file mode 100644 index 000000000..c1d2e3040 Binary files /dev/null and b/static/images/theme/thumbnail/2x/joway-hugo-theme-yinyang-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/joway-hugo-theme-yinyang-master-2x.jpg b/static/images/theme/thumbnail/2x/joway-hugo-theme-yinyang-master-2x.jpg deleted file mode 100644 index 95361e3ca..000000000 Binary files a/static/images/theme/thumbnail/2x/joway-hugo-theme-yinyang-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/joytou-joytou.github.io-2x.jpg b/static/images/theme/thumbnail/2x/joytou-joytou.github.io-2x.jpg new file mode 100644 index 000000000..3949ecfcf Binary files /dev/null and b/static/images/theme/thumbnail/2x/joytou-joytou.github.io-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/joytou-joytou.github.io-master-2x.jpg b/static/images/theme/thumbnail/2x/joytou-joytou.github.io-master-2x.jpg deleted file mode 100644 index b0d540f82..000000000 Binary files a/static/images/theme/thumbnail/2x/joytou-joytou.github.io-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jpanther-congo-2x.jpg b/static/images/theme/thumbnail/2x/jpanther-congo-2x.jpg new file mode 100644 index 000000000..f45e5b72d Binary files /dev/null and b/static/images/theme/thumbnail/2x/jpanther-congo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jpanther-lynx-2x.jpg b/static/images/theme/thumbnail/2x/jpanther-lynx-2x.jpg new file mode 100644 index 000000000..adb260d3a Binary files /dev/null and b/static/images/theme/thumbnail/2x/jpanther-lynx-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jpescador-hugo-future-imperfect-master-2x.jpg b/static/images/theme/thumbnail/2x/jpescador-hugo-future-imperfect-master-2x.jpg deleted file mode 100644 index 304c4f117..000000000 Binary files a/static/images/theme/thumbnail/2x/jpescador-hugo-future-imperfect-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jrutheiser-hugo-lithium-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/jrutheiser-hugo-lithium-theme-master-2x.jpg deleted file mode 100644 index 1b8c656f7..000000000 Binary files a/static/images/theme/thumbnail/2x/jrutheiser-hugo-lithium-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jsappme-gridsome-shopify-starter-2x.jpg b/static/images/theme/thumbnail/2x/jsappme-gridsome-shopify-starter-2x.jpg new file mode 100644 index 000000000..7e7bbeadd Binary files /dev/null and b/static/images/theme/thumbnail/2x/jsappme-gridsome-shopify-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jsappme-gridsome-shopify-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/jsappme-gridsome-shopify-starter-master-2x.jpg deleted file mode 100644 index 05cb65cf1..000000000 Binary files a/static/images/theme/thumbnail/2x/jsappme-gridsome-shopify-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jsnjack-hugo-changelog-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/jsnjack-hugo-changelog-theme-master-2x.jpg deleted file mode 100644 index 7127b5ee3..000000000 Binary files a/static/images/theme/thumbnail/2x/jsnjack-hugo-changelog-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jsnjack-kraiklyn-master-2x.jpg b/static/images/theme/thumbnail/2x/jsnjack-kraiklyn-master-2x.jpg deleted file mode 100644 index b377f2526..000000000 Binary files a/static/images/theme/thumbnail/2x/jsnjack-kraiklyn-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jugglerx-gatsby-serif-theme-2x.jpg b/static/images/theme/thumbnail/2x/jugglerx-gatsby-serif-theme-2x.jpg new file mode 100644 index 000000000..657a19908 Binary files /dev/null and b/static/images/theme/thumbnail/2x/jugglerx-gatsby-serif-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jugglerx-gatsby-serif-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/jugglerx-gatsby-serif-theme-master-2x.jpg deleted file mode 100644 index 649cd577c..000000000 Binary files a/static/images/theme/thumbnail/2x/jugglerx-gatsby-serif-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jugglerx-hugo-hero-theme-2x.jpg b/static/images/theme/thumbnail/2x/jugglerx-hugo-hero-theme-2x.jpg new file mode 100644 index 000000000..5f2df712f Binary files /dev/null and b/static/images/theme/thumbnail/2x/jugglerx-hugo-hero-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jugglerx-hugo-hero-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/jugglerx-hugo-hero-theme-master-2x.jpg deleted file mode 100644 index de9fcdc75..000000000 Binary files a/static/images/theme/thumbnail/2x/jugglerx-hugo-hero-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jugglerx-hugo-whisper-theme-2x.jpg b/static/images/theme/thumbnail/2x/jugglerx-hugo-whisper-theme-2x.jpg new file mode 100644 index 000000000..a868c837f Binary files /dev/null and b/static/images/theme/thumbnail/2x/jugglerx-hugo-whisper-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jugglerx-hugo-whisper-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/jugglerx-hugo-whisper-theme-master-2x.jpg deleted file mode 100644 index 3034f38f9..000000000 Binary files a/static/images/theme/thumbnail/2x/jugglerx-hugo-whisper-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jugglerx-jekyll-serif-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/jugglerx-jekyll-serif-theme-master-2x.jpg deleted file mode 100644 index b00507c4b..000000000 Binary files a/static/images/theme/thumbnail/2x/jugglerx-jekyll-serif-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/juhi-trivedi-cape-2x.jpg b/static/images/theme/thumbnail/2x/juhi-trivedi-cape-2x.jpg new file mode 100644 index 000000000..6dd2e6a77 Binary files /dev/null and b/static/images/theme/thumbnail/2x/juhi-trivedi-cape-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/juhi-trivedi-cape-master-2x.jpg b/static/images/theme/thumbnail/2x/juhi-trivedi-cape-master-2x.jpg deleted file mode 100644 index 9621242ef..000000000 Binary files a/static/images/theme/thumbnail/2x/juhi-trivedi-cape-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jumpalottahigh-gatsby-starter-blog-jumpalottahigh-2x.jpg b/static/images/theme/thumbnail/2x/jumpalottahigh-gatsby-starter-blog-jumpalottahigh-2x.jpg new file mode 100644 index 000000000..ddb3c2530 Binary files /dev/null and b/static/images/theme/thumbnail/2x/jumpalottahigh-gatsby-starter-blog-jumpalottahigh-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jumpalottahigh-gatsby-starter-blog-jumpalottahigh-master-2x.jpg b/static/images/theme/thumbnail/2x/jumpalottahigh-gatsby-starter-blog-jumpalottahigh-master-2x.jpg deleted file mode 100644 index f7e229bff..000000000 Binary files a/static/images/theme/thumbnail/2x/jumpalottahigh-gatsby-starter-blog-jumpalottahigh-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/junlulocky-popuptweets-2x.jpg b/static/images/theme/thumbnail/2x/junlulocky-popuptweets-2x.jpg new file mode 100644 index 000000000..a2136aaa5 Binary files /dev/null and b/static/images/theme/thumbnail/2x/junlulocky-popuptweets-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/junlulocky-popuptweets-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/junlulocky-popuptweets-gh-pages-2x.jpg deleted file mode 100644 index 2f10da005..000000000 Binary files a/static/images/theme/thumbnail/2x/junlulocky-popuptweets-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/justgoodthemes-blogbox-jekyll-theme-2x.jpg b/static/images/theme/thumbnail/2x/justgoodthemes-blogbox-jekyll-theme-2x.jpg new file mode 100644 index 000000000..de7e49974 Binary files /dev/null and b/static/images/theme/thumbnail/2x/justgoodthemes-blogbox-jekyll-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/justgoodthemes-scriptor-jekyll-theme-2x.jpg b/static/images/theme/thumbnail/2x/justgoodthemes-scriptor-jekyll-theme-2x.jpg new file mode 100644 index 000000000..6614a9e27 Binary files /dev/null and b/static/images/theme/thumbnail/2x/justgoodthemes-scriptor-jekyll-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/justinformentin-gatsby-v2-tutorial-starter-2x.jpg b/static/images/theme/thumbnail/2x/justinformentin-gatsby-v2-tutorial-starter-2x.jpg new file mode 100644 index 000000000..cb95e7fd4 Binary files /dev/null and b/static/images/theme/thumbnail/2x/justinformentin-gatsby-v2-tutorial-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/justinformentin-gatsby-v2-tutorial-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/justinformentin-gatsby-v2-tutorial-starter-master-2x.jpg deleted file mode 100644 index 44c380e2c..000000000 Binary files a/static/images/theme/thumbnail/2x/justinformentin-gatsby-v2-tutorial-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jweslley-hugo-conference-master-2x.jpg b/static/images/theme/thumbnail/2x/jweslley-hugo-conference-master-2x.jpg deleted file mode 100644 index 248dcadda..000000000 Binary files a/static/images/theme/thumbnail/2x/jweslley-hugo-conference-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/jwillmer-jekylldecent-2x.jpg b/static/images/theme/thumbnail/2x/jwillmer-jekylldecent-2x.jpg new file mode 100644 index 000000000..4e9b7cfaa Binary files /dev/null and b/static/images/theme/thumbnail/2x/jwillmer-jekylldecent-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/jwillmer-jekylldecent-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/jwillmer-jekylldecent-gh-pages-2x.jpg deleted file mode 100644 index b169f20f9..000000000 Binary files a/static/images/theme/thumbnail/2x/jwillmer-jekylldecent-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/kakawait-hugo-tranquilpeak-theme-2x.jpg b/static/images/theme/thumbnail/2x/kakawait-hugo-tranquilpeak-theme-2x.jpg new file mode 100644 index 000000000..2793ae083 Binary files /dev/null and b/static/images/theme/thumbnail/2x/kakawait-hugo-tranquilpeak-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/kakawait-hugo-tranquilpeak-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/kakawait-hugo-tranquilpeak-theme-master-2x.jpg deleted file mode 100644 index da383a791..000000000 Binary files a/static/images/theme/thumbnail/2x/kakawait-hugo-tranquilpeak-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/kamikat-jekyll-theme-kagami-2x.jpg b/static/images/theme/thumbnail/2x/kamikat-jekyll-theme-kagami-2x.jpg new file mode 100644 index 000000000..7d12f5fc3 Binary files /dev/null and b/static/images/theme/thumbnail/2x/kamikat-jekyll-theme-kagami-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/kamikat-jekyll-theme-kagami-master-2x.jpg b/static/images/theme/thumbnail/2x/kamikat-jekyll-theme-kagami-master-2x.jpg deleted file mode 100644 index 85c86f67b..000000000 Binary files a/static/images/theme/thumbnail/2x/kamikat-jekyll-theme-kagami-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/karloespiritu-blackdoc-master-2x.jpg b/static/images/theme/thumbnail/2x/karloespiritu-blackdoc-master-2x.jpg deleted file mode 100644 index d562514cb..000000000 Binary files a/static/images/theme/thumbnail/2x/karloespiritu-blackdoc-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/kausalflow-connectome-2x.jpg b/static/images/theme/thumbnail/2x/kausalflow-connectome-2x.jpg new file mode 100644 index 000000000..101ca2de6 Binary files /dev/null and b/static/images/theme/thumbnail/2x/kausalflow-connectome-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/kausalflow-connectome-master-2x.jpg b/static/images/theme/thumbnail/2x/kausalflow-connectome-master-2x.jpg deleted file mode 100644 index 5b40835e0..000000000 Binary files a/static/images/theme/thumbnail/2x/kausalflow-connectome-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/kaushalmodi-hugo-bare-min-theme-2x.jpg b/static/images/theme/thumbnail/2x/kaushalmodi-hugo-bare-min-theme-2x.jpg new file mode 100644 index 000000000..9c6d8dff6 Binary files /dev/null and b/static/images/theme/thumbnail/2x/kaushalmodi-hugo-bare-min-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/kaushalmodi-hugo-bare-min-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/kaushalmodi-hugo-bare-min-theme-master-2x.jpg deleted file mode 100644 index 8cb97e756..000000000 Binary files a/static/images/theme/thumbnail/2x/kaushalmodi-hugo-bare-min-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/kazumasato-siera-2x.jpg b/static/images/theme/thumbnail/2x/kazumasato-siera-2x.jpg new file mode 100644 index 000000000..b0b05525b Binary files /dev/null and b/static/images/theme/thumbnail/2x/kazumasato-siera-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/kazumasato-siera-master-2x.jpg b/static/images/theme/thumbnail/2x/kazumasato-siera-master-2x.jpg deleted file mode 100644 index 1a434895e..000000000 Binary files a/static/images/theme/thumbnail/2x/kazumasato-siera-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/kc0bfv-autophugo-2x.jpg b/static/images/theme/thumbnail/2x/kc0bfv-autophugo-2x.jpg new file mode 100644 index 000000000..fb5416de5 Binary files /dev/null and b/static/images/theme/thumbnail/2x/kc0bfv-autophugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/kc0bfv-autophugo-master-2x.jpg b/static/images/theme/thumbnail/2x/kc0bfv-autophugo-master-2x.jpg deleted file mode 100644 index 9110340f8..000000000 Binary files a/static/images/theme/thumbnail/2x/kc0bfv-autophugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/kc0bfv-ticky_tacky_dark-2x.jpg b/static/images/theme/thumbnail/2x/kc0bfv-ticky_tacky_dark-2x.jpg new file mode 100644 index 000000000..142294bcd Binary files /dev/null and b/static/images/theme/thumbnail/2x/kc0bfv-ticky_tacky_dark-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/kc0bfv-ticky_tacky_dark-master-2x.jpg b/static/images/theme/thumbnail/2x/kc0bfv-ticky_tacky_dark-master-2x.jpg deleted file mode 100644 index d470c5599..000000000 Binary files a/static/images/theme/thumbnail/2x/kc0bfv-ticky_tacky_dark-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/kdevo-osprey-delight-2x.jpg b/static/images/theme/thumbnail/2x/kdevo-osprey-delight-2x.jpg new file mode 100644 index 000000000..a0da8eaf7 Binary files /dev/null and b/static/images/theme/thumbnail/2x/kdevo-osprey-delight-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/kdheepak-pelican-smoothie-2x.jpg b/static/images/theme/thumbnail/2x/kdheepak-pelican-smoothie-2x.jpg new file mode 100644 index 000000000..07f517f19 Binary files /dev/null and b/static/images/theme/thumbnail/2x/kdheepak-pelican-smoothie-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/kdheepak-pelican-smoothie-master-2x.jpg b/static/images/theme/thumbnail/2x/kdheepak-pelican-smoothie-master-2x.jpg deleted file mode 100644 index 70fce31db..000000000 Binary files a/static/images/theme/thumbnail/2x/kdheepak-pelican-smoothie-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/keichi-vienna-master-2x.jpg b/static/images/theme/thumbnail/2x/keichi-vienna-master-2x.jpg deleted file mode 100644 index 86ff9aaec..000000000 Binary files a/static/images/theme/thumbnail/2x/keichi-vienna-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/kejunmao-jekyll-theme-mdui-master-2x.jpg b/static/images/theme/thumbnail/2x/kejunmao-jekyll-theme-mdui-master-2x.jpg deleted file mode 100644 index 7a705c9d7..000000000 Binary files a/static/images/theme/thumbnail/2x/kejunmao-jekyll-theme-mdui-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/kendallstrautman-brevifolia-gatsby-forestry-2x.jpg b/static/images/theme/thumbnail/2x/kendallstrautman-brevifolia-gatsby-forestry-2x.jpg new file mode 100644 index 000000000..bcfb0f9fc Binary files /dev/null and b/static/images/theme/thumbnail/2x/kendallstrautman-brevifolia-gatsby-forestry-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/kendallstrautman-brevifolia-gatsby-forestry-master-2x.jpg b/static/images/theme/thumbnail/2x/kendallstrautman-brevifolia-gatsby-forestry-master-2x.jpg deleted file mode 100644 index 9a36f8adf..000000000 Binary files a/static/images/theme/thumbnail/2x/kendallstrautman-brevifolia-gatsby-forestry-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/kendallstrautman-brevifolia-gridsome-forestry-2x.jpg b/static/images/theme/thumbnail/2x/kendallstrautman-brevifolia-gridsome-forestry-2x.jpg new file mode 100644 index 000000000..fdaf59e34 Binary files /dev/null and b/static/images/theme/thumbnail/2x/kendallstrautman-brevifolia-gridsome-forestry-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/kendallstrautman-brevifolia-gridsome-forestry-master-2x.jpg b/static/images/theme/thumbnail/2x/kendallstrautman-brevifolia-gridsome-forestry-master-2x.jpg deleted file mode 100644 index 4b9186c6d..000000000 Binary files a/static/images/theme/thumbnail/2x/kendallstrautman-brevifolia-gridsome-forestry-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/kentico-gatsby-starter-kentico-cloud-master-2x.jpg b/static/images/theme/thumbnail/2x/kentico-gatsby-starter-kentico-cloud-master-2x.jpg deleted file mode 100644 index 78d480574..000000000 Binary files a/static/images/theme/thumbnail/2x/kentico-gatsby-starter-kentico-cloud-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/kentico-gatsby-starter-kontent-2x.jpg b/static/images/theme/thumbnail/2x/kentico-gatsby-starter-kontent-2x.jpg new file mode 100644 index 000000000..8d47d09d6 Binary files /dev/null and b/static/images/theme/thumbnail/2x/kentico-gatsby-starter-kontent-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/kentico-gatsby-starter-kontent-lumen-2x.jpg b/static/images/theme/thumbnail/2x/kentico-gatsby-starter-kontent-lumen-2x.jpg new file mode 100644 index 000000000..d787bba2a Binary files /dev/null and b/static/images/theme/thumbnail/2x/kentico-gatsby-starter-kontent-lumen-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/kentico-gatsby-starter-kontent-lumen-master-2x.jpg b/static/images/theme/thumbnail/2x/kentico-gatsby-starter-kontent-lumen-master-2x.jpg deleted file mode 100644 index 1ed10c7e1..000000000 Binary files a/static/images/theme/thumbnail/2x/kentico-gatsby-starter-kontent-lumen-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/kentico-gatsby-starter-kontent-master-2x.jpg b/static/images/theme/thumbnail/2x/kentico-gatsby-starter-kontent-master-2x.jpg deleted file mode 100644 index 57c0c3868..000000000 Binary files a/static/images/theme/thumbnail/2x/kentico-gatsby-starter-kontent-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/kentico-kontent-boilerplate-statiq-net-2x.jpg b/static/images/theme/thumbnail/2x/kentico-kontent-boilerplate-statiq-net-2x.jpg new file mode 100644 index 000000000..d3dea2836 Binary files /dev/null and b/static/images/theme/thumbnail/2x/kentico-kontent-boilerplate-statiq-net-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/kentico-kontent-boilerplate-statiq-net-master-2x.jpg b/static/images/theme/thumbnail/2x/kentico-kontent-boilerplate-statiq-net-master-2x.jpg deleted file mode 100644 index c72639039..000000000 Binary files a/static/images/theme/thumbnail/2x/kentico-kontent-boilerplate-statiq-net-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/kentico-kontent-jekyll-blog-2x.jpg b/static/images/theme/thumbnail/2x/kentico-kontent-jekyll-blog-2x.jpg new file mode 100644 index 000000000..f0ea7f4cc Binary files /dev/null and b/static/images/theme/thumbnail/2x/kentico-kontent-jekyll-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/kentico-kontent-jekyll-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/kentico-kontent-jekyll-blog-master-2x.jpg deleted file mode 100644 index 6116518e1..000000000 Binary files a/static/images/theme/thumbnail/2x/kentico-kontent-jekyll-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/kentico-kontent-sample-dancing-goat-gridsome-2x.jpg b/static/images/theme/thumbnail/2x/kentico-kontent-sample-dancing-goat-gridsome-2x.jpg new file mode 100644 index 000000000..7148963ac Binary files /dev/null and b/static/images/theme/thumbnail/2x/kentico-kontent-sample-dancing-goat-gridsome-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/kentico-kontent-sample-dancing-goat-gridsome-master-2x.jpg b/static/images/theme/thumbnail/2x/kentico-kontent-sample-dancing-goat-gridsome-master-2x.jpg deleted file mode 100644 index ebcc196e3..000000000 Binary files a/static/images/theme/thumbnail/2x/kentico-kontent-sample-dancing-goat-gridsome-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/kentico-statiq-starter-kontent-lumen-2x.jpg b/static/images/theme/thumbnail/2x/kentico-statiq-starter-kontent-lumen-2x.jpg new file mode 100644 index 000000000..1d0d84615 Binary files /dev/null and b/static/images/theme/thumbnail/2x/kentico-statiq-starter-kontent-lumen-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/kentico-statiq-starter-kontent-lumen-master-2x.jpg b/static/images/theme/thumbnail/2x/kentico-statiq-starter-kontent-lumen-master-2x.jpg deleted file mode 100644 index 4d0641dad..000000000 Binary files a/static/images/theme/thumbnail/2x/kentico-statiq-starter-kontent-lumen-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/kevit-devaid-jekyll-theme-2x.jpg b/static/images/theme/thumbnail/2x/kevit-devaid-jekyll-theme-2x.jpg new file mode 100644 index 000000000..7de092f78 Binary files /dev/null and b/static/images/theme/thumbnail/2x/kevit-devaid-jekyll-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/kevit-devaid-jekyll-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/kevit-devaid-jekyll-theme-master-2x.jpg deleted file mode 100644 index 5dec03f8e..000000000 Binary files a/static/images/theme/thumbnail/2x/kevit-devaid-jekyll-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/kimnagui-gatsby-starter-nagui-master-2x.jpg b/static/images/theme/thumbnail/2x/kimnagui-gatsby-starter-nagui-master-2x.jpg deleted file mode 100644 index ef8f5da53..000000000 Binary files a/static/images/theme/thumbnail/2x/kimnagui-gatsby-starter-nagui-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/kingfelix-emerald-master-2x.jpg b/static/images/theme/thumbnail/2x/kingfelix-emerald-master-2x.jpg deleted file mode 100644 index fb5279d08..000000000 Binary files a/static/images/theme/thumbnail/2x/kingfelix-emerald-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/kishaningithub-hugo-creative-portfolio-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/kishaningithub-hugo-creative-portfolio-theme-master-2x.jpg deleted file mode 100644 index a95d035bb..000000000 Binary files a/static/images/theme/thumbnail/2x/kishaningithub-hugo-creative-portfolio-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/kitian616-jekyll-text-theme-2x.jpg b/static/images/theme/thumbnail/2x/kitian616-jekyll-text-theme-2x.jpg new file mode 100644 index 000000000..be8a142c3 Binary files /dev/null and b/static/images/theme/thumbnail/2x/kitian616-jekyll-text-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/kitian616-jekyll-text-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/kitian616-jekyll-text-theme-master-2x.jpg deleted file mode 100644 index 09f380b9b..000000000 Binary files a/static/images/theme/thumbnail/2x/kitian616-jekyll-text-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/kkninjae-book-master-2x.jpg b/static/images/theme/thumbnail/2x/kkninjae-book-master-2x.jpg deleted file mode 100644 index e6133d1cb..000000000 Binary files a/static/images/theme/thumbnail/2x/kkninjae-book-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/klugjo-hexo-theme-alpha-dust-2x.jpg b/static/images/theme/thumbnail/2x/klugjo-hexo-theme-alpha-dust-2x.jpg new file mode 100644 index 000000000..64711cd35 Binary files /dev/null and b/static/images/theme/thumbnail/2x/klugjo-hexo-theme-alpha-dust-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/klugjo-hexo-theme-alpha-dust-master-2x.jpg b/static/images/theme/thumbnail/2x/klugjo-hexo-theme-alpha-dust-master-2x.jpg deleted file mode 100644 index 4bf5d8e83..000000000 Binary files a/static/images/theme/thumbnail/2x/klugjo-hexo-theme-alpha-dust-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/klugjo-hexo-theme-anodyne-2x.jpg b/static/images/theme/thumbnail/2x/klugjo-hexo-theme-anodyne-2x.jpg new file mode 100644 index 000000000..91cd0d419 Binary files /dev/null and b/static/images/theme/thumbnail/2x/klugjo-hexo-theme-anodyne-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/klugjo-hexo-theme-anodyne-master-2x.jpg b/static/images/theme/thumbnail/2x/klugjo-hexo-theme-anodyne-master-2x.jpg deleted file mode 100644 index 42e040167..000000000 Binary files a/static/images/theme/thumbnail/2x/klugjo-hexo-theme-anodyne-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/klugjo-hexo-theme-clean-blog-2x.jpg b/static/images/theme/thumbnail/2x/klugjo-hexo-theme-clean-blog-2x.jpg new file mode 100644 index 000000000..3cecc14ce Binary files /dev/null and b/static/images/theme/thumbnail/2x/klugjo-hexo-theme-clean-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/klugjo-hexo-theme-clean-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/klugjo-hexo-theme-clean-blog-master-2x.jpg deleted file mode 100644 index f70323915..000000000 Binary files a/static/images/theme/thumbnail/2x/klugjo-hexo-theme-clean-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/klugjo-hexo-theme-phantom-2x.jpg b/static/images/theme/thumbnail/2x/klugjo-hexo-theme-phantom-2x.jpg new file mode 100644 index 000000000..ed04d155c Binary files /dev/null and b/static/images/theme/thumbnail/2x/klugjo-hexo-theme-phantom-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/klugjo-hexo-theme-phantom-master-2x.jpg b/static/images/theme/thumbnail/2x/klugjo-hexo-theme-phantom-master-2x.jpg deleted file mode 100644 index 38ac13db3..000000000 Binary files a/static/images/theme/thumbnail/2x/klugjo-hexo-theme-phantom-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/knaman2609-clean-2x.jpg b/static/images/theme/thumbnail/2x/knaman2609-clean-2x.jpg new file mode 100644 index 000000000..c51e0032f Binary files /dev/null and b/static/images/theme/thumbnail/2x/knaman2609-clean-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/knaman2609-clean-master-2x.jpg b/static/images/theme/thumbnail/2x/knaman2609-clean-master-2x.jpg deleted file mode 100644 index 65b94d54e..000000000 Binary files a/static/images/theme/thumbnail/2x/knaman2609-clean-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/knhash-jekyllbear-2x.jpg b/static/images/theme/thumbnail/2x/knhash-jekyllbear-2x.jpg new file mode 100644 index 000000000..678184f71 Binary files /dev/null and b/static/images/theme/thumbnail/2x/knhash-jekyllbear-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/knhash-pudhina-2x.jpg b/static/images/theme/thumbnail/2x/knhash-pudhina-2x.jpg new file mode 100644 index 000000000..c509267e5 Binary files /dev/null and b/static/images/theme/thumbnail/2x/knhash-pudhina-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/knhash-pudhina-master-2x.jpg b/static/images/theme/thumbnail/2x/knhash-pudhina-master-2x.jpg deleted file mode 100644 index cfb04c1a3..000000000 Binary files a/static/images/theme/thumbnail/2x/knhash-pudhina-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/knightjdr-gatsby-starter-scientist-2x.jpg b/static/images/theme/thumbnail/2x/knightjdr-gatsby-starter-scientist-2x.jpg new file mode 100644 index 000000000..ea3c38172 Binary files /dev/null and b/static/images/theme/thumbnail/2x/knightjdr-gatsby-starter-scientist-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/knightjdr-gatsby-starter-scientist-master-2x.jpg b/static/images/theme/thumbnail/2x/knightjdr-gatsby-starter-scientist-master-2x.jpg deleted file mode 100644 index 85a945166..000000000 Binary files a/static/images/theme/thumbnail/2x/knightjdr-gatsby-starter-scientist-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/koirand-pulp-master-2x.jpg b/static/images/theme/thumbnail/2x/koirand-pulp-master-2x.jpg deleted file mode 100644 index 843e4b87e..000000000 Binary files a/static/images/theme/thumbnail/2x/koirand-pulp-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/konsumer-gatsby-starter-bootstrap-netlify-2x.jpg b/static/images/theme/thumbnail/2x/konsumer-gatsby-starter-bootstrap-netlify-2x.jpg new file mode 100644 index 000000000..f75e301a7 Binary files /dev/null and b/static/images/theme/thumbnail/2x/konsumer-gatsby-starter-bootstrap-netlify-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/konsumer-gatsby-starter-bootstrap-netlify-master-2x.jpg b/static/images/theme/thumbnail/2x/konsumer-gatsby-starter-bootstrap-netlify-master-2x.jpg deleted file mode 100644 index 8a89f9b1e..000000000 Binary files a/static/images/theme/thumbnail/2x/konsumer-gatsby-starter-bootstrap-netlify-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/kronik3r-daktilo-2x.jpg b/static/images/theme/thumbnail/2x/kronik3r-daktilo-2x.jpg new file mode 100644 index 000000000..ebe31d431 Binary files /dev/null and b/static/images/theme/thumbnail/2x/kronik3r-daktilo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/kronik3r-daktilo-master-2x.jpg b/static/images/theme/thumbnail/2x/kronik3r-daktilo-master-2x.jpg deleted file mode 100644 index a900c8624..000000000 Binary files a/static/images/theme/thumbnail/2x/kronik3r-daktilo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/kulacino-bajawa-2x.jpg b/static/images/theme/thumbnail/2x/kulacino-bajawa-2x.jpg new file mode 100644 index 000000000..c2f85dbc8 Binary files /dev/null and b/static/images/theme/thumbnail/2x/kulacino-bajawa-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/kun8018-gatsby-starter-icarus-blog-2x.jpg b/static/images/theme/thumbnail/2x/kun8018-gatsby-starter-icarus-blog-2x.jpg new file mode 100644 index 000000000..cd960961e Binary files /dev/null and b/static/images/theme/thumbnail/2x/kun8018-gatsby-starter-icarus-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/kuntoaji-dekyll-2x.jpg b/static/images/theme/thumbnail/2x/kuntoaji-dekyll-2x.jpg new file mode 100644 index 000000000..80cc0b66f Binary files /dev/null and b/static/images/theme/thumbnail/2x/kuntoaji-dekyll-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/kuntoaji-dekyll-master-2x.jpg b/static/images/theme/thumbnail/2x/kuntoaji-dekyll-master-2x.jpg deleted file mode 100644 index 61128a929..000000000 Binary files a/static/images/theme/thumbnail/2x/kuntoaji-dekyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/kxxvii-kikofri-2x.jpg b/static/images/theme/thumbnail/2x/kxxvii-kikofri-2x.jpg new file mode 100644 index 000000000..34ab9f379 Binary files /dev/null and b/static/images/theme/thumbnail/2x/kxxvii-kikofri-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/kxxvii-kikofri-master-2x.jpg b/static/images/theme/thumbnail/2x/kxxvii-kikofri-master-2x.jpg deleted file mode 100644 index 1e389aaa3..000000000 Binary files a/static/images/theme/thumbnail/2x/kxxvii-kikofri-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/laixintao-princess-diaries-2x.jpg b/static/images/theme/thumbnail/2x/laixintao-princess-diaries-2x.jpg new file mode 100644 index 000000000..c42cce0f1 Binary files /dev/null and b/static/images/theme/thumbnail/2x/laixintao-princess-diaries-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/laixintao-princess-diaries-master-2x.jpg b/static/images/theme/thumbnail/2x/laixintao-princess-diaries-master-2x.jpg deleted file mode 100644 index 6e3926f6d..000000000 Binary files a/static/images/theme/thumbnail/2x/laixintao-princess-diaries-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/laobubu-jekyll-theme-easybook-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/laobubu-jekyll-theme-easybook-gh-pages-2x.jpg deleted file mode 100644 index 9abac0f87..000000000 Binary files a/static/images/theme/thumbnail/2x/laobubu-jekyll-theme-easybook-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lasseborly-anybodyhome-master-2x.jpg b/static/images/theme/thumbnail/2x/lasseborly-anybodyhome-master-2x.jpg deleted file mode 100644 index 2c5e2deec..000000000 Binary files a/static/images/theme/thumbnail/2x/lasseborly-anybodyhome-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lauragift21-gridsome-minimal-blog-2x.jpg b/static/images/theme/thumbnail/2x/lauragift21-gridsome-minimal-blog-2x.jpg new file mode 100644 index 000000000..31bc587bb Binary files /dev/null and b/static/images/theme/thumbnail/2x/lauragift21-gridsome-minimal-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lauragift21-gridsome-minimal-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/lauragift21-gridsome-minimal-blog-master-2x.jpg deleted file mode 100644 index bf6788680..000000000 Binary files a/static/images/theme/thumbnail/2x/lauragift21-gridsome-minimal-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lavkumarv-feature-blog-jekyll-2x.jpg b/static/images/theme/thumbnail/2x/lavkumarv-feature-blog-jekyll-2x.jpg new file mode 100644 index 000000000..42a183be2 Binary files /dev/null and b/static/images/theme/thumbnail/2x/lavkumarv-feature-blog-jekyll-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lavkumarv-feature-blog-jekyll-master-2x.jpg b/static/images/theme/thumbnail/2x/lavkumarv-feature-blog-jekyll-master-2x.jpg deleted file mode 100644 index 14dab442e..000000000 Binary files a/static/images/theme/thumbnail/2x/lavkumarv-feature-blog-jekyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/le4ker-personal-jekyll-theme-2x.jpg b/static/images/theme/thumbnail/2x/le4ker-personal-jekyll-theme-2x.jpg new file mode 100644 index 000000000..6bbace2db Binary files /dev/null and b/static/images/theme/thumbnail/2x/le4ker-personal-jekyll-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/le4ker-personal-jekyll-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/le4ker-personal-jekyll-theme-master-2x.jpg deleted file mode 100644 index 424cbbf5c..000000000 Binary files a/static/images/theme/thumbnail/2x/le4ker-personal-jekyll-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lednerb-bilberry-hugo-theme-2x.jpg b/static/images/theme/thumbnail/2x/lednerb-bilberry-hugo-theme-2x.jpg new file mode 100644 index 000000000..00dbb4ab5 Binary files /dev/null and b/static/images/theme/thumbnail/2x/lednerb-bilberry-hugo-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lednerb-bilberry-hugo-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/lednerb-bilberry-hugo-theme-master-2x.jpg deleted file mode 100644 index a26055527..000000000 Binary files a/static/images/theme/thumbnail/2x/lednerb-bilberry-hugo-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-minimal-blog-2x.jpg b/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-minimal-blog-2x.jpg new file mode 100644 index 000000000..cb82aaccd Binary files /dev/null and b/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-minimal-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-minimal-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-minimal-blog-master-2x.jpg deleted file mode 100644 index 25c76ec3e..000000000 Binary files a/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-minimal-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-bella-2x.jpg b/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-bella-2x.jpg new file mode 100644 index 000000000..6b3ddb19d Binary files /dev/null and b/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-bella-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-bella-master-2x.jpg b/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-bella-master-2x.jpg deleted file mode 100644 index 5726dba25..000000000 Binary files a/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-bella-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-cara-2x.jpg b/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-cara-2x.jpg new file mode 100644 index 000000000..bd23f34ed Binary files /dev/null and b/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-cara-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-cara-master-2x.jpg b/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-cara-master-2x.jpg deleted file mode 100644 index 367afd252..000000000 Binary files a/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-cara-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-emilia-2x.jpg b/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-emilia-2x.jpg new file mode 100644 index 000000000..f57197b28 Binary files /dev/null and b/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-emilia-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-emilia-master-2x.jpg b/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-emilia-master-2x.jpg deleted file mode 100644 index eb1f8828c..000000000 Binary files a/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-emilia-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-emma-2x.jpg b/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-emma-2x.jpg new file mode 100644 index 000000000..399a85858 Binary files /dev/null and b/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-emma-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-emma-master-2x.jpg b/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-emma-master-2x.jpg deleted file mode 100644 index 990d6d4bb..000000000 Binary files a/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-emma-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-jodie-2x.jpg b/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-jodie-2x.jpg new file mode 100644 index 000000000..990583445 Binary files /dev/null and b/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-jodie-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-jodie-master-2x.jpg b/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-jodie-master-2x.jpg deleted file mode 100644 index 58c7f8d93..000000000 Binary files a/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-portfolio-jodie-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-prismic-i18n-2x.jpg b/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-prismic-i18n-2x.jpg new file mode 100644 index 000000000..51db11956 Binary files /dev/null and b/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-prismic-i18n-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-prismic-i18n-master-2x.jpg b/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-prismic-i18n-master-2x.jpg deleted file mode 100644 index a77461901..000000000 Binary files a/static/images/theme/thumbnail/2x/lekoarts-gatsby-starter-prismic-i18n-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lekovicmilos-gatsby-starter-portfolio-2x.jpg b/static/images/theme/thumbnail/2x/lekovicmilos-gatsby-starter-portfolio-2x.jpg new file mode 100644 index 000000000..ec3e3eede Binary files /dev/null and b/static/images/theme/thumbnail/2x/lekovicmilos-gatsby-starter-portfolio-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lekovicmilos-gatsby-starter-portfolio-master-2x.jpg b/static/images/theme/thumbnail/2x/lekovicmilos-gatsby-starter-portfolio-master-2x.jpg deleted file mode 100644 index 55f6a92db..000000000 Binary files a/static/images/theme/thumbnail/2x/lekovicmilos-gatsby-starter-portfolio-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lenpaul-academic-2x.jpg b/static/images/theme/thumbnail/2x/lenpaul-academic-2x.jpg new file mode 100644 index 000000000..348412202 Binary files /dev/null and b/static/images/theme/thumbnail/2x/lenpaul-academic-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lenpaul-lagrange-2x.jpg b/static/images/theme/thumbnail/2x/lenpaul-lagrange-2x.jpg new file mode 100644 index 000000000..32b61f862 Binary files /dev/null and b/static/images/theme/thumbnail/2x/lenpaul-lagrange-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lenpaul-lagrange-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/lenpaul-lagrange-gh-pages-2x.jpg deleted file mode 100644 index 656e167bc..000000000 Binary files a/static/images/theme/thumbnail/2x/lenpaul-lagrange-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lenpaul-millennial-2x.jpg b/static/images/theme/thumbnail/2x/lenpaul-millennial-2x.jpg new file mode 100644 index 000000000..f5f2d8204 Binary files /dev/null and b/static/images/theme/thumbnail/2x/lenpaul-millennial-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lenpaul-millennial-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/lenpaul-millennial-gh-pages-2x.jpg deleted file mode 100644 index ecfb02585..000000000 Binary files a/static/images/theme/thumbnail/2x/lenpaul-millennial-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lenpaul-portfolio-jekyll-theme-2x.jpg b/static/images/theme/thumbnail/2x/lenpaul-portfolio-jekyll-theme-2x.jpg new file mode 100644 index 000000000..f233b5fa6 Binary files /dev/null and b/static/images/theme/thumbnail/2x/lenpaul-portfolio-jekyll-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lenpaul-portfolio-jekyll-theme-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/lenpaul-portfolio-jekyll-theme-gh-pages-2x.jpg deleted file mode 100644 index c50028b9b..000000000 Binary files a/static/images/theme/thumbnail/2x/lenpaul-portfolio-jekyll-theme-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/leonhe-hugo_eiio-master-2x.jpg b/static/images/theme/thumbnail/2x/leonhe-hugo_eiio-master-2x.jpg deleted file mode 100644 index f435d9f55..000000000 Binary files a/static/images/theme/thumbnail/2x/leonhe-hugo_eiio-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/leopardpan-leopardpan.github.io-master-2x.jpg b/static/images/theme/thumbnail/2x/leopardpan-leopardpan.github.io-master-2x.jpg deleted file mode 100644 index 8d1ff9b59..000000000 Binary files a/static/images/theme/thumbnail/2x/leopardpan-leopardpan.github.io-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lewislbr-lewis-gatsby-starter-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/lewislbr-lewis-gatsby-starter-blog-master-2x.jpg deleted file mode 100644 index ae5e66ac7..000000000 Binary files a/static/images/theme/thumbnail/2x/lewislbr-lewis-gatsby-starter-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lgaida-mediumish-gohugo-theme-2x.jpg b/static/images/theme/thumbnail/2x/lgaida-mediumish-gohugo-theme-2x.jpg new file mode 100644 index 000000000..560afdfe6 Binary files /dev/null and b/static/images/theme/thumbnail/2x/lgaida-mediumish-gohugo-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lgaida-mediumish-gohugo-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/lgaida-mediumish-gohugo-theme-master-2x.jpg deleted file mode 100644 index 21dce30f8..000000000 Binary files a/static/images/theme/thumbnail/2x/lgaida-mediumish-gohugo-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lgcolella-gatsby-starter-developer-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/lgcolella-gatsby-starter-developer-blog-master-2x.jpg deleted file mode 100644 index ba91cba7d..000000000 Binary files a/static/images/theme/thumbnail/2x/lgcolella-gatsby-starter-developer-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/liberxue-liberxue.github.io-2x.jpg b/static/images/theme/thumbnail/2x/liberxue-liberxue.github.io-2x.jpg new file mode 100644 index 000000000..c79ffdd61 Binary files /dev/null and b/static/images/theme/thumbnail/2x/liberxue-liberxue.github.io-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/liberxue-liberxue.github.io-master-2x.jpg b/static/images/theme/thumbnail/2x/liberxue-liberxue.github.io-master-2x.jpg deleted file mode 100644 index 4706371f4..000000000 Binary files a/static/images/theme/thumbnail/2x/liberxue-liberxue.github.io-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lingxz-er-master-2x.jpg b/static/images/theme/thumbnail/2x/lingxz-er-master-2x.jpg deleted file mode 100644 index eb6e8e61f..000000000 Binary files a/static/images/theme/thumbnail/2x/lingxz-er-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/link9596-hydrogen-2x.jpg b/static/images/theme/thumbnail/2x/link9596-hydrogen-2x.jpg new file mode 100644 index 000000000..964b7587f Binary files /dev/null and b/static/images/theme/thumbnail/2x/link9596-hydrogen-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/link9596-hydrogen-master-2x.jpg b/static/images/theme/thumbnail/2x/link9596-hydrogen-master-2x.jpg deleted file mode 100644 index bb4da2e02..000000000 Binary files a/static/images/theme/thumbnail/2x/link9596-hydrogen-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/link9596-jekyll-theme-hydrogen-2x.jpg b/static/images/theme/thumbnail/2x/link9596-jekyll-theme-hydrogen-2x.jpg new file mode 100644 index 000000000..a2bb75695 Binary files /dev/null and b/static/images/theme/thumbnail/2x/link9596-jekyll-theme-hydrogen-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/liungkejin-liungkejin.github.io-2x.jpg b/static/images/theme/thumbnail/2x/liungkejin-liungkejin.github.io-2x.jpg new file mode 100644 index 000000000..07daea396 Binary files /dev/null and b/static/images/theme/thumbnail/2x/liungkejin-liungkejin.github.io-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/liungkejin-liungkejin.github.io-master-2x.jpg b/static/images/theme/thumbnail/2x/liungkejin-liungkejin.github.io-master-2x.jpg deleted file mode 100644 index 371e70410..000000000 Binary files a/static/images/theme/thumbnail/2x/liungkejin-liungkejin.github.io-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/liuzc-leaveit-master-2x.jpg b/static/images/theme/thumbnail/2x/liuzc-leaveit-master-2x.jpg deleted file mode 100644 index 114dcfa71..000000000 Binary files a/static/images/theme/thumbnail/2x/liuzc-leaveit-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/livingdocsio-gatsby-magazine-example-2x.jpg b/static/images/theme/thumbnail/2x/livingdocsio-gatsby-magazine-example-2x.jpg new file mode 100644 index 000000000..dd4adbe2c Binary files /dev/null and b/static/images/theme/thumbnail/2x/livingdocsio-gatsby-magazine-example-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/livingdocsio-gatsby-magazine-example-master-2x.jpg b/static/images/theme/thumbnail/2x/livingdocsio-gatsby-magazine-example-master-2x.jpg deleted file mode 100644 index e92b71fbd..000000000 Binary files a/static/images/theme/thumbnail/2x/livingdocsio-gatsby-magazine-example-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lixizhi-lixizhi.github.io-2x.jpg b/static/images/theme/thumbnail/2x/lixizhi-lixizhi.github.io-2x.jpg new file mode 100644 index 000000000..af9bb3391 Binary files /dev/null and b/static/images/theme/thumbnail/2x/lixizhi-lixizhi.github.io-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lixizhi-lixizhi.github.io-master-2x.jpg b/static/images/theme/thumbnail/2x/lixizhi-lixizhi.github.io-master-2x.jpg deleted file mode 100644 index 88b941856..000000000 Binary files a/static/images/theme/thumbnail/2x/lixizhi-lixizhi.github.io-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/longpdo-neumorphism-2x.jpg b/static/images/theme/thumbnail/2x/longpdo-neumorphism-2x.jpg new file mode 100644 index 000000000..347f6951f Binary files /dev/null and b/static/images/theme/thumbnail/2x/longpdo-neumorphism-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/longpdo-neumorphism-master-2x.jpg b/static/images/theme/thumbnail/2x/longpdo-neumorphism-master-2x.jpg deleted file mode 100644 index 40013009b..000000000 Binary files a/static/images/theme/thumbnail/2x/longpdo-neumorphism-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lordmathis-hugo-theme-nix-master-2x.jpg b/static/images/theme/thumbnail/2x/lordmathis-hugo-theme-nix-master-2x.jpg deleted file mode 100644 index 7aea0c403..000000000 Binary files a/static/images/theme/thumbnail/2x/lordmathis-hugo-theme-nix-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lorepirri-cayman-blog-2x.jpg b/static/images/theme/thumbnail/2x/lorepirri-cayman-blog-2x.jpg new file mode 100644 index 000000000..3c028e039 Binary files /dev/null and b/static/images/theme/thumbnail/2x/lorepirri-cayman-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lorepirri-cayman-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/lorepirri-cayman-blog-master-2x.jpg deleted file mode 100644 index b348ce09d..000000000 Binary files a/static/images/theme/thumbnail/2x/lorepirri-cayman-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lorepirri-jekyll-theme-simple-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/lorepirri-jekyll-theme-simple-blog-master-2x.jpg deleted file mode 100644 index 92737f592..000000000 Binary files a/static/images/theme/thumbnail/2x/lorepirri-jekyll-theme-simple-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/loveminimal-hugo-theme-virgo-2x.jpg b/static/images/theme/thumbnail/2x/loveminimal-hugo-theme-virgo-2x.jpg new file mode 100644 index 000000000..eb7d26422 Binary files /dev/null and b/static/images/theme/thumbnail/2x/loveminimal-hugo-theme-virgo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lubang-hugo-hello-programmer-theme-2x.jpg b/static/images/theme/thumbnail/2x/lubang-hugo-hello-programmer-theme-2x.jpg new file mode 100644 index 000000000..b99618175 Binary files /dev/null and b/static/images/theme/thumbnail/2x/lubang-hugo-hello-programmer-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lubang-hugo-hello-programmer-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/lubang-hugo-hello-programmer-theme-master-2x.jpg deleted file mode 100644 index 52b8730c9..000000000 Binary files a/static/images/theme/thumbnail/2x/lubang-hugo-hello-programmer-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lucaspulliese-next-ecommerce-2x.jpg b/static/images/theme/thumbnail/2x/lucaspulliese-next-ecommerce-2x.jpg new file mode 100644 index 000000000..b2b265fb5 Binary files /dev/null and b/static/images/theme/thumbnail/2x/lucaspulliese-next-ecommerce-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/luizdepra-hugo-coder-master-2x.jpg b/static/images/theme/thumbnail/2x/luizdepra-hugo-coder-master-2x.jpg deleted file mode 100644 index f227c7f1d..000000000 Binary files a/static/images/theme/thumbnail/2x/luizdepra-hugo-coder-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lukewhitehouse-gatsby-starter-blog-with-lunr-2x.jpg b/static/images/theme/thumbnail/2x/lukewhitehouse-gatsby-starter-blog-with-lunr-2x.jpg new file mode 100644 index 000000000..96f401950 Binary files /dev/null and b/static/images/theme/thumbnail/2x/lukewhitehouse-gatsby-starter-blog-with-lunr-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lukewhitehouse-gatsby-starter-blog-with-lunr-master-2x.jpg b/static/images/theme/thumbnail/2x/lukewhitehouse-gatsby-starter-blog-with-lunr-master-2x.jpg deleted file mode 100644 index 65c02ad86..000000000 Binary files a/static/images/theme/thumbnail/2x/lukewhitehouse-gatsby-starter-blog-with-lunr-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lunaceee-hexo-material-netlify-2x.jpg b/static/images/theme/thumbnail/2x/lunaceee-hexo-material-netlify-2x.jpg new file mode 100644 index 000000000..7cb25be40 Binary files /dev/null and b/static/images/theme/thumbnail/2x/lunaceee-hexo-material-netlify-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lunaceee-hexo-material-netlify-master-2x.jpg b/static/images/theme/thumbnail/2x/lunaceee-hexo-material-netlify-master-2x.jpg deleted file mode 100644 index d5d090081..000000000 Binary files a/static/images/theme/thumbnail/2x/lunaceee-hexo-material-netlify-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lundgren2-gatsby-starter-github-api-2x.jpg b/static/images/theme/thumbnail/2x/lundgren2-gatsby-starter-github-api-2x.jpg new file mode 100644 index 000000000..de06e1297 Binary files /dev/null and b/static/images/theme/thumbnail/2x/lundgren2-gatsby-starter-github-api-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lundgren2-gatsby-starter-github-api-master-2x.jpg b/static/images/theme/thumbnail/2x/lundgren2-gatsby-starter-github-api-master-2x.jpg deleted file mode 100644 index c8e562b3a..000000000 Binary files a/static/images/theme/thumbnail/2x/lundgren2-gatsby-starter-github-api-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/luoyan35714-lessormore-2x.jpg b/static/images/theme/thumbnail/2x/luoyan35714-lessormore-2x.jpg new file mode 100644 index 000000000..d2472aeb1 Binary files /dev/null and b/static/images/theme/thumbnail/2x/luoyan35714-lessormore-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/luoyan35714-lessormore-master-2x.jpg b/static/images/theme/thumbnail/2x/luoyan35714-lessormore-master-2x.jpg deleted file mode 100644 index 896680563..000000000 Binary files a/static/images/theme/thumbnail/2x/luoyan35714-lessormore-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lwojcik-eleventy-template-bliss-2x.jpg b/static/images/theme/thumbnail/2x/lwojcik-eleventy-template-bliss-2x.jpg new file mode 100644 index 000000000..faf387707 Binary files /dev/null and b/static/images/theme/thumbnail/2x/lwojcik-eleventy-template-bliss-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lwz7512-gatsby-netlify-identity-starter-2x.jpg b/static/images/theme/thumbnail/2x/lwz7512-gatsby-netlify-identity-starter-2x.jpg new file mode 100644 index 000000000..01c435d96 Binary files /dev/null and b/static/images/theme/thumbnail/2x/lwz7512-gatsby-netlify-identity-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lwz7512-gatsby-netlify-identity-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/lwz7512-gatsby-netlify-identity-starter-master-2x.jpg deleted file mode 100644 index 670a6feea..000000000 Binary files a/static/images/theme/thumbnail/2x/lwz7512-gatsby-netlify-identity-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/lwz7512-next-dev-studio-2x.jpg b/static/images/theme/thumbnail/2x/lwz7512-next-dev-studio-2x.jpg new file mode 100644 index 000000000..81640e5e2 Binary files /dev/null and b/static/images/theme/thumbnail/2x/lwz7512-next-dev-studio-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lwz7512-next-smooth-doc-2x.jpg b/static/images/theme/thumbnail/2x/lwz7512-next-smooth-doc-2x.jpg new file mode 100644 index 000000000..e56122642 Binary files /dev/null and b/static/images/theme/thumbnail/2x/lwz7512-next-smooth-doc-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lwz7512-next-static-neve-2x.jpg b/static/images/theme/thumbnail/2x/lwz7512-next-static-neve-2x.jpg new file mode 100644 index 000000000..71bd6e9c2 Binary files /dev/null and b/static/images/theme/thumbnail/2x/lwz7512-next-static-neve-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lxndrblz-anatole-2x.jpg b/static/images/theme/thumbnail/2x/lxndrblz-anatole-2x.jpg new file mode 100644 index 000000000..f912564f4 Binary files /dev/null and b/static/images/theme/thumbnail/2x/lxndrblz-anatole-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lyket-dev-nextjs-simple-blog-theme-2x.jpg b/static/images/theme/thumbnail/2x/lyket-dev-nextjs-simple-blog-theme-2x.jpg new file mode 100644 index 000000000..4bd05cf67 Binary files /dev/null and b/static/images/theme/thumbnail/2x/lyket-dev-nextjs-simple-blog-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/lyket-dev-nextjs-simple-blog-theme-main-2x.jpg b/static/images/theme/thumbnail/2x/lyket-dev-nextjs-simple-blog-theme-main-2x.jpg deleted file mode 100644 index c3208e874..000000000 Binary files a/static/images/theme/thumbnail/2x/lyket-dev-nextjs-simple-blog-theme-main-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/macrod68-jekyll-materialize-starter-template-master-2x.jpg b/static/images/theme/thumbnail/2x/macrod68-jekyll-materialize-starter-template-master-2x.jpg deleted file mode 100644 index 96a438e1c..000000000 Binary files a/static/images/theme/thumbnail/2x/macrod68-jekyll-materialize-starter-template-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/madelyneriksen-gatsby-starter-tyra-2x.jpg b/static/images/theme/thumbnail/2x/madelyneriksen-gatsby-starter-tyra-2x.jpg new file mode 100644 index 000000000..993c14fba Binary files /dev/null and b/static/images/theme/thumbnail/2x/madelyneriksen-gatsby-starter-tyra-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/madelyneriksen-gatsby-starter-tyra-master-2x.jpg b/static/images/theme/thumbnail/2x/madelyneriksen-gatsby-starter-tyra-master-2x.jpg deleted file mode 100644 index 021b11543..000000000 Binary files a/static/images/theme/thumbnail/2x/madelyneriksen-gatsby-starter-tyra-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/madforjekyll-madforjekyll.github.io-2x.jpg b/static/images/theme/thumbnail/2x/madforjekyll-madforjekyll.github.io-2x.jpg new file mode 100644 index 000000000..f8056a3ac Binary files /dev/null and b/static/images/theme/thumbnail/2x/madforjekyll-madforjekyll.github.io-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/madforjekyll-madforjekyll.github.io-master-2x.jpg b/static/images/theme/thumbnail/2x/madforjekyll-madforjekyll.github.io-master-2x.jpg deleted file mode 100644 index aca9a5052..000000000 Binary files a/static/images/theme/thumbnail/2x/madforjekyll-madforjekyll.github.io-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/manid2-lone-wolf-theme-2x.jpg b/static/images/theme/thumbnail/2x/manid2-lone-wolf-theme-2x.jpg new file mode 100644 index 000000000..c745db8ca Binary files /dev/null and b/static/images/theme/thumbnail/2x/manid2-lone-wolf-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/manid2-lone-wolf-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/manid2-lone-wolf-theme-master-2x.jpg deleted file mode 100644 index dd743cfe9..000000000 Binary files a/static/images/theme/thumbnail/2x/manid2-lone-wolf-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/marcanuy-hugotube-2x.jpg b/static/images/theme/thumbnail/2x/marcanuy-hugotube-2x.jpg new file mode 100644 index 000000000..e39a6b11b Binary files /dev/null and b/static/images/theme/thumbnail/2x/marcanuy-hugotube-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/marcanuy-hugotube-master-2x.jpg b/static/images/theme/thumbnail/2x/marcanuy-hugotube-master-2x.jpg deleted file mode 100644 index 5da48d6b5..000000000 Binary files a/static/images/theme/thumbnail/2x/marcanuy-hugotube-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/marcanuy-simpleit-hugo-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/marcanuy-simpleit-hugo-theme-master-2x.jpg deleted file mode 100644 index 7b0908f67..000000000 Binary files a/static/images/theme/thumbnail/2x/marcanuy-simpleit-hugo-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/marcomelilli-gatsby-airtable-advanced-starter-2x.jpg b/static/images/theme/thumbnail/2x/marcomelilli-gatsby-airtable-advanced-starter-2x.jpg new file mode 100644 index 000000000..a52fe634e Binary files /dev/null and b/static/images/theme/thumbnail/2x/marcomelilli-gatsby-airtable-advanced-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/marcomelilli-gatsby-airtable-advanced-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/marcomelilli-gatsby-airtable-advanced-starter-master-2x.jpg deleted file mode 100644 index 91d7e5bd3..000000000 Binary files a/static/images/theme/thumbnail/2x/marcomelilli-gatsby-airtable-advanced-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/marcusvirg-forty-master-2x.jpg b/static/images/theme/thumbnail/2x/marcusvirg-forty-master-2x.jpg deleted file mode 100644 index 7e70cbfd2..000000000 Binary files a/static/images/theme/thumbnail/2x/marcusvirg-forty-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/margueriteroth-gatsby-prismic-starter-prist-2x.jpg b/static/images/theme/thumbnail/2x/margueriteroth-gatsby-prismic-starter-prist-2x.jpg new file mode 100644 index 000000000..1a6124053 Binary files /dev/null and b/static/images/theme/thumbnail/2x/margueriteroth-gatsby-prismic-starter-prist-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/margueriteroth-gatsby-prismic-starter-prist-master-2x.jpg b/static/images/theme/thumbnail/2x/margueriteroth-gatsby-prismic-starter-prist-master-2x.jpg deleted file mode 100644 index 920736642..000000000 Binary files a/static/images/theme/thumbnail/2x/margueriteroth-gatsby-prismic-starter-prist-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/markoradak-gatsby-starter-storybook-2x.jpg b/static/images/theme/thumbnail/2x/markoradak-gatsby-starter-storybook-2x.jpg new file mode 100644 index 000000000..5f9b854dd Binary files /dev/null and b/static/images/theme/thumbnail/2x/markoradak-gatsby-starter-storybook-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/markoradak-gatsby-starter-storybook-master-2x.jpg b/static/images/theme/thumbnail/2x/markoradak-gatsby-starter-storybook-master-2x.jpg deleted file mode 100644 index 59d348990..000000000 Binary files a/static/images/theme/thumbnail/2x/markoradak-gatsby-starter-storybook-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/matcornic-hugo-theme-learn-2x.jpg b/static/images/theme/thumbnail/2x/matcornic-hugo-theme-learn-2x.jpg new file mode 100644 index 000000000..fbbf101dd Binary files /dev/null and b/static/images/theme/thumbnail/2x/matcornic-hugo-theme-learn-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/matcornic-hugo-theme-learn-master-2x.jpg b/static/images/theme/thumbnail/2x/matcornic-hugo-theme-learn-master-2x.jpg deleted file mode 100644 index 885ac304c..000000000 Binary files a/static/images/theme/thumbnail/2x/matcornic-hugo-theme-learn-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/mateussmedeiros-blade-theme-2x.jpg b/static/images/theme/thumbnail/2x/mateussmedeiros-blade-theme-2x.jpg new file mode 100644 index 000000000..9ab5736de Binary files /dev/null and b/static/images/theme/thumbnail/2x/mateussmedeiros-blade-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/mateussmedeiros-blade-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/mateussmedeiros-blade-theme-master-2x.jpg deleted file mode 100644 index c13e952e2..000000000 Binary files a/static/images/theme/thumbnail/2x/mateussmedeiros-blade-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/mattbutton-silhouette-hugo-master-2x.jpg b/static/images/theme/thumbnail/2x/mattbutton-silhouette-hugo-master-2x.jpg deleted file mode 100644 index 5382caf1a..000000000 Binary files a/static/images/theme/thumbnail/2x/mattbutton-silhouette-hugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/mattgraham-leap-day-2x.jpg b/static/images/theme/thumbnail/2x/mattgraham-leap-day-2x.jpg new file mode 100644 index 000000000..e3da6f352 Binary files /dev/null and b/static/images/theme/thumbnail/2x/mattgraham-leap-day-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/mattgraham-leap-day-master-2x.jpg b/static/images/theme/thumbnail/2x/mattgraham-leap-day-master-2x.jpg deleted file mode 100644 index f2794fb58..000000000 Binary files a/static/images/theme/thumbnail/2x/mattgraham-leap-day-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/mattgraham-midnight-2x.jpg b/static/images/theme/thumbnail/2x/mattgraham-midnight-2x.jpg new file mode 100644 index 000000000..e1c129a17 Binary files /dev/null and b/static/images/theme/thumbnail/2x/mattgraham-midnight-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/mattgraham-midnight-master-2x.jpg b/static/images/theme/thumbnail/2x/mattgraham-midnight-master-2x.jpg deleted file mode 100644 index a2a980aba..000000000 Binary files a/static/images/theme/thumbnail/2x/mattgraham-midnight-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/mattolson-middleman-bootstrap-template-master-2x.jpg b/static/images/theme/thumbnail/2x/mattolson-middleman-bootstrap-template-master-2x.jpg deleted file mode 100644 index 11c9e64a8..000000000 Binary files a/static/images/theme/thumbnail/2x/mattolson-middleman-bootstrap-template-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/mattolson-middleman-zurb-template-master-2x.jpg b/static/images/theme/thumbnail/2x/mattolson-middleman-zurb-template-master-2x.jpg deleted file mode 100644 index 55a2b2b1d..000000000 Binary files a/static/images/theme/thumbnail/2x/mattolson-middleman-zurb-template-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/mattvh-solar-theme-jekyll-2x.jpg b/static/images/theme/thumbnail/2x/mattvh-solar-theme-jekyll-2x.jpg new file mode 100644 index 000000000..9a08d3de3 Binary files /dev/null and b/static/images/theme/thumbnail/2x/mattvh-solar-theme-jekyll-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/mattvh-solar-theme-jekyll-master-2x.jpg b/static/images/theme/thumbnail/2x/mattvh-solar-theme-jekyll-master-2x.jpg deleted file mode 100644 index 48b994338..000000000 Binary files a/static/images/theme/thumbnail/2x/mattvh-solar-theme-jekyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/maxpou-gatsby-starter-morning-dew-2x.jpg b/static/images/theme/thumbnail/2x/maxpou-gatsby-starter-morning-dew-2x.jpg new file mode 100644 index 000000000..173baa4b9 Binary files /dev/null and b/static/images/theme/thumbnail/2x/maxpou-gatsby-starter-morning-dew-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/maxpou-gatsby-starter-morning-dew-master-2x.jpg b/static/images/theme/thumbnail/2x/maxpou-gatsby-starter-morning-dew-master-2x.jpg deleted file mode 100644 index 65d988925..000000000 Binary files a/static/images/theme/thumbnail/2x/maxpou-gatsby-starter-morning-dew-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/mazgi-hugo-theme-techlog-simple-master-2x.jpg b/static/images/theme/thumbnail/2x/mazgi-hugo-theme-techlog-simple-master-2x.jpg deleted file mode 100644 index 477e0f91a..000000000 Binary files a/static/images/theme/thumbnail/2x/mazgi-hugo-theme-techlog-simple-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/mccrodp-gatsby-starter-contentful-i18n-2x.jpg b/static/images/theme/thumbnail/2x/mccrodp-gatsby-starter-contentful-i18n-2x.jpg new file mode 100644 index 000000000..532f1c5dd Binary files /dev/null and b/static/images/theme/thumbnail/2x/mccrodp-gatsby-starter-contentful-i18n-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/mccrodp-gatsby-starter-contentful-i18n-master-2x.jpg b/static/images/theme/thumbnail/2x/mccrodp-gatsby-starter-contentful-i18n-master-2x.jpg deleted file mode 100644 index f4b3656ac..000000000 Binary files a/static/images/theme/thumbnail/2x/mccrodp-gatsby-starter-contentful-i18n-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/mdrathik-nuxtjs-tailwind-blog-2x.jpg b/static/images/theme/thumbnail/2x/mdrathik-nuxtjs-tailwind-blog-2x.jpg new file mode 100644 index 000000000..3c5c82702 Binary files /dev/null and b/static/images/theme/thumbnail/2x/mdrathik-nuxtjs-tailwind-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/meibenny-elephants-master-2x.jpg b/static/images/theme/thumbnail/2x/meibenny-elephants-master-2x.jpg deleted file mode 100644 index c3916f181..000000000 Binary files a/static/images/theme/thumbnail/2x/meibenny-elephants-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/melangue-dactl-2x.jpg b/static/images/theme/thumbnail/2x/melangue-dactl-2x.jpg new file mode 100644 index 000000000..485809834 Binary files /dev/null and b/static/images/theme/thumbnail/2x/melangue-dactl-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/melangue-dactl-master-2x.jpg b/static/images/theme/thumbnail/2x/melangue-dactl-master-2x.jpg deleted file mode 100644 index 99a17b7bb..000000000 Binary files a/static/images/theme/thumbnail/2x/melangue-dactl-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/meliodus-meliodus.github.io-2x.jpg b/static/images/theme/thumbnail/2x/meliodus-meliodus.github.io-2x.jpg new file mode 100644 index 000000000..c414dd3b4 Binary files /dev/null and b/static/images/theme/thumbnail/2x/meliodus-meliodus.github.io-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/meliodus-meliodus.github.io-master-2x.jpg b/static/images/theme/thumbnail/2x/meliodus-meliodus.github.io-master-2x.jpg deleted file mode 100644 index bb52d9d47..000000000 Binary files a/static/images/theme/thumbnail/2x/meliodus-meliodus.github.io-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/meliodus-uno-dbyll-2x.jpg b/static/images/theme/thumbnail/2x/meliodus-uno-dbyll-2x.jpg new file mode 100644 index 000000000..14d6db055 Binary files /dev/null and b/static/images/theme/thumbnail/2x/meliodus-uno-dbyll-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/meliodus-uno-dbyll-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/meliodus-uno-dbyll-gh-pages-2x.jpg deleted file mode 100644 index 44d769a31..000000000 Binary files a/static/images/theme/thumbnail/2x/meliodus-uno-dbyll-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/melvinchng-event-jekyll-theme-2x.jpg b/static/images/theme/thumbnail/2x/melvinchng-event-jekyll-theme-2x.jpg new file mode 100644 index 000000000..0f804505a Binary files /dev/null and b/static/images/theme/thumbnail/2x/melvinchng-event-jekyll-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/melvinchng-event-jekyll-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/melvinchng-event-jekyll-theme-master-2x.jpg deleted file mode 100644 index 4cd180b95..000000000 Binary files a/static/images/theme/thumbnail/2x/melvinchng-event-jekyll-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/mendhak-eleventy-satisfactory-2x.jpg b/static/images/theme/thumbnail/2x/mendhak-eleventy-satisfactory-2x.jpg new file mode 100644 index 000000000..984caca48 Binary files /dev/null and b/static/images/theme/thumbnail/2x/mendhak-eleventy-satisfactory-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/meteorlxy-vuepress-theme-meteorlxy-2x.jpg b/static/images/theme/thumbnail/2x/meteorlxy-vuepress-theme-meteorlxy-2x.jpg new file mode 100644 index 000000000..e6f8af38d Binary files /dev/null and b/static/images/theme/thumbnail/2x/meteorlxy-vuepress-theme-meteorlxy-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/meteorlxy-vuepress-theme-meteorlxy-master-2x.jpg b/static/images/theme/thumbnail/2x/meteorlxy-vuepress-theme-meteorlxy-master-2x.jpg deleted file mode 100644 index 5ed497145..000000000 Binary files a/static/images/theme/thumbnail/2x/meteorlxy-vuepress-theme-meteorlxy-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/mhadaily-gatsby-starter-typescript-power-blog-2x.jpg b/static/images/theme/thumbnail/2x/mhadaily-gatsby-starter-typescript-power-blog-2x.jpg new file mode 100644 index 000000000..c4d804b95 Binary files /dev/null and b/static/images/theme/thumbnail/2x/mhadaily-gatsby-starter-typescript-power-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/mhadaily-gatsby-starter-typescript-power-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/mhadaily-gatsby-starter-typescript-power-blog-master-2x.jpg deleted file mode 100644 index e22d597fa..000000000 Binary files a/static/images/theme/thumbnail/2x/mhadaily-gatsby-starter-typescript-power-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/miccall-hexo-theme-mic_theme-master-2x.jpg b/static/images/theme/thumbnail/2x/miccall-hexo-theme-mic_theme-master-2x.jpg deleted file mode 100644 index cdd4aa42a..000000000 Binary files a/static/images/theme/thumbnail/2x/miccall-hexo-theme-mic_theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/midzer-urban-theme-2x.jpg b/static/images/theme/thumbnail/2x/midzer-urban-theme-2x.jpg new file mode 100644 index 000000000..917c164e4 Binary files /dev/null and b/static/images/theme/thumbnail/2x/midzer-urban-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/midzer-urban-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/midzer-urban-theme-master-2x.jpg deleted file mode 100644 index 28ae39d59..000000000 Binary files a/static/images/theme/thumbnail/2x/midzer-urban-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/miguelsimoni-hugo-initio-master-2x.jpg b/static/images/theme/thumbnail/2x/miguelsimoni-hugo-initio-master-2x.jpg deleted file mode 100644 index 45e287bdb..000000000 Binary files a/static/images/theme/thumbnail/2x/miguelsimoni-hugo-initio-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/mikeblum-hugo-now-master-2x.jpg b/static/images/theme/thumbnail/2x/mikeblum-hugo-now-master-2x.jpg deleted file mode 100644 index d66b09bb4..000000000 Binary files a/static/images/theme/thumbnail/2x/mikeblum-hugo-now-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/minhhuy150894-minhhuy150894.github.io-master-2x.jpg b/static/images/theme/thumbnail/2x/minhhuy150894-minhhuy150894.github.io-master-2x.jpg deleted file mode 100644 index ac5421104..000000000 Binary files a/static/images/theme/thumbnail/2x/minhhuy150894-minhhuy150894.github.io-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/mmistakes-hpstr-jekyll-theme-2x.jpg b/static/images/theme/thumbnail/2x/mmistakes-hpstr-jekyll-theme-2x.jpg new file mode 100644 index 000000000..fed4113bd Binary files /dev/null and b/static/images/theme/thumbnail/2x/mmistakes-hpstr-jekyll-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/mmistakes-hpstr-jekyll-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/mmistakes-hpstr-jekyll-theme-master-2x.jpg deleted file mode 100644 index ec4b3ad2d..000000000 Binary files a/static/images/theme/thumbnail/2x/mmistakes-hpstr-jekyll-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/mmistakes-jekyll-theme-basically-basic-2x.jpg b/static/images/theme/thumbnail/2x/mmistakes-jekyll-theme-basically-basic-2x.jpg new file mode 100644 index 000000000..fc9a13378 Binary files /dev/null and b/static/images/theme/thumbnail/2x/mmistakes-jekyll-theme-basically-basic-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/mmistakes-jekyll-theme-basically-basic-master-2x.jpg b/static/images/theme/thumbnail/2x/mmistakes-jekyll-theme-basically-basic-master-2x.jpg deleted file mode 100644 index 7ec4bb6cd..000000000 Binary files a/static/images/theme/thumbnail/2x/mmistakes-jekyll-theme-basically-basic-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/mmistakes-jekyll-theme-skinny-bones-2x.jpg b/static/images/theme/thumbnail/2x/mmistakes-jekyll-theme-skinny-bones-2x.jpg new file mode 100644 index 000000000..226629eec Binary files /dev/null and b/static/images/theme/thumbnail/2x/mmistakes-jekyll-theme-skinny-bones-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/mmistakes-jekyll-theme-skinny-bones-master-2x.jpg b/static/images/theme/thumbnail/2x/mmistakes-jekyll-theme-skinny-bones-master-2x.jpg deleted file mode 100644 index 02cbcb275..000000000 Binary files a/static/images/theme/thumbnail/2x/mmistakes-jekyll-theme-skinny-bones-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/mmistakes-minimal-mistakes-2x.jpg b/static/images/theme/thumbnail/2x/mmistakes-minimal-mistakes-2x.jpg new file mode 100644 index 000000000..2435b5468 Binary files /dev/null and b/static/images/theme/thumbnail/2x/mmistakes-minimal-mistakes-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/mmistakes-minimal-mistakes-master-2x.jpg b/static/images/theme/thumbnail/2x/mmistakes-minimal-mistakes-master-2x.jpg deleted file mode 100644 index e87cf5446..000000000 Binary files a/static/images/theme/thumbnail/2x/mmistakes-minimal-mistakes-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/mmistakes-so-simple-theme-2x.jpg b/static/images/theme/thumbnail/2x/mmistakes-so-simple-theme-2x.jpg new file mode 100644 index 000000000..db29f10a9 Binary files /dev/null and b/static/images/theme/thumbnail/2x/mmistakes-so-simple-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/mmistakes-so-simple-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/mmistakes-so-simple-theme-master-2x.jpg deleted file mode 100644 index 4ad806f27..000000000 Binary files a/static/images/theme/thumbnail/2x/mmistakes-so-simple-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/mmrath-hugo-bootstrap-master-2x.jpg b/static/images/theme/thumbnail/2x/mmrath-hugo-bootstrap-master-2x.jpg deleted file mode 100644 index 52a282037..000000000 Binary files a/static/images/theme/thumbnail/2x/mmrath-hugo-bootstrap-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/mohanmonu777-gatsby-starter-krisp-2x.jpg b/static/images/theme/thumbnail/2x/mohanmonu777-gatsby-starter-krisp-2x.jpg new file mode 100644 index 000000000..b771f6890 Binary files /dev/null and b/static/images/theme/thumbnail/2x/mohanmonu777-gatsby-starter-krisp-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/mohanmonu777-gatsby-starter-krisp-master-2x.jpg b/static/images/theme/thumbnail/2x/mohanmonu777-gatsby-starter-krisp-master-2x.jpg deleted file mode 100644 index 106d5dc3a..000000000 Binary files a/static/images/theme/thumbnail/2x/mohanmonu777-gatsby-starter-krisp-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/molebox-gatsby-theme-pocket-2x.jpg b/static/images/theme/thumbnail/2x/molebox-gatsby-theme-pocket-2x.jpg new file mode 100644 index 000000000..474fd79fd Binary files /dev/null and b/static/images/theme/thumbnail/2x/molebox-gatsby-theme-pocket-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/molebox-gatsby-theme-pocket-master-2x.jpg b/static/images/theme/thumbnail/2x/molebox-gatsby-theme-pocket-master-2x.jpg deleted file mode 100644 index be66b681a..000000000 Binary files a/static/images/theme/thumbnail/2x/molebox-gatsby-theme-pocket-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/moltin-gatsby-demo-store-2x.jpg b/static/images/theme/thumbnail/2x/moltin-gatsby-demo-store-2x.jpg new file mode 100644 index 000000000..cfcb941e6 Binary files /dev/null and b/static/images/theme/thumbnail/2x/moltin-gatsby-demo-store-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/moltin-gatsby-demo-store-master-2x.jpg b/static/images/theme/thumbnail/2x/moltin-gatsby-demo-store-master-2x.jpg deleted file mode 100644 index fe53409c3..000000000 Binary files a/static/images/theme/thumbnail/2x/moltin-gatsby-demo-store-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/moonwave99-waffel-2x.jpg b/static/images/theme/thumbnail/2x/moonwave99-waffel-2x.jpg new file mode 100644 index 000000000..031e362f1 Binary files /dev/null and b/static/images/theme/thumbnail/2x/moonwave99-waffel-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/moonwave99-waffel-master-2x.jpg b/static/images/theme/thumbnail/2x/moonwave99-waffel-master-2x.jpg deleted file mode 100644 index 08d5391cc..000000000 Binary files a/static/images/theme/thumbnail/2x/moonwave99-waffel-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/mrgreensworkshop-mrgreen-jekylltheme-2x.jpg b/static/images/theme/thumbnail/2x/mrgreensworkshop-mrgreen-jekylltheme-2x.jpg new file mode 100644 index 000000000..5fc9366ac Binary files /dev/null and b/static/images/theme/thumbnail/2x/mrgreensworkshop-mrgreen-jekylltheme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/muan-scribble-2x.jpg b/static/images/theme/thumbnail/2x/muan-scribble-2x.jpg new file mode 100644 index 000000000..0aae4b2c4 Binary files /dev/null and b/static/images/theme/thumbnail/2x/muan-scribble-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/muan-scribble-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/muan-scribble-gh-pages-2x.jpg deleted file mode 100644 index 5b95cfc37..000000000 Binary files a/static/images/theme/thumbnail/2x/muan-scribble-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/mudassirgithub-next-basic-blog-2x.jpg b/static/images/theme/thumbnail/2x/mudassirgithub-next-basic-blog-2x.jpg new file mode 100644 index 000000000..9b3e30e5e Binary files /dev/null and b/static/images/theme/thumbnail/2x/mudassirgithub-next-basic-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/mudassirgithub-next-basic-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/mudassirgithub-next-basic-blog-master-2x.jpg deleted file mode 100644 index 4b8231474..000000000 Binary files a/static/images/theme/thumbnail/2x/mudassirgithub-next-basic-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/muenzpraeger-eleventy-chirpy-blog-template-2x.jpg b/static/images/theme/thumbnail/2x/muenzpraeger-eleventy-chirpy-blog-template-2x.jpg new file mode 100644 index 000000000..de61440f1 Binary files /dev/null and b/static/images/theme/thumbnail/2x/muenzpraeger-eleventy-chirpy-blog-template-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/muenzpraeger-eleventy-chirpy-blog-template-main-2x.jpg b/static/images/theme/thumbnail/2x/muenzpraeger-eleventy-chirpy-blog-template-main-2x.jpg deleted file mode 100644 index 04e7a7415..000000000 Binary files a/static/images/theme/thumbnail/2x/muenzpraeger-eleventy-chirpy-blog-template-main-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/muhajirdev-gatsby-starter-firebase-2x.jpg b/static/images/theme/thumbnail/2x/muhajirdev-gatsby-starter-firebase-2x.jpg new file mode 100644 index 000000000..a17a635e3 Binary files /dev/null and b/static/images/theme/thumbnail/2x/muhajirdev-gatsby-starter-firebase-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/muhajirdev-gatsby-starter-firebase-master-2x.jpg b/static/images/theme/thumbnail/2x/muhajirdev-gatsby-starter-firebase-master-2x.jpg deleted file mode 100644 index 040d6edea..000000000 Binary files a/static/images/theme/thumbnail/2x/muhajirdev-gatsby-starter-firebase-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/muhajirdev-gatsby-starter-redux-firebase-2x.jpg b/static/images/theme/thumbnail/2x/muhajirdev-gatsby-starter-redux-firebase-2x.jpg new file mode 100644 index 000000000..a17a635e3 Binary files /dev/null and b/static/images/theme/thumbnail/2x/muhajirdev-gatsby-starter-redux-firebase-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/muhajirdev-gatsby-starter-redux-firebase-master-2x.jpg b/static/images/theme/thumbnail/2x/muhajirdev-gatsby-starter-redux-firebase-master-2x.jpg deleted file mode 100644 index 8d1ff9b59..000000000 Binary files a/static/images/theme/thumbnail/2x/muhajirdev-gatsby-starter-redux-firebase-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/muhajirdev-gatsby-tailwind-emotion-starter-2x.jpg b/static/images/theme/thumbnail/2x/muhajirdev-gatsby-tailwind-emotion-starter-2x.jpg new file mode 100644 index 000000000..a8e086085 Binary files /dev/null and b/static/images/theme/thumbnail/2x/muhajirdev-gatsby-tailwind-emotion-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/muhajirdev-gatsby-tailwind-emotion-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/muhajirdev-gatsby-tailwind-emotion-starter-master-2x.jpg deleted file mode 100644 index 086d5e33b..000000000 Binary files a/static/images/theme/thumbnail/2x/muhajirdev-gatsby-tailwind-emotion-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/mumuxme-materialize-jekyll-2x.jpg b/static/images/theme/thumbnail/2x/mumuxme-materialize-jekyll-2x.jpg new file mode 100644 index 000000000..28cf97f55 Binary files /dev/null and b/static/images/theme/thumbnail/2x/mumuxme-materialize-jekyll-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/mumuxme-materialize-jekyll-master-2x.jpg b/static/images/theme/thumbnail/2x/mumuxme-materialize-jekyll-master-2x.jpg deleted file mode 100644 index b46c1d5f0..000000000 Binary files a/static/images/theme/thumbnail/2x/mumuxme-materialize-jekyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/muniftanjim-minimo-2x.jpg b/static/images/theme/thumbnail/2x/muniftanjim-minimo-2x.jpg new file mode 100644 index 000000000..1620aa2e2 Binary files /dev/null and b/static/images/theme/thumbnail/2x/muniftanjim-minimo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/muniftanjim-minimo-master-2x.jpg b/static/images/theme/thumbnail/2x/muniftanjim-minimo-master-2x.jpg deleted file mode 100644 index 2a96fbac6..000000000 Binary files a/static/images/theme/thumbnail/2x/muniftanjim-minimo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/murraco-jekyll-theme-minimal-resume-2x.jpg b/static/images/theme/thumbnail/2x/murraco-jekyll-theme-minimal-resume-2x.jpg new file mode 100644 index 000000000..e23ea4af5 Binary files /dev/null and b/static/images/theme/thumbnail/2x/murraco-jekyll-theme-minimal-resume-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/murraco-jekyll-theme-minimal-resume-master-2x.jpg b/static/images/theme/thumbnail/2x/murraco-jekyll-theme-minimal-resume-master-2x.jpg deleted file mode 100644 index 37b3d3b2a..000000000 Binary files a/static/images/theme/thumbnail/2x/murraco-jekyll-theme-minimal-resume-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/mushishi78-jekyll-video-2x.jpg b/static/images/theme/thumbnail/2x/mushishi78-jekyll-video-2x.jpg new file mode 100644 index 000000000..908f3aa9a Binary files /dev/null and b/static/images/theme/thumbnail/2x/mushishi78-jekyll-video-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/mushishi78-jekyll-video-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/mushishi78-jekyll-video-gh-pages-2x.jpg deleted file mode 100644 index 155591ad7..000000000 Binary files a/static/images/theme/thumbnail/2x/mushishi78-jekyll-video-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/mushishi78-one-page-wonder-jekyll-2x.jpg b/static/images/theme/thumbnail/2x/mushishi78-one-page-wonder-jekyll-2x.jpg new file mode 100644 index 000000000..93ae41774 Binary files /dev/null and b/static/images/theme/thumbnail/2x/mushishi78-one-page-wonder-jekyll-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/mushishi78-one-page-wonder-jekyll-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/mushishi78-one-page-wonder-jekyll-gh-pages-2x.jpg deleted file mode 100644 index f3d5a8b0b..000000000 Binary files a/static/images/theme/thumbnail/2x/mushishi78-one-page-wonder-jekyll-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/mx3m-hikari-for-jekyll-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/mx3m-hikari-for-jekyll-gh-pages-2x.jpg deleted file mode 100644 index 3fe20eb1c..000000000 Binary files a/static/images/theme/thumbnail/2x/mx3m-hikari-for-jekyll-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/nadjetey-gridgallery-master-2x.jpg b/static/images/theme/thumbnail/2x/nadjetey-gridgallery-master-2x.jpg deleted file mode 100644 index 3fe20eb1c..000000000 Binary files a/static/images/theme/thumbnail/2x/nadjetey-gridgallery-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/nadjetey-redcup-master-2x.jpg b/static/images/theme/thumbnail/2x/nadjetey-redcup-master-2x.jpg deleted file mode 100644 index 3fe20eb1c..000000000 Binary files a/static/images/theme/thumbnail/2x/nadjetey-redcup-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/nadjetey-wangana-2x.jpg b/static/images/theme/thumbnail/2x/nadjetey-wangana-2x.jpg new file mode 100644 index 000000000..1d0da297b Binary files /dev/null and b/static/images/theme/thumbnail/2x/nadjetey-wangana-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/nadjetey-wangana-master-2x.jpg b/static/images/theme/thumbnail/2x/nadjetey-wangana-master-2x.jpg deleted file mode 100644 index f94b0822b..000000000 Binary files a/static/images/theme/thumbnail/2x/nadjetey-wangana-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/nairobilug-pelican-alchemy-2x.jpg b/static/images/theme/thumbnail/2x/nairobilug-pelican-alchemy-2x.jpg new file mode 100644 index 000000000..b826ab3f7 Binary files /dev/null and b/static/images/theme/thumbnail/2x/nairobilug-pelican-alchemy-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/nairobilug-pelican-alchemy-master-2x.jpg b/static/images/theme/thumbnail/2x/nairobilug-pelican-alchemy-master-2x.jpg deleted file mode 100644 index 9f5f0959b..000000000 Binary files a/static/images/theme/thumbnail/2x/nairobilug-pelican-alchemy-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/nakorndev-vuepress-theme-bulma-master-2x.jpg b/static/images/theme/thumbnail/2x/nakorndev-vuepress-theme-bulma-master-2x.jpg deleted file mode 100644 index d0510eedc..000000000 Binary files a/static/images/theme/thumbnail/2x/nakorndev-vuepress-theme-bulma-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/nandomoreirame-dotx-2x.jpg b/static/images/theme/thumbnail/2x/nandomoreirame-dotx-2x.jpg new file mode 100644 index 000000000..f208a6f15 Binary files /dev/null and b/static/images/theme/thumbnail/2x/nandomoreirame-dotx-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/nandomoreirame-dotx-master-2x.jpg b/static/images/theme/thumbnail/2x/nandomoreirame-dotx-master-2x.jpg deleted file mode 100644 index 2b7a2cbc7..000000000 Binary files a/static/images/theme/thumbnail/2x/nandomoreirame-dotx-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/nandomoreirame-end2end-2x.jpg b/static/images/theme/thumbnail/2x/nandomoreirame-end2end-2x.jpg new file mode 100644 index 000000000..d8dc62611 Binary files /dev/null and b/static/images/theme/thumbnail/2x/nandomoreirame-end2end-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/nandomoreirame-end2end-master-2x.jpg b/static/images/theme/thumbnail/2x/nandomoreirame-end2end-master-2x.jpg deleted file mode 100644 index 61c51f1bf..000000000 Binary files a/static/images/theme/thumbnail/2x/nandomoreirame-end2end-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/nandomoreirame-lora-master-2x.jpg b/static/images/theme/thumbnail/2x/nandomoreirame-lora-master-2x.jpg deleted file mode 100644 index b95305c15..000000000 Binary files a/static/images/theme/thumbnail/2x/nandomoreirame-lora-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/nandomoreirame-mug-master-2x.jpg b/static/images/theme/thumbnail/2x/nandomoreirame-mug-master-2x.jpg deleted file mode 100644 index f5e1e6849..000000000 Binary files a/static/images/theme/thumbnail/2x/nandomoreirame-mug-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/nandomoreirame-nandomoreira-jekyll-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/nandomoreirame-nandomoreira-jekyll-theme-master-2x.jpg deleted file mode 100644 index 9209e1bdd..000000000 Binary files a/static/images/theme/thumbnail/2x/nandomoreirame-nandomoreira-jekyll-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/nandomoreirame-simplest-master-2x.jpg b/static/images/theme/thumbnail/2x/nandomoreirame-simplest-master-2x.jpg deleted file mode 100644 index 4d9bd2d7b..000000000 Binary files a/static/images/theme/thumbnail/2x/nandomoreirame-simplest-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/nandomoreirame-zetsu-2x.jpg b/static/images/theme/thumbnail/2x/nandomoreirame-zetsu-2x.jpg new file mode 100644 index 000000000..752b0971d Binary files /dev/null and b/static/images/theme/thumbnail/2x/nandomoreirame-zetsu-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/nandomoreirame-zetsu-master-2x.jpg b/static/images/theme/thumbnail/2x/nandomoreirame-zetsu-master-2x.jpg deleted file mode 100644 index 729698140..000000000 Binary files a/static/images/theme/thumbnail/2x/nandomoreirame-zetsu-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/nanxiaobei-hugo-paper-2x.jpg b/static/images/theme/thumbnail/2x/nanxiaobei-hugo-paper-2x.jpg new file mode 100644 index 000000000..12de26333 Binary files /dev/null and b/static/images/theme/thumbnail/2x/nanxiaobei-hugo-paper-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/nanxiaobei-hugo-paper-master-2x.jpg b/static/images/theme/thumbnail/2x/nanxiaobei-hugo-paper-master-2x.jpg deleted file mode 100644 index ff5f0d212..000000000 Binary files a/static/images/theme/thumbnail/2x/nanxiaobei-hugo-paper-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/narative-gatsby-theme-novela-2x.jpg b/static/images/theme/thumbnail/2x/narative-gatsby-theme-novela-2x.jpg new file mode 100644 index 000000000..a340e356f Binary files /dev/null and b/static/images/theme/thumbnail/2x/narative-gatsby-theme-novela-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/narative-gatsby-theme-novela-master-2x.jpg b/static/images/theme/thumbnail/2x/narative-gatsby-theme-novela-master-2x.jpg deleted file mode 100644 index 4084b149e..000000000 Binary files a/static/images/theme/thumbnail/2x/narative-gatsby-theme-novela-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/natarajmb-charaka-hugo-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/natarajmb-charaka-hugo-theme-master-2x.jpg deleted file mode 100644 index 1d4c4191f..000000000 Binary files a/static/images/theme/thumbnail/2x/natarajmb-charaka-hugo-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/nathancday-min_night-2x.jpg b/static/images/theme/thumbnail/2x/nathancday-min_night-2x.jpg new file mode 100644 index 000000000..b66496513 Binary files /dev/null and b/static/images/theme/thumbnail/2x/nathancday-min_night-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/nathancday-min_night-master-2x.jpg b/static/images/theme/thumbnail/2x/nathancday-min_night-master-2x.jpg deleted file mode 100644 index 93a2d7578..000000000 Binary files a/static/images/theme/thumbnail/2x/nathancday-min_night-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/naufaldi-next-landing-vpn-2x.jpg b/static/images/theme/thumbnail/2x/naufaldi-next-landing-vpn-2x.jpg new file mode 100644 index 000000000..d870fcf32 Binary files /dev/null and b/static/images/theme/thumbnail/2x/naufaldi-next-landing-vpn-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ndimatteo-hull-2x.jpg b/static/images/theme/thumbnail/2x/ndimatteo-hull-2x.jpg new file mode 100644 index 000000000..98373a85f Binary files /dev/null and b/static/images/theme/thumbnail/2x/ndimatteo-hull-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/nehalist-gatsby-starter-nehalem-2x.jpg b/static/images/theme/thumbnail/2x/nehalist-gatsby-starter-nehalem-2x.jpg new file mode 100644 index 000000000..6c20a0e62 Binary files /dev/null and b/static/images/theme/thumbnail/2x/nehalist-gatsby-starter-nehalem-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/nehalist-gatsby-starter-nehalem-master-2x.jpg b/static/images/theme/thumbnail/2x/nehalist-gatsby-starter-nehalem-master-2x.jpg deleted file mode 100644 index 65d4cdf31..000000000 Binary files a/static/images/theme/thumbnail/2x/nehalist-gatsby-starter-nehalem-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/neizod-lemma-theme-2x.jpg b/static/images/theme/thumbnail/2x/neizod-lemma-theme-2x.jpg new file mode 100644 index 000000000..4e5272c2d Binary files /dev/null and b/static/images/theme/thumbnail/2x/neizod-lemma-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/neizod-lemma-theme-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/neizod-lemma-theme-gh-pages-2x.jpg deleted file mode 100644 index 097925b3d..000000000 Binary files a/static/images/theme/thumbnail/2x/neizod-lemma-theme-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/netlify-templates-gatsby-starter-netlify-cms-2x.jpg b/static/images/theme/thumbnail/2x/netlify-templates-gatsby-starter-netlify-cms-2x.jpg new file mode 100644 index 000000000..fdc8e0f69 Binary files /dev/null and b/static/images/theme/thumbnail/2x/netlify-templates-gatsby-starter-netlify-cms-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/netlify-templates-gatsby-starter-netlify-cms-master-2x.jpg b/static/images/theme/thumbnail/2x/netlify-templates-gatsby-starter-netlify-cms-master-2x.jpg deleted file mode 100644 index 9dffed33f..000000000 Binary files a/static/images/theme/thumbnail/2x/netlify-templates-gatsby-starter-netlify-cms-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/netlify-templates-one-click-hugo-cms-2x.jpg b/static/images/theme/thumbnail/2x/netlify-templates-one-click-hugo-cms-2x.jpg new file mode 100644 index 000000000..cd41fc909 Binary files /dev/null and b/static/images/theme/thumbnail/2x/netlify-templates-one-click-hugo-cms-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/netlify-templates-one-click-hugo-cms-master-2x.jpg b/static/images/theme/thumbnail/2x/netlify-templates-one-click-hugo-cms-master-2x.jpg deleted file mode 100644 index 01251a8a8..000000000 Binary files a/static/images/theme/thumbnail/2x/netlify-templates-one-click-hugo-cms-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/netlify-templates-tanstack-template-2x.jpg b/static/images/theme/thumbnail/2x/netlify-templates-tanstack-template-2x.jpg new file mode 100644 index 000000000..a02fcd1a1 Binary files /dev/null and b/static/images/theme/thumbnail/2x/netlify-templates-tanstack-template-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ngzhio-jekyll-theme-hamilton-master-2x.jpg b/static/images/theme/thumbnail/2x/ngzhio-jekyll-theme-hamilton-master-2x.jpg deleted file mode 100644 index 9dcaeab29..000000000 Binary files a/static/images/theme/thumbnail/2x/ngzhio-jekyll-theme-hamilton-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/nickbalestra-kactus-2x.jpg b/static/images/theme/thumbnail/2x/nickbalestra-kactus-2x.jpg new file mode 100644 index 000000000..99b1593bb Binary files /dev/null and b/static/images/theme/thumbnail/2x/nickbalestra-kactus-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/nickbalestra-kactus-master-2x.jpg b/static/images/theme/thumbnail/2x/nickbalestra-kactus-master-2x.jpg deleted file mode 100644 index 0efaa0938..000000000 Binary files a/static/images/theme/thumbnail/2x/nickbalestra-kactus-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/nielsenramon-chalk-2x.jpg b/static/images/theme/thumbnail/2x/nielsenramon-chalk-2x.jpg new file mode 100644 index 000000000..0f20dde08 Binary files /dev/null and b/static/images/theme/thumbnail/2x/nielsenramon-chalk-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/nielsenramon-chalk-master-2x.jpg b/static/images/theme/thumbnail/2x/nielsenramon-chalk-master-2x.jpg deleted file mode 100644 index 476eec9cb..000000000 Binary files a/static/images/theme/thumbnail/2x/nielsenramon-chalk-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/niklasbuschmann-contrast-2x.jpg b/static/images/theme/thumbnail/2x/niklasbuschmann-contrast-2x.jpg new file mode 100644 index 000000000..060ed9368 Binary files /dev/null and b/static/images/theme/thumbnail/2x/niklasbuschmann-contrast-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/niklasbuschmann-contrast-hugo-master-2x.jpg b/static/images/theme/thumbnail/2x/niklasbuschmann-contrast-hugo-master-2x.jpg deleted file mode 100644 index 1bb38791d..000000000 Binary files a/static/images/theme/thumbnail/2x/niklasbuschmann-contrast-hugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/niklasbuschmann-contrast-master-2x.jpg b/static/images/theme/thumbnail/2x/niklasbuschmann-contrast-master-2x.jpg deleted file mode 100644 index 286d6c0c5..000000000 Binary files a/static/images/theme/thumbnail/2x/niklasbuschmann-contrast-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/niklasmtj-gatsby-starter-julia-2x.jpg b/static/images/theme/thumbnail/2x/niklasmtj-gatsby-starter-julia-2x.jpg new file mode 100644 index 000000000..17f8f4ad7 Binary files /dev/null and b/static/images/theme/thumbnail/2x/niklasmtj-gatsby-starter-julia-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/niklasmtj-gatsby-starter-julia-master-2x.jpg b/static/images/theme/thumbnail/2x/niklasmtj-gatsby-starter-julia-master-2x.jpg deleted file mode 100644 index 1aeb8a3a7..000000000 Binary files a/static/images/theme/thumbnail/2x/niklasmtj-gatsby-starter-julia-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/nikrich-jekyll-slender-template-2x.jpg b/static/images/theme/thumbnail/2x/nikrich-jekyll-slender-template-2x.jpg new file mode 100644 index 000000000..b3dfcd372 Binary files /dev/null and b/static/images/theme/thumbnail/2x/nikrich-jekyll-slender-template-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/nikrich-jekyll-slender-template-master-2x.jpg b/static/images/theme/thumbnail/2x/nikrich-jekyll-slender-template-master-2x.jpg deleted file mode 100644 index 4451f5a9c..000000000 Binary files a/static/images/theme/thumbnail/2x/nikrich-jekyll-slender-template-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/nikrich-jekyll-wing-template-2x.jpg b/static/images/theme/thumbnail/2x/nikrich-jekyll-wing-template-2x.jpg new file mode 100644 index 000000000..b1feb94bf Binary files /dev/null and b/static/images/theme/thumbnail/2x/nikrich-jekyll-wing-template-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/nikrich-jekyll-wing-template-master-2x.jpg b/static/images/theme/thumbnail/2x/nikrich-jekyll-wing-template-master-2x.jpg deleted file mode 100644 index 7558b1fc6..000000000 Binary files a/static/images/theme/thumbnail/2x/nikrich-jekyll-wing-template-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ninapetrop-artist-theme-2x.jpg b/static/images/theme/thumbnail/2x/ninapetrop-artist-theme-2x.jpg new file mode 100644 index 000000000..c978005ab Binary files /dev/null and b/static/images/theme/thumbnail/2x/ninapetrop-artist-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ninapetrop-artist-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/ninapetrop-artist-theme-master-2x.jpg deleted file mode 100644 index ae2c87ef8..000000000 Binary files a/static/images/theme/thumbnail/2x/ninapetrop-artist-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/nirocfz-arabica-2x.jpg b/static/images/theme/thumbnail/2x/nirocfz-arabica-2x.jpg new file mode 100644 index 000000000..7ec62fafb Binary files /dev/null and b/static/images/theme/thumbnail/2x/nirocfz-arabica-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/nirocfz-arabica-master-2x.jpg b/static/images/theme/thumbnail/2x/nirocfz-arabica-master-2x.jpg deleted file mode 100644 index 4fccb6bce..000000000 Binary files a/static/images/theme/thumbnail/2x/nirocfz-arabica-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/nix1947-jekyll-hilmi-master-2x.jpg b/static/images/theme/thumbnail/2x/nix1947-jekyll-hilmi-master-2x.jpg deleted file mode 100644 index 61d32f138..000000000 Binary files a/static/images/theme/thumbnail/2x/nix1947-jekyll-hilmi-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/nodejh-hugo-theme-cactus-plus-master-2x.jpg b/static/images/theme/thumbnail/2x/nodejh-hugo-theme-cactus-plus-master-2x.jpg deleted file mode 100644 index fa810c4d4..000000000 Binary files a/static/images/theme/thumbnail/2x/nodejh-hugo-theme-cactus-plus-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/notpushkin-mkdocs-alabaster-2x.jpg b/static/images/theme/thumbnail/2x/notpushkin-mkdocs-alabaster-2x.jpg new file mode 100644 index 000000000..cca40b633 Binary files /dev/null and b/static/images/theme/thumbnail/2x/notpushkin-mkdocs-alabaster-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/notpushkin-mkdocs-alabaster-master-2x.jpg b/static/images/theme/thumbnail/2x/notpushkin-mkdocs-alabaster-master-2x.jpg deleted file mode 100644 index bd6e0b8f8..000000000 Binary files a/static/images/theme/thumbnail/2x/notpushkin-mkdocs-alabaster-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/nrandecker-particle-2x.jpg b/static/images/theme/thumbnail/2x/nrandecker-particle-2x.jpg new file mode 100644 index 000000000..9c32a9325 Binary files /dev/null and b/static/images/theme/thumbnail/2x/nrandecker-particle-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/nrandecker-particle-master-2x.jpg b/static/images/theme/thumbnail/2x/nrandecker-particle-master-2x.jpg deleted file mode 100644 index cce2d6dcc..000000000 Binary files a/static/images/theme/thumbnail/2x/nrandecker-particle-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/nunocoracao-blowfish-2x.jpg b/static/images/theme/thumbnail/2x/nunocoracao-blowfish-2x.jpg new file mode 100644 index 000000000..3db16530e Binary files /dev/null and b/static/images/theme/thumbnail/2x/nunocoracao-blowfish-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/nurlansu-hugo-sustain-2x.jpg b/static/images/theme/thumbnail/2x/nurlansu-hugo-sustain-2x.jpg new file mode 100644 index 000000000..e04bd0aa1 Binary files /dev/null and b/static/images/theme/thumbnail/2x/nurlansu-hugo-sustain-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/nurlansu-hugo-sustain-master-2x.jpg b/static/images/theme/thumbnail/2x/nurlansu-hugo-sustain-master-2x.jpg deleted file mode 100644 index 7056d443b..000000000 Binary files a/static/images/theme/thumbnail/2x/nurlansu-hugo-sustain-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/obaez-dentistsmile-master-2x.jpg b/static/images/theme/thumbnail/2x/obaez-dentistsmile-master-2x.jpg deleted file mode 100644 index eabb87430..000000000 Binary files a/static/images/theme/thumbnail/2x/obaez-dentistsmile-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/octoxalis-11tyframe-2x.jpg b/static/images/theme/thumbnail/2x/octoxalis-11tyframe-2x.jpg new file mode 100644 index 000000000..391f0f6d4 Binary files /dev/null and b/static/images/theme/thumbnail/2x/octoxalis-11tyframe-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/octoxalis-11tyframe-master-2x.jpg b/static/images/theme/thumbnail/2x/octoxalis-11tyframe-master-2x.jpg deleted file mode 100644 index fecd35047..000000000 Binary files a/static/images/theme/thumbnail/2x/octoxalis-11tyframe-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ofranke-gatsby-typescript-scss-docker-2x.jpg b/static/images/theme/thumbnail/2x/ofranke-gatsby-typescript-scss-docker-2x.jpg new file mode 100644 index 000000000..a83fc3b5f Binary files /dev/null and b/static/images/theme/thumbnail/2x/ofranke-gatsby-typescript-scss-docker-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ofranke-gatsby-typescript-scss-docker-master-2x.jpg b/static/images/theme/thumbnail/2x/ofranke-gatsby-typescript-scss-docker-master-2x.jpg deleted file mode 100644 index 143dc5386..000000000 Binary files a/static/images/theme/thumbnail/2x/ofranke-gatsby-typescript-scss-docker-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ohduran-onassis-2x.jpg b/static/images/theme/thumbnail/2x/ohduran-onassis-2x.jpg new file mode 100644 index 000000000..71854d83a Binary files /dev/null and b/static/images/theme/thumbnail/2x/ohduran-onassis-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ohduran-onassis-master-2x.jpg b/static/images/theme/thumbnail/2x/ohduran-onassis-master-2x.jpg deleted file mode 100644 index 1a48eed86..000000000 Binary files a/static/images/theme/thumbnail/2x/ohduran-onassis-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ohduran-the-interesting-times-2x.jpg b/static/images/theme/thumbnail/2x/ohduran-the-interesting-times-2x.jpg new file mode 100644 index 000000000..0a5096675 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ohduran-the-interesting-times-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ohduran-the-interesting-times-master-2x.jpg b/static/images/theme/thumbnail/2x/ohduran-the-interesting-times-master-2x.jpg deleted file mode 100644 index 3a6c7562a..000000000 Binary files a/static/images/theme/thumbnail/2x/ohduran-the-interesting-times-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/okkur-syna-master-2x.jpg b/static/images/theme/thumbnail/2x/okkur-syna-master-2x.jpg deleted file mode 100644 index 489a217ed..000000000 Binary files a/static/images/theme/thumbnail/2x/okkur-syna-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/olakara-jekyllmetro-master-2x.jpg b/static/images/theme/thumbnail/2x/olakara-jekyllmetro-master-2x.jpg deleted file mode 100644 index 0016fbbf6..000000000 Binary files a/static/images/theme/thumbnail/2x/olakara-jekyllmetro-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/olivier3lanc-jekyll-libdoc-2x.jpg b/static/images/theme/thumbnail/2x/olivier3lanc-jekyll-libdoc-2x.jpg new file mode 100644 index 000000000..ab9bfd416 Binary files /dev/null and b/static/images/theme/thumbnail/2x/olivier3lanc-jekyll-libdoc-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/olowolo-hugo-theme-even-master-2x.jpg b/static/images/theme/thumbnail/2x/olowolo-hugo-theme-even-master-2x.jpg deleted file mode 100644 index a5bad1da2..000000000 Binary files a/static/images/theme/thumbnail/2x/olowolo-hugo-theme-even-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ondrabus-gridsome-starter-kontent-lumen-2x.jpg b/static/images/theme/thumbnail/2x/ondrabus-gridsome-starter-kontent-lumen-2x.jpg new file mode 100644 index 000000000..011716e66 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ondrabus-gridsome-starter-kontent-lumen-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ondrabus-gridsome-starter-kontent-lumen-master-2x.jpg b/static/images/theme/thumbnail/2x/ondrabus-gridsome-starter-kontent-lumen-master-2x.jpg deleted file mode 100644 index 22291080f..000000000 Binary files a/static/images/theme/thumbnail/2x/ondrabus-gridsome-starter-kontent-lumen-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ondrabus-scully-starter-kontent-lumen-2x.jpg b/static/images/theme/thumbnail/2x/ondrabus-scully-starter-kontent-lumen-2x.jpg new file mode 100644 index 000000000..2da64661e Binary files /dev/null and b/static/images/theme/thumbnail/2x/ondrabus-scully-starter-kontent-lumen-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ondrabus-scully-starter-kontent-lumen-master-2x.jpg b/static/images/theme/thumbnail/2x/ondrabus-scully-starter-kontent-lumen-master-2x.jpg deleted file mode 100644 index 9259b7be4..000000000 Binary files a/static/images/theme/thumbnail/2x/ondrabus-scully-starter-kontent-lumen-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/onepase-ephesus-2x.jpg b/static/images/theme/thumbnail/2x/onepase-ephesus-2x.jpg new file mode 100644 index 000000000..ac6567e8d Binary files /dev/null and b/static/images/theme/thumbnail/2x/onepase-ephesus-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/onweru-compose-2x.jpg b/static/images/theme/thumbnail/2x/onweru-compose-2x.jpg new file mode 100644 index 000000000..24d9396fe Binary files /dev/null and b/static/images/theme/thumbnail/2x/onweru-compose-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/onweru-compose-master-2x.jpg b/static/images/theme/thumbnail/2x/onweru-compose-master-2x.jpg deleted file mode 100644 index 12ed66f14..000000000 Binary files a/static/images/theme/thumbnail/2x/onweru-compose-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/onweru-hugo-swift-theme-2x.jpg b/static/images/theme/thumbnail/2x/onweru-hugo-swift-theme-2x.jpg new file mode 100644 index 000000000..81b913b02 Binary files /dev/null and b/static/images/theme/thumbnail/2x/onweru-hugo-swift-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/onweru-hugo-swift-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/onweru-hugo-swift-theme-master-2x.jpg deleted file mode 100644 index 956d15eaf..000000000 Binary files a/static/images/theme/thumbnail/2x/onweru-hugo-swift-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/onweru-newsroom-2x.jpg b/static/images/theme/thumbnail/2x/onweru-newsroom-2x.jpg new file mode 100644 index 000000000..f881b1738 Binary files /dev/null and b/static/images/theme/thumbnail/2x/onweru-newsroom-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/onweru-newsroom-master-2x.jpg b/static/images/theme/thumbnail/2x/onweru-newsroom-master-2x.jpg deleted file mode 100644 index a2f68bd28..000000000 Binary files a/static/images/theme/thumbnail/2x/onweru-newsroom-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/onwidget-astrowind-2x.jpg b/static/images/theme/thumbnail/2x/onwidget-astrowind-2x.jpg new file mode 100644 index 000000000..2f224e437 Binary files /dev/null and b/static/images/theme/thumbnail/2x/onwidget-astrowind-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/open-sl-jekyll-modern-blog-2x.jpg b/static/images/theme/thumbnail/2x/open-sl-jekyll-modern-blog-2x.jpg new file mode 100644 index 000000000..472deb401 Binary files /dev/null and b/static/images/theme/thumbnail/2x/open-sl-jekyll-modern-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/open-sl-jekyll-modern-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/open-sl-jekyll-modern-blog-master-2x.jpg deleted file mode 100644 index 9a27e3459..000000000 Binary files a/static/images/theme/thumbnail/2x/open-sl-jekyll-modern-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/open-start-opentheme-master-2x.jpg b/static/images/theme/thumbnail/2x/open-start-opentheme-master-2x.jpg deleted file mode 100644 index ecf6c1e0d..000000000 Binary files a/static/images/theme/thumbnail/2x/open-start-opentheme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/orderedlist-minimal-2x.jpg b/static/images/theme/thumbnail/2x/orderedlist-minimal-2x.jpg new file mode 100644 index 000000000..86da39c6d Binary files /dev/null and b/static/images/theme/thumbnail/2x/orderedlist-minimal-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/orderedlist-minimal-master-2x.jpg b/static/images/theme/thumbnail/2x/orderedlist-minimal-master-2x.jpg deleted file mode 100644 index 169b44f40..000000000 Binary files a/static/images/theme/thumbnail/2x/orderedlist-minimal-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/orderedlist-modernist-2x.jpg b/static/images/theme/thumbnail/2x/orderedlist-modernist-2x.jpg new file mode 100644 index 000000000..f8b91278d Binary files /dev/null and b/static/images/theme/thumbnail/2x/orderedlist-modernist-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/orderedlist-modernist-master-2x.jpg b/static/images/theme/thumbnail/2x/orderedlist-modernist-master-2x.jpg deleted file mode 100644 index faa659072..000000000 Binary files a/static/images/theme/thumbnail/2x/orderedlist-modernist-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/osogrizz-gatsby-starter-santa-fe-2x.jpg b/static/images/theme/thumbnail/2x/osogrizz-gatsby-starter-santa-fe-2x.jpg new file mode 100644 index 000000000..db2d3cc17 Binary files /dev/null and b/static/images/theme/thumbnail/2x/osogrizz-gatsby-starter-santa-fe-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/osogrizz-gatsby-starter-santa-fe-master-2x.jpg b/static/images/theme/thumbnail/2x/osogrizz-gatsby-starter-santa-fe-master-2x.jpg deleted file mode 100644 index e7ccc1f34..000000000 Binary files a/static/images/theme/thumbnail/2x/osogrizz-gatsby-starter-santa-fe-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ovidiumihaibelciug-gatsby-firebase-starter-2x.jpg b/static/images/theme/thumbnail/2x/ovidiumihaibelciug-gatsby-firebase-starter-2x.jpg new file mode 100644 index 000000000..7056ff32a Binary files /dev/null and b/static/images/theme/thumbnail/2x/ovidiumihaibelciug-gatsby-firebase-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ovidiumihaibelciug-gatsby-firebase-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/ovidiumihaibelciug-gatsby-firebase-starter-master-2x.jpg deleted file mode 100644 index 3da5a4ba2..000000000 Binary files a/static/images/theme/thumbnail/2x/ovidiumihaibelciug-gatsby-firebase-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ozgrozer-dasper-2x.jpg b/static/images/theme/thumbnail/2x/ozgrozer-dasper-2x.jpg new file mode 100644 index 000000000..9c9021119 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ozgrozer-dasper-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ozgrozer-dasper-master-2x.jpg b/static/images/theme/thumbnail/2x/ozgrozer-dasper-master-2x.jpg deleted file mode 100644 index dcd4dd976..000000000 Binary files a/static/images/theme/thumbnail/2x/ozgrozer-dasper-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/p0wex-gesko-2x.jpg b/static/images/theme/thumbnail/2x/p0wex-gesko-2x.jpg new file mode 100644 index 000000000..659870d4c Binary files /dev/null and b/static/images/theme/thumbnail/2x/p0wex-gesko-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/pablovila-gatsby-starter-wordpress-community-2x.jpg b/static/images/theme/thumbnail/2x/pablovila-gatsby-starter-wordpress-community-2x.jpg new file mode 100644 index 000000000..37053b66e Binary files /dev/null and b/static/images/theme/thumbnail/2x/pablovila-gatsby-starter-wordpress-community-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/pablovila-gatsby-starter-wordpress-community-master-2x.jpg b/static/images/theme/thumbnail/2x/pablovila-gatsby-starter-wordpress-community-master-2x.jpg deleted file mode 100644 index 42d9284ae..000000000 Binary files a/static/images/theme/thumbnail/2x/pablovila-gatsby-starter-wordpress-community-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/pacollins-hugo-future-imperfect-slim-master-2x.jpg b/static/images/theme/thumbnail/2x/pacollins-hugo-future-imperfect-slim-master-2x.jpg deleted file mode 100644 index 253ce5bd9..000000000 Binary files a/static/images/theme/thumbnail/2x/pacollins-hugo-future-imperfect-slim-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/pandasekh-jekyll-podcaster-2x.jpg b/static/images/theme/thumbnail/2x/pandasekh-jekyll-podcaster-2x.jpg new file mode 100644 index 000000000..7d5222161 Binary files /dev/null and b/static/images/theme/thumbnail/2x/pandasekh-jekyll-podcaster-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/pandasekh-jekyll-podcaster-master-2x.jpg b/static/images/theme/thumbnail/2x/pandasekh-jekyll-podcaster-master-2x.jpg deleted file mode 100644 index 189acb1f3..000000000 Binary files a/static/images/theme/thumbnail/2x/pandasekh-jekyll-podcaster-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/pandasekh-jekyll-yamt-2x.jpg b/static/images/theme/thumbnail/2x/pandasekh-jekyll-yamt-2x.jpg new file mode 100644 index 000000000..38912fa73 Binary files /dev/null and b/static/images/theme/thumbnail/2x/pandasekh-jekyll-yamt-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/pandasekh-jekyll-yamt-master-2x.jpg b/static/images/theme/thumbnail/2x/pandasekh-jekyll-yamt-master-2x.jpg deleted file mode 100644 index 0237affea..000000000 Binary files a/static/images/theme/thumbnail/2x/pandasekh-jekyll-yamt-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/panr-gatsby-starter-hello-friend-master-2x.jpg b/static/images/theme/thumbnail/2x/panr-gatsby-starter-hello-friend-master-2x.jpg deleted file mode 100644 index 53eb0b992..000000000 Binary files a/static/images/theme/thumbnail/2x/panr-gatsby-starter-hello-friend-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/panr-hugo-theme-hello-friend-2x.jpg b/static/images/theme/thumbnail/2x/panr-hugo-theme-hello-friend-2x.jpg new file mode 100644 index 000000000..a55336456 Binary files /dev/null and b/static/images/theme/thumbnail/2x/panr-hugo-theme-hello-friend-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/panr-hugo-theme-hello-friend-master-2x.jpg b/static/images/theme/thumbnail/2x/panr-hugo-theme-hello-friend-master-2x.jpg deleted file mode 100644 index 1c02a1af5..000000000 Binary files a/static/images/theme/thumbnail/2x/panr-hugo-theme-hello-friend-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/panr-hugo-theme-terminal-2x.jpg b/static/images/theme/thumbnail/2x/panr-hugo-theme-terminal-2x.jpg new file mode 100644 index 000000000..db811ca13 Binary files /dev/null and b/static/images/theme/thumbnail/2x/panr-hugo-theme-terminal-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/panr-hugo-theme-terminal-master-2x.jpg b/static/images/theme/thumbnail/2x/panr-hugo-theme-terminal-master-2x.jpg deleted file mode 100644 index 2eaaf628e..000000000 Binary files a/static/images/theme/thumbnail/2x/panr-hugo-theme-terminal-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/parmsang-gatsby-starter-ecommerce-2x.jpg b/static/images/theme/thumbnail/2x/parmsang-gatsby-starter-ecommerce-2x.jpg new file mode 100644 index 000000000..d3c1006ea Binary files /dev/null and b/static/images/theme/thumbnail/2x/parmsang-gatsby-starter-ecommerce-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/parmsang-gatsby-starter-ecommerce-master-2x.jpg b/static/images/theme/thumbnail/2x/parmsang-gatsby-starter-ecommerce-master-2x.jpg deleted file mode 100644 index 0b490d368..000000000 Binary files a/static/images/theme/thumbnail/2x/parmsang-gatsby-starter-ecommerce-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/parsiya-hugo-octopress-master-2x.jpg b/static/images/theme/thumbnail/2x/parsiya-hugo-octopress-master-2x.jpg deleted file mode 100644 index 194a1520b..000000000 Binary files a/static/images/theme/thumbnail/2x/parsiya-hugo-octopress-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/pasindud-jekyll-masonry-master-2x.jpg b/static/images/theme/thumbnail/2x/pasindud-jekyll-masonry-master-2x.jpg deleted file mode 100644 index cd4246049..000000000 Binary files a/static/images/theme/thumbnail/2x/pasindud-jekyll-masonry-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/patdryburgh-hitchens-2x.jpg b/static/images/theme/thumbnail/2x/patdryburgh-hitchens-2x.jpg new file mode 100644 index 000000000..b3587f0e2 Binary files /dev/null and b/static/images/theme/thumbnail/2x/patdryburgh-hitchens-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/patdryburgh-hitchens-master-2x.jpg b/static/images/theme/thumbnail/2x/patdryburgh-hitchens-master-2x.jpg deleted file mode 100644 index 93972724c..000000000 Binary files a/static/images/theme/thumbnail/2x/patdryburgh-hitchens-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/patricoferris-gatsby-starter-notes-2x.jpg b/static/images/theme/thumbnail/2x/patricoferris-gatsby-starter-notes-2x.jpg new file mode 100644 index 000000000..006384d73 Binary files /dev/null and b/static/images/theme/thumbnail/2x/patricoferris-gatsby-starter-notes-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/patricoferris-gatsby-starter-notes-master-2x.jpg b/static/images/theme/thumbnail/2x/patricoferris-gatsby-starter-notes-master-2x.jpg deleted file mode 100644 index 4cccd18d4..000000000 Binary files a/static/images/theme/thumbnail/2x/patricoferris-gatsby-starter-notes-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/pdevty-material-design-master-2x.jpg b/static/images/theme/thumbnail/2x/pdevty-material-design-master-2x.jpg deleted file mode 100644 index 4a18293cd..000000000 Binary files a/static/images/theme/thumbnail/2x/pdevty-material-design-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/pdevty-polymer-master-2x.jpg b/static/images/theme/thumbnail/2x/pdevty-polymer-master-2x.jpg deleted file mode 100644 index 58605bdaf..000000000 Binary files a/static/images/theme/thumbnail/2x/pdevty-polymer-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/peaceiris-hugo-theme-iris-2x.jpg b/static/images/theme/thumbnail/2x/peaceiris-hugo-theme-iris-2x.jpg new file mode 100644 index 000000000..fe9ace5e4 Binary files /dev/null and b/static/images/theme/thumbnail/2x/peaceiris-hugo-theme-iris-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/peaceiris-hugo-theme-iris-master-2x.jpg b/static/images/theme/thumbnail/2x/peaceiris-hugo-theme-iris-master-2x.jpg deleted file mode 100644 index 9d052d503..000000000 Binary files a/static/images/theme/thumbnail/2x/peaceiris-hugo-theme-iris-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/peahatlanding-plain-webcomic-2x.jpg b/static/images/theme/thumbnail/2x/peahatlanding-plain-webcomic-2x.jpg new file mode 100644 index 000000000..e04cc2a81 Binary files /dev/null and b/static/images/theme/thumbnail/2x/peahatlanding-plain-webcomic-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/peahatlanding-plain-webcomic-master-2x.jpg b/static/images/theme/thumbnail/2x/peahatlanding-plain-webcomic-master-2x.jpg deleted file mode 100644 index a76e338f8..000000000 Binary files a/static/images/theme/thumbnail/2x/peahatlanding-plain-webcomic-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/pelican-elegant-elegant-2x.jpg b/static/images/theme/thumbnail/2x/pelican-elegant-elegant-2x.jpg new file mode 100644 index 000000000..11d0d0057 Binary files /dev/null and b/static/images/theme/thumbnail/2x/pelican-elegant-elegant-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/pelican-elegant-elegant-master-2x.jpg b/static/images/theme/thumbnail/2x/pelican-elegant-elegant-master-2x.jpg deleted file mode 100644 index 1b0f88355..000000000 Binary files a/static/images/theme/thumbnail/2x/pelican-elegant-elegant-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/penibelst-jekyll-noita-2x.jpg b/static/images/theme/thumbnail/2x/penibelst-jekyll-noita-2x.jpg new file mode 100644 index 000000000..cbdeae6b3 Binary files /dev/null and b/static/images/theme/thumbnail/2x/penibelst-jekyll-noita-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/penibelst-jekyll-noita-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/penibelst-jekyll-noita-gh-pages-2x.jpg deleted file mode 100644 index 9ed2bdbeb..000000000 Binary files a/static/images/theme/thumbnail/2x/penibelst-jekyll-noita-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/petrsvihlik-statiq-starter-kontent-lumen-master-2x.jpg b/static/images/theme/thumbnail/2x/petrsvihlik-statiq-starter-kontent-lumen-master-2x.jpg deleted file mode 100644 index 4d0641dad..000000000 Binary files a/static/images/theme/thumbnail/2x/petrsvihlik-statiq-starter-kontent-lumen-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/philhawksworth-eleventyone-2x.jpg b/static/images/theme/thumbnail/2x/philhawksworth-eleventyone-2x.jpg new file mode 100644 index 000000000..b98222a5f Binary files /dev/null and b/static/images/theme/thumbnail/2x/philhawksworth-eleventyone-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/philhawksworth-eleventyone-master-2x.jpg b/static/images/theme/thumbnail/2x/philhawksworth-eleventyone-master-2x.jpg deleted file mode 100644 index 36a94c4d6..000000000 Binary files a/static/images/theme/thumbnail/2x/philhawksworth-eleventyone-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/philhawksworth-hawksworx.com-master-2x.jpg b/static/images/theme/thumbnail/2x/philhawksworth-hawksworx.com-master-2x.jpg deleted file mode 100644 index 0ec71e91b..000000000 Binary files a/static/images/theme/thumbnail/2x/philhawksworth-hawksworx.com-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/philhawksworth-medium-export-2x.jpg b/static/images/theme/thumbnail/2x/philhawksworth-medium-export-2x.jpg new file mode 100644 index 000000000..5cc86ccb3 Binary files /dev/null and b/static/images/theme/thumbnail/2x/philhawksworth-medium-export-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/philhawksworth-medium-export-master-2x.jpg b/static/images/theme/thumbnail/2x/philhawksworth-medium-export-master-2x.jpg deleted file mode 100644 index f3e617f0c..000000000 Binary files a/static/images/theme/thumbnail/2x/philhawksworth-medium-export-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/phlow-feeling-responsive-2x.jpg b/static/images/theme/thumbnail/2x/phlow-feeling-responsive-2x.jpg new file mode 100644 index 000000000..285d4cf38 Binary files /dev/null and b/static/images/theme/thumbnail/2x/phlow-feeling-responsive-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/phlow-feeling-responsive-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/phlow-feeling-responsive-gh-pages-2x.jpg deleted file mode 100644 index bc5b48244..000000000 Binary files a/static/images/theme/thumbnail/2x/phlow-feeling-responsive-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/piandhust-tailieubkhn-2x.jpg b/static/images/theme/thumbnail/2x/piandhust-tailieubkhn-2x.jpg new file mode 100644 index 000000000..f24baf1b3 Binary files /dev/null and b/static/images/theme/thumbnail/2x/piandhust-tailieubkhn-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/piducancore-gatsby-starter-apollo-netlify-2x.jpg b/static/images/theme/thumbnail/2x/piducancore-gatsby-starter-apollo-netlify-2x.jpg new file mode 100644 index 000000000..54d912061 Binary files /dev/null and b/static/images/theme/thumbnail/2x/piducancore-gatsby-starter-apollo-netlify-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/piducancore-gatsby-starter-apollo-netlify-master-2x.jpg b/static/images/theme/thumbnail/2x/piducancore-gatsby-starter-apollo-netlify-master-2x.jpg deleted file mode 100644 index d246e2f13..000000000 Binary files a/static/images/theme/thumbnail/2x/piducancore-gatsby-starter-apollo-netlify-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/pietromenna-jekyll-architect-theme-2x.jpg b/static/images/theme/thumbnail/2x/pietromenna-jekyll-architect-theme-2x.jpg new file mode 100644 index 000000000..3714aeb00 Binary files /dev/null and b/static/images/theme/thumbnail/2x/pietromenna-jekyll-architect-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/pietromenna-jekyll-architect-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/pietromenna-jekyll-architect-theme-master-2x.jpg deleted file mode 100644 index da4a6cc17..000000000 Binary files a/static/images/theme/thumbnail/2x/pietromenna-jekyll-architect-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/pietromenna-jekyll-cayman-theme-2x.jpg b/static/images/theme/thumbnail/2x/pietromenna-jekyll-cayman-theme-2x.jpg new file mode 100644 index 000000000..906e2b335 Binary files /dev/null and b/static/images/theme/thumbnail/2x/pietromenna-jekyll-cayman-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/pietromenna-jekyll-cayman-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/pietromenna-jekyll-cayman-theme-master-2x.jpg deleted file mode 100644 index 5c5c8c46b..000000000 Binary files a/static/images/theme/thumbnail/2x/pietromenna-jekyll-cayman-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/piharpi-jekyll-klise-2x.jpg b/static/images/theme/thumbnail/2x/piharpi-jekyll-klise-2x.jpg new file mode 100644 index 000000000..ecd5d499f Binary files /dev/null and b/static/images/theme/thumbnail/2x/piharpi-jekyll-klise-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/piharpi-jekyll-klise-master-2x.jpg b/static/images/theme/thumbnail/2x/piharpi-jekyll-klise-master-2x.jpg deleted file mode 100644 index 164d5f68a..000000000 Binary files a/static/images/theme/thumbnail/2x/piharpi-jekyll-klise-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/pipporj-hugo-refresh-master-2x.jpg b/static/images/theme/thumbnail/2x/pipporj-hugo-refresh-master-2x.jpg deleted file mode 100644 index 362eae09b..000000000 Binary files a/static/images/theme/thumbnail/2x/pipporj-hugo-refresh-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/pixelsign-gatsby-starter-tachyons-2x.jpg b/static/images/theme/thumbnail/2x/pixelsign-gatsby-starter-tachyons-2x.jpg new file mode 100644 index 000000000..2c179d036 Binary files /dev/null and b/static/images/theme/thumbnail/2x/pixelsign-gatsby-starter-tachyons-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/pixelsign-gatsby-starter-tachyons-master-2x.jpg b/static/images/theme/thumbnail/2x/pixelsign-gatsby-starter-tachyons-master-2x.jpg deleted file mode 100644 index 61780f5ab..000000000 Binary files a/static/images/theme/thumbnail/2x/pixelsign-gatsby-starter-tachyons-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/planetjekyll-jekyll-starter-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/planetjekyll-jekyll-starter-theme-master-2x.jpg deleted file mode 100644 index 3fe20eb1c..000000000 Binary files a/static/images/theme/thumbnail/2x/planetjekyll-jekyll-starter-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/planetoftheweb-seven-2x.jpg b/static/images/theme/thumbnail/2x/planetoftheweb-seven-2x.jpg new file mode 100644 index 000000000..4ad405175 Binary files /dev/null and b/static/images/theme/thumbnail/2x/planetoftheweb-seven-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/planetoftheweb-seven-master-2x.jpg b/static/images/theme/thumbnail/2x/planetoftheweb-seven-master-2x.jpg deleted file mode 100644 index fe9b8dba8..000000000 Binary files a/static/images/theme/thumbnail/2x/planetoftheweb-seven-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/platframe-platframe-2x.jpg b/static/images/theme/thumbnail/2x/platframe-platframe-2x.jpg new file mode 100644 index 000000000..a446ad8c8 Binary files /dev/null and b/static/images/theme/thumbnail/2x/platframe-platframe-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/platframe-platframe-master-2x.jpg b/static/images/theme/thumbnail/2x/platframe-platframe-master-2x.jpg deleted file mode 100644 index 4d9979787..000000000 Binary files a/static/images/theme/thumbnail/2x/platframe-platframe-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/pmarsceill-just-the-docs-2x.jpg b/static/images/theme/thumbnail/2x/pmarsceill-just-the-docs-2x.jpg new file mode 100644 index 000000000..fc2304c81 Binary files /dev/null and b/static/images/theme/thumbnail/2x/pmarsceill-just-the-docs-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/pmarsceill-just-the-docs-master-2x.jpg b/static/images/theme/thumbnail/2x/pmarsceill-just-the-docs-master-2x.jpg deleted file mode 100644 index 39e74b67a..000000000 Binary files a/static/images/theme/thumbnail/2x/pmarsceill-just-the-docs-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/poole-hyde-2x.jpg b/static/images/theme/thumbnail/2x/poole-hyde-2x.jpg new file mode 100644 index 000000000..4f2fa22f2 Binary files /dev/null and b/static/images/theme/thumbnail/2x/poole-hyde-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/poole-hyde-master-2x.jpg b/static/images/theme/thumbnail/2x/poole-hyde-master-2x.jpg deleted file mode 100644 index 7d80f08bb..000000000 Binary files a/static/images/theme/thumbnail/2x/poole-hyde-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/poole-lanyon-2x.jpg b/static/images/theme/thumbnail/2x/poole-lanyon-2x.jpg new file mode 100644 index 000000000..2cbaa8f44 Binary files /dev/null and b/static/images/theme/thumbnail/2x/poole-lanyon-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/poole-lanyon-master-2x.jpg b/static/images/theme/thumbnail/2x/poole-lanyon-master-2x.jpg deleted file mode 100644 index 2d539382c..000000000 Binary files a/static/images/theme/thumbnail/2x/poole-lanyon-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/poole-poole-2x.jpg b/static/images/theme/thumbnail/2x/poole-poole-2x.jpg new file mode 100644 index 000000000..d90f79095 Binary files /dev/null and b/static/images/theme/thumbnail/2x/poole-poole-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/poole-poole-master-2x.jpg b/static/images/theme/thumbnail/2x/poole-poole-master-2x.jpg deleted file mode 100644 index d4c3db753..000000000 Binary files a/static/images/theme/thumbnail/2x/poole-poole-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/portfolio-central-jekyll-instagram-portfolio-theme-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/portfolio-central-jekyll-instagram-portfolio-theme-gh-pages-2x.jpg deleted file mode 100644 index ac5421104..000000000 Binary files a/static/images/theme/thumbnail/2x/portfolio-central-jekyll-instagram-portfolio-theme-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/pranavrajs-limpid-2x.jpg b/static/images/theme/thumbnail/2x/pranavrajs-limpid-2x.jpg new file mode 100644 index 000000000..ee7dd8093 Binary files /dev/null and b/static/images/theme/thumbnail/2x/pranavrajs-limpid-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/pranavrajs-limpid-master-2x.jpg b/static/images/theme/thumbnail/2x/pranavrajs-limpid-master-2x.jpg deleted file mode 100644 index 8fe6139c7..000000000 Binary files a/static/images/theme/thumbnail/2x/pranavrajs-limpid-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/pranavrajs-swift-2x.jpg b/static/images/theme/thumbnail/2x/pranavrajs-swift-2x.jpg new file mode 100644 index 000000000..43bf92107 Binary files /dev/null and b/static/images/theme/thumbnail/2x/pranavrajs-swift-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/pranavrajs-swift-master-2x.jpg b/static/images/theme/thumbnail/2x/pranavrajs-swift-master-2x.jpg deleted file mode 100644 index 78c79bac2..000000000 Binary files a/static/images/theme/thumbnail/2x/pranavrajs-swift-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/prezly-theme-nextjs-bea-2x.jpg b/static/images/theme/thumbnail/2x/prezly-theme-nextjs-bea-2x.jpg new file mode 100644 index 000000000..1c9ad068b Binary files /dev/null and b/static/images/theme/thumbnail/2x/prezly-theme-nextjs-bea-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/progrhyme-hugo-theme-bootie-docs-2x.jpg b/static/images/theme/thumbnail/2x/progrhyme-hugo-theme-bootie-docs-2x.jpg new file mode 100644 index 000000000..35b640f8a Binary files /dev/null and b/static/images/theme/thumbnail/2x/progrhyme-hugo-theme-bootie-docs-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/progrhyme-hugo-theme-bootie-docs-master-2x.jpg b/static/images/theme/thumbnail/2x/progrhyme-hugo-theme-bootie-docs-master-2x.jpg deleted file mode 100644 index f183a503c..000000000 Binary files a/static/images/theme/thumbnail/2x/progrhyme-hugo-theme-bootie-docs-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/projectpages-project-pages-2x.jpg b/static/images/theme/thumbnail/2x/projectpages-project-pages-2x.jpg new file mode 100644 index 000000000..ea19e556d Binary files /dev/null and b/static/images/theme/thumbnail/2x/projectpages-project-pages-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/projectpages-project-pages-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/projectpages-project-pages-gh-pages-2x.jpg deleted file mode 100644 index 28d21ab74..000000000 Binary files a/static/images/theme/thumbnail/2x/projectpages-project-pages-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/prototypeinteractive-gatsby-react-boilerplate-2x.jpg b/static/images/theme/thumbnail/2x/prototypeinteractive-gatsby-react-boilerplate-2x.jpg new file mode 100644 index 000000000..e05e95b76 Binary files /dev/null and b/static/images/theme/thumbnail/2x/prototypeinteractive-gatsby-react-boilerplate-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/prototypeinteractive-gatsby-react-boilerplate-master-2x.jpg b/static/images/theme/thumbnail/2x/prototypeinteractive-gatsby-react-boilerplate-master-2x.jpg deleted file mode 100644 index 6e8310189..000000000 Binary files a/static/images/theme/thumbnail/2x/prototypeinteractive-gatsby-react-boilerplate-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/puresyntax71-hugo-theme-chunky-poster-2x.jpg b/static/images/theme/thumbnail/2x/puresyntax71-hugo-theme-chunky-poster-2x.jpg new file mode 100644 index 000000000..833a81fa0 Binary files /dev/null and b/static/images/theme/thumbnail/2x/puresyntax71-hugo-theme-chunky-poster-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/puresyntax71-hugo-theme-chunky-poster-master-2x.jpg b/static/images/theme/thumbnail/2x/puresyntax71-hugo-theme-chunky-poster-master-2x.jpg deleted file mode 100644 index 38b540b06..000000000 Binary files a/static/images/theme/thumbnail/2x/puresyntax71-hugo-theme-chunky-poster-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/qingpingmeng-gatsby-starter-traveler-blog-2x.jpg b/static/images/theme/thumbnail/2x/qingpingmeng-gatsby-starter-traveler-blog-2x.jpg new file mode 100644 index 000000000..6b1f3293a Binary files /dev/null and b/static/images/theme/thumbnail/2x/qingpingmeng-gatsby-starter-traveler-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/qingpingmeng-gatsby-starter-traveler-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/qingpingmeng-gatsby-starter-traveler-blog-master-2x.jpg deleted file mode 100644 index 27df21509..000000000 Binary files a/static/images/theme/thumbnail/2x/qingpingmeng-gatsby-starter-traveler-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/qqhann-hugo-primer-master-2x.jpg b/static/images/theme/thumbnail/2x/qqhann-hugo-primer-master-2x.jpg deleted file mode 100644 index 8206725d6..000000000 Binary files a/static/images/theme/thumbnail/2x/qqhann-hugo-primer-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/qwtel-hydejack-2x.jpg b/static/images/theme/thumbnail/2x/qwtel-hydejack-2x.jpg new file mode 100644 index 000000000..8771ba086 Binary files /dev/null and b/static/images/theme/thumbnail/2x/qwtel-hydejack-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/qwtel-hydejack-master-2x.jpg b/static/images/theme/thumbnail/2x/qwtel-hydejack-master-2x.jpg deleted file mode 100644 index 074482432..000000000 Binary files a/static/images/theme/thumbnail/2x/qwtel-hydejack-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/railsr-autm-rb-2x.jpg b/static/images/theme/thumbnail/2x/railsr-autm-rb-2x.jpg new file mode 100644 index 000000000..7c6585d29 Binary files /dev/null and b/static/images/theme/thumbnail/2x/railsr-autm-rb-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/railsr-autm-rb-master-2x.jpg b/static/images/theme/thumbnail/2x/railsr-autm-rb-master-2x.jpg deleted file mode 100644 index c0da71e89..000000000 Binary files a/static/images/theme/thumbnail/2x/railsr-autm-rb-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/raniesantos-artisan-static-2x.jpg b/static/images/theme/thumbnail/2x/raniesantos-artisan-static-2x.jpg new file mode 100644 index 000000000..146f6616d Binary files /dev/null and b/static/images/theme/thumbnail/2x/raniesantos-artisan-static-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/raniesantos-artisan-static-master-2x.jpg b/static/images/theme/thumbnail/2x/raniesantos-artisan-static-master-2x.jpg deleted file mode 100644 index 3565f6aa7..000000000 Binary files a/static/images/theme/thumbnail/2x/raniesantos-artisan-static-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/raphadeluca-gatsby-starter-quiz-master-2x.jpg b/static/images/theme/thumbnail/2x/raphadeluca-gatsby-starter-quiz-master-2x.jpg deleted file mode 100644 index 32278961c..000000000 Binary files a/static/images/theme/thumbnail/2x/raphadeluca-gatsby-starter-quiz-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/razonyang-hugo-theme-bootstrap-2x.jpg b/static/images/theme/thumbnail/2x/razonyang-hugo-theme-bootstrap-2x.jpg new file mode 100644 index 000000000..2fa4acc28 Binary files /dev/null and b/static/images/theme/thumbnail/2x/razonyang-hugo-theme-bootstrap-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/rcjach-hugo-webslides-2x.jpg b/static/images/theme/thumbnail/2x/rcjach-hugo-webslides-2x.jpg new file mode 100644 index 000000000..16eeb6d41 Binary files /dev/null and b/static/images/theme/thumbnail/2x/rcjach-hugo-webslides-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/rcjach-hugo-webslides-master-2x.jpg b/static/images/theme/thumbnail/2x/rcjach-hugo-webslides-master-2x.jpg deleted file mode 100644 index f05839267..000000000 Binary files a/static/images/theme/thumbnail/2x/rcjach-hugo-webslides-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/realorangeone-hugo-theme-revealjs-2x.jpg b/static/images/theme/thumbnail/2x/realorangeone-hugo-theme-revealjs-2x.jpg new file mode 100644 index 000000000..6134fda19 Binary files /dev/null and b/static/images/theme/thumbnail/2x/realorangeone-hugo-theme-revealjs-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/realorangeone-hugo-theme-revealjs-master-2x.jpg b/static/images/theme/thumbnail/2x/realorangeone-hugo-theme-revealjs-master-2x.jpg deleted file mode 100644 index 91f15c99d..000000000 Binary files a/static/images/theme/thumbnail/2x/realorangeone-hugo-theme-revealjs-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/redvi-voyager-2x.jpg b/static/images/theme/thumbnail/2x/redvi-voyager-2x.jpg new file mode 100644 index 000000000..34ddf5291 Binary files /dev/null and b/static/images/theme/thumbnail/2x/redvi-voyager-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/redvi-voyager-master-2x.jpg b/static/images/theme/thumbnail/2x/redvi-voyager-master-2x.jpg deleted file mode 100644 index b7b299bce..000000000 Binary files a/static/images/theme/thumbnail/2x/redvi-voyager-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/reeseschultz-11r-2x.jpg b/static/images/theme/thumbnail/2x/reeseschultz-11r-2x.jpg new file mode 100644 index 000000000..0fbdbd51b Binary files /dev/null and b/static/images/theme/thumbnail/2x/reeseschultz-11r-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/reeseschultz-11r-master-2x.jpg b/static/images/theme/thumbnail/2x/reeseschultz-11r-master-2x.jpg deleted file mode 100644 index 8e7537f47..000000000 Binary files a/static/images/theme/thumbnail/2x/reeseschultz-11r-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/renvrant-gatsby-mdx-netlify-cms-starter-2x.jpg b/static/images/theme/thumbnail/2x/renvrant-gatsby-mdx-netlify-cms-starter-2x.jpg new file mode 100644 index 000000000..29bd56d13 Binary files /dev/null and b/static/images/theme/thumbnail/2x/renvrant-gatsby-mdx-netlify-cms-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/renvrant-gatsby-mdx-netlify-cms-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/renvrant-gatsby-mdx-netlify-cms-starter-master-2x.jpg deleted file mode 100644 index 6d120b871..000000000 Binary files a/static/images/theme/thumbnail/2x/renvrant-gatsby-mdx-netlify-cms-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/renyuanz-leonids-2x.jpg b/static/images/theme/thumbnail/2x/renyuanz-leonids-2x.jpg new file mode 100644 index 000000000..08b038722 Binary files /dev/null and b/static/images/theme/thumbnail/2x/renyuanz-leonids-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/renyuanz-leonids-master-2x.jpg b/static/images/theme/thumbnail/2x/renyuanz-leonids-master-2x.jpg deleted file mode 100644 index a286bdff8..000000000 Binary files a/static/images/theme/thumbnail/2x/renyuanz-leonids-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/resir014-gatsby-starter-typescript-plus-2x.jpg b/static/images/theme/thumbnail/2x/resir014-gatsby-starter-typescript-plus-2x.jpg new file mode 100644 index 000000000..28a0dd7a0 Binary files /dev/null and b/static/images/theme/thumbnail/2x/resir014-gatsby-starter-typescript-plus-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/resir014-gatsby-starter-typescript-plus-master-2x.jpg b/static/images/theme/thumbnail/2x/resir014-gatsby-starter-typescript-plus-master-2x.jpg deleted file mode 100644 index 2f5ec0009..000000000 Binary files a/static/images/theme/thumbnail/2x/resir014-gatsby-starter-typescript-plus-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/reuixiy-hugo-theme-meme-master-2x.jpg b/static/images/theme/thumbnail/2x/reuixiy-hugo-theme-meme-master-2x.jpg deleted file mode 100644 index 46d0249e3..000000000 Binary files a/static/images/theme/thumbnail/2x/reuixiy-hugo-theme-meme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/rhazdon-hugo-theme-hello-friend-ng-master-2x.jpg b/static/images/theme/thumbnail/2x/rhazdon-hugo-theme-hello-friend-ng-master-2x.jpg deleted file mode 100644 index addba41de..000000000 Binary files a/static/images/theme/thumbnail/2x/rhazdon-hugo-theme-hello-friend-ng-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ribice-kiss-master-2x.jpg b/static/images/theme/thumbnail/2x/ribice-kiss-master-2x.jpg deleted file mode 100644 index 8ec9ade8b..000000000 Binary files a/static/images/theme/thumbnail/2x/ribice-kiss-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/riggraz-no-style-please-2x.jpg b/static/images/theme/thumbnail/2x/riggraz-no-style-please-2x.jpg new file mode 100644 index 000000000..46a00788a Binary files /dev/null and b/static/images/theme/thumbnail/2x/riggraz-no-style-please-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/riggraz-no-style-please-master-2x.jpg b/static/images/theme/thumbnail/2x/riggraz-no-style-please-master-2x.jpg deleted file mode 100644 index f45f5f64d..000000000 Binary files a/static/images/theme/thumbnail/2x/riggraz-no-style-please-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ritijjain-pudhina-fresh-2x.jpg b/static/images/theme/thumbnail/2x/ritijjain-pudhina-fresh-2x.jpg new file mode 100644 index 000000000..467a65bf5 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ritijjain-pudhina-fresh-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ritijjain-pudhina-fresh-master-2x.jpg b/static/images/theme/thumbnail/2x/ritijjain-pudhina-fresh-master-2x.jpg deleted file mode 100644 index 9639a6ff9..000000000 Binary files a/static/images/theme/thumbnail/2x/ritijjain-pudhina-fresh-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/rlue-jekyll-solana-2x.jpg b/static/images/theme/thumbnail/2x/rlue-jekyll-solana-2x.jpg new file mode 100644 index 000000000..1bf156eac Binary files /dev/null and b/static/images/theme/thumbnail/2x/rlue-jekyll-solana-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/rlue-jekyll-solana-master-2x.jpg b/static/images/theme/thumbnail/2x/rlue-jekyll-solana-master-2x.jpg deleted file mode 100644 index f389c89f2..000000000 Binary files a/static/images/theme/thumbnail/2x/rlue-jekyll-solana-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/rmagon-gatsby-starter-interviews-2x.jpg b/static/images/theme/thumbnail/2x/rmagon-gatsby-starter-interviews-2x.jpg new file mode 100644 index 000000000..a62b89d8e Binary files /dev/null and b/static/images/theme/thumbnail/2x/rmagon-gatsby-starter-interviews-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/rmagon-gatsby-starter-interviews-master-2x.jpg b/static/images/theme/thumbnail/2x/rmagon-gatsby-starter-interviews-master-2x.jpg deleted file mode 100644 index b906f6b41..000000000 Binary files a/static/images/theme/thumbnail/2x/rmagon-gatsby-starter-interviews-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/rmsubekti-emping-2x.jpg b/static/images/theme/thumbnail/2x/rmsubekti-emping-2x.jpg new file mode 100644 index 000000000..cace570f2 Binary files /dev/null and b/static/images/theme/thumbnail/2x/rmsubekti-emping-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/rmsubekti-emping-master-2x.jpg b/static/images/theme/thumbnail/2x/rmsubekti-emping-master-2x.jpg deleted file mode 100644 index f111bcd68..000000000 Binary files a/static/images/theme/thumbnail/2x/rmsubekti-emping-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/rmsubekti-nangka-2x.jpg b/static/images/theme/thumbnail/2x/rmsubekti-nangka-2x.jpg new file mode 100644 index 000000000..15b44280f Binary files /dev/null and b/static/images/theme/thumbnail/2x/rmsubekti-nangka-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/rmsubekti-nangka-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/rmsubekti-nangka-gh-pages-2x.jpg deleted file mode 100644 index 7273e7f4c..000000000 Binary files a/static/images/theme/thumbnail/2x/rmsubekti-nangka-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/robertcoopercode-gatsby-netlify-cms-2x.jpg b/static/images/theme/thumbnail/2x/robertcoopercode-gatsby-netlify-cms-2x.jpg new file mode 100644 index 000000000..14692213f Binary files /dev/null and b/static/images/theme/thumbnail/2x/robertcoopercode-gatsby-netlify-cms-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/robertcoopercode-gatsby-netlify-cms-master-2x.jpg b/static/images/theme/thumbnail/2x/robertcoopercode-gatsby-netlify-cms-master-2x.jpg deleted file mode 100644 index c47fad02f..000000000 Binary files a/static/images/theme/thumbnail/2x/robertcoopercode-gatsby-netlify-cms-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/robincsl-gatsby-starter-docz-2x.jpg b/static/images/theme/thumbnail/2x/robincsl-gatsby-starter-docz-2x.jpg new file mode 100644 index 000000000..887e5adf0 Binary files /dev/null and b/static/images/theme/thumbnail/2x/robincsl-gatsby-starter-docz-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/robincsl-gatsby-starter-docz-master-2x.jpg b/static/images/theme/thumbnail/2x/robincsl-gatsby-starter-docz-master-2x.jpg deleted file mode 100644 index 5138c07d4..000000000 Binary files a/static/images/theme/thumbnail/2x/robincsl-gatsby-starter-docz-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/robinmetral-gatsby-starter-under-construction-master-2x.jpg b/static/images/theme/thumbnail/2x/robinmetral-gatsby-starter-under-construction-master-2x.jpg deleted file mode 100644 index fb5279d08..000000000 Binary files a/static/images/theme/thumbnail/2x/robinmetral-gatsby-starter-under-construction-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/rohanchandra-type-theme-2x.jpg b/static/images/theme/thumbnail/2x/rohanchandra-type-theme-2x.jpg new file mode 100644 index 000000000..4a01ef751 Binary files /dev/null and b/static/images/theme/thumbnail/2x/rohanchandra-type-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/rohanchandra-type-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/rohanchandra-type-theme-master-2x.jpg deleted file mode 100644 index fe4debd45..000000000 Binary files a/static/images/theme/thumbnail/2x/rohanchandra-type-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/rohitguptab-oneshopper-2x.jpg b/static/images/theme/thumbnail/2x/rohitguptab-oneshopper-2x.jpg new file mode 100644 index 000000000..f0227eef6 Binary files /dev/null and b/static/images/theme/thumbnail/2x/rohitguptab-oneshopper-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/rohitguptab-oneshopper-master-2x.jpg b/static/images/theme/thumbnail/2x/rohitguptab-oneshopper-master-2x.jpg deleted file mode 100644 index 9e137b931..000000000 Binary files a/static/images/theme/thumbnail/2x/rohitguptab-oneshopper-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/rohitguptab-rg-portfolio-2x.jpg b/static/images/theme/thumbnail/2x/rohitguptab-rg-portfolio-2x.jpg new file mode 100644 index 000000000..3b2fdca92 Binary files /dev/null and b/static/images/theme/thumbnail/2x/rohitguptab-rg-portfolio-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/rohitguptab-rg-portfolio-master-2x.jpg b/static/images/theme/thumbnail/2x/rohitguptab-rg-portfolio-master-2x.jpg deleted file mode 100644 index b2de9e12c..000000000 Binary files a/static/images/theme/thumbnail/2x/rohitguptab-rg-portfolio-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/roninro-hugo-theme-puppet-2x.jpg b/static/images/theme/thumbnail/2x/roninro-hugo-theme-puppet-2x.jpg new file mode 100644 index 000000000..3d77c891d Binary files /dev/null and b/static/images/theme/thumbnail/2x/roninro-hugo-theme-puppet-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ronv-colorie-2x.jpg b/static/images/theme/thumbnail/2x/ronv-colorie-2x.jpg new file mode 100644 index 000000000..e5380a3e8 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ronv-colorie-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ronv-colorie-master-2x.jpg b/static/images/theme/thumbnail/2x/ronv-colorie-master-2x.jpg deleted file mode 100644 index 5e0d0973a..000000000 Binary files a/static/images/theme/thumbnail/2x/ronv-colorie-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ronv-gray-2x.jpg b/static/images/theme/thumbnail/2x/ronv-gray-2x.jpg new file mode 100644 index 000000000..c7d2bf243 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ronv-gray-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ronv-gray-master-2x.jpg b/static/images/theme/thumbnail/2x/ronv-gray-master-2x.jpg deleted file mode 100644 index 421896df3..000000000 Binary files a/static/images/theme/thumbnail/2x/ronv-gray-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ronv-jam-2x.jpg b/static/images/theme/thumbnail/2x/ronv-jam-2x.jpg new file mode 100644 index 000000000..9c3d085d9 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ronv-jam-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ronv-lines-2x.jpg b/static/images/theme/thumbnail/2x/ronv-lines-2x.jpg new file mode 100644 index 000000000..44360af32 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ronv-lines-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ronv-lines-master-2x.jpg b/static/images/theme/thumbnail/2x/ronv-lines-master-2x.jpg deleted file mode 100644 index 57412514d..000000000 Binary files a/static/images/theme/thumbnail/2x/ronv-lines-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ronv-listed-2x.jpg b/static/images/theme/thumbnail/2x/ronv-listed-2x.jpg new file mode 100644 index 000000000..d27451b57 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ronv-listed-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ronv-minimalist-2x.jpg b/static/images/theme/thumbnail/2x/ronv-minimalist-2x.jpg new file mode 100644 index 000000000..224f2189f Binary files /dev/null and b/static/images/theme/thumbnail/2x/ronv-minimalist-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ronv-sidey-2x.jpg b/static/images/theme/thumbnail/2x/ronv-sidey-2x.jpg new file mode 100644 index 000000000..f16e4b027 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ronv-sidey-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ronv-sidey-master-2x.jpg b/static/images/theme/thumbnail/2x/ronv-sidey-master-2x.jpg deleted file mode 100644 index 18ba998d0..000000000 Binary files a/static/images/theme/thumbnail/2x/ronv-sidey-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ronv-ultra-2x.jpg b/static/images/theme/thumbnail/2x/ronv-ultra-2x.jpg new file mode 100644 index 000000000..85ff31666 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ronv-ultra-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ronv-ultra-master-2x.jpg b/static/images/theme/thumbnail/2x/ronv-ultra-master-2x.jpg deleted file mode 100644 index 6799f5d18..000000000 Binary files a/static/images/theme/thumbnail/2x/ronv-ultra-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/rosario-kasper-2x.jpg b/static/images/theme/thumbnail/2x/rosario-kasper-2x.jpg new file mode 100644 index 000000000..23b79635c Binary files /dev/null and b/static/images/theme/thumbnail/2x/rosario-kasper-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/rosario-kasper-master-2x.jpg b/static/images/theme/thumbnail/2x/rosario-kasper-master-2x.jpg deleted file mode 100644 index 2ce439167..000000000 Binary files a/static/images/theme/thumbnail/2x/rosario-kasper-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/rowanoulton-galileo-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/rowanoulton-galileo-theme-master-2x.jpg deleted file mode 100644 index ac5421104..000000000 Binary files a/static/images/theme/thumbnail/2x/rowanoulton-galileo-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/runbytech-gatsby-theme-ultronele-2x.jpg b/static/images/theme/thumbnail/2x/runbytech-gatsby-theme-ultronele-2x.jpg new file mode 100644 index 000000000..bbdde634b Binary files /dev/null and b/static/images/theme/thumbnail/2x/runbytech-gatsby-theme-ultronele-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/runbytech-gatsby-theme-ultronele-master-2x.jpg b/static/images/theme/thumbnail/2x/runbytech-gatsby-theme-ultronele-master-2x.jpg deleted file mode 100644 index bb0b346e9..000000000 Binary files a/static/images/theme/thumbnail/2x/runbytech-gatsby-theme-ultronele-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/rundocs-jekyll-rtd-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/rundocs-jekyll-rtd-theme-master-2x.jpg deleted file mode 100644 index 3fbec5e5a..000000000 Binary files a/static/images/theme/thumbnail/2x/rundocs-jekyll-rtd-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/runningstream-hugograyscale-2x.jpg b/static/images/theme/thumbnail/2x/runningstream-hugograyscale-2x.jpg new file mode 100644 index 000000000..6c6922545 Binary files /dev/null and b/static/images/theme/thumbnail/2x/runningstream-hugograyscale-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/runningstream-hugograyscale-master-2x.jpg b/static/images/theme/thumbnail/2x/runningstream-hugograyscale-master-2x.jpg deleted file mode 100644 index a0e9c2a04..000000000 Binary files a/static/images/theme/thumbnail/2x/runningstream-hugograyscale-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ryanfitzgerald-devblog-2x.jpg b/static/images/theme/thumbnail/2x/ryanfitzgerald-devblog-2x.jpg new file mode 100644 index 000000000..a588e67ba Binary files /dev/null and b/static/images/theme/thumbnail/2x/ryanfitzgerald-devblog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ryanfitzgerald-devblog-master-2x.jpg b/static/images/theme/thumbnail/2x/ryanfitzgerald-devblog-master-2x.jpg deleted file mode 100644 index ffbcbb5d8..000000000 Binary files a/static/images/theme/thumbnail/2x/ryanfitzgerald-devblog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ryanwiemer-gatsby-starter-gcn-2x.jpg b/static/images/theme/thumbnail/2x/ryanwiemer-gatsby-starter-gcn-2x.jpg new file mode 100644 index 000000000..8f18a8ad0 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ryanwiemer-gatsby-starter-gcn-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ryanwiemer-gatsby-starter-gcn-master-2x.jpg b/static/images/theme/thumbnail/2x/ryanwiemer-gatsby-starter-gcn-master-2x.jpg deleted file mode 100644 index 768410fff..000000000 Binary files a/static/images/theme/thumbnail/2x/ryanwiemer-gatsby-starter-gcn-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/s-kris-gatsby-minimal-portfolio-blog-2x.jpg b/static/images/theme/thumbnail/2x/s-kris-gatsby-minimal-portfolio-blog-2x.jpg new file mode 100644 index 000000000..85a4e3bd6 Binary files /dev/null and b/static/images/theme/thumbnail/2x/s-kris-gatsby-minimal-portfolio-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/s-kris-gatsby-minimal-portfolio-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/s-kris-gatsby-minimal-portfolio-blog-master-2x.jpg deleted file mode 100644 index 6e4f60593..000000000 Binary files a/static/images/theme/thumbnail/2x/s-kris-gatsby-minimal-portfolio-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/saey55-hugo-elate-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/saey55-hugo-elate-theme-master-2x.jpg deleted file mode 100644 index e561fd723..000000000 Binary files a/static/images/theme/thumbnail/2x/saey55-hugo-elate-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sag-dev-hugo-minimalist-spa-master-2x.jpg b/static/images/theme/thumbnail/2x/sag-dev-hugo-minimalist-spa-master-2x.jpg deleted file mode 100644 index 6ecb81891..000000000 Binary files a/static/images/theme/thumbnail/2x/sag-dev-hugo-minimalist-spa-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sagar7993-gatsby-wordpress-typescript-scss-blog-2x.jpg b/static/images/theme/thumbnail/2x/sagar7993-gatsby-wordpress-typescript-scss-blog-2x.jpg new file mode 100644 index 000000000..330816af1 Binary files /dev/null and b/static/images/theme/thumbnail/2x/sagar7993-gatsby-wordpress-typescript-scss-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/sagar7993-gatsby-wordpress-typescript-scss-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/sagar7993-gatsby-wordpress-typescript-scss-blog-master-2x.jpg deleted file mode 100644 index 00a023744..000000000 Binary files a/static/images/theme/thumbnail/2x/sagar7993-gatsby-wordpress-typescript-scss-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/salcan-beyondnothing-master-2x.jpg b/static/images/theme/thumbnail/2x/salcan-beyondnothing-master-2x.jpg deleted file mode 100644 index 0856dabdc..000000000 Binary files a/static/images/theme/thumbnail/2x/salcan-beyondnothing-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/saleor-react-storefront-2x.jpg b/static/images/theme/thumbnail/2x/saleor-react-storefront-2x.jpg new file mode 100644 index 000000000..777b8dedd Binary files /dev/null and b/static/images/theme/thumbnail/2x/saleor-react-storefront-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/salgnt-travelogue-2x.jpg b/static/images/theme/thumbnail/2x/salgnt-travelogue-2x.jpg new file mode 100644 index 000000000..0fc7c353f Binary files /dev/null and b/static/images/theme/thumbnail/2x/salgnt-travelogue-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/salgnt-travelogue-master-2x.jpg b/static/images/theme/thumbnail/2x/salgnt-travelogue-master-2x.jpg deleted file mode 100644 index 5de9cabc6..000000000 Binary files a/static/images/theme/thumbnail/2x/salgnt-travelogue-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/salsysd-hugo-assembly-master-2x.jpg b/static/images/theme/thumbnail/2x/salsysd-hugo-assembly-master-2x.jpg deleted file mode 100644 index 1b71d58e9..000000000 Binary files a/static/images/theme/thumbnail/2x/salsysd-hugo-assembly-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/samanyougarg-hanuman-master-2x.jpg b/static/images/theme/thumbnail/2x/samanyougarg-hanuman-master-2x.jpg deleted file mode 100644 index 47a9c6745..000000000 Binary files a/static/images/theme/thumbnail/2x/samanyougarg-hanuman-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/samesies-barber-jekyll-master-2x.jpg b/static/images/theme/thumbnail/2x/samesies-barber-jekyll-master-2x.jpg deleted file mode 100644 index 994795a60..000000000 Binary files a/static/images/theme/thumbnail/2x/samesies-barber-jekyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/samme-brunch-phaser-2x.jpg b/static/images/theme/thumbnail/2x/samme-brunch-phaser-2x.jpg new file mode 100644 index 000000000..82afea196 Binary files /dev/null and b/static/images/theme/thumbnail/2x/samme-brunch-phaser-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/samme-brunch-phaser-master-2x.jpg b/static/images/theme/thumbnail/2x/samme-brunch-phaser-master-2x.jpg deleted file mode 100644 index 85df92ee5..000000000 Binary files a/static/images/theme/thumbnail/2x/samme-brunch-phaser-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/samuelhorn-jamdocs-2x.jpg b/static/images/theme/thumbnail/2x/samuelhorn-jamdocs-2x.jpg new file mode 100644 index 000000000..7d0f88dac Binary files /dev/null and b/static/images/theme/thumbnail/2x/samuelhorn-jamdocs-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/samuelhorn-jamdocs-master-2x.jpg b/static/images/theme/thumbnail/2x/samuelhorn-jamdocs-master-2x.jpg deleted file mode 100644 index cd926f600..000000000 Binary files a/static/images/theme/thumbnail/2x/samuelhorn-jamdocs-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/samuelkraft-notion-blog-nextjs-2x.jpg b/static/images/theme/thumbnail/2x/samuelkraft-notion-blog-nextjs-2x.jpg new file mode 100644 index 000000000..fc3aa7606 Binary files /dev/null and b/static/images/theme/thumbnail/2x/samuelkraft-notion-blog-nextjs-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/santosfrancisco-gatsby-starter-cv-2x.jpg b/static/images/theme/thumbnail/2x/santosfrancisco-gatsby-starter-cv-2x.jpg new file mode 100644 index 000000000..54f8d8372 Binary files /dev/null and b/static/images/theme/thumbnail/2x/santosfrancisco-gatsby-starter-cv-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/santosfrancisco-gatsby-starter-cv-master-2x.jpg b/static/images/theme/thumbnail/2x/santosfrancisco-gatsby-starter-cv-master-2x.jpg deleted file mode 100644 index eeebe941e..000000000 Binary files a/static/images/theme/thumbnail/2x/santosfrancisco-gatsby-starter-cv-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sarasate-gate-master-2x.jpg b/static/images/theme/thumbnail/2x/sarasate-gate-master-2x.jpg deleted file mode 100644 index 30f00444f..000000000 Binary files a/static/images/theme/thumbnail/2x/sarasate-gate-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/saschajullmann-gatsby-starter-gatsbythemes-master-2x.jpg b/static/images/theme/thumbnail/2x/saschajullmann-gatsby-starter-gatsbythemes-master-2x.jpg deleted file mode 100644 index 25c23860b..000000000 Binary files a/static/images/theme/thumbnail/2x/saschajullmann-gatsby-starter-gatsbythemes-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sblisesivdin-biscuit-2x.jpg b/static/images/theme/thumbnail/2x/sblisesivdin-biscuit-2x.jpg new file mode 100644 index 000000000..2a9dac35f Binary files /dev/null and b/static/images/theme/thumbnail/2x/sblisesivdin-biscuit-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/schmanat-hugo-highlights-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/schmanat-hugo-highlights-theme-master-2x.jpg deleted file mode 100644 index a00f7267a..000000000 Binary files a/static/images/theme/thumbnail/2x/schmanat-hugo-highlights-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/schollz-onetwothree-2x.jpg b/static/images/theme/thumbnail/2x/schollz-onetwothree-2x.jpg new file mode 100644 index 000000000..e354e45f8 Binary files /dev/null and b/static/images/theme/thumbnail/2x/schollz-onetwothree-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/schollz-onetwothree-master-2x.jpg b/static/images/theme/thumbnail/2x/schollz-onetwothree-master-2x.jpg deleted file mode 100644 index ff77411d2..000000000 Binary files a/static/images/theme/thumbnail/2x/schollz-onetwothree-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/scotte-jekyll-clean-2x.jpg b/static/images/theme/thumbnail/2x/scotte-jekyll-clean-2x.jpg new file mode 100644 index 000000000..17e79f5f7 Binary files /dev/null and b/static/images/theme/thumbnail/2x/scotte-jekyll-clean-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/scotte-jekyll-clean-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/scotte-jekyll-clean-gh-pages-2x.jpg deleted file mode 100644 index 141dcf2cd..000000000 Binary files a/static/images/theme/thumbnail/2x/scotte-jekyll-clean-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/scottmathson-simpol-theme-2x.jpg b/static/images/theme/thumbnail/2x/scottmathson-simpol-theme-2x.jpg new file mode 100644 index 000000000..32d9e77e6 Binary files /dev/null and b/static/images/theme/thumbnail/2x/scottmathson-simpol-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/scottmathson-simpol-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/scottmathson-simpol-theme-master-2x.jpg deleted file mode 100644 index 36a262df4..000000000 Binary files a/static/images/theme/thumbnail/2x/scottmathson-simpol-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/scttcper-gatsby-casper-2x.jpg b/static/images/theme/thumbnail/2x/scttcper-gatsby-casper-2x.jpg new file mode 100644 index 000000000..85b2dd79d Binary files /dev/null and b/static/images/theme/thumbnail/2x/scttcper-gatsby-casper-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/scttcper-gatsby-casper-master-2x.jpg b/static/images/theme/thumbnail/2x/scttcper-gatsby-casper-master-2x.jpg deleted file mode 100644 index 7f24860d5..000000000 Binary files a/static/images/theme/thumbnail/2x/scttcper-gatsby-casper-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sdtelectronics-jekyll-theme-antarctica-2x.jpg b/static/images/theme/thumbnail/2x/sdtelectronics-jekyll-theme-antarctica-2x.jpg new file mode 100644 index 000000000..e3e6166cc Binary files /dev/null and b/static/images/theme/thumbnail/2x/sdtelectronics-jekyll-theme-antarctica-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/seanlane-gochowdown-2x.jpg b/static/images/theme/thumbnail/2x/seanlane-gochowdown-2x.jpg new file mode 100644 index 000000000..78f1756ae Binary files /dev/null and b/static/images/theme/thumbnail/2x/seanlane-gochowdown-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/seanlane-gochowdown-master-2x.jpg b/static/images/theme/thumbnail/2x/seanlane-gochowdown-master-2x.jpg deleted file mode 100644 index d414e7f3d..000000000 Binary files a/static/images/theme/thumbnail/2x/seanlane-gochowdown-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/serg-yourfolio-master-2x.jpg b/static/images/theme/thumbnail/2x/serg-yourfolio-master-2x.jpg deleted file mode 100644 index 1fb8ac8a5..000000000 Binary files a/static/images/theme/thumbnail/2x/serg-yourfolio-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sergiokopplin-indigo-2x.jpg b/static/images/theme/thumbnail/2x/sergiokopplin-indigo-2x.jpg new file mode 100644 index 000000000..173a8748f Binary files /dev/null and b/static/images/theme/thumbnail/2x/sergiokopplin-indigo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/sergiokopplin-indigo-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/sergiokopplin-indigo-gh-pages-2x.jpg deleted file mode 100644 index b3f84e794..000000000 Binary files a/static/images/theme/thumbnail/2x/sergiokopplin-indigo-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sfreytag-friday-theme-2x.jpg b/static/images/theme/thumbnail/2x/sfreytag-friday-theme-2x.jpg new file mode 100644 index 000000000..661cae120 Binary files /dev/null and b/static/images/theme/thumbnail/2x/sfreytag-friday-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/sfreytag-friday-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/sfreytag-friday-theme-master-2x.jpg deleted file mode 100644 index d25073fb0..000000000 Binary files a/static/images/theme/thumbnail/2x/sfreytag-friday-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/shaform-hugo-theme-den-master-2x.jpg b/static/images/theme/thumbnail/2x/shaform-hugo-theme-den-master-2x.jpg deleted file mode 100644 index 159f3ba4a..000000000 Binary files a/static/images/theme/thumbnail/2x/shaform-hugo-theme-den-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/shankar-hugo-grapes-master-2x.jpg b/static/images/theme/thumbnail/2x/shankar-hugo-grapes-master-2x.jpg deleted file mode 100644 index bc0995e10..000000000 Binary files a/static/images/theme/thumbnail/2x/shankar-hugo-grapes-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/shantanu-deshmukh-vhealth-gatsby-2x.jpg b/static/images/theme/thumbnail/2x/shantanu-deshmukh-vhealth-gatsby-2x.jpg new file mode 100644 index 000000000..512b07d2a Binary files /dev/null and b/static/images/theme/thumbnail/2x/shantanu-deshmukh-vhealth-gatsby-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/shantanu-deshmukh-vhealth-gatsby-master-2x.jpg b/static/images/theme/thumbnail/2x/shantanu-deshmukh-vhealth-gatsby-master-2x.jpg deleted file mode 100644 index d0c813f91..000000000 Binary files a/static/images/theme/thumbnail/2x/shantanu-deshmukh-vhealth-gatsby-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sharadcodes-gatsby-theme-serial-programmer-2x.jpg b/static/images/theme/thumbnail/2x/sharadcodes-gatsby-theme-serial-programmer-2x.jpg new file mode 100644 index 000000000..a6d86b399 Binary files /dev/null and b/static/images/theme/thumbnail/2x/sharadcodes-gatsby-theme-serial-programmer-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/sharadcodes-geekyll-starter-blog-2x.jpg b/static/images/theme/thumbnail/2x/sharadcodes-geekyll-starter-blog-2x.jpg new file mode 100644 index 000000000..f43afab42 Binary files /dev/null and b/static/images/theme/thumbnail/2x/sharadcodes-geekyll-starter-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/sharadcodes-geekyll-starter-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/sharadcodes-geekyll-starter-blog-master-2x.jpg deleted file mode 100644 index 6159e44a9..000000000 Binary files a/static/images/theme/thumbnail/2x/sharadcodes-geekyll-starter-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sharadcodes-hugo-theme-serial-programmer-2x.jpg b/static/images/theme/thumbnail/2x/sharadcodes-hugo-theme-serial-programmer-2x.jpg new file mode 100644 index 000000000..a4602f945 Binary files /dev/null and b/static/images/theme/thumbnail/2x/sharadcodes-hugo-theme-serial-programmer-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-dark-reader-2x.jpg b/static/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-dark-reader-2x.jpg new file mode 100644 index 000000000..1eb67ae6a Binary files /dev/null and b/static/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-dark-reader-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-dark-reader-master-2x.jpg b/static/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-dark-reader-master-2x.jpg deleted file mode 100644 index b16c77d4f..000000000 Binary files a/static/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-dark-reader-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-material-you-2x.jpg b/static/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-material-you-2x.jpg new file mode 100644 index 000000000..aa6ae5709 Binary files /dev/null and b/static/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-material-you-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-milo-2x.jpg b/static/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-milo-2x.jpg new file mode 100644 index 000000000..76aa19630 Binary files /dev/null and b/static/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-milo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-milo-master-2x.jpg b/static/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-milo-master-2x.jpg deleted file mode 100644 index 901bce62e..000000000 Binary files a/static/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-milo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-retro-yellow-2x.jpg b/static/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-retro-yellow-2x.jpg new file mode 100644 index 000000000..7c361a8a3 Binary files /dev/null and b/static/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-retro-yellow-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-retro-yellow-master-2x.jpg b/static/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-retro-yellow-master-2x.jpg deleted file mode 100644 index 92bf8bf80..000000000 Binary files a/static/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-retro-yellow-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-serial-programmer-2x.jpg b/static/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-serial-programmer-2x.jpg new file mode 100644 index 000000000..8e42f1429 Binary files /dev/null and b/static/images/theme/thumbnail/2x/sharadcodes-jekyll-theme-serial-programmer-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/sharu725-ashwath-master-2x.jpg b/static/images/theme/thumbnail/2x/sharu725-ashwath-master-2x.jpg deleted file mode 100644 index a56fbbfdc..000000000 Binary files a/static/images/theme/thumbnail/2x/sharu725-ashwath-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sharu725-bheema-2x.jpg b/static/images/theme/thumbnail/2x/sharu725-bheema-2x.jpg new file mode 100644 index 000000000..5a659e31b Binary files /dev/null and b/static/images/theme/thumbnail/2x/sharu725-bheema-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/sharu725-bheema-master-2x.jpg b/static/images/theme/thumbnail/2x/sharu725-bheema-master-2x.jpg deleted file mode 100644 index b6a59aeb2..000000000 Binary files a/static/images/theme/thumbnail/2x/sharu725-bheema-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sharu725-cards-2x.jpg b/static/images/theme/thumbnail/2x/sharu725-cards-2x.jpg new file mode 100644 index 000000000..1fe972554 Binary files /dev/null and b/static/images/theme/thumbnail/2x/sharu725-cards-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/sharu725-cards-master-2x.jpg b/static/images/theme/thumbnail/2x/sharu725-cards-master-2x.jpg deleted file mode 100644 index d4f724ce6..000000000 Binary files a/static/images/theme/thumbnail/2x/sharu725-cards-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sharu725-gatok-master-2x.jpg b/static/images/theme/thumbnail/2x/sharu725-gatok-master-2x.jpg deleted file mode 100644 index 8c490e14e..000000000 Binary files a/static/images/theme/thumbnail/2x/sharu725-gatok-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sharu725-hagura-2x.jpg b/static/images/theme/thumbnail/2x/sharu725-hagura-2x.jpg new file mode 100644 index 000000000..77ba3d37b Binary files /dev/null and b/static/images/theme/thumbnail/2x/sharu725-hagura-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/sharu725-hagura-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/sharu725-hagura-gh-pages-2x.jpg deleted file mode 100644 index 73b34c0ad..000000000 Binary files a/static/images/theme/thumbnail/2x/sharu725-hagura-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sharu725-karna-2x.jpg b/static/images/theme/thumbnail/2x/sharu725-karna-2x.jpg new file mode 100644 index 000000000..f3dcc8e7a Binary files /dev/null and b/static/images/theme/thumbnail/2x/sharu725-karna-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/sharu725-karna-master-2x.jpg b/static/images/theme/thumbnail/2x/sharu725-karna-master-2x.jpg deleted file mode 100644 index 8b7e995ce..000000000 Binary files a/static/images/theme/thumbnail/2x/sharu725-karna-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sharu725-online-cv-2x.jpg b/static/images/theme/thumbnail/2x/sharu725-online-cv-2x.jpg new file mode 100644 index 000000000..6dc5240b0 Binary files /dev/null and b/static/images/theme/thumbnail/2x/sharu725-online-cv-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/sharu725-online-cv-master-2x.jpg b/static/images/theme/thumbnail/2x/sharu725-online-cv-master-2x.jpg deleted file mode 100644 index 296586e54..000000000 Binary files a/static/images/theme/thumbnail/2x/sharu725-online-cv-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sharu725-slides-master-2x.jpg b/static/images/theme/thumbnail/2x/sharu725-slides-master-2x.jpg deleted file mode 100644 index a075b83e0..000000000 Binary files a/static/images/theme/thumbnail/2x/sharu725-slides-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sharu725-thunder-2x.jpg b/static/images/theme/thumbnail/2x/sharu725-thunder-2x.jpg new file mode 100644 index 000000000..c5d24b5f0 Binary files /dev/null and b/static/images/theme/thumbnail/2x/sharu725-thunder-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/sharu725-thunder-master-2x.jpg b/static/images/theme/thumbnail/2x/sharu725-thunder-master-2x.jpg deleted file mode 100644 index e1a27faed..000000000 Binary files a/static/images/theme/thumbnail/2x/sharu725-thunder-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sharu725-vyaasa-master-2x.jpg b/static/images/theme/thumbnail/2x/sharu725-vyaasa-master-2x.jpg deleted file mode 100644 index fc8a54363..000000000 Binary files a/static/images/theme/thumbnail/2x/sharu725-vyaasa-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sharvaridesai-hexo-theme-edinburgh-2x.jpg b/static/images/theme/thumbnail/2x/sharvaridesai-hexo-theme-edinburgh-2x.jpg new file mode 100644 index 000000000..e3ddd798b Binary files /dev/null and b/static/images/theme/thumbnail/2x/sharvaridesai-hexo-theme-edinburgh-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/sharvaridesai-hexo-theme-edinburgh-master-2x.jpg b/static/images/theme/thumbnail/2x/sharvaridesai-hexo-theme-edinburgh-master-2x.jpg deleted file mode 100644 index 111919e14..000000000 Binary files a/static/images/theme/thumbnail/2x/sharvaridesai-hexo-theme-edinburgh-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/shawnteoh-matjek-2x.jpg b/static/images/theme/thumbnail/2x/shawnteoh-matjek-2x.jpg new file mode 100644 index 000000000..a83c82ae4 Binary files /dev/null and b/static/images/theme/thumbnail/2x/shawnteoh-matjek-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/shawnteoh-matjek-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/shawnteoh-matjek-gh-pages-2x.jpg deleted file mode 100644 index 8e5596e8e..000000000 Binary files a/static/images/theme/thumbnail/2x/shawnteoh-matjek-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/shenliyang-hexo-theme-snippet-2x.jpg b/static/images/theme/thumbnail/2x/shenliyang-hexo-theme-snippet-2x.jpg new file mode 100644 index 000000000..ce611082c Binary files /dev/null and b/static/images/theme/thumbnail/2x/shenliyang-hexo-theme-snippet-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/shenliyang-hexo-theme-snippet-master-2x.jpg b/static/images/theme/thumbnail/2x/shenliyang-hexo-theme-snippet-master-2x.jpg deleted file mode 100644 index 1a960384f..000000000 Binary files a/static/images/theme/thumbnail/2x/shenliyang-hexo-theme-snippet-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/shenoybr-hugo-goa-master-2x.jpg b/static/images/theme/thumbnail/2x/shenoybr-hugo-goa-master-2x.jpg deleted file mode 100644 index 5ca67cccb..000000000 Binary files a/static/images/theme/thumbnail/2x/shenoybr-hugo-goa-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/shobhitchittora-gatsby-starter-fashion-portfolio-2x.jpg b/static/images/theme/thumbnail/2x/shobhitchittora-gatsby-starter-fashion-portfolio-2x.jpg new file mode 100644 index 000000000..a74f25682 Binary files /dev/null and b/static/images/theme/thumbnail/2x/shobhitchittora-gatsby-starter-fashion-portfolio-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/shobhitchittora-gatsby-starter-fashion-portfolio-master-2x.jpg b/static/images/theme/thumbnail/2x/shobhitchittora-gatsby-starter-fashion-portfolio-master-2x.jpg deleted file mode 100644 index 3cba2c652..000000000 Binary files a/static/images/theme/thumbnail/2x/shobhitchittora-gatsby-starter-fashion-portfolio-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/siawyoung-immaculate-2x.jpg b/static/images/theme/thumbnail/2x/siawyoung-immaculate-2x.jpg new file mode 100644 index 000000000..bf27cf230 Binary files /dev/null and b/static/images/theme/thumbnail/2x/siawyoung-immaculate-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/siawyoung-immaculate-master-2x.jpg b/static/images/theme/thumbnail/2x/siawyoung-immaculate-master-2x.jpg deleted file mode 100644 index 8dd259607..000000000 Binary files a/static/images/theme/thumbnail/2x/siawyoung-immaculate-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/siegerts-hugo-theme-basic-2x.jpg b/static/images/theme/thumbnail/2x/siegerts-hugo-theme-basic-2x.jpg new file mode 100644 index 000000000..99778d755 Binary files /dev/null and b/static/images/theme/thumbnail/2x/siegerts-hugo-theme-basic-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/siegerts-hugo-theme-basic-master-2x.jpg b/static/images/theme/thumbnail/2x/siegerts-hugo-theme-basic-master-2x.jpg deleted file mode 100644 index dfd23c9f3..000000000 Binary files a/static/images/theme/thumbnail/2x/siegerts-hugo-theme-basic-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/simarmannsingh-gatsby-netlifycms-starter-template-2x.jpg b/static/images/theme/thumbnail/2x/simarmannsingh-gatsby-netlifycms-starter-template-2x.jpg new file mode 100644 index 000000000..2851d36af Binary files /dev/null and b/static/images/theme/thumbnail/2x/simarmannsingh-gatsby-netlifycms-starter-template-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/simplecode-io-gatsby-crafty-theme-2x.jpg b/static/images/theme/thumbnail/2x/simplecode-io-gatsby-crafty-theme-2x.jpg new file mode 100644 index 000000000..d29f3d379 Binary files /dev/null and b/static/images/theme/thumbnail/2x/simplecode-io-gatsby-crafty-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/simplecode-io-gatsby-crafty-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/simplecode-io-gatsby-crafty-theme-master-2x.jpg deleted file mode 100644 index 4aa1f46a3..000000000 Binary files a/static/images/theme/thumbnail/2x/simplecode-io-gatsby-crafty-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/simpleyyt-jekyll-jacman-2x.jpg b/static/images/theme/thumbnail/2x/simpleyyt-jekyll-jacman-2x.jpg new file mode 100644 index 000000000..edb773308 Binary files /dev/null and b/static/images/theme/thumbnail/2x/simpleyyt-jekyll-jacman-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/simpleyyt-jekyll-jacman-master-2x.jpg b/static/images/theme/thumbnail/2x/simpleyyt-jekyll-jacman-master-2x.jpg deleted file mode 100644 index 6a9174955..000000000 Binary files a/static/images/theme/thumbnail/2x/simpleyyt-jekyll-jacman-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/simpleyyt-jekyll-simpleyyt-2x.jpg b/static/images/theme/thumbnail/2x/simpleyyt-jekyll-simpleyyt-2x.jpg new file mode 100644 index 000000000..c9335f7e8 Binary files /dev/null and b/static/images/theme/thumbnail/2x/simpleyyt-jekyll-simpleyyt-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/simpleyyt-jekyll-simpleyyt-master-2x.jpg b/static/images/theme/thumbnail/2x/simpleyyt-jekyll-simpleyyt-master-2x.jpg deleted file mode 100644 index ed6bb5577..000000000 Binary files a/static/images/theme/thumbnail/2x/simpleyyt-jekyll-simpleyyt-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/simpleyyt-jekyll-theme-next-2x.jpg b/static/images/theme/thumbnail/2x/simpleyyt-jekyll-theme-next-2x.jpg new file mode 100644 index 000000000..b2a6dccc2 Binary files /dev/null and b/static/images/theme/thumbnail/2x/simpleyyt-jekyll-theme-next-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/simpleyyt-jekyll-theme-next-master-2x.jpg b/static/images/theme/thumbnail/2x/simpleyyt-jekyll-theme-next-master-2x.jpg deleted file mode 100644 index c3e646d5a..000000000 Binary files a/static/images/theme/thumbnail/2x/simpleyyt-jekyll-theme-next-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/simply007-kontent-sample-app-gatsby-intranet-2x.jpg b/static/images/theme/thumbnail/2x/simply007-kontent-sample-app-gatsby-intranet-2x.jpg new file mode 100644 index 000000000..1cfcc7a6c Binary files /dev/null and b/static/images/theme/thumbnail/2x/simply007-kontent-sample-app-gatsby-intranet-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/simply007-kontent-sample-app-gatsby-intranet-master-2x.jpg b/static/images/theme/thumbnail/2x/simply007-kontent-sample-app-gatsby-intranet-master-2x.jpg deleted file mode 100644 index f969b87c8..000000000 Binary files a/static/images/theme/thumbnail/2x/simply007-kontent-sample-app-gatsby-intranet-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/simply007-kontent-sample-app-svelte-sapper-2x.jpg b/static/images/theme/thumbnail/2x/simply007-kontent-sample-app-svelte-sapper-2x.jpg new file mode 100644 index 000000000..e3affd47c Binary files /dev/null and b/static/images/theme/thumbnail/2x/simply007-kontent-sample-app-svelte-sapper-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/simply007-kontent-sample-app-svelte-sapper-master-2x.jpg b/static/images/theme/thumbnail/2x/simply007-kontent-sample-app-svelte-sapper-master-2x.jpg deleted file mode 100644 index c4961f535..000000000 Binary files a/static/images/theme/thumbnail/2x/simply007-kontent-sample-app-svelte-sapper-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/simply007-kontent-template-gatsby-landing-page-photon-2x.jpg b/static/images/theme/thumbnail/2x/simply007-kontent-template-gatsby-landing-page-photon-2x.jpg new file mode 100644 index 000000000..194e8f70a Binary files /dev/null and b/static/images/theme/thumbnail/2x/simply007-kontent-template-gatsby-landing-page-photon-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/simply007-kontent-template-gatsby-landing-page-photon-master-2x.jpg b/static/images/theme/thumbnail/2x/simply007-kontent-template-gatsby-landing-page-photon-master-2x.jpg deleted file mode 100644 index 77a676ee5..000000000 Binary files a/static/images/theme/thumbnail/2x/simply007-kontent-template-gatsby-landing-page-photon-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/slashformotion-hugo-tufte-2x.jpg b/static/images/theme/thumbnail/2x/slashformotion-hugo-tufte-2x.jpg new file mode 100644 index 000000000..73fdb74ab Binary files /dev/null and b/static/images/theme/thumbnail/2x/slashformotion-hugo-tufte-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/smakosh-gatsby-apollo-starter-2x.jpg b/static/images/theme/thumbnail/2x/smakosh-gatsby-apollo-starter-2x.jpg new file mode 100644 index 000000000..c54366d03 Binary files /dev/null and b/static/images/theme/thumbnail/2x/smakosh-gatsby-apollo-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/smakosh-gatsby-apollo-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/smakosh-gatsby-apollo-starter-master-2x.jpg deleted file mode 100644 index 7fd8ea99b..000000000 Binary files a/static/images/theme/thumbnail/2x/smakosh-gatsby-apollo-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/smakosh-gatsby-app-starter-rest-api-2x.jpg b/static/images/theme/thumbnail/2x/smakosh-gatsby-app-starter-rest-api-2x.jpg new file mode 100644 index 000000000..aeb448d72 Binary files /dev/null and b/static/images/theme/thumbnail/2x/smakosh-gatsby-app-starter-rest-api-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/smakosh-gatsby-app-starter-rest-api-master-2x.jpg b/static/images/theme/thumbnail/2x/smakosh-gatsby-app-starter-rest-api-master-2x.jpg deleted file mode 100644 index 2c5725496..000000000 Binary files a/static/images/theme/thumbnail/2x/smakosh-gatsby-app-starter-rest-api-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/smakosh-gatsby-portfolio-dev-2x.jpg b/static/images/theme/thumbnail/2x/smakosh-gatsby-portfolio-dev-2x.jpg new file mode 100644 index 000000000..ad8b26a68 Binary files /dev/null and b/static/images/theme/thumbnail/2x/smakosh-gatsby-portfolio-dev-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/smakosh-gatsby-portfolio-dev-master-2x.jpg b/static/images/theme/thumbnail/2x/smakosh-gatsby-portfolio-dev-master-2x.jpg deleted file mode 100644 index 3b0c90f93..000000000 Binary files a/static/images/theme/thumbnail/2x/smakosh-gatsby-portfolio-dev-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/smakosh-gatsby-starter-i18n-master-2x.jpg b/static/images/theme/thumbnail/2x/smakosh-gatsby-starter-i18n-master-2x.jpg deleted file mode 100644 index 4449a6188..000000000 Binary files a/static/images/theme/thumbnail/2x/smakosh-gatsby-starter-i18n-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/smallmuou-jekyll-pithy-2x.jpg b/static/images/theme/thumbnail/2x/smallmuou-jekyll-pithy-2x.jpg new file mode 100644 index 000000000..cf45ccc34 Binary files /dev/null and b/static/images/theme/thumbnail/2x/smallmuou-jekyll-pithy-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/smallmuou-jekyll-pithy-master-2x.jpg b/static/images/theme/thumbnail/2x/smallmuou-jekyll-pithy-master-2x.jpg deleted file mode 100644 index cdd98a4b0..000000000 Binary files a/static/images/theme/thumbnail/2x/smallmuou-jekyll-pithy-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/smastrom-headless-gatsby-multilang-2x.jpg b/static/images/theme/thumbnail/2x/smastrom-headless-gatsby-multilang-2x.jpg new file mode 100644 index 000000000..e990a5785 Binary files /dev/null and b/static/images/theme/thumbnail/2x/smastrom-headless-gatsby-multilang-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/smolcodes-twentytwenyonetheme-2x.jpg b/static/images/theme/thumbnail/2x/smolcodes-twentytwenyonetheme-2x.jpg new file mode 100644 index 000000000..28c584589 Binary files /dev/null and b/static/images/theme/thumbnail/2x/smolcodes-twentytwenyonetheme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/smolcodes-twentytwenyonetheme-main-2x.jpg b/static/images/theme/thumbnail/2x/smolcodes-twentytwenyonetheme-main-2x.jpg deleted file mode 100644 index 0f52d3804..000000000 Binary files a/static/images/theme/thumbnail/2x/smolcodes-twentytwenyonetheme-main-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/snipcart-11ty-demo-snipcart-2x.jpg b/static/images/theme/thumbnail/2x/snipcart-11ty-demo-snipcart-2x.jpg new file mode 100644 index 000000000..f94098965 Binary files /dev/null and b/static/images/theme/thumbnail/2x/snipcart-11ty-demo-snipcart-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/snipcart-11ty-demo-snipcart-master-2x.jpg b/static/images/theme/thumbnail/2x/snipcart-11ty-demo-snipcart-master-2x.jpg deleted file mode 100644 index 00c12249f..000000000 Binary files a/static/images/theme/thumbnail/2x/snipcart-11ty-demo-snipcart-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/snipcart-directus-metalsmith-snipcart-2x.jpg b/static/images/theme/thumbnail/2x/snipcart-directus-metalsmith-snipcart-2x.jpg new file mode 100644 index 000000000..45a1679ca Binary files /dev/null and b/static/images/theme/thumbnail/2x/snipcart-directus-metalsmith-snipcart-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/snipcart-directus-metalsmith-snipcart-master-2x.jpg b/static/images/theme/thumbnail/2x/snipcart-directus-metalsmith-snipcart-master-2x.jpg deleted file mode 100644 index d9d5ec9de..000000000 Binary files a/static/images/theme/thumbnail/2x/snipcart-directus-metalsmith-snipcart-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/snipcart-snipcart-middleman-integration-2x.jpg b/static/images/theme/thumbnail/2x/snipcart-snipcart-middleman-integration-2x.jpg new file mode 100644 index 000000000..ba899ecc5 Binary files /dev/null and b/static/images/theme/thumbnail/2x/snipcart-snipcart-middleman-integration-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/snipcart-snipcart-middleman-integration-master-2x.jpg b/static/images/theme/thumbnail/2x/snipcart-snipcart-middleman-integration-master-2x.jpg deleted file mode 100644 index 57ee692fb..000000000 Binary files a/static/images/theme/thumbnail/2x/snipcart-snipcart-middleman-integration-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/snipcart-stackbit-theme-planty-2x.jpg b/static/images/theme/thumbnail/2x/snipcart-stackbit-theme-planty-2x.jpg new file mode 100644 index 000000000..538e218a1 Binary files /dev/null and b/static/images/theme/thumbnail/2x/snipcart-stackbit-theme-planty-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/snipcart-stackbit-theme-planty-master-2x.jpg b/static/images/theme/thumbnail/2x/snipcart-stackbit-theme-planty-master-2x.jpg deleted file mode 100644 index 9af60b238..000000000 Binary files a/static/images/theme/thumbnail/2x/snipcart-stackbit-theme-planty-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/songroger-murmur-2x.jpg b/static/images/theme/thumbnail/2x/songroger-murmur-2x.jpg new file mode 100644 index 000000000..e72ce3095 Binary files /dev/null and b/static/images/theme/thumbnail/2x/songroger-murmur-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/songroger-murmur-master-2x.jpg b/static/images/theme/thumbnail/2x/songroger-murmur-master-2x.jpg deleted file mode 100644 index b2ba86d7f..000000000 Binary files a/static/images/theme/thumbnail/2x/songroger-murmur-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/south-paw-awesome-gatsby-starter-2x.jpg b/static/images/theme/thumbnail/2x/south-paw-awesome-gatsby-starter-2x.jpg new file mode 100644 index 000000000..46ba9a9aa Binary files /dev/null and b/static/images/theme/thumbnail/2x/south-paw-awesome-gatsby-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/south-paw-awesome-gatsby-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/south-paw-awesome-gatsby-starter-master-2x.jpg deleted file mode 100644 index 4f7637d78..000000000 Binary files a/static/images/theme/thumbnail/2x/south-paw-awesome-gatsby-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/spaceg-glas-master-2x.jpg b/static/images/theme/thumbnail/2x/spaceg-glas-master-2x.jpg deleted file mode 100644 index 77d59c57d..000000000 Binary files a/static/images/theme/thumbnail/2x/spaceg-glas-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sparanoid-almace-scaffolding-2x.jpg b/static/images/theme/thumbnail/2x/sparanoid-almace-scaffolding-2x.jpg new file mode 100644 index 000000000..e66e83939 Binary files /dev/null and b/static/images/theme/thumbnail/2x/sparanoid-almace-scaffolding-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/sparanoid-almace-scaffolding-master-2x.jpg b/static/images/theme/thumbnail/2x/sparanoid-almace-scaffolding-master-2x.jpg deleted file mode 100644 index 0998a3c58..000000000 Binary files a/static/images/theme/thumbnail/2x/sparanoid-almace-scaffolding-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/spech66-bootstrap-bp-hugo-startpage-master-2x.jpg b/static/images/theme/thumbnail/2x/spech66-bootstrap-bp-hugo-startpage-master-2x.jpg deleted file mode 100644 index b067f1659..000000000 Binary files a/static/images/theme/thumbnail/2x/spech66-bootstrap-bp-hugo-startpage-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/spech66-bootstrap-bp-hugo-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/spech66-bootstrap-bp-hugo-theme-master-2x.jpg deleted file mode 100644 index f9d02bfb8..000000000 Binary files a/static/images/theme/thumbnail/2x/spech66-bootstrap-bp-hugo-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/spf13-hyde-master-2x.jpg b/static/images/theme/thumbnail/2x/spf13-hyde-master-2x.jpg deleted file mode 100644 index 8ec642abb..000000000 Binary files a/static/images/theme/thumbnail/2x/spf13-hyde-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/spinalcms-11ty-docs-template-2x.jpg b/static/images/theme/thumbnail/2x/spinalcms-11ty-docs-template-2x.jpg new file mode 100644 index 000000000..32e5ee1e4 Binary files /dev/null and b/static/images/theme/thumbnail/2x/spinalcms-11ty-docs-template-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/spookey-slick-master-2x.jpg b/static/images/theme/thumbnail/2x/spookey-slick-master-2x.jpg deleted file mode 100644 index c37773ab0..000000000 Binary files a/static/images/theme/thumbnail/2x/spookey-slick-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/squidfunk-mkdocs-material-2x.jpg b/static/images/theme/thumbnail/2x/squidfunk-mkdocs-material-2x.jpg new file mode 100644 index 000000000..cef0597c7 Binary files /dev/null and b/static/images/theme/thumbnail/2x/squidfunk-mkdocs-material-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/squidfunk-mkdocs-material-master-2x.jpg b/static/images/theme/thumbnail/2x/squidfunk-mkdocs-material-master-2x.jpg deleted file mode 100644 index 6055d7cb5..000000000 Binary files a/static/images/theme/thumbnail/2x/squidfunk-mkdocs-material-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ssokurenko-jekyll-smart-material-2x.jpg b/static/images/theme/thumbnail/2x/ssokurenko-jekyll-smart-material-2x.jpg new file mode 100644 index 000000000..d63fe29e7 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ssokurenko-jekyll-smart-material-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ssokurenko-jekyll-smart-material-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/ssokurenko-jekyll-smart-material-gh-pages-2x.jpg deleted file mode 100644 index 19681f8f1..000000000 Binary files a/static/images/theme/thumbnail/2x/ssokurenko-jekyll-smart-material-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/st4ple-solid-jekyll-2x.jpg b/static/images/theme/thumbnail/2x/st4ple-solid-jekyll-2x.jpg new file mode 100644 index 000000000..086ad5aff Binary files /dev/null and b/static/images/theme/thumbnail/2x/st4ple-solid-jekyll-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/st4ple-solid-jekyll-master-2x.jpg b/static/images/theme/thumbnail/2x/st4ple-solid-jekyll-master-2x.jpg deleted file mode 100644 index 675e4d15f..000000000 Binary files a/static/images/theme/thumbnail/2x/st4ple-solid-jekyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbit-stackbit-theme-ampersand-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-stackbit-theme-ampersand-master-2x.jpg deleted file mode 100644 index d18d0ed50..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbit-stackbit-theme-ampersand-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbit-stackbit-theme-azimuth-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-stackbit-theme-azimuth-master-2x.jpg deleted file mode 100644 index 1b3dae508..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbit-stackbit-theme-azimuth-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbit-stackbit-theme-diy-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-stackbit-theme-diy-master-2x.jpg deleted file mode 100644 index 1dc5a21b0..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbit-stackbit-theme-diy-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbit-stackbit-theme-exto-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-stackbit-theme-exto-master-2x.jpg deleted file mode 100644 index e628bc0c8..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbit-stackbit-theme-exto-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbit-stackbit-theme-fjord-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-stackbit-theme-fjord-master-2x.jpg deleted file mode 100644 index ceaf9125d..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbit-stackbit-theme-fjord-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbit-stackbit-theme-fresh-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-stackbit-theme-fresh-master-2x.jpg deleted file mode 100644 index 799095e6a..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbit-stackbit-theme-fresh-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbit-stackbit-theme-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-stackbit-theme-starter-master-2x.jpg deleted file mode 100644 index c40f0d232..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbit-stackbit-theme-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbit-stackbit-theme-vanilla-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-stackbit-theme-vanilla-master-2x.jpg deleted file mode 100644 index 73fa62d6b..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbit-stackbit-theme-vanilla-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-agency-nextjs-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-agency-nextjs-2x.jpg new file mode 100644 index 000000000..6b76a94d3 Binary files /dev/null and b/static/images/theme/thumbnail/2x/stackbit-themes-agency-nextjs-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-ampersand-nextjs-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-ampersand-nextjs-2x.jpg new file mode 100644 index 000000000..9ce3c1e91 Binary files /dev/null and b/static/images/theme/thumbnail/2x/stackbit-themes-ampersand-nextjs-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-app-nextjs-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-app-nextjs-2x.jpg new file mode 100644 index 000000000..c0f4f279c Binary files /dev/null and b/static/images/theme/thumbnail/2x/stackbit-themes-app-nextjs-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-azimuth-gatsby-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-azimuth-gatsby-master-2x.jpg deleted file mode 100644 index 195d1d8be..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbit-themes-azimuth-gatsby-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-azimuth-hugo-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-azimuth-hugo-master-2x.jpg deleted file mode 100644 index 195d1d8be..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbit-themes-azimuth-hugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-azimuth-jekyll-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-azimuth-jekyll-master-2x.jpg deleted file mode 100644 index 195d1d8be..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbit-themes-azimuth-jekyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-azimuth-nextjs-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-azimuth-nextjs-2x.jpg new file mode 100644 index 000000000..95cc9345e Binary files /dev/null and b/static/images/theme/thumbnail/2x/stackbit-themes-azimuth-nextjs-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-azimuth-nextjs-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-azimuth-nextjs-master-2x.jpg deleted file mode 100644 index 195d1d8be..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbit-themes-azimuth-nextjs-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-book-nextjs-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-book-nextjs-2x.jpg new file mode 100644 index 000000000..2d571379f Binary files /dev/null and b/static/images/theme/thumbnail/2x/stackbit-themes-book-nextjs-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-diy-gatsby-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-diy-gatsby-master-2x.jpg deleted file mode 100644 index 9b644e957..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbit-themes-diy-gatsby-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-diy-hugo-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-diy-hugo-master-2x.jpg deleted file mode 100644 index 9b644e957..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbit-themes-diy-hugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-diy-jekyll-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-diy-jekyll-master-2x.jpg deleted file mode 100644 index 9b644e957..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbit-themes-diy-jekyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-diy-nextjs-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-diy-nextjs-2x.jpg new file mode 100644 index 000000000..7bb3d55b1 Binary files /dev/null and b/static/images/theme/thumbnail/2x/stackbit-themes-diy-nextjs-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-event-nextjs-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-event-nextjs-2x.jpg new file mode 100644 index 000000000..01f9396ad Binary files /dev/null and b/static/images/theme/thumbnail/2x/stackbit-themes-event-nextjs-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-exto-gatsby-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-exto-gatsby-master-2x.jpg deleted file mode 100644 index da0093f90..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbit-themes-exto-gatsby-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-exto-hugo-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-exto-hugo-master-2x.jpg deleted file mode 100644 index da0093f90..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbit-themes-exto-hugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-exto-jekyll-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-exto-jekyll-master-2x.jpg deleted file mode 100644 index da0093f90..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbit-themes-exto-jekyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-exto-nextjs-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-exto-nextjs-2x.jpg new file mode 100644 index 000000000..554fdc061 Binary files /dev/null and b/static/images/theme/thumbnail/2x/stackbit-themes-exto-nextjs-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-fjord-gatsby-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-fjord-gatsby-master-2x.jpg deleted file mode 100644 index 4a1865af0..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbit-themes-fjord-gatsby-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-fjord-hugo-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-fjord-hugo-master-2x.jpg deleted file mode 100644 index 4a1865af0..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbit-themes-fjord-hugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-fjord-jekyll-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-fjord-jekyll-master-2x.jpg deleted file mode 100644 index 4a1865af0..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbit-themes-fjord-jekyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-fjord-nextjs-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-fjord-nextjs-2x.jpg new file mode 100644 index 000000000..11b425d2a Binary files /dev/null and b/static/images/theme/thumbnail/2x/stackbit-themes-fjord-nextjs-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-fresh-nextjs-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-fresh-nextjs-2x.jpg new file mode 100644 index 000000000..b36152018 Binary files /dev/null and b/static/images/theme/thumbnail/2x/stackbit-themes-fresh-nextjs-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-libris-nextjs-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-libris-nextjs-2x.jpg new file mode 100644 index 000000000..4b09b3760 Binary files /dev/null and b/static/images/theme/thumbnail/2x/stackbit-themes-libris-nextjs-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-personal-nextjs-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-personal-nextjs-2x.jpg new file mode 100644 index 000000000..4d220fc33 Binary files /dev/null and b/static/images/theme/thumbnail/2x/stackbit-themes-personal-nextjs-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-podcaster-nextjs-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-podcaster-nextjs-2x.jpg new file mode 100644 index 000000000..8420c59b3 Binary files /dev/null and b/static/images/theme/thumbnail/2x/stackbit-themes-podcaster-nextjs-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-stackbit-starter-gatsby-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-stackbit-starter-gatsby-master-2x.jpg deleted file mode 100644 index 475077866..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbit-themes-stackbit-starter-gatsby-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-stackbit-starter-hugo-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-stackbit-starter-hugo-master-2x.jpg deleted file mode 100644 index 475077866..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbit-themes-stackbit-starter-hugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-stackbit-starter-jekyll-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-stackbit-starter-jekyll-master-2x.jpg deleted file mode 100644 index 475077866..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbit-themes-stackbit-starter-jekyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-stackbit-starter-nextjs-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-stackbit-starter-nextjs-master-2x.jpg deleted file mode 100644 index 475077866..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbit-themes-stackbit-starter-nextjs-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-vanilla-jekyll-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-vanilla-jekyll-2x.jpg new file mode 100644 index 000000000..c9e579aaf Binary files /dev/null and b/static/images/theme/thumbnail/2x/stackbit-themes-vanilla-jekyll-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/stackbit-themes-vanilla-nextjs-2x.jpg b/static/images/theme/thumbnail/2x/stackbit-themes-vanilla-nextjs-2x.jpg new file mode 100644 index 000000000..c9e579aaf Binary files /dev/null and b/static/images/theme/thumbnail/2x/stackbit-themes-vanilla-nextjs-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/stackbithq-stackbit-theme-ampersand-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbithq-stackbit-theme-ampersand-master-2x.jpg deleted file mode 100644 index aa09950cb..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbithq-stackbit-theme-ampersand-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbithq-stackbit-theme-azimuth-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbithq-stackbit-theme-azimuth-master-2x.jpg deleted file mode 100644 index 195d1d8be..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbithq-stackbit-theme-azimuth-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbithq-stackbit-theme-diy-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbithq-stackbit-theme-diy-master-2x.jpg deleted file mode 100644 index 9b644e957..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbithq-stackbit-theme-diy-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbithq-stackbit-theme-exto-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbithq-stackbit-theme-exto-master-2x.jpg deleted file mode 100644 index da0093f90..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbithq-stackbit-theme-exto-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbithq-stackbit-theme-fjord-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbithq-stackbit-theme-fjord-master-2x.jpg deleted file mode 100644 index 4a1865af0..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbithq-stackbit-theme-fjord-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbithq-stackbit-theme-fresh-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbithq-stackbit-theme-fresh-master-2x.jpg deleted file mode 100644 index 230c905e9..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbithq-stackbit-theme-fresh-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbithq-stackbit-theme-libris-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbithq-stackbit-theme-libris-master-2x.jpg deleted file mode 100644 index 4922214ad..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbithq-stackbit-theme-libris-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbithq-stackbit-theme-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbithq-stackbit-theme-starter-master-2x.jpg deleted file mode 100644 index 475077866..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbithq-stackbit-theme-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackbithq-stackbit-theme-vanilla-master-2x.jpg b/static/images/theme/thumbnail/2x/stackbithq-stackbit-theme-vanilla-master-2x.jpg deleted file mode 100644 index 779f741c9..000000000 Binary files a/static/images/theme/thumbnail/2x/stackbithq-stackbit-theme-vanilla-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stackrole-gatsby-starter-foundation-2x.jpg b/static/images/theme/thumbnail/2x/stackrole-gatsby-starter-foundation-2x.jpg new file mode 100644 index 000000000..a2cafe671 Binary files /dev/null and b/static/images/theme/thumbnail/2x/stackrole-gatsby-starter-foundation-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/stackrole-gatsby-starter-foundation-master-2x.jpg b/static/images/theme/thumbnail/2x/stackrole-gatsby-starter-foundation-master-2x.jpg deleted file mode 100644 index 0ec809fcb..000000000 Binary files a/static/images/theme/thumbnail/2x/stackrole-gatsby-starter-foundation-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/statichunt-geeky-hugo-2x.jpg b/static/images/theme/thumbnail/2x/statichunt-geeky-hugo-2x.jpg new file mode 100644 index 000000000..bc1894f5e Binary files /dev/null and b/static/images/theme/thumbnail/2x/statichunt-geeky-hugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/staticmania-blogge-hugo-theme-2x.jpg b/static/images/theme/thumbnail/2x/staticmania-blogge-hugo-theme-2x.jpg new file mode 100644 index 000000000..4acd97f37 Binary files /dev/null and b/static/images/theme/thumbnail/2x/staticmania-blogge-hugo-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/staticmania-hugo-apsho-2x.jpg b/static/images/theme/thumbnail/2x/staticmania-hugo-apsho-2x.jpg new file mode 100644 index 000000000..d7edbcac4 Binary files /dev/null and b/static/images/theme/thumbnail/2x/staticmania-hugo-apsho-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/staticmania-hugo-cohub-2x.jpg b/static/images/theme/thumbnail/2x/staticmania-hugo-cohub-2x.jpg new file mode 100644 index 000000000..125b67a7a Binary files /dev/null and b/static/images/theme/thumbnail/2x/staticmania-hugo-cohub-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/staticmania-portio-hugo-2x.jpg b/static/images/theme/thumbnail/2x/staticmania-portio-hugo-2x.jpg new file mode 100644 index 000000000..336e661d0 Binary files /dev/null and b/static/images/theme/thumbnail/2x/staticmania-portio-hugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/staticmania-roxo-eleventy-2x.jpg b/static/images/theme/thumbnail/2x/staticmania-roxo-eleventy-2x.jpg new file mode 100644 index 000000000..eeb46878c Binary files /dev/null and b/static/images/theme/thumbnail/2x/staticmania-roxo-eleventy-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/staticmania-roxo-hugo-master-2x.jpg b/static/images/theme/thumbnail/2x/staticmania-roxo-hugo-master-2x.jpg deleted file mode 100644 index 62b9ffb87..000000000 Binary files a/static/images/theme/thumbnail/2x/staticmania-roxo-hugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stavrospanakakis-jekyll-cv-2x.jpg b/static/images/theme/thumbnail/2x/stavrospanakakis-jekyll-cv-2x.jpg new file mode 100644 index 000000000..0ce2a0e86 Binary files /dev/null and b/static/images/theme/thumbnail/2x/stavrospanakakis-jekyll-cv-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/stephen-cloud-gatsby-markdown-material-typescript-starter-2x.jpg b/static/images/theme/thumbnail/2x/stephen-cloud-gatsby-markdown-material-typescript-starter-2x.jpg new file mode 100644 index 000000000..463abdb9b Binary files /dev/null and b/static/images/theme/thumbnail/2x/stephen-cloud-gatsby-markdown-material-typescript-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/stephen-cloud-gatsby-markdown-material-typescript-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/stephen-cloud-gatsby-markdown-material-typescript-starter-master-2x.jpg deleted file mode 100644 index 0a4d43a74..000000000 Binary files a/static/images/theme/thumbnail/2x/stephen-cloud-gatsby-markdown-material-typescript-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stevelane-hugo-icon-master-2x.jpg b/static/images/theme/thumbnail/2x/stevelane-hugo-icon-master-2x.jpg deleted file mode 100644 index a280bbeb5..000000000 Binary files a/static/images/theme/thumbnail/2x/stevelane-hugo-icon-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/stijnvc-holo-alfa-2x.jpg b/static/images/theme/thumbnail/2x/stijnvc-holo-alfa-2x.jpg new file mode 100644 index 000000000..7e36838e9 Binary files /dev/null and b/static/images/theme/thumbnail/2x/stijnvc-holo-alfa-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/stijnvc-holo-alfa-master-2x.jpg b/static/images/theme/thumbnail/2x/stijnvc-holo-alfa-master-2x.jpg deleted file mode 100644 index a1a83b21b..000000000 Binary files a/static/images/theme/thumbnail/2x/stijnvc-holo-alfa-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/storyblok-storyblok-gridsome-boilerplate-moon-2x.jpg b/static/images/theme/thumbnail/2x/storyblok-storyblok-gridsome-boilerplate-moon-2x.jpg new file mode 100644 index 000000000..9eec74cc4 Binary files /dev/null and b/static/images/theme/thumbnail/2x/storyblok-storyblok-gridsome-boilerplate-moon-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/storyblok-storyblok-gridsome-boilerplate-moon-master-2x.jpg b/static/images/theme/thumbnail/2x/storyblok-storyblok-gridsome-boilerplate-moon-master-2x.jpg deleted file mode 100644 index 76b21f64e..000000000 Binary files a/static/images/theme/thumbnail/2x/storyblok-storyblok-gridsome-boilerplate-moon-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/streetturtle-jekyll-clean-dark-2x.jpg b/static/images/theme/thumbnail/2x/streetturtle-jekyll-clean-dark-2x.jpg new file mode 100644 index 000000000..6dd1abed9 Binary files /dev/null and b/static/images/theme/thumbnail/2x/streetturtle-jekyll-clean-dark-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/streetturtle-jekyll-clean-dark-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/streetturtle-jekyll-clean-dark-gh-pages-2x.jpg deleted file mode 100644 index ff074b9d7..000000000 Binary files a/static/images/theme/thumbnail/2x/streetturtle-jekyll-clean-dark-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/styxlab-gatsby-starter-try-ghost-2x.jpg b/static/images/theme/thumbnail/2x/styxlab-gatsby-starter-try-ghost-2x.jpg new file mode 100644 index 000000000..60e829ded Binary files /dev/null and b/static/images/theme/thumbnail/2x/styxlab-gatsby-starter-try-ghost-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/styxlab-gatsby-starter-try-ghost-master-2x.jpg b/static/images/theme/thumbnail/2x/styxlab-gatsby-starter-try-ghost-master-2x.jpg deleted file mode 100644 index 027ace498..000000000 Binary files a/static/images/theme/thumbnail/2x/styxlab-gatsby-starter-try-ghost-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/styxlab-next-cms-ghost-2x.jpg b/static/images/theme/thumbnail/2x/styxlab-next-cms-ghost-2x.jpg new file mode 100644 index 000000000..b92768b5e Binary files /dev/null and b/static/images/theme/thumbnail/2x/styxlab-next-cms-ghost-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/styxlab-next-cms-ghost-master-2x.jpg b/static/images/theme/thumbnail/2x/styxlab-next-cms-ghost-master-2x.jpg deleted file mode 100644 index 951003b2b..000000000 Binary files a/static/images/theme/thumbnail/2x/styxlab-next-cms-ghost-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sudorook-capsule-master-2x.jpg b/static/images/theme/thumbnail/2x/sudorook-capsule-master-2x.jpg deleted file mode 100644 index d220fda03..000000000 Binary files a/static/images/theme/thumbnail/2x/sudorook-capsule-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/suheb-resume-2x.jpg b/static/images/theme/thumbnail/2x/suheb-resume-2x.jpg new file mode 100644 index 000000000..9b276374f Binary files /dev/null and b/static/images/theme/thumbnail/2x/suheb-resume-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/suheb-resume-master-2x.jpg b/static/images/theme/thumbnail/2x/suheb-resume-master-2x.jpg deleted file mode 100644 index 1d5883518..000000000 Binary files a/static/images/theme/thumbnail/2x/suheb-resume-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/suits-at-netlifycms-gridsome-2x.jpg b/static/images/theme/thumbnail/2x/suits-at-netlifycms-gridsome-2x.jpg new file mode 100644 index 000000000..2509caf95 Binary files /dev/null and b/static/images/theme/thumbnail/2x/suits-at-netlifycms-gridsome-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/suits-at-netlifycms-gridsome-master-2x.jpg b/static/images/theme/thumbnail/2x/suits-at-netlifycms-gridsome-master-2x.jpg deleted file mode 100644 index 957e11648..000000000 Binary files a/static/images/theme/thumbnail/2x/suits-at-netlifycms-gridsome-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sujaykundu777-devlopr-jekyll-2x.jpg b/static/images/theme/thumbnail/2x/sujaykundu777-devlopr-jekyll-2x.jpg new file mode 100644 index 000000000..41521d1b1 Binary files /dev/null and b/static/images/theme/thumbnail/2x/sujaykundu777-devlopr-jekyll-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/sujaykundu777-devlopr-jekyll-master-2x.jpg b/static/images/theme/thumbnail/2x/sujaykundu777-devlopr-jekyll-master-2x.jpg deleted file mode 100644 index b819f2e61..000000000 Binary files a/static/images/theme/thumbnail/2x/sujaykundu777-devlopr-jekyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sumeetmathpati-tiny-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/sumeetmathpati-tiny-blog-master-2x.jpg deleted file mode 100644 index 09d563310..000000000 Binary files a/static/images/theme/thumbnail/2x/sumeetmathpati-tiny-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sunbliss-photorama-2x.jpg b/static/images/theme/thumbnail/2x/sunbliss-photorama-2x.jpg new file mode 100644 index 000000000..b75988470 Binary files /dev/null and b/static/images/theme/thumbnail/2x/sunbliss-photorama-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/sunbliss-photorama-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/sunbliss-photorama-gh-pages-2x.jpg deleted file mode 100644 index 508dde88b..000000000 Binary files a/static/images/theme/thumbnail/2x/sunbliss-photorama-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/surjithctly-neat-starter-2x.jpg b/static/images/theme/thumbnail/2x/surjithctly-neat-starter-2x.jpg new file mode 100644 index 000000000..395dfb3da Binary files /dev/null and b/static/images/theme/thumbnail/2x/surjithctly-neat-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/surjithctly-neat-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/surjithctly-neat-starter-master-2x.jpg deleted file mode 100644 index f06cd1efb..000000000 Binary files a/static/images/theme/thumbnail/2x/surjithctly-neat-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/svmiller-steve-ngvb-jekyll-template-master-2x.jpg b/static/images/theme/thumbnail/2x/svmiller-steve-ngvb-jekyll-template-master-2x.jpg deleted file mode 100644 index 2ef09257f..000000000 Binary files a/static/images/theme/thumbnail/2x/svmiller-steve-ngvb-jekyll-template-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sw-yx-jamstack-hackathon-starter-2x.jpg b/static/images/theme/thumbnail/2x/sw-yx-jamstack-hackathon-starter-2x.jpg new file mode 100644 index 000000000..3a31b60a3 Binary files /dev/null and b/static/images/theme/thumbnail/2x/sw-yx-jamstack-hackathon-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/sw-yx-jamstack-hackathon-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/sw-yx-jamstack-hackathon-starter-master-2x.jpg deleted file mode 100644 index 2a51f6255..000000000 Binary files a/static/images/theme/thumbnail/2x/sw-yx-jamstack-hackathon-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/swanson-lagom-2x.jpg b/static/images/theme/thumbnail/2x/swanson-lagom-2x.jpg new file mode 100644 index 000000000..df0406bd4 Binary files /dev/null and b/static/images/theme/thumbnail/2x/swanson-lagom-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/swanson-lagom-master-2x.jpg b/static/images/theme/thumbnail/2x/swanson-lagom-master-2x.jpg deleted file mode 100644 index 72d45a060..000000000 Binary files a/static/images/theme/thumbnail/2x/swanson-lagom-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/swcool-landing-page-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/swcool-landing-page-theme-master-2x.jpg deleted file mode 100644 index 469626b4a..000000000 Binary files a/static/images/theme/thumbnail/2x/swcool-landing-page-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sylhare-type-on-strap-2x.jpg b/static/images/theme/thumbnail/2x/sylhare-type-on-strap-2x.jpg new file mode 100644 index 000000000..3303e3058 Binary files /dev/null and b/static/images/theme/thumbnail/2x/sylhare-type-on-strap-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/sylhare-type-on-strap-master-2x.jpg b/static/images/theme/thumbnail/2x/sylhare-type-on-strap-master-2x.jpg deleted file mode 100644 index 3efb2a112..000000000 Binary files a/static/images/theme/thumbnail/2x/sylhare-type-on-strap-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/syui-hugo-theme-air-master-2x.jpg b/static/images/theme/thumbnail/2x/syui-hugo-theme-air-master-2x.jpg deleted file mode 100644 index 8f220f738..000000000 Binary files a/static/images/theme/thumbnail/2x/syui-hugo-theme-air-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/syui-hugo-theme-wave-master-2x.jpg b/static/images/theme/thumbnail/2x/syui-hugo-theme-wave-master-2x.jpg deleted file mode 100644 index 6f722c641..000000000 Binary files a/static/images/theme/thumbnail/2x/syui-hugo-theme-wave-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/szhielelp-jekylltheme-projectgaia-master-2x.jpg b/static/images/theme/thumbnail/2x/szhielelp-jekylltheme-projectgaia-master-2x.jpg deleted file mode 100644 index 7554658b1..000000000 Binary files a/static/images/theme/thumbnail/2x/szhielelp-jekylltheme-projectgaia-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/sziv2p-jekyll-theme-scaffold-master-2x.jpg b/static/images/theme/thumbnail/2x/sziv2p-jekyll-theme-scaffold-master-2x.jpg deleted file mode 100644 index f90e23d2b..000000000 Binary files a/static/images/theme/thumbnail/2x/sziv2p-jekyll-theme-scaffold-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/t413-singlepaged-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/t413-singlepaged-gh-pages-2x.jpg deleted file mode 100644 index 9f392e907..000000000 Binary files a/static/images/theme/thumbnail/2x/t413-singlepaged-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/taikii-whiteplain-master-2x.jpg b/static/images/theme/thumbnail/2x/taikii-whiteplain-master-2x.jpg deleted file mode 100644 index 1421181a1..000000000 Binary files a/static/images/theme/thumbnail/2x/taikii-whiteplain-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/tajacks-lightspeed-2x.jpg b/static/images/theme/thumbnail/2x/tajacks-lightspeed-2x.jpg new file mode 100644 index 000000000..26be42de5 Binary files /dev/null and b/static/images/theme/thumbnail/2x/tajacks-lightspeed-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/taylantatli-halve-2x.jpg b/static/images/theme/thumbnail/2x/taylantatli-halve-2x.jpg new file mode 100644 index 000000000..e67e9a18f Binary files /dev/null and b/static/images/theme/thumbnail/2x/taylantatli-halve-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/taylantatli-halve-master-2x.jpg b/static/images/theme/thumbnail/2x/taylantatli-halve-master-2x.jpg deleted file mode 100644 index ac5421104..000000000 Binary files a/static/images/theme/thumbnail/2x/taylantatli-halve-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/taylantatli-moon-2x.jpg b/static/images/theme/thumbnail/2x/taylantatli-moon-2x.jpg new file mode 100644 index 000000000..47304b9fc Binary files /dev/null and b/static/images/theme/thumbnail/2x/taylantatli-moon-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/taylantatli-moon-master-2x.jpg b/static/images/theme/thumbnail/2x/taylantatli-moon-master-2x.jpg deleted file mode 100644 index b8cb9c780..000000000 Binary files a/static/images/theme/thumbnail/2x/taylantatli-moon-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/taylantatli-ramme-2x.jpg b/static/images/theme/thumbnail/2x/taylantatli-ramme-2x.jpg new file mode 100644 index 000000000..3128ba4f4 Binary files /dev/null and b/static/images/theme/thumbnail/2x/taylantatli-ramme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/taylantatli-ramme-master-2x.jpg b/static/images/theme/thumbnail/2x/taylantatli-ramme-master-2x.jpg deleted file mode 100644 index 98f7bcae3..000000000 Binary files a/static/images/theme/thumbnail/2x/taylantatli-ramme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/tazeg-hugo-blog-jeffprod-master-2x.jpg b/static/images/theme/thumbnail/2x/tazeg-hugo-blog-jeffprod-master-2x.jpg deleted file mode 100644 index 4d610bd25..000000000 Binary files a/static/images/theme/thumbnail/2x/tazeg-hugo-blog-jeffprod-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/tblyler-light-hugo-master-2x.jpg b/static/images/theme/thumbnail/2x/tblyler-light-hugo-master-2x.jpg deleted file mode 100644 index fe7c51076..000000000 Binary files a/static/images/theme/thumbnail/2x/tblyler-light-hugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/tcbutler320-jek-2x.jpg b/static/images/theme/thumbnail/2x/tcbutler320-jek-2x.jpg new file mode 100644 index 000000000..ad4bb031a Binary files /dev/null and b/static/images/theme/thumbnail/2x/tcbutler320-jek-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/tcbutler320-jekyll-theme-dumbarton-2x.jpg b/static/images/theme/thumbnail/2x/tcbutler320-jekyll-theme-dumbarton-2x.jpg new file mode 100644 index 000000000..7e681d8fe Binary files /dev/null and b/static/images/theme/thumbnail/2x/tcbutler320-jekyll-theme-dumbarton-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/tcbutler320-jekyll-theme-dumbarton-master-2x.jpg b/static/images/theme/thumbnail/2x/tcbutler320-jekyll-theme-dumbarton-master-2x.jpg deleted file mode 100644 index 0e1ba63b5..000000000 Binary files a/static/images/theme/thumbnail/2x/tcbutler320-jekyll-theme-dumbarton-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/teaware-gatsby-starter-point-2x.jpg b/static/images/theme/thumbnail/2x/teaware-gatsby-starter-point-2x.jpg new file mode 100644 index 000000000..7c3fc90ae Binary files /dev/null and b/static/images/theme/thumbnail/2x/teaware-gatsby-starter-point-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/teaware-gatsby-starter-point-master-2x.jpg b/static/images/theme/thumbnail/2x/teaware-gatsby-starter-point-master-2x.jpg deleted file mode 100644 index 93cccc157..000000000 Binary files a/static/images/theme/thumbnail/2x/teaware-gatsby-starter-point-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/thakkaryash94-gatsby-github-personal-website-2x.jpg b/static/images/theme/thumbnail/2x/thakkaryash94-gatsby-github-personal-website-2x.jpg new file mode 100644 index 000000000..f0c2d8aa9 Binary files /dev/null and b/static/images/theme/thumbnail/2x/thakkaryash94-gatsby-github-personal-website-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/thakkaryash94-gatsby-github-personal-website-master-2x.jpg b/static/images/theme/thumbnail/2x/thakkaryash94-gatsby-github-personal-website-master-2x.jpg deleted file mode 100644 index 6c82eabcb..000000000 Binary files a/static/images/theme/thumbnail/2x/thakkaryash94-gatsby-github-personal-website-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/the-development-flex-2x.jpg b/static/images/theme/thumbnail/2x/the-development-flex-2x.jpg new file mode 100644 index 000000000..c62cd8843 Binary files /dev/null and b/static/images/theme/thumbnail/2x/the-development-flex-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/the-development-flex-master-2x.jpg b/static/images/theme/thumbnail/2x/the-development-flex-master-2x.jpg deleted file mode 100644 index 329a8a387..000000000 Binary files a/static/images/theme/thumbnail/2x/the-development-flex-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/the2ne-hugo-frais-master-2x.jpg b/static/images/theme/thumbnail/2x/the2ne-hugo-frais-master-2x.jpg deleted file mode 100644 index 554033b84..000000000 Binary files a/static/images/theme/thumbnail/2x/the2ne-hugo-frais-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/thebakerdev-gatsby-starter-zenii-2x.jpg b/static/images/theme/thumbnail/2x/thebakerdev-gatsby-starter-zenii-2x.jpg new file mode 100644 index 000000000..18e171b32 Binary files /dev/null and b/static/images/theme/thumbnail/2x/thebakerdev-gatsby-starter-zenii-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/thebakerdev-gatsby-starter-zenii-master-2x.jpg b/static/images/theme/thumbnail/2x/thebakerdev-gatsby-starter-zenii-master-2x.jpg deleted file mode 100644 index 951adefb7..000000000 Binary files a/static/images/theme/thumbnail/2x/thebakerdev-gatsby-starter-zenii-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/thecodemint-gatsby-starter-simple-master-2x.jpg b/static/images/theme/thumbnail/2x/thecodemint-gatsby-starter-simple-master-2x.jpg deleted file mode 100644 index 0f693ab5d..000000000 Binary files a/static/images/theme/thumbnail/2x/thecodemint-gatsby-starter-simple-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/thedevslot-whatatheme-2x.jpg b/static/images/theme/thumbnail/2x/thedevslot-whatatheme-2x.jpg new file mode 100644 index 000000000..9921faf84 Binary files /dev/null and b/static/images/theme/thumbnail/2x/thedevslot-whatatheme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/thedevslot-whatatheme-master-2x.jpg b/static/images/theme/thumbnail/2x/thedevslot-whatatheme-master-2x.jpg deleted file mode 100644 index 12bd0d302..000000000 Binary files a/static/images/theme/thumbnail/2x/thedevslot-whatatheme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/themefisher-academia-hugo-2x.jpg b/static/images/theme/thumbnail/2x/themefisher-academia-hugo-2x.jpg new file mode 100644 index 000000000..50ce0b854 Binary files /dev/null and b/static/images/theme/thumbnail/2x/themefisher-academia-hugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/themefisher-airspace-hugo-2x.jpg b/static/images/theme/thumbnail/2x/themefisher-airspace-hugo-2x.jpg new file mode 100644 index 000000000..177ad9f70 Binary files /dev/null and b/static/images/theme/thumbnail/2x/themefisher-airspace-hugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/themefisher-airspace-hugo-master-2x.jpg b/static/images/theme/thumbnail/2x/themefisher-airspace-hugo-master-2x.jpg deleted file mode 100644 index 34ccad531..000000000 Binary files a/static/images/theme/thumbnail/2x/themefisher-airspace-hugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/themefisher-bigspring-light-2x.jpg b/static/images/theme/thumbnail/2x/themefisher-bigspring-light-2x.jpg new file mode 100644 index 000000000..061631d4f Binary files /dev/null and b/static/images/theme/thumbnail/2x/themefisher-bigspring-light-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/themefisher-dot-hugo-2x.jpg b/static/images/theme/thumbnail/2x/themefisher-dot-hugo-2x.jpg new file mode 100644 index 000000000..e4b2e45d0 Binary files /dev/null and b/static/images/theme/thumbnail/2x/themefisher-dot-hugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/themefisher-dot-hugo-documentation-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/themefisher-dot-hugo-documentation-theme-master-2x.jpg deleted file mode 100644 index 9c1c3c216..000000000 Binary files a/static/images/theme/thumbnail/2x/themefisher-dot-hugo-documentation-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/themefisher-educenter-hugo-2x.jpg b/static/images/theme/thumbnail/2x/themefisher-educenter-hugo-2x.jpg new file mode 100644 index 000000000..b165aa9a5 Binary files /dev/null and b/static/images/theme/thumbnail/2x/themefisher-educenter-hugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/themefisher-hargo-hugo-2x.jpg b/static/images/theme/thumbnail/2x/themefisher-hargo-hugo-2x.jpg new file mode 100644 index 000000000..1f666fd5a Binary files /dev/null and b/static/images/theme/thumbnail/2x/themefisher-hargo-hugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/themefisher-infinity-hugo-2x.jpg b/static/images/theme/thumbnail/2x/themefisher-infinity-hugo-2x.jpg new file mode 100644 index 000000000..a57a247fd Binary files /dev/null and b/static/images/theme/thumbnail/2x/themefisher-infinity-hugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/themefisher-infinity-hugo-master-2x.jpg b/static/images/theme/thumbnail/2x/themefisher-infinity-hugo-master-2x.jpg deleted file mode 100644 index e04d1e8bd..000000000 Binary files a/static/images/theme/thumbnail/2x/themefisher-infinity-hugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/themefisher-kross-hugo-2x.jpg b/static/images/theme/thumbnail/2x/themefisher-kross-hugo-2x.jpg new file mode 100644 index 000000000..203310e81 Binary files /dev/null and b/static/images/theme/thumbnail/2x/themefisher-kross-hugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/themefisher-kross-hugo-portfolio-template-master-2x.jpg b/static/images/theme/thumbnail/2x/themefisher-kross-hugo-portfolio-template-master-2x.jpg deleted file mode 100644 index b02936eec..000000000 Binary files a/static/images/theme/thumbnail/2x/themefisher-kross-hugo-portfolio-template-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/themefisher-meghna-hugo-master-2x.jpg b/static/images/theme/thumbnail/2x/themefisher-meghna-hugo-master-2x.jpg deleted file mode 100644 index a1e8f8279..000000000 Binary files a/static/images/theme/thumbnail/2x/themefisher-meghna-hugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/themefisher-navigator-hugo-master-2x.jpg b/static/images/theme/thumbnail/2x/themefisher-navigator-hugo-master-2x.jpg deleted file mode 100644 index 10fdfc5d1..000000000 Binary files a/static/images/theme/thumbnail/2x/themefisher-navigator-hugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/themefisher-parsa-hugo-2x.jpg b/static/images/theme/thumbnail/2x/themefisher-parsa-hugo-2x.jpg new file mode 100644 index 000000000..e90c84c6b Binary files /dev/null and b/static/images/theme/thumbnail/2x/themefisher-parsa-hugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/themefisher-restaurant-hugo-master-2x.jpg b/static/images/theme/thumbnail/2x/themefisher-restaurant-hugo-master-2x.jpg deleted file mode 100644 index b12d98163..000000000 Binary files a/static/images/theme/thumbnail/2x/themefisher-restaurant-hugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/themefisher-timer-hugo-2x.jpg b/static/images/theme/thumbnail/2x/themefisher-timer-hugo-2x.jpg new file mode 100644 index 000000000..03037c271 Binary files /dev/null and b/static/images/theme/thumbnail/2x/themefisher-timer-hugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/themefisher-timer-hugo-master-2x.jpg b/static/images/theme/thumbnail/2x/themefisher-timer-hugo-master-2x.jpg deleted file mode 100644 index 0cc5fbf4c..000000000 Binary files a/static/images/theme/thumbnail/2x/themefisher-timer-hugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/themefisher-twenty-twenty-hugo-2x.jpg b/static/images/theme/thumbnail/2x/themefisher-twenty-twenty-hugo-2x.jpg new file mode 100644 index 000000000..d165c995c Binary files /dev/null and b/static/images/theme/thumbnail/2x/themefisher-twenty-twenty-hugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/themefisher-vex-hugo-2x.jpg b/static/images/theme/thumbnail/2x/themefisher-vex-hugo-2x.jpg new file mode 100644 index 000000000..185bb92ab Binary files /dev/null and b/static/images/theme/thumbnail/2x/themefisher-vex-hugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/themefisher-vex-hugo-master-2x.jpg b/static/images/theme/thumbnail/2x/themefisher-vex-hugo-master-2x.jpg deleted file mode 100644 index 83e16f881..000000000 Binary files a/static/images/theme/thumbnail/2x/themefisher-vex-hugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/themeselection-materio-mui-react-nextjs-admin-template-free-2x.jpg b/static/images/theme/thumbnail/2x/themeselection-materio-mui-react-nextjs-admin-template-free-2x.jpg new file mode 100644 index 000000000..b97f4e8ad Binary files /dev/null and b/static/images/theme/thumbnail/2x/themeselection-materio-mui-react-nextjs-admin-template-free-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/thenewdynamic-gohugo-theme-ananke-2x.jpg b/static/images/theme/thumbnail/2x/thenewdynamic-gohugo-theme-ananke-2x.jpg new file mode 100644 index 000000000..c71e67370 Binary files /dev/null and b/static/images/theme/thumbnail/2x/thenewdynamic-gohugo-theme-ananke-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/thephuse-strange_case-2x.jpg b/static/images/theme/thumbnail/2x/thephuse-strange_case-2x.jpg new file mode 100644 index 000000000..e3c4f6fe3 Binary files /dev/null and b/static/images/theme/thumbnail/2x/thephuse-strange_case-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/thephuse-strange_case-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/thephuse-strange_case-gh-pages-2x.jpg deleted file mode 100644 index 096a007b8..000000000 Binary files a/static/images/theme/thumbnail/2x/thephuse-strange_case-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/thetrevorharmon-gatsby-starter-typescript-sass-2x.jpg b/static/images/theme/thumbnail/2x/thetrevorharmon-gatsby-starter-typescript-sass-2x.jpg new file mode 100644 index 000000000..5b3bacd86 Binary files /dev/null and b/static/images/theme/thumbnail/2x/thetrevorharmon-gatsby-starter-typescript-sass-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/thetrevorharmon-gatsby-starter-typescript-sass-master-2x.jpg b/static/images/theme/thumbnail/2x/thetrevorharmon-gatsby-starter-typescript-sass-master-2x.jpg deleted file mode 100644 index e63801c21..000000000 Binary files a/static/images/theme/thumbnail/2x/thetrevorharmon-gatsby-starter-typescript-sass-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/thiagorossener-jekflix-template-2x.jpg b/static/images/theme/thumbnail/2x/thiagorossener-jekflix-template-2x.jpg new file mode 100644 index 000000000..908e76c8b Binary files /dev/null and b/static/images/theme/thumbnail/2x/thiagorossener-jekflix-template-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/thiagorossener-jekflix-template-master-2x.jpg b/static/images/theme/thumbnail/2x/thiagorossener-jekflix-template-master-2x.jpg deleted file mode 100644 index b393bf17c..000000000 Binary files a/static/images/theme/thumbnail/2x/thiagorossener-jekflix-template-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/thingsym-hugo-theme-techdoc-master-2x.jpg b/static/images/theme/thumbnail/2x/thingsym-hugo-theme-techdoc-master-2x.jpg deleted file mode 100644 index 0240fa331..000000000 Binary files a/static/images/theme/thumbnail/2x/thingsym-hugo-theme-techdoc-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/thinker3197-ink-2x.jpg b/static/images/theme/thumbnail/2x/thinker3197-ink-2x.jpg new file mode 100644 index 000000000..ad0ce1f3c Binary files /dev/null and b/static/images/theme/thumbnail/2x/thinker3197-ink-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/thinker3197-ink-master-2x.jpg b/static/images/theme/thumbnail/2x/thinker3197-ink-master-2x.jpg deleted file mode 100644 index 1431e5f75..000000000 Binary files a/static/images/theme/thumbnail/2x/thinker3197-ink-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/thomasheller-crab-master-2x.jpg b/static/images/theme/thumbnail/2x/thomasheller-crab-master-2x.jpg deleted file mode 100644 index e57001207..000000000 Binary files a/static/images/theme/thumbnail/2x/thomasheller-crab-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/thomaswangio-gatsby-personal-starter-blog-2x.jpg b/static/images/theme/thumbnail/2x/thomaswangio-gatsby-personal-starter-blog-2x.jpg new file mode 100644 index 000000000..0fe474689 Binary files /dev/null and b/static/images/theme/thumbnail/2x/thomaswangio-gatsby-personal-starter-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/thomaswangio-gatsby-personal-starter-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/thomaswangio-gatsby-personal-starter-blog-master-2x.jpg deleted file mode 100644 index e03098d1d..000000000 Binary files a/static/images/theme/thumbnail/2x/thomaswangio-gatsby-personal-starter-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/thomaswangio-gatsby-starter-primer-2x.jpg b/static/images/theme/thumbnail/2x/thomaswangio-gatsby-starter-primer-2x.jpg new file mode 100644 index 000000000..c2d8ca277 Binary files /dev/null and b/static/images/theme/thumbnail/2x/thomaswangio-gatsby-starter-primer-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/thomaswangio-gatsby-starter-primer-master-2x.jpg b/static/images/theme/thumbnail/2x/thomaswangio-gatsby-starter-primer-master-2x.jpg deleted file mode 100644 index 0155da05b..000000000 Binary files a/static/images/theme/thumbnail/2x/thomaswangio-gatsby-starter-primer-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/thriveweb-yellowcake-2x.jpg b/static/images/theme/thumbnail/2x/thriveweb-yellowcake-2x.jpg new file mode 100644 index 000000000..b07747373 Binary files /dev/null and b/static/images/theme/thumbnail/2x/thriveweb-yellowcake-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/thriveweb-yellowcake-master-2x.jpg b/static/images/theme/thumbnail/2x/thriveweb-yellowcake-master-2x.jpg deleted file mode 100644 index b998de8e0..000000000 Binary files a/static/images/theme/thumbnail/2x/thriveweb-yellowcake-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/thundermiracle-gatsby-simple-blog-2x.jpg b/static/images/theme/thumbnail/2x/thundermiracle-gatsby-simple-blog-2x.jpg new file mode 100644 index 000000000..b193e6956 Binary files /dev/null and b/static/images/theme/thumbnail/2x/thundermiracle-gatsby-simple-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/thundermiracle-gatsby-simple-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/thundermiracle-gatsby-simple-blog-master-2x.jpg deleted file mode 100644 index 0d046bc67..000000000 Binary files a/static/images/theme/thumbnail/2x/thundermiracle-gatsby-simple-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/tigefa4u-jekmdl-2x.jpg b/static/images/theme/thumbnail/2x/tigefa4u-jekmdl-2x.jpg new file mode 100644 index 000000000..b9da628f7 Binary files /dev/null and b/static/images/theme/thumbnail/2x/tigefa4u-jekmdl-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/tigefa4u-jekmdl-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/tigefa4u-jekmdl-gh-pages-2x.jpg deleted file mode 100644 index 80bdead32..000000000 Binary files a/static/images/theme/thumbnail/2x/tigefa4u-jekmdl-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/timlrx-tailwind-nextjs-starter-blog-2x.jpg b/static/images/theme/thumbnail/2x/timlrx-tailwind-nextjs-starter-blog-2x.jpg new file mode 100644 index 000000000..48217a5b0 Binary files /dev/null and b/static/images/theme/thumbnail/2x/timlrx-tailwind-nextjs-starter-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/timlrx-tailwind-nextjs-starter-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/timlrx-tailwind-nextjs-starter-blog-master-2x.jpg deleted file mode 100644 index 0d46cd125..000000000 Binary files a/static/images/theme/thumbnail/2x/timlrx-tailwind-nextjs-starter-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/tnguyen-blueface-2x.jpg b/static/images/theme/thumbnail/2x/tnguyen-blueface-2x.jpg new file mode 100644 index 000000000..60475c4d9 Binary files /dev/null and b/static/images/theme/thumbnail/2x/tnguyen-blueface-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/tnguyen-blueface-master-2x.jpg b/static/images/theme/thumbnail/2x/tnguyen-blueface-master-2x.jpg deleted file mode 100644 index 475c06e20..000000000 Binary files a/static/images/theme/thumbnail/2x/tnguyen-blueface-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/tnwhitwell-hugo-startpage-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/tnwhitwell-hugo-startpage-theme-master-2x.jpg deleted file mode 100644 index 12859d864..000000000 Binary files a/static/images/theme/thumbnail/2x/tnwhitwell-hugo-startpage-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/toboko-gatsby-starter-fine-2x.jpg b/static/images/theme/thumbnail/2x/toboko-gatsby-starter-fine-2x.jpg new file mode 100644 index 000000000..5ec66972a Binary files /dev/null and b/static/images/theme/thumbnail/2x/toboko-gatsby-starter-fine-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/toboko-gatsby-starter-fine-master-2x.jpg b/static/images/theme/thumbnail/2x/toboko-gatsby-starter-fine-master-2x.jpg deleted file mode 100644 index da1da8655..000000000 Binary files a/static/images/theme/thumbnail/2x/toboko-gatsby-starter-fine-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/tocttou-hacker-blog-2x.jpg b/static/images/theme/thumbnail/2x/tocttou-hacker-blog-2x.jpg new file mode 100644 index 000000000..aa0f357cb Binary files /dev/null and b/static/images/theme/thumbnail/2x/tocttou-hacker-blog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/tocttou-hacker-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/tocttou-hacker-blog-master-2x.jpg deleted file mode 100644 index d34cfaeec..000000000 Binary files a/static/images/theme/thumbnail/2x/tocttou-hacker-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/tolking-vuepress-theme-ououe-2x.jpg b/static/images/theme/thumbnail/2x/tolking-vuepress-theme-ououe-2x.jpg new file mode 100644 index 000000000..562860323 Binary files /dev/null and b/static/images/theme/thumbnail/2x/tolking-vuepress-theme-ououe-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/tolking-vuepress-theme-ououe-master-2x.jpg b/static/images/theme/thumbnail/2x/tolking-vuepress-theme-ououe-master-2x.jpg deleted file mode 100644 index a0eb40e8b..000000000 Binary files a/static/images/theme/thumbnail/2x/tolking-vuepress-theme-ououe-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/tomanistor-osprey-2x.jpg b/static/images/theme/thumbnail/2x/tomanistor-osprey-2x.jpg new file mode 100644 index 000000000..f8396df70 Binary files /dev/null and b/static/images/theme/thumbnail/2x/tomanistor-osprey-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/tomanistor-osprey-master-2x.jpg b/static/images/theme/thumbnail/2x/tomanistor-osprey-master-2x.jpg deleted file mode 100644 index a4e25e45e..000000000 Binary files a/static/images/theme/thumbnail/2x/tomanistor-osprey-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/tomekskuta-gatsby-starter-intl-2x.jpg b/static/images/theme/thumbnail/2x/tomekskuta-gatsby-starter-intl-2x.jpg new file mode 100644 index 000000000..903dcae14 Binary files /dev/null and b/static/images/theme/thumbnail/2x/tomekskuta-gatsby-starter-intl-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/tomekskuta-gatsby-starter-intl-master-2x.jpg b/static/images/theme/thumbnail/2x/tomekskuta-gatsby-starter-intl-master-2x.jpg deleted file mode 100644 index 855e3913b..000000000 Binary files a/static/images/theme/thumbnail/2x/tomekskuta-gatsby-starter-intl-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/tomjohnson1492-documentation-theme-jekyll-2x.jpg b/static/images/theme/thumbnail/2x/tomjohnson1492-documentation-theme-jekyll-2x.jpg new file mode 100644 index 000000000..63fe5673d Binary files /dev/null and b/static/images/theme/thumbnail/2x/tomjohnson1492-documentation-theme-jekyll-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/tomjohnson1492-documentation-theme-jekyll-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/tomjohnson1492-documentation-theme-jekyll-gh-pages-2x.jpg deleted file mode 100644 index a183e9cbb..000000000 Binary files a/static/images/theme/thumbnail/2x/tomjohnson1492-documentation-theme-jekyll-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/tomoyukikashiro-gatsby-starter-blog-amp-to-pwa-2x.jpg b/static/images/theme/thumbnail/2x/tomoyukikashiro-gatsby-starter-blog-amp-to-pwa-2x.jpg new file mode 100644 index 000000000..d682282ef Binary files /dev/null and b/static/images/theme/thumbnail/2x/tomoyukikashiro-gatsby-starter-blog-amp-to-pwa-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/tomoyukikashiro-gatsby-starter-blog-amp-to-pwa-master-2x.jpg b/static/images/theme/thumbnail/2x/tomoyukikashiro-gatsby-starter-blog-amp-to-pwa-master-2x.jpg deleted file mode 100644 index f543f03d6..000000000 Binary files a/static/images/theme/thumbnail/2x/tomoyukikashiro-gatsby-starter-blog-amp-to-pwa-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/tomrutgers-middleman-starter-netlify-cms-2x.jpg b/static/images/theme/thumbnail/2x/tomrutgers-middleman-starter-netlify-cms-2x.jpg new file mode 100644 index 000000000..8bfcfa985 Binary files /dev/null and b/static/images/theme/thumbnail/2x/tomrutgers-middleman-starter-netlify-cms-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/tomrutgers-middleman-starter-netlify-cms-master-2x.jpg b/static/images/theme/thumbnail/2x/tomrutgers-middleman-starter-netlify-cms-master-2x.jpg deleted file mode 100644 index 994d9ce12..000000000 Binary files a/static/images/theme/thumbnail/2x/tomrutgers-middleman-starter-netlify-cms-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/tosi29-inkblotty-master-2x.jpg b/static/images/theme/thumbnail/2x/tosi29-inkblotty-master-2x.jpg deleted file mode 100644 index 1b3feea6c..000000000 Binary files a/static/images/theme/thumbnail/2x/tosi29-inkblotty-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/track3-hermit-master-2x.jpg b/static/images/theme/thumbnail/2x/track3-hermit-master-2x.jpg deleted file mode 100644 index 3097a146a..000000000 Binary files a/static/images/theme/thumbnail/2x/track3-hermit-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/tradly-platform-butterflies-2x.jpg b/static/images/theme/thumbnail/2x/tradly-platform-butterflies-2x.jpg new file mode 100644 index 000000000..21cb9193c Binary files /dev/null and b/static/images/theme/thumbnail/2x/tradly-platform-butterflies-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/transitive-bullshit-nextjs-notion-starter-kit-2x.jpg b/static/images/theme/thumbnail/2x/transitive-bullshit-nextjs-notion-starter-kit-2x.jpg new file mode 100644 index 000000000..720c29ac3 Binary files /dev/null and b/static/images/theme/thumbnail/2x/transitive-bullshit-nextjs-notion-starter-kit-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/tryghost-eleventy-starter-ghost-2x.jpg b/static/images/theme/thumbnail/2x/tryghost-eleventy-starter-ghost-2x.jpg new file mode 100644 index 000000000..8ca63ecb1 Binary files /dev/null and b/static/images/theme/thumbnail/2x/tryghost-eleventy-starter-ghost-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/tryghost-eleventy-starter-ghost-master-2x.jpg b/static/images/theme/thumbnail/2x/tryghost-eleventy-starter-ghost-master-2x.jpg deleted file mode 100644 index dcd0392be..000000000 Binary files a/static/images/theme/thumbnail/2x/tryghost-eleventy-starter-ghost-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/tryghost-gatsby-starter-ghost-2x.jpg b/static/images/theme/thumbnail/2x/tryghost-gatsby-starter-ghost-2x.jpg new file mode 100644 index 000000000..daf466d50 Binary files /dev/null and b/static/images/theme/thumbnail/2x/tryghost-gatsby-starter-ghost-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/tryghost-gatsby-starter-ghost-master-2x.jpg b/static/images/theme/thumbnail/2x/tryghost-gatsby-starter-ghost-master-2x.jpg deleted file mode 100644 index a3d985dad..000000000 Binary files a/static/images/theme/thumbnail/2x/tryghost-gatsby-starter-ghost-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ttntm-11ty-landing-page-2x.jpg b/static/images/theme/thumbnail/2x/ttntm-11ty-landing-page-2x.jpg new file mode 100644 index 000000000..bd5c2015c Binary files /dev/null and b/static/images/theme/thumbnail/2x/ttntm-11ty-landing-page-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ttntm-hugo-landing-page-2x.jpg b/static/images/theme/thumbnail/2x/ttntm-hugo-landing-page-2x.jpg new file mode 100644 index 000000000..2f08bc70d Binary files /dev/null and b/static/images/theme/thumbnail/2x/ttntm-hugo-landing-page-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ttskch-jekyll-ttskch-theme-2x.jpg b/static/images/theme/thumbnail/2x/ttskch-jekyll-ttskch-theme-2x.jpg new file mode 100644 index 000000000..bb87bbfc5 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ttskch-jekyll-ttskch-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ttskch-jekyll-ttskch-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/ttskch-jekyll-ttskch-theme-master-2x.jpg deleted file mode 100644 index 7651c0eb3..000000000 Binary files a/static/images/theme/thumbnail/2x/ttskch-jekyll-ttskch-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/tummychow-lanyon-hugo-2x.jpg b/static/images/theme/thumbnail/2x/tummychow-lanyon-hugo-2x.jpg new file mode 100644 index 000000000..3621b3c99 Binary files /dev/null and b/static/images/theme/thumbnail/2x/tummychow-lanyon-hugo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/tummychow-lanyon-hugo-master-2x.jpg b/static/images/theme/thumbnail/2x/tummychow-lanyon-hugo-master-2x.jpg deleted file mode 100644 index c7f6a137b..000000000 Binary files a/static/images/theme/thumbnail/2x/tummychow-lanyon-hugo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/tybenz-exemplar-2x.jpg b/static/images/theme/thumbnail/2x/tybenz-exemplar-2x.jpg new file mode 100644 index 000000000..9e235f4a9 Binary files /dev/null and b/static/images/theme/thumbnail/2x/tybenz-exemplar-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/tybenz-exemplar-master-2x.jpg b/static/images/theme/thumbnail/2x/tybenz-exemplar-master-2x.jpg deleted file mode 100644 index 538191b0e..000000000 Binary files a/static/images/theme/thumbnail/2x/tybenz-exemplar-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/tybenz-otter-pop-2x.jpg b/static/images/theme/thumbnail/2x/tybenz-otter-pop-2x.jpg new file mode 100644 index 000000000..514bef2fe Binary files /dev/null and b/static/images/theme/thumbnail/2x/tybenz-otter-pop-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/tybenz-otter-pop-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/tybenz-otter-pop-gh-pages-2x.jpg deleted file mode 100644 index 1a6587db9..000000000 Binary files a/static/images/theme/thumbnail/2x/tybenz-otter-pop-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/tylergreulich-gatsby-typescript-mdx-prismjs-starter-2x.jpg b/static/images/theme/thumbnail/2x/tylergreulich-gatsby-typescript-mdx-prismjs-starter-2x.jpg new file mode 100644 index 000000000..e4deed803 Binary files /dev/null and b/static/images/theme/thumbnail/2x/tylergreulich-gatsby-typescript-mdx-prismjs-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/tylergreulich-gatsby-typescript-mdx-prismjs-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/tylergreulich-gatsby-typescript-mdx-prismjs-starter-master-2x.jpg deleted file mode 100644 index 72fbfc349..000000000 Binary files a/static/images/theme/thumbnail/2x/tylergreulich-gatsby-typescript-mdx-prismjs-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/tylermroderick-fernfolio-11ty-template-2x.jpg b/static/images/theme/thumbnail/2x/tylermroderick-fernfolio-11ty-template-2x.jpg new file mode 100644 index 000000000..8c965692b Binary files /dev/null and b/static/images/theme/thumbnail/2x/tylermroderick-fernfolio-11ty-template-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/tzuehlke-jekyll-uno-timeline-master-2x.jpg b/static/images/theme/thumbnail/2x/tzuehlke-jekyll-uno-timeline-master-2x.jpg deleted file mode 100644 index c4cb50152..000000000 Binary files a/static/images/theme/thumbnail/2x/tzuehlke-jekyll-uno-timeline-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ueno-llc-ueno-gatsby-starter-2x.jpg b/static/images/theme/thumbnail/2x/ueno-llc-ueno-gatsby-starter-2x.jpg new file mode 100644 index 000000000..1992236f4 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ueno-llc-ueno-gatsby-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ueno-llc-ueno-gatsby-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/ueno-llc-ueno-gatsby-starter-master-2x.jpg deleted file mode 100644 index 17a35b648..000000000 Binary files a/static/images/theme/thumbnail/2x/ueno-llc-ueno-gatsby-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ugglr-gatsby-clean-portfolio-2x.jpg b/static/images/theme/thumbnail/2x/ugglr-gatsby-clean-portfolio-2x.jpg new file mode 100644 index 000000000..b41df2a75 Binary files /dev/null and b/static/images/theme/thumbnail/2x/ugglr-gatsby-clean-portfolio-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/ugglr-gatsby-clean-portfolio-master-2x.jpg b/static/images/theme/thumbnail/2x/ugglr-gatsby-clean-portfolio-master-2x.jpg deleted file mode 100644 index bce712f58..000000000 Binary files a/static/images/theme/thumbnail/2x/ugglr-gatsby-clean-portfolio-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/uicardiodev-hugo-lime-master-2x.jpg b/static/images/theme/thumbnail/2x/uicardiodev-hugo-lime-master-2x.jpg deleted file mode 100644 index f9d8d8be3..000000000 Binary files a/static/images/theme/thumbnail/2x/uicardiodev-hugo-lime-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/uicardiodev-hugo-sodium-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/uicardiodev-hugo-sodium-theme-master-2x.jpg deleted file mode 100644 index cf153f17c..000000000 Binary files a/static/images/theme/thumbnail/2x/uicardiodev-hugo-sodium-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/uicardiodev-hugo-uilite-master-2x.jpg b/static/images/theme/thumbnail/2x/uicardiodev-hugo-uilite-master-2x.jpg deleted file mode 100644 index b22f4893a..000000000 Binary files a/static/images/theme/thumbnail/2x/uicardiodev-hugo-uilite-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/unifreak-unifreak.github.io-2x.jpg b/static/images/theme/thumbnail/2x/unifreak-unifreak.github.io-2x.jpg new file mode 100644 index 000000000..e6399db74 Binary files /dev/null and b/static/images/theme/thumbnail/2x/unifreak-unifreak.github.io-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/unifreak-unifreak.github.io-master-2x.jpg b/static/images/theme/thumbnail/2x/unifreak-unifreak.github.io-master-2x.jpg deleted file mode 100644 index d7f0d7c77..000000000 Binary files a/static/images/theme/thumbnail/2x/unifreak-unifreak.github.io-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/upagge-ublogger-2x.jpg b/static/images/theme/thumbnail/2x/upagge-ublogger-2x.jpg new file mode 100644 index 000000000..563afa3e7 Binary files /dev/null and b/static/images/theme/thumbnail/2x/upagge-ublogger-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/upagge-ublogger-master-2x.jpg b/static/images/theme/thumbnail/2x/upagge-ublogger-master-2x.jpg deleted file mode 100644 index fd5110cf8..000000000 Binary files a/static/images/theme/thumbnail/2x/upagge-ublogger-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/v4iv-gatsby-starter-business-2x.jpg b/static/images/theme/thumbnail/2x/v4iv-gatsby-starter-business-2x.jpg new file mode 100644 index 000000000..96955aa2f Binary files /dev/null and b/static/images/theme/thumbnail/2x/v4iv-gatsby-starter-business-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/v4iv-gatsby-starter-business-master-2x.jpg b/static/images/theme/thumbnail/2x/v4iv-gatsby-starter-business-master-2x.jpg deleted file mode 100644 index e8c909daf..000000000 Binary files a/static/images/theme/thumbnail/2x/v4iv-gatsby-starter-business-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/vaga-hugo-theme-m10c-master-2x.jpg b/static/images/theme/thumbnail/2x/vaga-hugo-theme-m10c-master-2x.jpg deleted file mode 100644 index 843e530ce..000000000 Binary files a/static/images/theme/thumbnail/2x/vaga-hugo-theme-m10c-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/vagr9k-gatsby-advanced-starter-2x.jpg b/static/images/theme/thumbnail/2x/vagr9k-gatsby-advanced-starter-2x.jpg new file mode 100644 index 000000000..67ebc53c5 Binary files /dev/null and b/static/images/theme/thumbnail/2x/vagr9k-gatsby-advanced-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/vagr9k-gatsby-advanced-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/vagr9k-gatsby-advanced-starter-master-2x.jpg deleted file mode 100644 index ac5421104..000000000 Binary files a/static/images/theme/thumbnail/2x/vagr9k-gatsby-advanced-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/vagr9k-gatsby-material-starter-2x.jpg b/static/images/theme/thumbnail/2x/vagr9k-gatsby-material-starter-2x.jpg new file mode 100644 index 000000000..72d2cdf1d Binary files /dev/null and b/static/images/theme/thumbnail/2x/vagr9k-gatsby-material-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/vagr9k-gatsby-material-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/vagr9k-gatsby-material-starter-master-2x.jpg deleted file mode 100644 index e8bcbac74..000000000 Binary files a/static/images/theme/thumbnail/2x/vagr9k-gatsby-material-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/vantagedesign-ace-documentation-2x.jpg b/static/images/theme/thumbnail/2x/vantagedesign-ace-documentation-2x.jpg new file mode 100644 index 000000000..567c9b00f Binary files /dev/null and b/static/images/theme/thumbnail/2x/vantagedesign-ace-documentation-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/vantagedesign-ace-documentation-master-2x.jpg b/static/images/theme/thumbnail/2x/vantagedesign-ace-documentation-master-2x.jpg deleted file mode 100644 index 8d8d98383..000000000 Binary files a/static/images/theme/thumbnail/2x/vantagedesign-ace-documentation-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/vercel-next.js-2x.jpg b/static/images/theme/thumbnail/2x/vercel-next.js-2x.jpg new file mode 100644 index 000000000..9cf9ce88e Binary files /dev/null and b/static/images/theme/thumbnail/2x/vercel-next.js-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/vercel-next.js-master-2x.jpg b/static/images/theme/thumbnail/2x/vercel-next.js-master-2x.jpg deleted file mode 100644 index bb61213d2..000000000 Binary files a/static/images/theme/thumbnail/2x/vercel-next.js-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/vfalanis-taken-master-2x.jpg b/static/images/theme/thumbnail/2x/vfalanis-taken-master-2x.jpg deleted file mode 100644 index 44d5a193d..000000000 Binary files a/static/images/theme/thumbnail/2x/vfalanis-taken-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/vfvong-jekyll-theme-quartz-2x.jpg b/static/images/theme/thumbnail/2x/vfvong-jekyll-theme-quartz-2x.jpg new file mode 100644 index 000000000..4e03a20ca Binary files /dev/null and b/static/images/theme/thumbnail/2x/vfvong-jekyll-theme-quartz-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/vfvong-jekyll-theme-tao-2x.jpg b/static/images/theme/thumbnail/2x/vfvong-jekyll-theme-tao-2x.jpg new file mode 100644 index 000000000..c9d3ed39f Binary files /dev/null and b/static/images/theme/thumbnail/2x/vfvong-jekyll-theme-tao-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/victoriadrake-hugo-theme-introduction-2x.jpg b/static/images/theme/thumbnail/2x/victoriadrake-hugo-theme-introduction-2x.jpg new file mode 100644 index 000000000..bc423eab5 Binary files /dev/null and b/static/images/theme/thumbnail/2x/victoriadrake-hugo-theme-introduction-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/victoriadrake-hugo-theme-introduction-master-2x.jpg b/static/images/theme/thumbnail/2x/victoriadrake-hugo-theme-introduction-master-2x.jpg deleted file mode 100644 index 3d9572a24..000000000 Binary files a/static/images/theme/thumbnail/2x/victoriadrake-hugo-theme-introduction-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/victoriadrake-hugo-theme-sam-master-2x.jpg b/static/images/theme/thumbnail/2x/victoriadrake-hugo-theme-sam-master-2x.jpg deleted file mode 100644 index 78d480574..000000000 Binary files a/static/images/theme/thumbnail/2x/victoriadrake-hugo-theme-sam-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/victorvoid-space-jekyll-template-2x.jpg b/static/images/theme/thumbnail/2x/victorvoid-space-jekyll-template-2x.jpg new file mode 100644 index 000000000..0ef455870 Binary files /dev/null and b/static/images/theme/thumbnail/2x/victorvoid-space-jekyll-template-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/victorvoid-space-jekyll-template-master-2x.jpg b/static/images/theme/thumbnail/2x/victorvoid-space-jekyll-template-master-2x.jpg deleted file mode 100644 index 246d08352..000000000 Binary files a/static/images/theme/thumbnail/2x/victorvoid-space-jekyll-template-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/vietanhdev-benice17-2x.jpg b/static/images/theme/thumbnail/2x/vietanhdev-benice17-2x.jpg new file mode 100644 index 000000000..f0cc18808 Binary files /dev/null and b/static/images/theme/thumbnail/2x/vietanhdev-benice17-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/vietanhdev-benice17-master-2x.jpg b/static/images/theme/thumbnail/2x/vietanhdev-benice17-master-2x.jpg deleted file mode 100644 index 9fc261d52..000000000 Binary files a/static/images/theme/thumbnail/2x/vietanhdev-benice17-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/vietanhdev-hugo-curious-2x.jpg b/static/images/theme/thumbnail/2x/vietanhdev-hugo-curious-2x.jpg new file mode 100644 index 000000000..e24721e49 Binary files /dev/null and b/static/images/theme/thumbnail/2x/vietanhdev-hugo-curious-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/viko16-vuepress-theme-simple-2x.jpg b/static/images/theme/thumbnail/2x/viko16-vuepress-theme-simple-2x.jpg new file mode 100644 index 000000000..1739b2f3e Binary files /dev/null and b/static/images/theme/thumbnail/2x/viko16-vuepress-theme-simple-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/viko16-vuepress-theme-simple-master-2x.jpg b/static/images/theme/thumbnail/2x/viko16-vuepress-theme-simple-master-2x.jpg deleted file mode 100644 index 7be5f99be..000000000 Binary files a/static/images/theme/thumbnail/2x/viko16-vuepress-theme-simple-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/vimux-binario-master-2x.jpg b/static/images/theme/thumbnail/2x/vimux-binario-master-2x.jpg deleted file mode 100644 index a5e1ec45c..000000000 Binary files a/static/images/theme/thumbnail/2x/vimux-binario-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/vimux-blank-master-2x.jpg b/static/images/theme/thumbnail/2x/vimux-blank-master-2x.jpg deleted file mode 100644 index 269fbc293..000000000 Binary files a/static/images/theme/thumbnail/2x/vimux-blank-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/vimux-mainroad-2x.jpg b/static/images/theme/thumbnail/2x/vimux-mainroad-2x.jpg new file mode 100644 index 000000000..99ad4280a Binary files /dev/null and b/static/images/theme/thumbnail/2x/vimux-mainroad-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/vimux-mainroad-master-2x.jpg b/static/images/theme/thumbnail/2x/vimux-mainroad-master-2x.jpg deleted file mode 100644 index 48ad137e6..000000000 Binary files a/static/images/theme/thumbnail/2x/vimux-mainroad-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/vincentchan-mickey-2x.jpg b/static/images/theme/thumbnail/2x/vincentchan-mickey-2x.jpg new file mode 100644 index 000000000..d38af489a Binary files /dev/null and b/static/images/theme/thumbnail/2x/vincentchan-mickey-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/vincentchan-mickey-master-2x.jpg b/static/images/theme/thumbnail/2x/vincentchan-mickey-master-2x.jpg deleted file mode 100644 index 1c92c87b1..000000000 Binary files a/static/images/theme/thumbnail/2x/vincentchan-mickey-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/vinitkumar-white-paper-2x.jpg b/static/images/theme/thumbnail/2x/vinitkumar-white-paper-2x.jpg new file mode 100644 index 000000000..4cbce6161 Binary files /dev/null and b/static/images/theme/thumbnail/2x/vinitkumar-white-paper-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/vinitkumar-white-paper-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/vinitkumar-white-paper-gh-pages-2x.jpg deleted file mode 100644 index a4f313658..000000000 Binary files a/static/images/theme/thumbnail/2x/vinitkumar-white-paper-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/vividvilla-ezhil-2x.jpg b/static/images/theme/thumbnail/2x/vividvilla-ezhil-2x.jpg new file mode 100644 index 000000000..a1d01955b Binary files /dev/null and b/static/images/theme/thumbnail/2x/vividvilla-ezhil-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/vividvilla-ezhil-master-2x.jpg b/static/images/theme/thumbnail/2x/vividvilla-ezhil-master-2x.jpg deleted file mode 100644 index 1ec2cb5ec..000000000 Binary files a/static/images/theme/thumbnail/2x/vividvilla-ezhil-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/volny-creative-theme-jekyll-2x.jpg b/static/images/theme/thumbnail/2x/volny-creative-theme-jekyll-2x.jpg new file mode 100644 index 000000000..bee95a30e Binary files /dev/null and b/static/images/theme/thumbnail/2x/volny-creative-theme-jekyll-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/volny-creative-theme-jekyll-master-2x.jpg b/static/images/theme/thumbnail/2x/volny-creative-theme-jekyll-master-2x.jpg deleted file mode 100644 index 140db9458..000000000 Binary files a/static/images/theme/thumbnail/2x/volny-creative-theme-jekyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/volny-stylish-portfolio-jekyll-2x.jpg b/static/images/theme/thumbnail/2x/volny-stylish-portfolio-jekyll-2x.jpg new file mode 100644 index 000000000..97553e77b Binary files /dev/null and b/static/images/theme/thumbnail/2x/volny-stylish-portfolio-jekyll-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/volny-stylish-portfolio-jekyll-master-2x.jpg b/static/images/theme/thumbnail/2x/volny-stylish-portfolio-jekyll-master-2x.jpg deleted file mode 100644 index 845cc6291..000000000 Binary files a/static/images/theme/thumbnail/2x/volny-stylish-portfolio-jekyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/vormwald-joon-2x.jpg b/static/images/theme/thumbnail/2x/vormwald-joon-2x.jpg new file mode 100644 index 000000000..f00b7e386 Binary files /dev/null and b/static/images/theme/thumbnail/2x/vormwald-joon-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/vormwald-joon-master-2x.jpg b/static/images/theme/thumbnail/2x/vormwald-joon-master-2x.jpg deleted file mode 100644 index 8a3ee4fda..000000000 Binary files a/static/images/theme/thumbnail/2x/vormwald-joon-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/vszhub-not-pure-poole-2x.jpg b/static/images/theme/thumbnail/2x/vszhub-not-pure-poole-2x.jpg new file mode 100644 index 000000000..88d20c8bf Binary files /dev/null and b/static/images/theme/thumbnail/2x/vszhub-not-pure-poole-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/vszhub-not-pure-poole-master-2x.jpg b/static/images/theme/thumbnail/2x/vszhub-not-pure-poole-master-2x.jpg deleted file mode 100644 index 5991d5c27..000000000 Binary files a/static/images/theme/thumbnail/2x/vszhub-not-pure-poole-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/vvalchev-creative-theme-jekyll-new-2x.jpg b/static/images/theme/thumbnail/2x/vvalchev-creative-theme-jekyll-new-2x.jpg new file mode 100644 index 000000000..99ed20686 Binary files /dev/null and b/static/images/theme/thumbnail/2x/vvalchev-creative-theme-jekyll-new-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/vvalchev-creative-theme-jekyll-new-master-2x.jpg b/static/images/theme/thumbnail/2x/vvalchev-creative-theme-jekyll-new-master-2x.jpg deleted file mode 100644 index 83df95720..000000000 Binary files a/static/images/theme/thumbnail/2x/vvalchev-creative-theme-jekyll-new-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/vvelox-hugo-dusky-neon-potato-master-2x.jpg b/static/images/theme/thumbnail/2x/vvelox-hugo-dusky-neon-potato-master-2x.jpg deleted file mode 100644 index 31922541b..000000000 Binary files a/static/images/theme/thumbnail/2x/vvelox-hugo-dusky-neon-potato-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/w3layouts-gatsby-starter-delog-2x.jpg b/static/images/theme/thumbnail/2x/w3layouts-gatsby-starter-delog-2x.jpg new file mode 100644 index 000000000..d240d62f6 Binary files /dev/null and b/static/images/theme/thumbnail/2x/w3layouts-gatsby-starter-delog-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/w3layouts-gatsby-starter-delog-master-2x.jpg b/static/images/theme/thumbnail/2x/w3layouts-gatsby-starter-delog-master-2x.jpg deleted file mode 100644 index 9891e8b20..000000000 Binary files a/static/images/theme/thumbnail/2x/w3layouts-gatsby-starter-delog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/wangchucheng-hugo-eureka-master-2x.jpg b/static/images/theme/thumbnail/2x/wangchucheng-hugo-eureka-master-2x.jpg deleted file mode 100644 index 5b8a3dc52..000000000 Binary files a/static/images/theme/thumbnail/2x/wangchucheng-hugo-eureka-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/wangonya-flexible-gatsby-2x.jpg b/static/images/theme/thumbnail/2x/wangonya-flexible-gatsby-2x.jpg new file mode 100644 index 000000000..e27545403 Binary files /dev/null and b/static/images/theme/thumbnail/2x/wangonya-flexible-gatsby-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/wangonya-flexible-gatsby-master-2x.jpg b/static/images/theme/thumbnail/2x/wangonya-flexible-gatsby-master-2x.jpg deleted file mode 100644 index 3ce671390..000000000 Binary files a/static/images/theme/thumbnail/2x/wangonya-flexible-gatsby-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/wangonya-the-plain-gatsby-2x.jpg b/static/images/theme/thumbnail/2x/wangonya-the-plain-gatsby-2x.jpg new file mode 100644 index 000000000..357558574 Binary files /dev/null and b/static/images/theme/thumbnail/2x/wangonya-the-plain-gatsby-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/wangonya-the-plain-gatsby-master-2x.jpg b/static/images/theme/thumbnail/2x/wangonya-the-plain-gatsby-master-2x.jpg deleted file mode 100644 index a3defb4c1..000000000 Binary files a/static/images/theme/thumbnail/2x/wangonya-the-plain-gatsby-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/wannaxiao-vuepress-theme-resume-master-2x.jpg b/static/images/theme/thumbnail/2x/wannaxiao-vuepress-theme-resume-master-2x.jpg deleted file mode 100644 index f57fa7ba3..000000000 Binary files a/static/images/theme/thumbnail/2x/wannaxiao-vuepress-theme-resume-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/wd-hugo-fabric-master-2x.jpg b/static/images/theme/thumbnail/2x/wd-hugo-fabric-master-2x.jpg deleted file mode 100644 index b81e77b9b..000000000 Binary files a/static/images/theme/thumbnail/2x/wd-hugo-fabric-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/webcu-gatsby-material-kit-react-2x.jpg b/static/images/theme/thumbnail/2x/webcu-gatsby-material-kit-react-2x.jpg new file mode 100644 index 000000000..08dc9056d Binary files /dev/null and b/static/images/theme/thumbnail/2x/webcu-gatsby-material-kit-react-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/webcu-gatsby-material-kit-react-master-2x.jpg b/static/images/theme/thumbnail/2x/webcu-gatsby-material-kit-react-master-2x.jpg deleted file mode 100644 index 6e581680b..000000000 Binary files a/static/images/theme/thumbnail/2x/webcu-gatsby-material-kit-react-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/wemake-services-jekyll-theme-hackcss-2x.jpg b/static/images/theme/thumbnail/2x/wemake-services-jekyll-theme-hackcss-2x.jpg new file mode 100644 index 000000000..5c4603704 Binary files /dev/null and b/static/images/theme/thumbnail/2x/wemake-services-jekyll-theme-hackcss-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/wemake-services-jekyll-theme-hackcss-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/wemake-services-jekyll-theme-hackcss-gh-pages-2x.jpg deleted file mode 100644 index ea9a146bf..000000000 Binary files a/static/images/theme/thumbnail/2x/wemake-services-jekyll-theme-hackcss-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/wgao19-docusaurus-theme-no-style-2x.jpg b/static/images/theme/thumbnail/2x/wgao19-docusaurus-theme-no-style-2x.jpg new file mode 100644 index 000000000..95eba2fd7 Binary files /dev/null and b/static/images/theme/thumbnail/2x/wgao19-docusaurus-theme-no-style-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/wgao19-docusaurus-theme-no-style-master-2x.jpg b/static/images/theme/thumbnail/2x/wgao19-docusaurus-theme-no-style-master-2x.jpg deleted file mode 100644 index 449d79b53..000000000 Binary files a/static/images/theme/thumbnail/2x/wgao19-docusaurus-theme-no-style-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/whoan-vuepress-theme-canvas-2x.jpg b/static/images/theme/thumbnail/2x/whoan-vuepress-theme-canvas-2x.jpg new file mode 100644 index 000000000..a7c10ed38 Binary files /dev/null and b/static/images/theme/thumbnail/2x/whoan-vuepress-theme-canvas-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/whoan-vuepress-theme-canvas-master-2x.jpg b/static/images/theme/thumbnail/2x/whoan-vuepress-theme-canvas-master-2x.jpg deleted file mode 100644 index f0c4130d2..000000000 Binary files a/static/images/theme/thumbnail/2x/whoan-vuepress-theme-canvas-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/whoisryosuke-gatsby-documentation-starter-2x.jpg b/static/images/theme/thumbnail/2x/whoisryosuke-gatsby-documentation-starter-2x.jpg new file mode 100644 index 000000000..e00f14b63 Binary files /dev/null and b/static/images/theme/thumbnail/2x/whoisryosuke-gatsby-documentation-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/whoisryosuke-gatsby-documentation-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/whoisryosuke-gatsby-documentation-starter-master-2x.jpg deleted file mode 100644 index 8006f9db4..000000000 Binary files a/static/images/theme/thumbnail/2x/whoisryosuke-gatsby-documentation-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/wild-flame-jekyll-simple-2x.jpg b/static/images/theme/thumbnail/2x/wild-flame-jekyll-simple-2x.jpg new file mode 100644 index 000000000..b6edc34da Binary files /dev/null and b/static/images/theme/thumbnail/2x/wild-flame-jekyll-simple-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/wild-flame-jekyll-simple-master-2x.jpg b/static/images/theme/thumbnail/2x/wild-flame-jekyll-simple-master-2x.jpg deleted file mode 100644 index ffcd42f0d..000000000 Binary files a/static/images/theme/thumbnail/2x/wild-flame-jekyll-simple-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/wildhaber-gohugo-amp-2x.jpg b/static/images/theme/thumbnail/2x/wildhaber-gohugo-amp-2x.jpg new file mode 100644 index 000000000..e0958ee3b Binary files /dev/null and b/static/images/theme/thumbnail/2x/wildhaber-gohugo-amp-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/wildhaber-gohugo-amp-develop-2x.jpg b/static/images/theme/thumbnail/2x/wildhaber-gohugo-amp-develop-2x.jpg deleted file mode 100644 index 70d70bc02..000000000 Binary files a/static/images/theme/thumbnail/2x/wildhaber-gohugo-amp-develop-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/wileybaba-hugo-theme-robotico-master-2x.jpg b/static/images/theme/thumbnail/2x/wileybaba-hugo-theme-robotico-master-2x.jpg deleted file mode 100644 index f7a7e3ab1..000000000 Binary files a/static/images/theme/thumbnail/2x/wileybaba-hugo-theme-robotico-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/willcode4food-gatsby-starter-paperbase-2x.jpg b/static/images/theme/thumbnail/2x/willcode4food-gatsby-starter-paperbase-2x.jpg new file mode 100644 index 000000000..bb723a487 Binary files /dev/null and b/static/images/theme/thumbnail/2x/willcode4food-gatsby-starter-paperbase-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/willcode4food-gatsby-starter-paperbase-master-2x.jpg b/static/images/theme/thumbnail/2x/willcode4food-gatsby-starter-paperbase-master-2x.jpg deleted file mode 100644 index b1472add7..000000000 Binary files a/static/images/theme/thumbnail/2x/willcode4food-gatsby-starter-paperbase-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/williamcanin-typing-jekyll-template-2x.jpg b/static/images/theme/thumbnail/2x/williamcanin-typing-jekyll-template-2x.jpg new file mode 100644 index 000000000..10bb75994 Binary files /dev/null and b/static/images/theme/thumbnail/2x/williamcanin-typing-jekyll-template-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/williamcanin-typing-jekyll-template-master-2x.jpg b/static/images/theme/thumbnail/2x/williamcanin-typing-jekyll-template-master-2x.jpg deleted file mode 100644 index 03cdd1da3..000000000 Binary files a/static/images/theme/thumbnail/2x/williamcanin-typing-jekyll-template-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/willianjusten-cards-jekyll-template-2x.jpg b/static/images/theme/thumbnail/2x/willianjusten-cards-jekyll-template-2x.jpg new file mode 100644 index 000000000..08f446f13 Binary files /dev/null and b/static/images/theme/thumbnail/2x/willianjusten-cards-jekyll-template-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/willianjusten-cards-jekyll-template-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/willianjusten-cards-jekyll-template-gh-pages-2x.jpg deleted file mode 100644 index 70e788c6c..000000000 Binary files a/static/images/theme/thumbnail/2x/willianjusten-cards-jekyll-template-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/willianjusten-will-jekyll-template-2x.jpg b/static/images/theme/thumbnail/2x/willianjusten-will-jekyll-template-2x.jpg new file mode 100644 index 000000000..d051d66b8 Binary files /dev/null and b/static/images/theme/thumbnail/2x/willianjusten-will-jekyll-template-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/willianjusten-will-jekyll-template-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/willianjusten-will-jekyll-template-gh-pages-2x.jpg deleted file mode 100644 index 533c33a2a..000000000 Binary files a/static/images/theme/thumbnail/2x/willianjusten-will-jekyll-template-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/willjw3-gatsby-starter-developer-diary-2x.jpg b/static/images/theme/thumbnail/2x/willjw3-gatsby-starter-developer-diary-2x.jpg new file mode 100644 index 000000000..9200dcf77 Binary files /dev/null and b/static/images/theme/thumbnail/2x/willjw3-gatsby-starter-developer-diary-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/willjw3-gatsby-starter-developer-diary-master-2x.jpg b/static/images/theme/thumbnail/2x/willjw3-gatsby-starter-developer-diary-master-2x.jpg deleted file mode 100644 index 343d1f32e..000000000 Binary files a/static/images/theme/thumbnail/2x/willjw3-gatsby-starter-developer-diary-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/windedge-gatsby-tailwind-serif-2x.jpg b/static/images/theme/thumbnail/2x/windedge-gatsby-tailwind-serif-2x.jpg new file mode 100644 index 000000000..085921c01 Binary files /dev/null and b/static/images/theme/thumbnail/2x/windedge-gatsby-tailwind-serif-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/windedge-gatsby-tailwind-serif-master-2x.jpg b/static/images/theme/thumbnail/2x/windedge-gatsby-tailwind-serif-master-2x.jpg deleted file mode 100644 index 5891bda6b..000000000 Binary files a/static/images/theme/thumbnail/2x/windedge-gatsby-tailwind-serif-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/wiredcraft-carte-2x.jpg b/static/images/theme/thumbnail/2x/wiredcraft-carte-2x.jpg new file mode 100644 index 000000000..2a9ee5dc7 Binary files /dev/null and b/static/images/theme/thumbnail/2x/wiredcraft-carte-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/wiredcraft-carte-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/wiredcraft-carte-gh-pages-2x.jpg deleted file mode 100644 index 6aacc7274..000000000 Binary files a/static/images/theme/thumbnail/2x/wiredcraft-carte-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/wkocjan-gatsby-airtable-listing-2x.jpg b/static/images/theme/thumbnail/2x/wkocjan-gatsby-airtable-listing-2x.jpg new file mode 100644 index 000000000..044b0657b Binary files /dev/null and b/static/images/theme/thumbnail/2x/wkocjan-gatsby-airtable-listing-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/wkocjan-gatsby-airtable-listing-master-2x.jpg b/static/images/theme/thumbnail/2x/wkocjan-gatsby-airtable-listing-master-2x.jpg deleted file mode 100644 index 95a66810a..000000000 Binary files a/static/images/theme/thumbnail/2x/wkocjan-gatsby-airtable-listing-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/wkocjan-gatsby-contentful-portfolio-2x.jpg b/static/images/theme/thumbnail/2x/wkocjan-gatsby-contentful-portfolio-2x.jpg new file mode 100644 index 000000000..8312dc48a Binary files /dev/null and b/static/images/theme/thumbnail/2x/wkocjan-gatsby-contentful-portfolio-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/wkocjan-gatsby-contentful-portfolio-master-2x.jpg b/static/images/theme/thumbnail/2x/wkocjan-gatsby-contentful-portfolio-master-2x.jpg deleted file mode 100644 index dfb352ba6..000000000 Binary files a/static/images/theme/thumbnail/2x/wkocjan-gatsby-contentful-portfolio-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/wkocjan-gatsby-theme-intro-2x.jpg b/static/images/theme/thumbnail/2x/wkocjan-gatsby-theme-intro-2x.jpg new file mode 100644 index 000000000..c4b85bcf0 Binary files /dev/null and b/static/images/theme/thumbnail/2x/wkocjan-gatsby-theme-intro-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/wkocjan-gatsby-theme-intro-master-2x.jpg b/static/images/theme/thumbnail/2x/wkocjan-gatsby-theme-intro-master-2x.jpg deleted file mode 100644 index d4046ba9c..000000000 Binary files a/static/images/theme/thumbnail/2x/wkocjan-gatsby-theme-intro-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/wowthemesnet-affiliates-jekyll-theme-2x.jpg b/static/images/theme/thumbnail/2x/wowthemesnet-affiliates-jekyll-theme-2x.jpg new file mode 100644 index 000000000..91d654807 Binary files /dev/null and b/static/images/theme/thumbnail/2x/wowthemesnet-affiliates-jekyll-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/wowthemesnet-affiliates-jekyll-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/wowthemesnet-affiliates-jekyll-theme-master-2x.jpg deleted file mode 100644 index af612c787..000000000 Binary files a/static/images/theme/thumbnail/2x/wowthemesnet-affiliates-jekyll-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/wowthemesnet-jekyll-theme-memoirs-2x.jpg b/static/images/theme/thumbnail/2x/wowthemesnet-jekyll-theme-memoirs-2x.jpg new file mode 100644 index 000000000..f6c025fd0 Binary files /dev/null and b/static/images/theme/thumbnail/2x/wowthemesnet-jekyll-theme-memoirs-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/wowthemesnet-jekyll-theme-memoirs-master-2x.jpg b/static/images/theme/thumbnail/2x/wowthemesnet-jekyll-theme-memoirs-master-2x.jpg deleted file mode 100644 index 305cade89..000000000 Binary files a/static/images/theme/thumbnail/2x/wowthemesnet-jekyll-theme-memoirs-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/wowthemesnet-mediumish-theme-jekyll-2x.jpg b/static/images/theme/thumbnail/2x/wowthemesnet-mediumish-theme-jekyll-2x.jpg new file mode 100644 index 000000000..b8a6907b4 Binary files /dev/null and b/static/images/theme/thumbnail/2x/wowthemesnet-mediumish-theme-jekyll-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/wowthemesnet-mediumish-theme-jekyll-master-2x.jpg b/static/images/theme/thumbnail/2x/wowthemesnet-mediumish-theme-jekyll-master-2x.jpg deleted file mode 100644 index e46e64598..000000000 Binary files a/static/images/theme/thumbnail/2x/wowthemesnet-mediumish-theme-jekyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/wowthemesnet-mediumish-vuepress-blog-theme-2x.jpg b/static/images/theme/thumbnail/2x/wowthemesnet-mediumish-vuepress-blog-theme-2x.jpg new file mode 100644 index 000000000..78e352861 Binary files /dev/null and b/static/images/theme/thumbnail/2x/wowthemesnet-mediumish-vuepress-blog-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/wowthemesnet-mediumish-vuepress-blog-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/wowthemesnet-mediumish-vuepress-blog-theme-master-2x.jpg deleted file mode 100644 index 2a6233116..000000000 Binary files a/static/images/theme/thumbnail/2x/wowthemesnet-mediumish-vuepress-blog-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/wowthemesnet-mundana-theme-jekyll-2x.jpg b/static/images/theme/thumbnail/2x/wowthemesnet-mundana-theme-jekyll-2x.jpg new file mode 100644 index 000000000..681910004 Binary files /dev/null and b/static/images/theme/thumbnail/2x/wowthemesnet-mundana-theme-jekyll-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/wowthemesnet-mundana-theme-jekyll-master-2x.jpg b/static/images/theme/thumbnail/2x/wowthemesnet-mundana-theme-jekyll-master-2x.jpg deleted file mode 100644 index 3f7a23780..000000000 Binary files a/static/images/theme/thumbnail/2x/wowthemesnet-mundana-theme-jekyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/wrappixel-flexy-admin-nextjs-free-2x.jpg b/static/images/theme/thumbnail/2x/wrappixel-flexy-admin-nextjs-free-2x.jpg new file mode 100644 index 000000000..81a988645 Binary files /dev/null and b/static/images/theme/thumbnail/2x/wrappixel-flexy-admin-nextjs-free-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/wrappixel-materialpro-nuxtjs-free-2x.jpg b/static/images/theme/thumbnail/2x/wrappixel-materialpro-nuxtjs-free-2x.jpg new file mode 100644 index 000000000..43d4f3108 Binary files /dev/null and b/static/images/theme/thumbnail/2x/wrappixel-materialpro-nuxtjs-free-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/wrappixel-xtreme-admin-nextjs-free-2x.jpg b/static/images/theme/thumbnail/2x/wrappixel-xtreme-admin-nextjs-free-2x.jpg new file mode 100644 index 000000000..ff6a9d4c0 Binary files /dev/null and b/static/images/theme/thumbnail/2x/wrappixel-xtreme-admin-nextjs-free-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/wu-kan-wu-kan.github.io-2x.jpg b/static/images/theme/thumbnail/2x/wu-kan-wu-kan.github.io-2x.jpg new file mode 100644 index 000000000..fbca4f1bd Binary files /dev/null and b/static/images/theme/thumbnail/2x/wu-kan-wu-kan.github.io-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/wu-kan-wu-kan.github.io-master-2x.jpg b/static/images/theme/thumbnail/2x/wu-kan-wu-kan.github.io-master-2x.jpg deleted file mode 100644 index a452f47ec..000000000 Binary files a/static/images/theme/thumbnail/2x/wu-kan-wu-kan.github.io-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/xaprb-story-2x.jpg b/static/images/theme/thumbnail/2x/xaprb-story-2x.jpg new file mode 100644 index 000000000..0d4ba58a4 Binary files /dev/null and b/static/images/theme/thumbnail/2x/xaprb-story-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/xaprb-story-master-2x.jpg b/static/images/theme/thumbnail/2x/xaprb-story-master-2x.jpg deleted file mode 100644 index 98811989f..000000000 Binary files a/static/images/theme/thumbnail/2x/xaprb-story-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/xaviablaza-hugo-lodi-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/xaviablaza-hugo-lodi-theme-master-2x.jpg deleted file mode 100644 index 69ba4f4d5..000000000 Binary files a/static/images/theme/thumbnail/2x/xaviablaza-hugo-lodi-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/xdesro-nuxt-netlify-cms-starter-2x.jpg b/static/images/theme/thumbnail/2x/xdesro-nuxt-netlify-cms-starter-2x.jpg new file mode 100644 index 000000000..6a05855bb Binary files /dev/null and b/static/images/theme/thumbnail/2x/xdesro-nuxt-netlify-cms-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/xdesro-nuxt-netlify-cms-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/xdesro-nuxt-netlify-cms-starter-master-2x.jpg deleted file mode 100644 index 03dc0f488..000000000 Binary files a/static/images/theme/thumbnail/2x/xdesro-nuxt-netlify-cms-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/xianmin-hugo-theme-jane-2x.jpg b/static/images/theme/thumbnail/2x/xianmin-hugo-theme-jane-2x.jpg new file mode 100644 index 000000000..14a4386bc Binary files /dev/null and b/static/images/theme/thumbnail/2x/xianmin-hugo-theme-jane-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/xianmin-hugo-theme-jane-master-2x.jpg b/static/images/theme/thumbnail/2x/xianmin-hugo-theme-jane-master-2x.jpg deleted file mode 100644 index 86fc5cfa5..000000000 Binary files a/static/images/theme/thumbnail/2x/xianmin-hugo-theme-jane-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/xukimseven-hardcandy-jekyll-master-2x.jpg b/static/images/theme/thumbnail/2x/xukimseven-hardcandy-jekyll-master-2x.jpg deleted file mode 100644 index bc8d9c6c4..000000000 Binary files a/static/images/theme/thumbnail/2x/xukimseven-hardcandy-jekyll-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/xydac-xylo-gatsby-bulma-starter-2x.jpg b/static/images/theme/thumbnail/2x/xydac-xylo-gatsby-bulma-starter-2x.jpg new file mode 100644 index 000000000..2ec1acc1f Binary files /dev/null and b/static/images/theme/thumbnail/2x/xydac-xylo-gatsby-bulma-starter-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/xydac-xylo-gatsby-bulma-starter-master-2x.jpg b/static/images/theme/thumbnail/2x/xydac-xylo-gatsby-bulma-starter-master-2x.jpg deleted file mode 100644 index 4695eeb22..000000000 Binary files a/static/images/theme/thumbnail/2x/xydac-xylo-gatsby-bulma-starter-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/xzya-hugo-material-blog-master-2x.jpg b/static/images/theme/thumbnail/2x/xzya-hugo-material-blog-master-2x.jpg deleted file mode 100644 index 6db64ce94..000000000 Binary files a/static/images/theme/thumbnail/2x/xzya-hugo-material-blog-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/y7kim-agency-jekyll-theme-2x.jpg b/static/images/theme/thumbnail/2x/y7kim-agency-jekyll-theme-2x.jpg new file mode 100644 index 000000000..1531272fa Binary files /dev/null and b/static/images/theme/thumbnail/2x/y7kim-agency-jekyll-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/y7kim-agency-jekyll-theme-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/y7kim-agency-jekyll-theme-gh-pages-2x.jpg deleted file mode 100644 index b64bd0815..000000000 Binary files a/static/images/theme/thumbnail/2x/y7kim-agency-jekyll-theme-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/yelog-hexo-theme-3-hexo-2x.jpg b/static/images/theme/thumbnail/2x/yelog-hexo-theme-3-hexo-2x.jpg new file mode 100644 index 000000000..3b3a075ac Binary files /dev/null and b/static/images/theme/thumbnail/2x/yelog-hexo-theme-3-hexo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/yelog-hexo-theme-3-hexo-master-2x.jpg b/static/images/theme/thumbnail/2x/yelog-hexo-theme-3-hexo-master-2x.jpg deleted file mode 100644 index 092731fc5..000000000 Binary files a/static/images/theme/thumbnail/2x/yelog-hexo-theme-3-hexo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/yenyuhsuan-hexo-theme-beantech-master-2x.jpg b/static/images/theme/thumbnail/2x/yenyuhsuan-hexo-theme-beantech-master-2x.jpg deleted file mode 100644 index fe4459d8e..000000000 Binary files a/static/images/theme/thumbnail/2x/yenyuhsuan-hexo-theme-beantech-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/ygoex-yetty-2x.jpg b/static/images/theme/thumbnail/2x/ygoex-yetty-2x.jpg new file mode 100644 index 000000000..b26dd820e Binary files /dev/null and b/static/images/theme/thumbnail/2x/ygoex-yetty-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/yihui-hugo-xmag-2x.jpg b/static/images/theme/thumbnail/2x/yihui-hugo-xmag-2x.jpg new file mode 100644 index 000000000..9c1af30d4 Binary files /dev/null and b/static/images/theme/thumbnail/2x/yihui-hugo-xmag-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/yihui-hugo-xmag-master-2x.jpg b/static/images/theme/thumbnail/2x/yihui-hugo-xmag-master-2x.jpg deleted file mode 100644 index 3bcb853de..000000000 Binary files a/static/images/theme/thumbnail/2x/yihui-hugo-xmag-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/yihui-hugo-xmin-2x.jpg b/static/images/theme/thumbnail/2x/yihui-hugo-xmin-2x.jpg new file mode 100644 index 000000000..ab8d65f45 Binary files /dev/null and b/static/images/theme/thumbnail/2x/yihui-hugo-xmin-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/yihui-hugo-xmin-master-2x.jpg b/static/images/theme/thumbnail/2x/yihui-hugo-xmin-master-2x.jpg deleted file mode 100644 index 90dc2dfd0..000000000 Binary files a/static/images/theme/thumbnail/2x/yihui-hugo-xmin-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/yiluyanxia-hexo-theme-antiquity-master-2x.jpg b/static/images/theme/thumbnail/2x/yiluyanxia-hexo-theme-antiquity-master-2x.jpg deleted file mode 100644 index dff087bec..000000000 Binary files a/static/images/theme/thumbnail/2x/yiluyanxia-hexo-theme-antiquity-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/yinkakun-eleventy-duo-2x.jpg b/static/images/theme/thumbnail/2x/yinkakun-eleventy-duo-2x.jpg new file mode 100644 index 000000000..f19ff68a1 Binary files /dev/null and b/static/images/theme/thumbnail/2x/yinkakun-eleventy-duo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/yinkakun-eleventy-duo-master-2x.jpg b/static/images/theme/thumbnail/2x/yinkakun-eleventy-duo-master-2x.jpg deleted file mode 100644 index 49a06325e..000000000 Binary files a/static/images/theme/thumbnail/2x/yinkakun-eleventy-duo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/yinkakun-gatsby-starter-glass-2x.jpg b/static/images/theme/thumbnail/2x/yinkakun-gatsby-starter-glass-2x.jpg new file mode 100644 index 000000000..499b171f9 Binary files /dev/null and b/static/images/theme/thumbnail/2x/yinkakun-gatsby-starter-glass-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/yizeng-jekyll-theme-simple-texture-2x.jpg b/static/images/theme/thumbnail/2x/yizeng-jekyll-theme-simple-texture-2x.jpg new file mode 100644 index 000000000..1ba9626da Binary files /dev/null and b/static/images/theme/thumbnail/2x/yizeng-jekyll-theme-simple-texture-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/yizeng-jekyll-theme-simple-texture-master-2x.jpg b/static/images/theme/thumbnail/2x/yizeng-jekyll-theme-simple-texture-master-2x.jpg deleted file mode 100644 index 86630bf7e..000000000 Binary files a/static/images/theme/thumbnail/2x/yizeng-jekyll-theme-simple-texture-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/yjpl-supply-2x.jpg b/static/images/theme/thumbnail/2x/yjpl-supply-2x.jpg new file mode 100644 index 000000000..d3bf8d61b Binary files /dev/null and b/static/images/theme/thumbnail/2x/yjpl-supply-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/yonojoy-yax-coming-soon-jekyll-template-2x.jpg b/static/images/theme/thumbnail/2x/yonojoy-yax-coming-soon-jekyll-template-2x.jpg new file mode 100644 index 000000000..b99f0edd2 Binary files /dev/null and b/static/images/theme/thumbnail/2x/yonojoy-yax-coming-soon-jekyll-template-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/yonojoy-yax-coming-soon-jekyll-template-master-2x.jpg b/static/images/theme/thumbnail/2x/yonojoy-yax-coming-soon-jekyll-template-master-2x.jpg deleted file mode 100644 index 273d98aab..000000000 Binary files a/static/images/theme/thumbnail/2x/yonojoy-yax-coming-soon-jekyll-template-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/yous-whiteglass-2x.jpg b/static/images/theme/thumbnail/2x/yous-whiteglass-2x.jpg new file mode 100644 index 000000000..19f666d7e Binary files /dev/null and b/static/images/theme/thumbnail/2x/yous-whiteglass-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/yous-whiteglass-master-2x.jpg b/static/images/theme/thumbnail/2x/yous-whiteglass-master-2x.jpg deleted file mode 100644 index 3f1afe95e..000000000 Binary files a/static/images/theme/thumbnail/2x/yous-whiteglass-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/youssefraafatnasry-portfolyou-2x.jpg b/static/images/theme/thumbnail/2x/youssefraafatnasry-portfolyou-2x.jpg new file mode 100644 index 000000000..7edf2ee48 Binary files /dev/null and b/static/images/theme/thumbnail/2x/youssefraafatnasry-portfolyou-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/youssefraafatnasry-portfolyou-master-2x.jpg b/static/images/theme/thumbnail/2x/youssefraafatnasry-portfolyou-master-2x.jpg deleted file mode 100644 index ad4dfe5cd..000000000 Binary files a/static/images/theme/thumbnail/2x/youssefraafatnasry-portfolyou-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/yscoder-vuepress-theme-indigo-2x.jpg b/static/images/theme/thumbnail/2x/yscoder-vuepress-theme-indigo-2x.jpg new file mode 100644 index 000000000..1bc2d54e7 Binary files /dev/null and b/static/images/theme/thumbnail/2x/yscoder-vuepress-theme-indigo-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/yscoder-vuepress-theme-indigo-master-2x.jpg b/static/images/theme/thumbnail/2x/yscoder-vuepress-theme-indigo-master-2x.jpg deleted file mode 100644 index 50b0223dd..000000000 Binary files a/static/images/theme/thumbnail/2x/yscoder-vuepress-theme-indigo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/yubisaki-vuepress-theme-yubisaki-master-2x.jpg b/static/images/theme/thumbnail/2x/yubisaki-vuepress-theme-yubisaki-master-2x.jpg deleted file mode 100644 index 27f1403d4..000000000 Binary files a/static/images/theme/thumbnail/2x/yubisaki-vuepress-theme-yubisaki-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/yulijia-freshman21-2x.jpg b/static/images/theme/thumbnail/2x/yulijia-freshman21-2x.jpg new file mode 100644 index 000000000..829ef1d9a Binary files /dev/null and b/static/images/theme/thumbnail/2x/yulijia-freshman21-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/yulijia-freshman21-master-2x.jpg b/static/images/theme/thumbnail/2x/yulijia-freshman21-master-2x.jpg deleted file mode 100644 index f419f1c57..000000000 Binary files a/static/images/theme/thumbnail/2x/yulijia-freshman21-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/yursan9-manis-hugo-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/yursan9-manis-hugo-theme-master-2x.jpg deleted file mode 100644 index e86766ccc..000000000 Binary files a/static/images/theme/thumbnail/2x/yursan9-manis-hugo-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/yvesespinosa-jekyll-html5up-fractal-master-2x.jpg b/static/images/theme/thumbnail/2x/yvesespinosa-jekyll-html5up-fractal-master-2x.jpg deleted file mode 100644 index ac5421104..000000000 Binary files a/static/images/theme/thumbnail/2x/yvesespinosa-jekyll-html5up-fractal-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/zeespire-one-free-2x.jpg b/static/images/theme/thumbnail/2x/zeespire-one-free-2x.jpg new file mode 100644 index 000000000..350f3a521 Binary files /dev/null and b/static/images/theme/thumbnail/2x/zeespire-one-free-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/zerostaticthemes-hugo-atlantic-theme-2x.jpg b/static/images/theme/thumbnail/2x/zerostaticthemes-hugo-atlantic-theme-2x.jpg new file mode 100644 index 000000000..d52aa3307 Binary files /dev/null and b/static/images/theme/thumbnail/2x/zerostaticthemes-hugo-atlantic-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/zerostaticthemes-hugo-serif-theme-2x.jpg b/static/images/theme/thumbnail/2x/zerostaticthemes-hugo-serif-theme-2x.jpg new file mode 100644 index 000000000..9b82cf8f9 Binary files /dev/null and b/static/images/theme/thumbnail/2x/zerostaticthemes-hugo-serif-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/zerostaticthemes-hugo-serif-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/zerostaticthemes-hugo-serif-theme-master-2x.jpg deleted file mode 100644 index d69290688..000000000 Binary files a/static/images/theme/thumbnail/2x/zerostaticthemes-hugo-serif-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/zerostaticthemes-hugo-winston-theme-2x.jpg b/static/images/theme/thumbnail/2x/zerostaticthemes-hugo-winston-theme-2x.jpg new file mode 100644 index 000000000..6ed881b01 Binary files /dev/null and b/static/images/theme/thumbnail/2x/zerostaticthemes-hugo-winston-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/zerostaticthemes-jekyll-atlantic-theme-2x.jpg b/static/images/theme/thumbnail/2x/zerostaticthemes-jekyll-atlantic-theme-2x.jpg new file mode 100644 index 000000000..b06ef169e Binary files /dev/null and b/static/images/theme/thumbnail/2x/zerostaticthemes-jekyll-atlantic-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/zerostaticthemes-jekyll-serif-theme-2x.jpg b/static/images/theme/thumbnail/2x/zerostaticthemes-jekyll-serif-theme-2x.jpg new file mode 100644 index 000000000..ddeafd0c2 Binary files /dev/null and b/static/images/theme/thumbnail/2x/zerostaticthemes-jekyll-serif-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/zerostaticthemes-jekyll-serif-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/zerostaticthemes-jekyll-serif-theme-master-2x.jpg deleted file mode 100644 index 4f34c442b..000000000 Binary files a/static/images/theme/thumbnail/2x/zerostaticthemes-jekyll-serif-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/zhaohuabing-hugo-theme-cleanwhite-2x.jpg b/static/images/theme/thumbnail/2x/zhaohuabing-hugo-theme-cleanwhite-2x.jpg new file mode 100644 index 000000000..3837c5cdb Binary files /dev/null and b/static/images/theme/thumbnail/2x/zhaohuabing-hugo-theme-cleanwhite-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/zhaohuabing-hugo-theme-cleanwhite-master-2x.jpg b/static/images/theme/thumbnail/2x/zhaohuabing-hugo-theme-cleanwhite-master-2x.jpg deleted file mode 100644 index bf5e36fa4..000000000 Binary files a/static/images/theme/thumbnail/2x/zhaohuabing-hugo-theme-cleanwhite-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/zhe-hugo-theme-slim-master-2x.jpg b/static/images/theme/thumbnail/2x/zhe-hugo-theme-slim-master-2x.jpg deleted file mode 100644 index c40ef805a..000000000 Binary files a/static/images/theme/thumbnail/2x/zhe-hugo-theme-slim-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/zhonger-jekyll-theme-h2o-ac-2x.jpg b/static/images/theme/thumbnail/2x/zhonger-jekyll-theme-h2o-ac-2x.jpg new file mode 100644 index 000000000..e49eae401 Binary files /dev/null and b/static/images/theme/thumbnail/2x/zhonger-jekyll-theme-h2o-ac-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/zivong-jekyll-theme-hydure-2x.jpg b/static/images/theme/thumbnail/2x/zivong-jekyll-theme-hydure-2x.jpg new file mode 100644 index 000000000..a9ab79410 Binary files /dev/null and b/static/images/theme/thumbnail/2x/zivong-jekyll-theme-hydure-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/zwbetz-gh-cayman-hugo-theme-2x.jpg b/static/images/theme/thumbnail/2x/zwbetz-gh-cayman-hugo-theme-2x.jpg new file mode 100644 index 000000000..3a79b9a60 Binary files /dev/null and b/static/images/theme/thumbnail/2x/zwbetz-gh-cayman-hugo-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/zwbetz-gh-cayman-hugo-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/zwbetz-gh-cayman-hugo-theme-master-2x.jpg deleted file mode 100644 index f7ac03239..000000000 Binary files a/static/images/theme/thumbnail/2x/zwbetz-gh-cayman-hugo-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/zwbetz-gh-cupper-hugo-theme-2x.jpg b/static/images/theme/thumbnail/2x/zwbetz-gh-cupper-hugo-theme-2x.jpg new file mode 100644 index 000000000..1a30f1725 Binary files /dev/null and b/static/images/theme/thumbnail/2x/zwbetz-gh-cupper-hugo-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/zwbetz-gh-cupper-hugo-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/zwbetz-gh-cupper-hugo-theme-master-2x.jpg deleted file mode 100644 index 744f91282..000000000 Binary files a/static/images/theme/thumbnail/2x/zwbetz-gh-cupper-hugo-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/zwbetz-gh-minimal-bootstrap-hugo-theme-2x.jpg b/static/images/theme/thumbnail/2x/zwbetz-gh-minimal-bootstrap-hugo-theme-2x.jpg new file mode 100644 index 000000000..85b595028 Binary files /dev/null and b/static/images/theme/thumbnail/2x/zwbetz-gh-minimal-bootstrap-hugo-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/zwbetz-gh-minimal-bootstrap-hugo-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/zwbetz-gh-minimal-bootstrap-hugo-theme-master-2x.jpg deleted file mode 100644 index a558c2f7f..000000000 Binary files a/static/images/theme/thumbnail/2x/zwbetz-gh-minimal-bootstrap-hugo-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/zwbetz-gh-papercss-hugo-theme-2x.jpg b/static/images/theme/thumbnail/2x/zwbetz-gh-papercss-hugo-theme-2x.jpg new file mode 100644 index 000000000..52c6d3878 Binary files /dev/null and b/static/images/theme/thumbnail/2x/zwbetz-gh-papercss-hugo-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/zwbetz-gh-papercss-hugo-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/zwbetz-gh-papercss-hugo-theme-master-2x.jpg deleted file mode 100644 index f415b9408..000000000 Binary files a/static/images/theme/thumbnail/2x/zwbetz-gh-papercss-hugo-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/zwbetz-gh-vanilla-bootstrap-hugo-theme-2x.jpg b/static/images/theme/thumbnail/2x/zwbetz-gh-vanilla-bootstrap-hugo-theme-2x.jpg new file mode 100644 index 000000000..3fdf0bfeb Binary files /dev/null and b/static/images/theme/thumbnail/2x/zwbetz-gh-vanilla-bootstrap-hugo-theme-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/zwbetz-gh-vanilla-bootstrap-hugo-theme-master-2x.jpg b/static/images/theme/thumbnail/2x/zwbetz-gh-vanilla-bootstrap-hugo-theme-master-2x.jpg deleted file mode 100644 index f53e1e520..000000000 Binary files a/static/images/theme/thumbnail/2x/zwbetz-gh-vanilla-bootstrap-hugo-theme-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/zxixia-jekyll-xixia-gh-pages-2x.jpg b/static/images/theme/thumbnail/2x/zxixia-jekyll-xixia-gh-pages-2x.jpg deleted file mode 100644 index 7f4218536..000000000 Binary files a/static/images/theme/thumbnail/2x/zxixia-jekyll-xixia-gh-pages-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/zzossig-hugo-theme-zdoc-master-2x.jpg b/static/images/theme/thumbnail/2x/zzossig-hugo-theme-zdoc-master-2x.jpg deleted file mode 100644 index 922c432b1..000000000 Binary files a/static/images/theme/thumbnail/2x/zzossig-hugo-theme-zdoc-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/zzossig-hugo-theme-zzo-master-2x.jpg b/static/images/theme/thumbnail/2x/zzossig-hugo-theme-zzo-master-2x.jpg deleted file mode 100644 index 853611013..000000000 Binary files a/static/images/theme/thumbnail/2x/zzossig-hugo-theme-zzo-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/2x/zzzmisa-hugo-theme-doors-2x.jpg b/static/images/theme/thumbnail/2x/zzzmisa-hugo-theme-doors-2x.jpg new file mode 100644 index 000000000..bce55932b Binary files /dev/null and b/static/images/theme/thumbnail/2x/zzzmisa-hugo-theme-doors-2x.jpg differ diff --git a/static/images/theme/thumbnail/2x/zzzmisa-hugo-theme-doors-master-2x.jpg b/static/images/theme/thumbnail/2x/zzzmisa-hugo-theme-doors-master-2x.jpg deleted file mode 100644 index 1a95516d4..000000000 Binary files a/static/images/theme/thumbnail/2x/zzzmisa-hugo-theme-doors-master-2x.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/416serg-gatsby-starter-lightbox-master.jpg b/static/images/theme/thumbnail/416serg-gatsby-starter-lightbox-master.jpg deleted file mode 100644 index 726dee056..000000000 Binary files a/static/images/theme/thumbnail/416serg-gatsby-starter-lightbox-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/416serg-gatsby-starter-lightbox.jpg b/static/images/theme/thumbnail/416serg-gatsby-starter-lightbox.jpg new file mode 100644 index 000000000..b95fea724 Binary files /dev/null and b/static/images/theme/thumbnail/416serg-gatsby-starter-lightbox.jpg differ diff --git a/static/images/theme/thumbnail/526avijitgupta-gokarna.jpg b/static/images/theme/thumbnail/526avijitgupta-gokarna.jpg new file mode 100644 index 000000000..8f42c2d00 Binary files /dev/null and b/static/images/theme/thumbnail/526avijitgupta-gokarna.jpg differ diff --git a/static/images/theme/thumbnail/a9kitkumar-gatsby-ecommerce-master.jpg b/static/images/theme/thumbnail/a9kitkumar-gatsby-ecommerce-master.jpg deleted file mode 100644 index 5b922bf2f..000000000 Binary files a/static/images/theme/thumbnail/a9kitkumar-gatsby-ecommerce-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/a9kitkumar-gatsby-ecommerce.jpg b/static/images/theme/thumbnail/a9kitkumar-gatsby-ecommerce.jpg new file mode 100644 index 000000000..3549bfdca Binary files /dev/null and b/static/images/theme/thumbnail/a9kitkumar-gatsby-ecommerce.jpg differ diff --git a/static/images/theme/thumbnail/aanupam23-hugo-sugoi-master.jpg b/static/images/theme/thumbnail/aanupam23-hugo-sugoi-master.jpg deleted file mode 100644 index 27d2971de..000000000 Binary files a/static/images/theme/thumbnail/aanupam23-hugo-sugoi-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/aanupam23-hugo-sugoi.jpg b/static/images/theme/thumbnail/aanupam23-hugo-sugoi.jpg new file mode 100644 index 000000000..39623a8c3 Binary files /dev/null and b/static/images/theme/thumbnail/aanupam23-hugo-sugoi.jpg differ diff --git a/static/images/theme/thumbnail/abhaynikam-gatsby-nice-blog-master.jpg b/static/images/theme/thumbnail/abhaynikam-gatsby-nice-blog-master.jpg deleted file mode 100644 index ad59d3cca..000000000 Binary files a/static/images/theme/thumbnail/abhaynikam-gatsby-nice-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/abhaynikam-gatsby-nice-blog.jpg b/static/images/theme/thumbnail/abhaynikam-gatsby-nice-blog.jpg new file mode 100644 index 000000000..f9c083fcd Binary files /dev/null and b/static/images/theme/thumbnail/abhaynikam-gatsby-nice-blog.jpg differ diff --git a/static/images/theme/thumbnail/abhinavs-cookie.jpg b/static/images/theme/thumbnail/abhinavs-cookie.jpg new file mode 100644 index 000000000..5f3b2ccaa Binary files /dev/null and b/static/images/theme/thumbnail/abhinavs-cookie.jpg differ diff --git a/static/images/theme/thumbnail/abhinavs-moonwalk-master.jpg b/static/images/theme/thumbnail/abhinavs-moonwalk-master.jpg deleted file mode 100644 index 061a07200..000000000 Binary files a/static/images/theme/thumbnail/abhinavs-moonwalk-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/abhinavs-moonwalk.jpg b/static/images/theme/thumbnail/abhinavs-moonwalk.jpg new file mode 100644 index 000000000..03baa6ca0 Binary files /dev/null and b/static/images/theme/thumbnail/abhinavs-moonwalk.jpg differ diff --git a/static/images/theme/thumbnail/abhn-soot-spirits-master.jpg b/static/images/theme/thumbnail/abhn-soot-spirits-master.jpg deleted file mode 100644 index dedc05417..000000000 Binary files a/static/images/theme/thumbnail/abhn-soot-spirits-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/abhn-soot-spirits.jpg b/static/images/theme/thumbnail/abhn-soot-spirits.jpg new file mode 100644 index 000000000..03d7bce2e Binary files /dev/null and b/static/images/theme/thumbnail/abhn-soot-spirits.jpg differ diff --git a/static/images/theme/thumbnail/abhn-wall-e-master.jpg b/static/images/theme/thumbnail/abhn-wall-e-master.jpg deleted file mode 100644 index 031a37b97..000000000 Binary files a/static/images/theme/thumbnail/abhn-wall-e-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/abhn-wall-e.jpg b/static/images/theme/thumbnail/abhn-wall-e.jpg new file mode 100644 index 000000000..627abd802 Binary files /dev/null and b/static/images/theme/thumbnail/abhn-wall-e.jpg differ diff --git a/static/images/theme/thumbnail/achariam-elyxel-master.jpg b/static/images/theme/thumbnail/achariam-elyxel-master.jpg deleted file mode 100644 index 4de013d32..000000000 Binary files a/static/images/theme/thumbnail/achariam-elyxel-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/achary-engimo-master.jpg b/static/images/theme/thumbnail/achary-engimo-master.jpg deleted file mode 100644 index 7052b4bac..000000000 Binary files a/static/images/theme/thumbnail/achary-engimo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/achary-engimo.jpg b/static/images/theme/thumbnail/achary-engimo.jpg new file mode 100644 index 000000000..09406a84c Binary files /dev/null and b/static/images/theme/thumbnail/achary-engimo.jpg differ diff --git a/static/images/theme/thumbnail/act-labs-gatsby-starter-act-blog-master.jpg b/static/images/theme/thumbnail/act-labs-gatsby-starter-act-blog-master.jpg deleted file mode 100644 index 6465a95cc..000000000 Binary files a/static/images/theme/thumbnail/act-labs-gatsby-starter-act-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/act-labs-gatsby-starter-act-blog.jpg b/static/images/theme/thumbnail/act-labs-gatsby-starter-act-blog.jpg new file mode 100644 index 000000000..701c706df Binary files /dev/null and b/static/images/theme/thumbnail/act-labs-gatsby-starter-act-blog.jpg differ diff --git a/static/images/theme/thumbnail/adisaktijrs-hexo-theme-minima-master.jpg b/static/images/theme/thumbnail/adisaktijrs-hexo-theme-minima-master.jpg deleted file mode 100644 index f63dc2fae..000000000 Binary files a/static/images/theme/thumbnail/adisaktijrs-hexo-theme-minima-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/adisaktijrs-hexo-theme-minima.jpg b/static/images/theme/thumbnail/adisaktijrs-hexo-theme-minima.jpg new file mode 100644 index 000000000..0aef1b373 Binary files /dev/null and b/static/images/theme/thumbnail/adisaktijrs-hexo-theme-minima.jpg differ diff --git a/static/images/theme/thumbnail/adityatelange-hugo-papermod-master.jpg b/static/images/theme/thumbnail/adityatelange-hugo-papermod-master.jpg deleted file mode 100644 index 6eb7d2272..000000000 Binary files a/static/images/theme/thumbnail/adityatelange-hugo-papermod-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/adityatelange-hugo-papermod.jpg b/static/images/theme/thumbnail/adityatelange-hugo-papermod.jpg new file mode 100644 index 000000000..55a28c8b9 Binary files /dev/null and b/static/images/theme/thumbnail/adityatelange-hugo-papermod.jpg differ diff --git a/static/images/theme/thumbnail/adueck-cayman-blog-master.jpg b/static/images/theme/thumbnail/adueck-cayman-blog-master.jpg deleted file mode 100644 index e4459da07..000000000 Binary files a/static/images/theme/thumbnail/adueck-cayman-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/adueck-cayman-blog.jpg b/static/images/theme/thumbnail/adueck-cayman-blog.jpg new file mode 100644 index 000000000..700e3fb1e Binary files /dev/null and b/static/images/theme/thumbnail/adueck-cayman-blog.jpg differ diff --git a/static/images/theme/thumbnail/adueck-good-clean-read-master.jpg b/static/images/theme/thumbnail/adueck-good-clean-read-master.jpg deleted file mode 100644 index a723ebc8e..000000000 Binary files a/static/images/theme/thumbnail/adueck-good-clean-read-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/adueck-good-clean-read.jpg b/static/images/theme/thumbnail/adueck-good-clean-read.jpg new file mode 100644 index 000000000..713243ee1 Binary files /dev/null and b/static/images/theme/thumbnail/adueck-good-clean-read.jpg differ diff --git a/static/images/theme/thumbnail/aerohub-hugo-faq-theme-master.jpg b/static/images/theme/thumbnail/aerohub-hugo-faq-theme-master.jpg deleted file mode 100644 index 693fa6c8c..000000000 Binary files a/static/images/theme/thumbnail/aerohub-hugo-faq-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/aerohub-hugo-identity-theme-master.jpg b/static/images/theme/thumbnail/aerohub-hugo-identity-theme-master.jpg deleted file mode 100644 index e67fb79b5..000000000 Binary files a/static/images/theme/thumbnail/aerohub-hugo-identity-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/aerohub-hugo-orbit-theme-master.jpg b/static/images/theme/thumbnail/aerohub-hugo-orbit-theme-master.jpg deleted file mode 100644 index d989b7d7c..000000000 Binary files a/static/images/theme/thumbnail/aerohub-hugo-orbit-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/aerohub-hugrid-master.jpg b/static/images/theme/thumbnail/aerohub-hugrid-master.jpg deleted file mode 100644 index fd221409b..000000000 Binary files a/static/images/theme/thumbnail/aerohub-hugrid-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/agility-agility-gatsby-starter-master.jpg b/static/images/theme/thumbnail/agility-agility-gatsby-starter-master.jpg deleted file mode 100644 index e8659d1b8..000000000 Binary files a/static/images/theme/thumbnail/agility-agility-gatsby-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/agility-agility-gatsby-starter.jpg b/static/images/theme/thumbnail/agility-agility-gatsby-starter.jpg new file mode 100644 index 000000000..b66dcf5d7 Binary files /dev/null and b/static/images/theme/thumbnail/agility-agility-gatsby-starter.jpg differ diff --git a/static/images/theme/thumbnail/agusmakmun-agusmakmun.github.io-master.jpg b/static/images/theme/thumbnail/agusmakmun-agusmakmun.github.io-master.jpg deleted file mode 100644 index 21c42a3f7..000000000 Binary files a/static/images/theme/thumbnail/agusmakmun-agusmakmun.github.io-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/agusmakmun-agusmakmun.github.io.jpg b/static/images/theme/thumbnail/agusmakmun-agusmakmun.github.io.jpg new file mode 100644 index 000000000..2d42f7aca Binary files /dev/null and b/static/images/theme/thumbnail/agusmakmun-agusmakmun.github.io.jpg differ diff --git a/static/images/theme/thumbnail/aigarsdz-brume-master.jpg b/static/images/theme/thumbnail/aigarsdz-brume-master.jpg deleted file mode 100644 index 311b6cc89..000000000 Binary files a/static/images/theme/thumbnail/aigarsdz-brume-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/aigarsdz-brume.jpg b/static/images/theme/thumbnail/aigarsdz-brume.jpg new file mode 100644 index 000000000..3b807addf Binary files /dev/null and b/static/images/theme/thumbnail/aigarsdz-brume.jpg differ diff --git a/static/images/theme/thumbnail/airrayagroupwebdesign-sciblog-master.jpg b/static/images/theme/thumbnail/airrayagroupwebdesign-sciblog-master.jpg deleted file mode 100644 index 95c71c216..000000000 Binary files a/static/images/theme/thumbnail/airrayagroupwebdesign-sciblog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ajayns-gatsby-absurd-master.jpg b/static/images/theme/thumbnail/ajayns-gatsby-absurd-master.jpg deleted file mode 100644 index d016ab724..000000000 Binary files a/static/images/theme/thumbnail/ajayns-gatsby-absurd-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ajayns-gatsby-absurd.jpg b/static/images/theme/thumbnail/ajayns-gatsby-absurd.jpg new file mode 100644 index 000000000..1886cc06e Binary files /dev/null and b/static/images/theme/thumbnail/ajayns-gatsby-absurd.jpg differ diff --git a/static/images/theme/thumbnail/akiritsu-project-negya-master.jpg b/static/images/theme/thumbnail/akiritsu-project-negya-master.jpg deleted file mode 100644 index 7efa50a02..000000000 Binary files a/static/images/theme/thumbnail/akiritsu-project-negya-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/akiritsu-project-negya.jpg b/static/images/theme/thumbnail/akiritsu-project-negya.jpg new file mode 100644 index 000000000..e59e4012b Binary files /dev/null and b/static/images/theme/thumbnail/akiritsu-project-negya.jpg differ diff --git a/static/images/theme/thumbnail/aksakalli-jekyll-doc-theme-gh-pages.jpg b/static/images/theme/thumbnail/aksakalli-jekyll-doc-theme-gh-pages.jpg deleted file mode 100644 index fa7eff9d0..000000000 Binary files a/static/images/theme/thumbnail/aksakalli-jekyll-doc-theme-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/aksakalli-jekyll-doc-theme.jpg b/static/images/theme/thumbnail/aksakalli-jekyll-doc-theme.jpg new file mode 100644 index 000000000..5d1c059cf Binary files /dev/null and b/static/images/theme/thumbnail/aksakalli-jekyll-doc-theme.jpg differ diff --git a/static/images/theme/thumbnail/akshayagarwal007-jekyll-mono-master.jpg b/static/images/theme/thumbnail/akshayagarwal007-jekyll-mono-master.jpg deleted file mode 100644 index c638f7932..000000000 Binary files a/static/images/theme/thumbnail/akshayagarwal007-jekyll-mono-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/akzhy-gatsby-starter-elemental-master.jpg b/static/images/theme/thumbnail/akzhy-gatsby-starter-elemental-master.jpg deleted file mode 100644 index 85447a4b4..000000000 Binary files a/static/images/theme/thumbnail/akzhy-gatsby-starter-elemental-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/akzhy-gatsby-starter-elemental.jpg b/static/images/theme/thumbnail/akzhy-gatsby-starter-elemental.jpg new file mode 100644 index 000000000..f69c30cb6 Binary files /dev/null and b/static/images/theme/thumbnail/akzhy-gatsby-starter-elemental.jpg differ diff --git a/static/images/theme/thumbnail/alainpham-alainpham.github.io-master.jpg b/static/images/theme/thumbnail/alainpham-alainpham.github.io-master.jpg deleted file mode 100644 index ade1fb33c..000000000 Binary files a/static/images/theme/thumbnail/alainpham-alainpham.github.io-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/alainpham-alainpham.github.io.jpg b/static/images/theme/thumbnail/alainpham-alainpham.github.io.jpg new file mode 100644 index 000000000..b7c34fd61 Binary files /dev/null and b/static/images/theme/thumbnail/alainpham-alainpham.github.io.jpg differ diff --git a/static/images/theme/thumbnail/alanorth-hugo-theme-bootstrap4-blog-master.jpg b/static/images/theme/thumbnail/alanorth-hugo-theme-bootstrap4-blog-master.jpg deleted file mode 100644 index 2229a6cd1..000000000 Binary files a/static/images/theme/thumbnail/alanorth-hugo-theme-bootstrap4-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/alanorth-hugo-theme-bootstrap4-blog.jpg b/static/images/theme/thumbnail/alanorth-hugo-theme-bootstrap4-blog.jpg new file mode 100644 index 000000000..d0bffa821 Binary files /dev/null and b/static/images/theme/thumbnail/alanorth-hugo-theme-bootstrap4-blog.jpg differ diff --git a/static/images/theme/thumbnail/alanta-memoirs-theme-master.jpg b/static/images/theme/thumbnail/alanta-memoirs-theme-master.jpg deleted file mode 100644 index a928734b8..000000000 Binary files a/static/images/theme/thumbnail/alanta-memoirs-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/alanta-memoirs-theme.jpg b/static/images/theme/thumbnail/alanta-memoirs-theme.jpg new file mode 100644 index 000000000..404d5a395 Binary files /dev/null and b/static/images/theme/thumbnail/alanta-memoirs-theme.jpg differ diff --git a/static/images/theme/thumbnail/alex-shpak-hugo-book-master.jpg b/static/images/theme/thumbnail/alex-shpak-hugo-book-master.jpg deleted file mode 100644 index 5fae4ce3d..000000000 Binary files a/static/images/theme/thumbnail/alex-shpak-hugo-book-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/alex-shpak-hugo-book.jpg b/static/images/theme/thumbnail/alex-shpak-hugo-book.jpg new file mode 100644 index 000000000..847b2cd62 Binary files /dev/null and b/static/images/theme/thumbnail/alex-shpak-hugo-book.jpg differ diff --git a/static/images/theme/thumbnail/alexander-heimbuch-vuepress-theme-casper-master.jpg b/static/images/theme/thumbnail/alexander-heimbuch-vuepress-theme-casper-master.jpg deleted file mode 100644 index 9c06d806a..000000000 Binary files a/static/images/theme/thumbnail/alexander-heimbuch-vuepress-theme-casper-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/alexander-heimbuch-vuepress-theme-casper.jpg b/static/images/theme/thumbnail/alexander-heimbuch-vuepress-theme-casper.jpg new file mode 100644 index 000000000..a404426b4 Binary files /dev/null and b/static/images/theme/thumbnail/alexander-heimbuch-vuepress-theme-casper.jpg differ diff --git a/static/images/theme/thumbnail/alexanderussell-progress-for-jekyll-master.jpg b/static/images/theme/thumbnail/alexanderussell-progress-for-jekyll-master.jpg deleted file mode 100644 index f0b717e36..000000000 Binary files a/static/images/theme/thumbnail/alexanderussell-progress-for-jekyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/alexanderussell-progress-for-jekyll.jpg b/static/images/theme/thumbnail/alexanderussell-progress-for-jekyll.jpg new file mode 100644 index 000000000..c87fa9831 Binary files /dev/null and b/static/images/theme/thumbnail/alexanderussell-progress-for-jekyll.jpg differ diff --git a/static/images/theme/thumbnail/alexcarpenter-butane-jekyll-theme-gh-pages.jpg b/static/images/theme/thumbnail/alexcarpenter-butane-jekyll-theme-gh-pages.jpg deleted file mode 100644 index 6009aabd7..000000000 Binary files a/static/images/theme/thumbnail/alexcarpenter-butane-jekyll-theme-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/alexcarpenter-butane-jekyll-theme.jpg b/static/images/theme/thumbnail/alexcarpenter-butane-jekyll-theme.jpg new file mode 100644 index 000000000..e979f21d7 Binary files /dev/null and b/static/images/theme/thumbnail/alexcarpenter-butane-jekyll-theme.jpg differ diff --git a/static/images/theme/thumbnail/alexcarpenter-library-jekyll-theme-master.jpg b/static/images/theme/thumbnail/alexcarpenter-library-jekyll-theme-master.jpg deleted file mode 100644 index 26ef0ee10..000000000 Binary files a/static/images/theme/thumbnail/alexcarpenter-library-jekyll-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/alexcarpenter-material-jekyll-theme-master.jpg b/static/images/theme/thumbnail/alexcarpenter-material-jekyll-theme-master.jpg deleted file mode 100644 index 26ef0ee10..000000000 Binary files a/static/images/theme/thumbnail/alexcarpenter-material-jekyll-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/alexfinn-simple-a-master.jpg b/static/images/theme/thumbnail/alexfinn-simple-a-master.jpg deleted file mode 100644 index d833fdcfb..000000000 Binary files a/static/images/theme/thumbnail/alexfinn-simple-a-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/alexfinn-simple-a.jpg b/static/images/theme/thumbnail/alexfinn-simple-a.jpg new file mode 100644 index 000000000..0cbef748e Binary files /dev/null and b/static/images/theme/thumbnail/alexfinn-simple-a.jpg differ diff --git a/static/images/theme/thumbnail/aliifam-jdox.jpg b/static/images/theme/thumbnail/aliifam-jdox.jpg new file mode 100644 index 000000000..1d3a0eb04 Binary files /dev/null and b/static/images/theme/thumbnail/aliifam-jdox.jpg differ diff --git a/static/images/theme/thumbnail/alixedi-typewriter-master.jpg b/static/images/theme/thumbnail/alixedi-typewriter-master.jpg deleted file mode 100644 index 71f458b56..000000000 Binary files a/static/images/theme/thumbnail/alixedi-typewriter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/alixedi-typewriter.jpg b/static/images/theme/thumbnail/alixedi-typewriter.jpg new file mode 100644 index 000000000..1202d6126 Binary files /dev/null and b/static/images/theme/thumbnail/alixedi-typewriter.jpg differ diff --git a/static/images/theme/thumbnail/allnightgrocery-hugo-theme-blueberry-detox-master.jpg b/static/images/theme/thumbnail/allnightgrocery-hugo-theme-blueberry-detox-master.jpg deleted file mode 100644 index e8dd66b79..000000000 Binary files a/static/images/theme/thumbnail/allnightgrocery-hugo-theme-blueberry-detox-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/alperenbozkurt-jblog-master.jpg b/static/images/theme/thumbnail/alperenbozkurt-jblog-master.jpg deleted file mode 100644 index 742e2273d..000000000 Binary files a/static/images/theme/thumbnail/alperenbozkurt-jblog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/alperenbozkurt-jblog.jpg b/static/images/theme/thumbnail/alperenbozkurt-jblog.jpg new file mode 100644 index 000000000..ea81c6294 Binary files /dev/null and b/static/images/theme/thumbnail/alperenbozkurt-jblog.jpg differ diff --git a/static/images/theme/thumbnail/altcointrading-trading-master.jpg b/static/images/theme/thumbnail/altcointrading-trading-master.jpg deleted file mode 100644 index bdeab5c68..000000000 Binary files a/static/images/theme/thumbnail/altcointrading-trading-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/altcointrading-trading.jpg b/static/images/theme/thumbnail/altcointrading-trading.jpg new file mode 100644 index 000000000..6dceef2f7 Binary files /dev/null and b/static/images/theme/thumbnail/altcointrading-trading.jpg differ diff --git a/static/images/theme/thumbnail/alxshelepenok-gatsby-starter-lumen-master.jpg b/static/images/theme/thumbnail/alxshelepenok-gatsby-starter-lumen-master.jpg deleted file mode 100644 index c80c9667f..000000000 Binary files a/static/images/theme/thumbnail/alxshelepenok-gatsby-starter-lumen-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/alxshelepenok-gatsby-starter-lumen.jpg b/static/images/theme/thumbnail/alxshelepenok-gatsby-starter-lumen.jpg new file mode 100644 index 000000000..d898df7e7 Binary files /dev/null and b/static/images/theme/thumbnail/alxshelepenok-gatsby-starter-lumen.jpg differ diff --git a/static/images/theme/thumbnail/alynxzhou-hexo-theme-aria-master.jpg b/static/images/theme/thumbnail/alynxzhou-hexo-theme-aria-master.jpg deleted file mode 100644 index b45acec13..000000000 Binary files a/static/images/theme/thumbnail/alynxzhou-hexo-theme-aria-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/alynxzhou-hexo-theme-aria.jpg b/static/images/theme/thumbnail/alynxzhou-hexo-theme-aria.jpg new file mode 100644 index 000000000..4dda3f132 Binary files /dev/null and b/static/images/theme/thumbnail/alynxzhou-hexo-theme-aria.jpg differ diff --git a/static/images/theme/thumbnail/amandeepmittal-gatsby-bulma-quickstart-master.jpg b/static/images/theme/thumbnail/amandeepmittal-gatsby-bulma-quickstart-master.jpg deleted file mode 100644 index 3644d7b30..000000000 Binary files a/static/images/theme/thumbnail/amandeepmittal-gatsby-bulma-quickstart-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/amandeepmittal-gatsby-bulma-quickstart.jpg b/static/images/theme/thumbnail/amandeepmittal-gatsby-bulma-quickstart.jpg new file mode 100644 index 000000000..c574e6cb5 Binary files /dev/null and b/static/images/theme/thumbnail/amandeepmittal-gatsby-bulma-quickstart.jpg differ diff --git a/static/images/theme/thumbnail/ammarjabakji-gatsby-markdown-blog-starter-master.jpg b/static/images/theme/thumbnail/ammarjabakji-gatsby-markdown-blog-starter-master.jpg deleted file mode 100644 index 7089a87c1..000000000 Binary files a/static/images/theme/thumbnail/ammarjabakji-gatsby-markdown-blog-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ammarjabakji-gatsby-markdown-blog-starter.jpg b/static/images/theme/thumbnail/ammarjabakji-gatsby-markdown-blog-starter.jpg new file mode 100644 index 000000000..7f571c6c6 Binary files /dev/null and b/static/images/theme/thumbnail/ammarjabakji-gatsby-markdown-blog-starter.jpg differ diff --git a/static/images/theme/thumbnail/anandubajith-block-log-master.jpg b/static/images/theme/thumbnail/anandubajith-block-log-master.jpg deleted file mode 100644 index 79cd8cb49..000000000 Binary files a/static/images/theme/thumbnail/anandubajith-block-log-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/andrewbanchich-forty-jekyll-theme-master.jpg b/static/images/theme/thumbnail/andrewbanchich-forty-jekyll-theme-master.jpg deleted file mode 100644 index 0dda614bd..000000000 Binary files a/static/images/theme/thumbnail/andrewbanchich-forty-jekyll-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/andrewbanchich-forty-jekyll-theme.jpg b/static/images/theme/thumbnail/andrewbanchich-forty-jekyll-theme.jpg new file mode 100644 index 000000000..3a1ce9e56 Binary files /dev/null and b/static/images/theme/thumbnail/andrewbanchich-forty-jekyll-theme.jpg differ diff --git a/static/images/theme/thumbnail/andrewhwanpark-brutalist-blog.jpg b/static/images/theme/thumbnail/andrewhwanpark-brutalist-blog.jpg new file mode 100644 index 000000000..b3b3cb7ce Binary files /dev/null and b/static/images/theme/thumbnail/andrewhwanpark-brutalist-blog.jpg differ diff --git a/static/images/theme/thumbnail/andrewhwanpark-dark-poole-master.jpg b/static/images/theme/thumbnail/andrewhwanpark-dark-poole-master.jpg deleted file mode 100644 index 00404c862..000000000 Binary files a/static/images/theme/thumbnail/andrewhwanpark-dark-poole-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/andrewhwanpark-dark-poole.jpg b/static/images/theme/thumbnail/andrewhwanpark-dark-poole.jpg new file mode 100644 index 000000000..1af7845e3 Binary files /dev/null and b/static/images/theme/thumbnail/andrewhwanpark-dark-poole.jpg differ diff --git a/static/images/theme/thumbnail/andybelldesign-hylia-master.jpg b/static/images/theme/thumbnail/andybelldesign-hylia-master.jpg deleted file mode 100644 index 11fcf23ed..000000000 Binary files a/static/images/theme/thumbnail/andybelldesign-hylia-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/andybelldesign-hylia.jpg b/static/images/theme/thumbnail/andybelldesign-hylia.jpg new file mode 100644 index 000000000..0eba2ea98 Binary files /dev/null and b/static/images/theme/thumbnail/andybelldesign-hylia.jpg differ diff --git a/static/images/theme/thumbnail/andykenward-gatsby-starter-default-typescript-master.jpg b/static/images/theme/thumbnail/andykenward-gatsby-starter-default-typescript-master.jpg deleted file mode 100644 index 8ab13bd46..000000000 Binary files a/static/images/theme/thumbnail/andykenward-gatsby-starter-default-typescript-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/andykenward-gatsby-starter-default-typescript.jpg b/static/images/theme/thumbnail/andykenward-gatsby-starter-default-typescript.jpg new file mode 100644 index 000000000..57c9d1c9d Binary files /dev/null and b/static/images/theme/thumbnail/andykenward-gatsby-starter-default-typescript.jpg differ diff --git a/static/images/theme/thumbnail/angelostavrow-indigo-master.jpg b/static/images/theme/thumbnail/angelostavrow-indigo-master.jpg deleted file mode 100644 index 413e08b23..000000000 Binary files a/static/images/theme/thumbnail/angelostavrow-indigo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ankit-kumar-jat-limp-dark-master.jpg b/static/images/theme/thumbnail/ankit-kumar-jat-limp-dark-master.jpg deleted file mode 100644 index 0659299e9..000000000 Binary files a/static/images/theme/thumbnail/ankit-kumar-jat-limp-dark-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ankitsultana-accent-gh-pages.jpg b/static/images/theme/thumbnail/ankitsultana-accent-gh-pages.jpg deleted file mode 100644 index bddabc6ff..000000000 Binary files a/static/images/theme/thumbnail/ankitsultana-accent-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ankitsultana-accent.jpg b/static/images/theme/thumbnail/ankitsultana-accent.jpg new file mode 100644 index 000000000..b29e25984 Binary files /dev/null and b/static/images/theme/thumbnail/ankitsultana-accent.jpg differ diff --git a/static/images/theme/thumbnail/ankitsultana-chaplin-gh-pages.jpg b/static/images/theme/thumbnail/ankitsultana-chaplin-gh-pages.jpg deleted file mode 100644 index 0233edbf5..000000000 Binary files a/static/images/theme/thumbnail/ankitsultana-chaplin-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ankitsultana-chaplin.jpg b/static/images/theme/thumbnail/ankitsultana-chaplin.jpg new file mode 100644 index 000000000..f00374cf8 Binary files /dev/null and b/static/images/theme/thumbnail/ankitsultana-chaplin.jpg differ diff --git a/static/images/theme/thumbnail/ankitsultana-researcher-gh-pages.jpg b/static/images/theme/thumbnail/ankitsultana-researcher-gh-pages.jpg deleted file mode 100644 index 1943f1d10..000000000 Binary files a/static/images/theme/thumbnail/ankitsultana-researcher-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ankitsultana-researcher.jpg b/static/images/theme/thumbnail/ankitsultana-researcher.jpg new file mode 100644 index 000000000..0f5335ad4 Binary files /dev/null and b/static/images/theme/thumbnail/ankitsultana-researcher.jpg differ diff --git a/static/images/theme/thumbnail/anna-morawska-gatsby-material-design-for-bootstrap-master.jpg b/static/images/theme/thumbnail/anna-morawska-gatsby-material-design-for-bootstrap-master.jpg deleted file mode 100644 index c309f31b3..000000000 Binary files a/static/images/theme/thumbnail/anna-morawska-gatsby-material-design-for-bootstrap-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/anna-morawska-gatsby-material-design-for-bootstrap.jpg b/static/images/theme/thumbnail/anna-morawska-gatsby-material-design-for-bootstrap.jpg new file mode 100644 index 000000000..42809013d Binary files /dev/null and b/static/images/theme/thumbnail/anna-morawska-gatsby-material-design-for-bootstrap.jpg differ diff --git a/static/images/theme/thumbnail/anoun-gatsby-starter-material-business-markdown-master.jpg b/static/images/theme/thumbnail/anoun-gatsby-starter-material-business-markdown-master.jpg deleted file mode 100644 index 0a707de0d..000000000 Binary files a/static/images/theme/thumbnail/anoun-gatsby-starter-material-business-markdown-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/anoun-gatsby-starter-material-business-markdown.jpg b/static/images/theme/thumbnail/anoun-gatsby-starter-material-business-markdown.jpg new file mode 100644 index 000000000..8687d064f Binary files /dev/null and b/static/images/theme/thumbnail/anoun-gatsby-starter-material-business-markdown.jpg differ diff --git a/static/images/theme/thumbnail/antonpolishko-hugo-stellar-theme-master.jpg b/static/images/theme/thumbnail/antonpolishko-hugo-stellar-theme-master.jpg deleted file mode 100644 index 715d03eae..000000000 Binary files a/static/images/theme/thumbnail/antonpolishko-hugo-stellar-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-aerial-master.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-aerial-master.jpg deleted file mode 100644 index 6242ea7b4..000000000 Binary files a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-aerial-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-aerial.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-aerial.jpg new file mode 100644 index 000000000..5e3a7d02a Binary files /dev/null and b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-aerial.jpg differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-casual-master.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-casual-master.jpg deleted file mode 100644 index 2adc45b39..000000000 Binary files a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-casual-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-casual.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-casual.jpg new file mode 100644 index 000000000..13fe32921 Binary files /dev/null and b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-casual.jpg differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-directive-master.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-directive-master.jpg deleted file mode 100644 index 8f519c740..000000000 Binary files a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-directive-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-directive.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-directive.jpg new file mode 100644 index 000000000..5112b9a0d Binary files /dev/null and b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-directive.jpg differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-eventually-master.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-eventually-master.jpg deleted file mode 100644 index f80c05ec4..000000000 Binary files a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-eventually-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-eventually.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-eventually.jpg new file mode 100644 index 000000000..7f8f1342d Binary files /dev/null and b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-eventually.jpg differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-fractal-master.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-fractal-master.jpg deleted file mode 100644 index 867adc3bd..000000000 Binary files a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-fractal-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-fractal.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-fractal.jpg new file mode 100644 index 000000000..481d677a0 Binary files /dev/null and b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-fractal.jpg differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-grayscale-master.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-grayscale-master.jpg deleted file mode 100644 index d89cbd533..000000000 Binary files a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-grayscale-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-grayscale.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-grayscale.jpg new file mode 100644 index 000000000..82409265c Binary files /dev/null and b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-grayscale.jpg differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-highlights-master.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-highlights-master.jpg deleted file mode 100644 index 36328f86b..000000000 Binary files a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-highlights-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-highlights.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-highlights.jpg new file mode 100644 index 000000000..5f7ee50a7 Binary files /dev/null and b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-highlights.jpg differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-hyperspace-master.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-hyperspace-master.jpg deleted file mode 100644 index 3df2b9431..000000000 Binary files a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-hyperspace-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-hyperspace.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-hyperspace.jpg new file mode 100644 index 000000000..8038fc9a9 Binary files /dev/null and b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-hyperspace.jpg differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-identity-master.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-identity-master.jpg deleted file mode 100644 index 95be0875e..000000000 Binary files a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-identity-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-identity.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-identity.jpg new file mode 100644 index 000000000..36e34847a Binary files /dev/null and b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-identity.jpg differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-multiverse-master.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-multiverse-master.jpg deleted file mode 100644 index 5e7d4681a..000000000 Binary files a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-multiverse-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-multiverse.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-multiverse.jpg new file mode 100644 index 000000000..2aa94bbe9 Binary files /dev/null and b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-multiverse.jpg differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-newage-master.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-newage-master.jpg deleted file mode 100644 index af45be867..000000000 Binary files a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-newage-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-newage.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-newage.jpg new file mode 100644 index 000000000..442e086a3 Binary files /dev/null and b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-newage.jpg differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-overflow-master.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-overflow-master.jpg deleted file mode 100644 index c51f03b1f..000000000 Binary files a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-overflow-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-overflow.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-overflow.jpg new file mode 100644 index 000000000..aa5092f47 Binary files /dev/null and b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-overflow.jpg differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-paradigmshift-master.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-paradigmshift-master.jpg deleted file mode 100644 index fec94e7aa..000000000 Binary files a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-paradigmshift-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-paradigmshift.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-paradigmshift.jpg new file mode 100644 index 000000000..ae7cdf831 Binary files /dev/null and b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-paradigmshift.jpg differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-prologue-master.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-prologue-master.jpg deleted file mode 100644 index 74b6e5576..000000000 Binary files a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-prologue-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-prologue.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-prologue.jpg new file mode 100644 index 000000000..86cb72fef Binary files /dev/null and b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-prologue.jpg differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-readonly-master.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-readonly-master.jpg deleted file mode 100644 index ee4a981cf..000000000 Binary files a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-readonly-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-readonly.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-readonly.jpg new file mode 100644 index 000000000..2ff8bc38d Binary files /dev/null and b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-readonly.jpg differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-resume-master.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-resume-master.jpg deleted file mode 100644 index 5c0c64455..000000000 Binary files a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-resume-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-resume.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-resume.jpg new file mode 100644 index 000000000..2bb3e2e26 Binary files /dev/null and b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-resume.jpg differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-solidstate-master.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-solidstate-master.jpg deleted file mode 100644 index 4586f1749..000000000 Binary files a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-solidstate-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-solidstate.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-solidstate.jpg new file mode 100644 index 000000000..112958bcf Binary files /dev/null and b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-solidstate.jpg differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-spectral-master.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-spectral-master.jpg deleted file mode 100644 index 716460a0a..000000000 Binary files a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-spectral-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-spectral.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-spectral.jpg new file mode 100644 index 000000000..689851ebc Binary files /dev/null and b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-spectral.jpg differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-stylish-master.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-stylish-master.jpg deleted file mode 100644 index 95089dd58..000000000 Binary files a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-stylish-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-stylish.jpg b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-stylish.jpg new file mode 100644 index 000000000..745acbae3 Binary files /dev/null and b/static/images/theme/thumbnail/anubhavsrivastava-gatsby-starter-stylish.jpg differ diff --git a/static/images/theme/thumbnail/app-generator-eleventy-soft-ui-design.jpg b/static/images/theme/thumbnail/app-generator-eleventy-soft-ui-design.jpg new file mode 100644 index 000000000..baa2ac535 Binary files /dev/null and b/static/images/theme/thumbnail/app-generator-eleventy-soft-ui-design.jpg differ diff --git a/static/images/theme/thumbnail/app-generator-gatsbyjs-starter-tailwindplay-master.jpg b/static/images/theme/thumbnail/app-generator-gatsbyjs-starter-tailwindplay-master.jpg deleted file mode 100644 index 87cdf1943..000000000 Binary files a/static/images/theme/thumbnail/app-generator-gatsbyjs-starter-tailwindplay-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/app-generator-gatsbyjs-starter-tailwindplay.jpg b/static/images/theme/thumbnail/app-generator-gatsbyjs-starter-tailwindplay.jpg new file mode 100644 index 000000000..bb3051649 Binary files /dev/null and b/static/images/theme/thumbnail/app-generator-gatsbyjs-starter-tailwindplay.jpg differ diff --git a/static/images/theme/thumbnail/appernetic-hugo-nederburg-theme-master.jpg b/static/images/theme/thumbnail/appernetic-hugo-nederburg-theme-master.jpg deleted file mode 100644 index b2ab11fd0..000000000 Binary files a/static/images/theme/thumbnail/appernetic-hugo-nederburg-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/apvarun-blist-hugo-theme.jpg b/static/images/theme/thumbnail/apvarun-blist-hugo-theme.jpg new file mode 100644 index 000000000..f99c24b8a Binary files /dev/null and b/static/images/theme/thumbnail/apvarun-blist-hugo-theme.jpg differ diff --git a/static/images/theme/thumbnail/apvarun-digital-garden-hugo-theme.jpg b/static/images/theme/thumbnail/apvarun-digital-garden-hugo-theme.jpg new file mode 100644 index 000000000..b81c4ed7e Binary files /dev/null and b/static/images/theme/thumbnail/apvarun-digital-garden-hugo-theme.jpg differ diff --git a/static/images/theme/thumbnail/apvarun-productlog-nextjs-theme.jpg b/static/images/theme/thumbnail/apvarun-productlog-nextjs-theme.jpg new file mode 100644 index 000000000..93424782c Binary files /dev/null and b/static/images/theme/thumbnail/apvarun-productlog-nextjs-theme.jpg differ diff --git a/static/images/theme/thumbnail/apvarun-showfolio-hugo-theme.jpg b/static/images/theme/thumbnail/apvarun-showfolio-hugo-theme.jpg new file mode 100644 index 000000000..ec7c13ae3 Binary files /dev/null and b/static/images/theme/thumbnail/apvarun-showfolio-hugo-theme.jpg differ diff --git a/static/images/theme/thumbnail/ar363-eleventy-stylus-blog-theme.jpg b/static/images/theme/thumbnail/ar363-eleventy-stylus-blog-theme.jpg new file mode 100644 index 000000000..8e277e0fe Binary files /dev/null and b/static/images/theme/thumbnail/ar363-eleventy-stylus-blog-theme.jpg differ diff --git a/static/images/theme/thumbnail/arhen-hugo-cereus-pro-theme-master.jpg b/static/images/theme/thumbnail/arhen-hugo-cereus-pro-theme-master.jpg deleted file mode 100644 index 2952e2915..000000000 Binary files a/static/images/theme/thumbnail/arhen-hugo-cereus-pro-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/arhen-hugo-cereus-pro-theme.jpg b/static/images/theme/thumbnail/arhen-hugo-cereus-pro-theme.jpg new file mode 100644 index 000000000..30c10cbac Binary files /dev/null and b/static/images/theme/thumbnail/arhen-hugo-cereus-pro-theme.jpg differ diff --git a/static/images/theme/thumbnail/arjayosma-nextacular.jpg b/static/images/theme/thumbnail/arjayosma-nextacular.jpg new file mode 100644 index 000000000..2b332f504 Binary files /dev/null and b/static/images/theme/thumbnail/arjayosma-nextacular.jpg differ diff --git a/static/images/theme/thumbnail/arkadianriver-spectral-master.jpg b/static/images/theme/thumbnail/arkadianriver-spectral-master.jpg deleted file mode 100644 index 3c6ac9be8..000000000 Binary files a/static/images/theme/thumbnail/arkadianriver-spectral-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/arkadianriver-spectral.jpg b/static/images/theme/thumbnail/arkadianriver-spectral.jpg new file mode 100644 index 000000000..d364aede0 Binary files /dev/null and b/static/images/theme/thumbnail/arkadianriver-spectral.jpg differ diff --git a/static/images/theme/thumbnail/aron-bordin-neo-hpstr-jekyll-theme-master.jpg b/static/images/theme/thumbnail/aron-bordin-neo-hpstr-jekyll-theme-master.jpg deleted file mode 100644 index 66dd3fb88..000000000 Binary files a/static/images/theme/thumbnail/aron-bordin-neo-hpstr-jekyll-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/aron-bordin-neo-hpstr-jekyll-theme.jpg b/static/images/theme/thumbnail/aron-bordin-neo-hpstr-jekyll-theme.jpg new file mode 100644 index 000000000..d46891002 Binary files /dev/null and b/static/images/theme/thumbnail/aron-bordin-neo-hpstr-jekyll-theme.jpg differ diff --git a/static/images/theme/thumbnail/arpitbatra123-eleventy-blog-mnml-master.jpg b/static/images/theme/thumbnail/arpitbatra123-eleventy-blog-mnml-master.jpg deleted file mode 100644 index 72f754b74..000000000 Binary files a/static/images/theme/thumbnail/arpitbatra123-eleventy-blog-mnml-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/arpitbatra123-eleventy-blog-mnml.jpg b/static/images/theme/thumbnail/arpitbatra123-eleventy-blog-mnml.jpg new file mode 100644 index 000000000..df447387a Binary files /dev/null and b/static/images/theme/thumbnail/arpitbatra123-eleventy-blog-mnml.jpg differ diff --git a/static/images/theme/thumbnail/artemsheludko-adam-blog-master.jpg b/static/images/theme/thumbnail/artemsheludko-adam-blog-master.jpg deleted file mode 100644 index f79f97c9a..000000000 Binary files a/static/images/theme/thumbnail/artemsheludko-adam-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/artemsheludko-adam-blog.jpg b/static/images/theme/thumbnail/artemsheludko-adam-blog.jpg new file mode 100644 index 000000000..a6fd08db5 Binary files /dev/null and b/static/images/theme/thumbnail/artemsheludko-adam-blog.jpg differ diff --git a/static/images/theme/thumbnail/artemsheludko-bef-master.jpg b/static/images/theme/thumbnail/artemsheludko-bef-master.jpg deleted file mode 100644 index e4d892cd2..000000000 Binary files a/static/images/theme/thumbnail/artemsheludko-bef-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/artemsheludko-bef.jpg b/static/images/theme/thumbnail/artemsheludko-bef.jpg new file mode 100644 index 000000000..0b260f563 Binary files /dev/null and b/static/images/theme/thumbnail/artemsheludko-bef.jpg differ diff --git a/static/images/theme/thumbnail/artemsheludko-flexible-jekyll-master.jpg b/static/images/theme/thumbnail/artemsheludko-flexible-jekyll-master.jpg deleted file mode 100644 index 84ea704cb..000000000 Binary files a/static/images/theme/thumbnail/artemsheludko-flexible-jekyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/artemsheludko-fresh-master.jpg b/static/images/theme/thumbnail/artemsheludko-fresh-master.jpg deleted file mode 100644 index 9c45c008b..000000000 Binary files a/static/images/theme/thumbnail/artemsheludko-fresh-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/artemsheludko-monday-master.jpg b/static/images/theme/thumbnail/artemsheludko-monday-master.jpg deleted file mode 100644 index 106f5f6a8..000000000 Binary files a/static/images/theme/thumbnail/artemsheludko-monday-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/artemsheludko-monday.jpg b/static/images/theme/thumbnail/artemsheludko-monday.jpg new file mode 100644 index 000000000..874d9cf3a Binary files /dev/null and b/static/images/theme/thumbnail/artemsheludko-monday.jpg differ diff --git a/static/images/theme/thumbnail/artemsheludko-mr-brown-master.jpg b/static/images/theme/thumbnail/artemsheludko-mr-brown-master.jpg deleted file mode 100644 index 106f5f6a8..000000000 Binary files a/static/images/theme/thumbnail/artemsheludko-mr-brown-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/artemsheludko-mr-brown.jpg b/static/images/theme/thumbnail/artemsheludko-mr-brown.jpg new file mode 100644 index 000000000..874d9cf3a Binary files /dev/null and b/static/images/theme/thumbnail/artemsheludko-mr-brown.jpg differ diff --git a/static/images/theme/thumbnail/arulrajnet-attila-master.jpg b/static/images/theme/thumbnail/arulrajnet-attila-master.jpg deleted file mode 100644 index 85d724b04..000000000 Binary files a/static/images/theme/thumbnail/arulrajnet-attila-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ashr81-gatsby-theme-profile-builder-master.jpg b/static/images/theme/thumbnail/ashr81-gatsby-theme-profile-builder-master.jpg deleted file mode 100644 index 05bbc0ad0..000000000 Binary files a/static/images/theme/thumbnail/ashr81-gatsby-theme-profile-builder-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ashr81-gatsby-theme-profile-builder.jpg b/static/images/theme/thumbnail/ashr81-gatsby-theme-profile-builder.jpg new file mode 100644 index 000000000..e332a6f87 Binary files /dev/null and b/static/images/theme/thumbnail/ashr81-gatsby-theme-profile-builder.jpg differ diff --git a/static/images/theme/thumbnail/aslammultidots-blogger-master.jpg b/static/images/theme/thumbnail/aslammultidots-blogger-master.jpg deleted file mode 100644 index 64c12f6de..000000000 Binary files a/static/images/theme/thumbnail/aslammultidots-blogger-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/aslammultidots-blogger.jpg b/static/images/theme/thumbnail/aslammultidots-blogger.jpg new file mode 100644 index 000000000..dff03f104 Binary files /dev/null and b/static/images/theme/thumbnail/aslammultidots-blogger.jpg differ diff --git a/static/images/theme/thumbnail/aspirethemes-type-master.jpg b/static/images/theme/thumbnail/aspirethemes-type-master.jpg deleted file mode 100644 index 485a1f3d1..000000000 Binary files a/static/images/theme/thumbnail/aspirethemes-type-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/aspirethemes-type.jpg b/static/images/theme/thumbnail/aspirethemes-type.jpg new file mode 100644 index 000000000..9c178bc51 Binary files /dev/null and b/static/images/theme/thumbnail/aspirethemes-type.jpg differ diff --git a/static/images/theme/thumbnail/avianto-hugo-kiera-master.jpg b/static/images/theme/thumbnail/avianto-hugo-kiera-master.jpg deleted file mode 100644 index 93506af36..000000000 Binary files a/static/images/theme/thumbnail/avianto-hugo-kiera-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/avivero-gatsby-redux-starter-master.jpg b/static/images/theme/thumbnail/avivero-gatsby-redux-starter-master.jpg deleted file mode 100644 index 2f2639e20..000000000 Binary files a/static/images/theme/thumbnail/avivero-gatsby-redux-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/avivero-gatsby-redux-starter.jpg b/static/images/theme/thumbnail/avivero-gatsby-redux-starter.jpg new file mode 100644 index 000000000..bc99f862b Binary files /dev/null and b/static/images/theme/thumbnail/avivero-gatsby-redux-starter.jpg differ diff --git a/static/images/theme/thumbnail/aweekj-kiko-plus-master.jpg b/static/images/theme/thumbnail/aweekj-kiko-plus-master.jpg deleted file mode 100644 index 37aef121c..000000000 Binary files a/static/images/theme/thumbnail/aweekj-kiko-plus-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/aweekj-kiko-plus.jpg b/static/images/theme/thumbnail/aweekj-kiko-plus.jpg new file mode 100644 index 000000000..b7410f794 Binary files /dev/null and b/static/images/theme/thumbnail/aweekj-kiko-plus.jpg differ diff --git a/static/images/theme/thumbnail/azmelanar-hugo-theme-pixyll-master.jpg b/static/images/theme/thumbnail/azmelanar-hugo-theme-pixyll-master.jpg deleted file mode 100644 index e09d0530e..000000000 Binary files a/static/images/theme/thumbnail/azmelanar-hugo-theme-pixyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/bagseye-bonneville-master.jpg b/static/images/theme/thumbnail/bagseye-bonneville-master.jpg deleted file mode 100644 index acd24dd0a..000000000 Binary files a/static/images/theme/thumbnail/bagseye-bonneville-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/bagseye-bonneville.jpg b/static/images/theme/thumbnail/bagseye-bonneville.jpg new file mode 100644 index 000000000..64da2a55e Binary files /dev/null and b/static/images/theme/thumbnail/bagseye-bonneville.jpg differ diff --git a/static/images/theme/thumbnail/bake-solar-theme-hugo-master.jpg b/static/images/theme/thumbnail/bake-solar-theme-hugo-master.jpg deleted file mode 100644 index 8fd1b0302..000000000 Binary files a/static/images/theme/thumbnail/bake-solar-theme-hugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/balaramadurai-hugo-travelify-theme-master.jpg b/static/images/theme/thumbnail/balaramadurai-hugo-travelify-theme-master.jpg deleted file mode 100644 index b0bfbd166..000000000 Binary files a/static/images/theme/thumbnail/balaramadurai-hugo-travelify-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/baobabkoodaa-blog-master.jpg b/static/images/theme/thumbnail/baobabkoodaa-blog-master.jpg deleted file mode 100644 index ed122c415..000000000 Binary files a/static/images/theme/thumbnail/baobabkoodaa-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/baobabkoodaa-blog.jpg b/static/images/theme/thumbnail/baobabkoodaa-blog.jpg new file mode 100644 index 000000000..00d069cb9 Binary files /dev/null and b/static/images/theme/thumbnail/baobabkoodaa-blog.jpg differ diff --git a/static/images/theme/thumbnail/baobabkoodaa-gatsby-starter-infinite-scroll-master.jpg b/static/images/theme/thumbnail/baobabkoodaa-gatsby-starter-infinite-scroll-master.jpg deleted file mode 100644 index cb8354ab9..000000000 Binary files a/static/images/theme/thumbnail/baobabkoodaa-gatsby-starter-infinite-scroll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/baobabkoodaa-gatsby-starter-infinite-scroll.jpg b/static/images/theme/thumbnail/baobabkoodaa-gatsby-starter-infinite-scroll.jpg new file mode 100644 index 000000000..df1160e57 Binary files /dev/null and b/static/images/theme/thumbnail/baobabkoodaa-gatsby-starter-infinite-scroll.jpg differ diff --git a/static/images/theme/thumbnail/baobabkoodaa-gatsby-starter-photo-book-master.jpg b/static/images/theme/thumbnail/baobabkoodaa-gatsby-starter-photo-book-master.jpg deleted file mode 100644 index 611f61801..000000000 Binary files a/static/images/theme/thumbnail/baobabkoodaa-gatsby-starter-photo-book-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/baobabkoodaa-gatsby-starter-photo-book.jpg b/static/images/theme/thumbnail/baobabkoodaa-gatsby-starter-photo-book.jpg new file mode 100644 index 000000000..15aac7bf3 Binary files /dev/null and b/static/images/theme/thumbnail/baobabkoodaa-gatsby-starter-photo-book.jpg differ diff --git a/static/images/theme/thumbnail/barryclark-jekyll-now-master.jpg b/static/images/theme/thumbnail/barryclark-jekyll-now-master.jpg deleted file mode 100644 index 0f234abce..000000000 Binary files a/static/images/theme/thumbnail/barryclark-jekyll-now-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/barryclark-jekyll-now.jpg b/static/images/theme/thumbnail/barryclark-jekyll-now.jpg new file mode 100644 index 000000000..3a3fcc090 Binary files /dev/null and b/static/images/theme/thumbnail/barryclark-jekyll-now.jpg differ diff --git a/static/images/theme/thumbnail/bawn92-sleek_blog-master.jpg b/static/images/theme/thumbnail/bawn92-sleek_blog-master.jpg deleted file mode 100644 index 9c73e1334..000000000 Binary files a/static/images/theme/thumbnail/bawn92-sleek_blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/bawn92-sleek_blog.jpg b/static/images/theme/thumbnail/bawn92-sleek_blog.jpg new file mode 100644 index 000000000..707b8dcce Binary files /dev/null and b/static/images/theme/thumbnail/bawn92-sleek_blog.jpg differ diff --git a/static/images/theme/thumbnail/bdhu-minimalist.jpg b/static/images/theme/thumbnail/bdhu-minimalist.jpg new file mode 100644 index 000000000..9221fc416 Binary files /dev/null and b/static/images/theme/thumbnail/bdhu-minimalist.jpg differ diff --git a/static/images/theme/thumbnail/bdougie-casper-cms-template-master.jpg b/static/images/theme/thumbnail/bdougie-casper-cms-template-master.jpg deleted file mode 100644 index 1d20db257..000000000 Binary files a/static/images/theme/thumbnail/bdougie-casper-cms-template-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/bdougie-casper-cms-template.jpg b/static/images/theme/thumbnail/bdougie-casper-cms-template.jpg new file mode 100644 index 000000000..8e3893ec2 Binary files /dev/null and b/static/images/theme/thumbnail/bdougie-casper-cms-template.jpg differ diff --git a/static/images/theme/thumbnail/bdougie-hyde-cms-theme-master.jpg b/static/images/theme/thumbnail/bdougie-hyde-cms-theme-master.jpg deleted file mode 100644 index 4887bcfb5..000000000 Binary files a/static/images/theme/thumbnail/bdougie-hyde-cms-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/bdougie-hyde-cms-theme.jpg b/static/images/theme/thumbnail/bdougie-hyde-cms-theme.jpg new file mode 100644 index 000000000..baffb8168 Binary files /dev/null and b/static/images/theme/thumbnail/bdougie-hyde-cms-theme.jpg differ diff --git a/static/images/theme/thumbnail/ben-siewert-gatsby-starter-auth-aws-amplify-master.jpg b/static/images/theme/thumbnail/ben-siewert-gatsby-starter-auth-aws-amplify-master.jpg deleted file mode 100644 index fb6081059..000000000 Binary files a/static/images/theme/thumbnail/ben-siewert-gatsby-starter-auth-aws-amplify-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ben-siewert-gatsby-starter-auth-aws-amplify.jpg b/static/images/theme/thumbnail/ben-siewert-gatsby-starter-auth-aws-amplify.jpg new file mode 100644 index 000000000..a1ff2ff52 Binary files /dev/null and b/static/images/theme/thumbnail/ben-siewert-gatsby-starter-auth-aws-amplify.jpg differ diff --git a/static/images/theme/thumbnail/bencentra-centrarium-master.jpg b/static/images/theme/thumbnail/bencentra-centrarium-master.jpg deleted file mode 100644 index 136177932..000000000 Binary files a/static/images/theme/thumbnail/bencentra-centrarium-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/benjamin-glitsos-gatsby-kea-starter-master.jpg b/static/images/theme/thumbnail/benjamin-glitsos-gatsby-kea-starter-master.jpg deleted file mode 100644 index c56cca26d..000000000 Binary files a/static/images/theme/thumbnail/benjamin-glitsos-gatsby-kea-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/benjamingrobertson-gatsby-starter-accessibility-master.jpg b/static/images/theme/thumbnail/benjamingrobertson-gatsby-starter-accessibility-master.jpg deleted file mode 100644 index 9afa1dce1..000000000 Binary files a/static/images/theme/thumbnail/benjamingrobertson-gatsby-starter-accessibility-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/benjamingrobertson-gatsby-starter-accessibility.jpg b/static/images/theme/thumbnail/benjamingrobertson-gatsby-starter-accessibility.jpg new file mode 100644 index 000000000..44345a726 Binary files /dev/null and b/static/images/theme/thumbnail/benjamingrobertson-gatsby-starter-accessibility.jpg differ diff --git a/static/images/theme/thumbnail/benradford-slate-and-simple-jekyll-theme-master.jpg b/static/images/theme/thumbnail/benradford-slate-and-simple-jekyll-theme-master.jpg deleted file mode 100644 index 6359222e8..000000000 Binary files a/static/images/theme/thumbnail/benradford-slate-and-simple-jekyll-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/benradford-slate-and-simple-jekyll-theme.jpg b/static/images/theme/thumbnail/benradford-slate-and-simple-jekyll-theme.jpg new file mode 100644 index 000000000..c76443756 Binary files /dev/null and b/static/images/theme/thumbnail/benradford-slate-and-simple-jekyll-theme.jpg differ diff --git a/static/images/theme/thumbnail/bep-docuapi-master.jpg b/static/images/theme/thumbnail/bep-docuapi-master.jpg deleted file mode 100644 index b4eba4aac..000000000 Binary files a/static/images/theme/thumbnail/bep-docuapi-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/bep-docuapi.jpg b/static/images/theme/thumbnail/bep-docuapi.jpg new file mode 100644 index 000000000..edefe4dcd Binary files /dev/null and b/static/images/theme/thumbnail/bep-docuapi.jpg differ diff --git a/static/images/theme/thumbnail/bigcommerce-gatsby-bigcommerce-netlify-cms-starter-master.jpg b/static/images/theme/thumbnail/bigcommerce-gatsby-bigcommerce-netlify-cms-starter-master.jpg deleted file mode 100644 index 8238be174..000000000 Binary files a/static/images/theme/thumbnail/bigcommerce-gatsby-bigcommerce-netlify-cms-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/bigcommerce-gatsby-bigcommerce-netlify-cms-starter.jpg b/static/images/theme/thumbnail/bigcommerce-gatsby-bigcommerce-netlify-cms-starter.jpg new file mode 100644 index 000000000..db1cd7c99 Binary files /dev/null and b/static/images/theme/thumbnail/bigcommerce-gatsby-bigcommerce-netlify-cms-starter.jpg differ diff --git a/static/images/theme/thumbnail/bijenkorf-james-wakefield-gatsby-firebase-hosting-starter-master.jpg b/static/images/theme/thumbnail/bijenkorf-james-wakefield-gatsby-firebase-hosting-starter-master.jpg deleted file mode 100644 index 46d1a83b1..000000000 Binary files a/static/images/theme/thumbnail/bijenkorf-james-wakefield-gatsby-firebase-hosting-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/bijenkorf-james-wakefield-gatsby-firebase-hosting-starter.jpg b/static/images/theme/thumbnail/bijenkorf-james-wakefield-gatsby-firebase-hosting-starter.jpg new file mode 100644 index 000000000..78b48f8c9 Binary files /dev/null and b/static/images/theme/thumbnail/bijenkorf-james-wakefield-gatsby-firebase-hosting-starter.jpg differ diff --git a/static/images/theme/thumbnail/billyfish152-renge-master.jpg b/static/images/theme/thumbnail/billyfish152-renge-master.jpg deleted file mode 100644 index 3cb934202..000000000 Binary files a/static/images/theme/thumbnail/billyfish152-renge-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/billyjacoby-gatsby-react-bootstrap-starter-master.jpg b/static/images/theme/thumbnail/billyjacoby-gatsby-react-bootstrap-starter-master.jpg deleted file mode 100644 index a5a38a9fe..000000000 Binary files a/static/images/theme/thumbnail/billyjacoby-gatsby-react-bootstrap-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/billyjacoby-gatsby-react-bootstrap-starter.jpg b/static/images/theme/thumbnail/billyjacoby-gatsby-react-bootstrap-starter.jpg new file mode 100644 index 000000000..0e4d1da19 Binary files /dev/null and b/static/images/theme/thumbnail/billyjacoby-gatsby-react-bootstrap-starter.jpg differ diff --git a/static/images/theme/thumbnail/biomadeira-jasper-master.jpg b/static/images/theme/thumbnail/biomadeira-jasper-master.jpg deleted file mode 100644 index dba425ed1..000000000 Binary files a/static/images/theme/thumbnail/biomadeira-jasper-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/biomadeira-sustain-gh-pages.jpg b/static/images/theme/thumbnail/biomadeira-sustain-gh-pages.jpg deleted file mode 100644 index 7c51fe304..000000000 Binary files a/static/images/theme/thumbnail/biomadeira-sustain-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/biomadeira-vitae-gh-pages.jpg b/static/images/theme/thumbnail/biomadeira-vitae-gh-pages.jpg deleted file mode 100644 index 8639e0a99..000000000 Binary files a/static/images/theme/thumbnail/biomadeira-vitae-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/bit-ranger-blog-gh-pages.jpg b/static/images/theme/thumbnail/bit-ranger-blog-gh-pages.jpg deleted file mode 100644 index 8c741b185..000000000 Binary files a/static/images/theme/thumbnail/bit-ranger-blog-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/bit-ranger-blog.jpg b/static/images/theme/thumbnail/bit-ranger-blog.jpg new file mode 100644 index 000000000..e149433d3 Binary files /dev/null and b/static/images/theme/thumbnail/bit-ranger-blog.jpg differ diff --git a/static/images/theme/thumbnail/bjacquemet-personal-web-master.jpg b/static/images/theme/thumbnail/bjacquemet-personal-web-master.jpg deleted file mode 100644 index 3aebc3095..000000000 Binary files a/static/images/theme/thumbnail/bjacquemet-personal-web-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/blakenoll-gatsby-starter-styled-components-master.jpg b/static/images/theme/thumbnail/blakenoll-gatsby-starter-styled-components-master.jpg deleted file mode 100644 index d0f4ae24e..000000000 Binary files a/static/images/theme/thumbnail/blakenoll-gatsby-starter-styled-components-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/blakenoll-gatsby-starter-styled-components.jpg b/static/images/theme/thumbnail/blakenoll-gatsby-starter-styled-components.jpg new file mode 100644 index 000000000..e02e2b8c1 Binary files /dev/null and b/static/images/theme/thumbnail/blakenoll-gatsby-starter-styled-components.jpg differ diff --git a/static/images/theme/thumbnail/blankoworld-hugo_theme_adam_eve-master.jpg b/static/images/theme/thumbnail/blankoworld-hugo_theme_adam_eve-master.jpg deleted file mode 100644 index 8b1d7f704..000000000 Binary files a/static/images/theme/thumbnail/blankoworld-hugo_theme_adam_eve-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/blazity-next-saas-starter.jpg b/static/images/theme/thumbnail/blazity-next-saas-starter.jpg new file mode 100644 index 000000000..f0fd676ab Binary files /dev/null and b/static/images/theme/thumbnail/blazity-next-saas-starter.jpg differ diff --git a/static/images/theme/thumbnail/blleng-hexo-theme-lx-master.jpg b/static/images/theme/thumbnail/blleng-hexo-theme-lx-master.jpg deleted file mode 100644 index 3e1600d23..000000000 Binary files a/static/images/theme/thumbnail/blleng-hexo-theme-lx-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/blleng-hexo-theme-lx.jpg b/static/images/theme/thumbnail/blleng-hexo-theme-lx.jpg new file mode 100644 index 000000000..38cda7c27 Binary files /dev/null and b/static/images/theme/thumbnail/blleng-hexo-theme-lx.jpg differ diff --git a/static/images/theme/thumbnail/bluepeter-gatsby-material-ui-business-starter-master.jpg b/static/images/theme/thumbnail/bluepeter-gatsby-material-ui-business-starter-master.jpg deleted file mode 100644 index 29b9a19e3..000000000 Binary files a/static/images/theme/thumbnail/bluepeter-gatsby-material-ui-business-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/bluepeter-gatsby-material-ui-business-starter.jpg b/static/images/theme/thumbnail/bluepeter-gatsby-material-ui-business-starter.jpg new file mode 100644 index 000000000..cc8e98ded Binary files /dev/null and b/static/images/theme/thumbnail/bluepeter-gatsby-material-ui-business-starter.jpg differ diff --git a/static/images/theme/thumbnail/borekb-gatsby-starter-mobx-master.jpg b/static/images/theme/thumbnail/borekb-gatsby-starter-mobx-master.jpg deleted file mode 100644 index 7b586f510..000000000 Binary files a/static/images/theme/thumbnail/borekb-gatsby-starter-mobx-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/borekb-gatsby-starter-mobx.jpg b/static/images/theme/thumbnail/borekb-gatsby-starter-mobx.jpg new file mode 100644 index 000000000..c59686180 Binary files /dev/null and b/static/images/theme/thumbnail/borekb-gatsby-starter-mobx.jpg differ diff --git a/static/images/theme/thumbnail/boywithsilverwings-gatsby-blog-starter-master.jpg b/static/images/theme/thumbnail/boywithsilverwings-gatsby-blog-starter-master.jpg deleted file mode 100644 index 91ebb509c..000000000 Binary files a/static/images/theme/thumbnail/boywithsilverwings-gatsby-blog-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/boywithsilverwings-gatsby-blog-starter.jpg b/static/images/theme/thumbnail/boywithsilverwings-gatsby-blog-starter.jpg new file mode 100644 index 000000000..5af41005f Binary files /dev/null and b/static/images/theme/thumbnail/boywithsilverwings-gatsby-blog-starter.jpg differ diff --git a/static/images/theme/thumbnail/boywithsilverwings-gatsby-careers-page-master.jpg b/static/images/theme/thumbnail/boywithsilverwings-gatsby-careers-page-master.jpg deleted file mode 100644 index fe728947b..000000000 Binary files a/static/images/theme/thumbnail/boywithsilverwings-gatsby-careers-page-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/boywithsilverwings-gatsby-careers-page.jpg b/static/images/theme/thumbnail/boywithsilverwings-gatsby-careers-page.jpg new file mode 100644 index 000000000..ddf8e3416 Binary files /dev/null and b/static/images/theme/thumbnail/boywithsilverwings-gatsby-careers-page.jpg differ diff --git a/static/images/theme/thumbnail/bradykondek-streamer-master.jpg b/static/images/theme/thumbnail/bradykondek-streamer-master.jpg deleted file mode 100644 index b180d6603..000000000 Binary files a/static/images/theme/thumbnail/bradykondek-streamer-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/bradykondek-streamer.jpg b/static/images/theme/thumbnail/bradykondek-streamer.jpg new file mode 100644 index 000000000..9459ca072 Binary files /dev/null and b/static/images/theme/thumbnail/bradykondek-streamer.jpg differ diff --git a/static/images/theme/thumbnail/brennanbrown-enjoyment-work.jpg b/static/images/theme/thumbnail/brennanbrown-enjoyment-work.jpg new file mode 100644 index 000000000..65fbfa8ef Binary files /dev/null and b/static/images/theme/thumbnail/brennanbrown-enjoyment-work.jpg differ diff --git a/static/images/theme/thumbnail/brennanbrown-purelog.jpg b/static/images/theme/thumbnail/brennanbrown-purelog.jpg new file mode 100644 index 000000000..1a9344633 Binary files /dev/null and b/static/images/theme/thumbnail/brennanbrown-purelog.jpg differ diff --git a/static/images/theme/thumbnail/brennanbrown-watery.jpg b/static/images/theme/thumbnail/brennanbrown-watery.jpg new file mode 100644 index 000000000..904dcfd71 Binary files /dev/null and b/static/images/theme/thumbnail/brennanbrown-watery.jpg differ diff --git a/static/images/theme/thumbnail/brianmaierjr-long-haul-master.jpg b/static/images/theme/thumbnail/brianmaierjr-long-haul-master.jpg deleted file mode 100644 index 7b3bbd818..000000000 Binary files a/static/images/theme/thumbnail/brianmaierjr-long-haul-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/brianmaierjr-long-haul.jpg b/static/images/theme/thumbnail/brianmaierjr-long-haul.jpg new file mode 100644 index 000000000..2bdaf9102 Binary files /dev/null and b/static/images/theme/thumbnail/brianmaierjr-long-haul.jpg differ diff --git a/static/images/theme/thumbnail/brijeshb42-bitwiser-material-gh-pages.jpg b/static/images/theme/thumbnail/brijeshb42-bitwiser-material-gh-pages.jpg deleted file mode 100644 index 61051014f..000000000 Binary files a/static/images/theme/thumbnail/brijeshb42-bitwiser-material-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/brijeshb42-bitwiser-material.jpg b/static/images/theme/thumbnail/brijeshb42-bitwiser-material.jpg new file mode 100644 index 000000000..0479ba749 Binary files /dev/null and b/static/images/theme/thumbnail/brijeshb42-bitwiser-material.jpg differ diff --git a/static/images/theme/thumbnail/brohlson-gatsby-datocms-starter-master.jpg b/static/images/theme/thumbnail/brohlson-gatsby-datocms-starter-master.jpg deleted file mode 100644 index bea7e9cb1..000000000 Binary files a/static/images/theme/thumbnail/brohlson-gatsby-datocms-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/brohlson-gatsby-datocms-starter.jpg b/static/images/theme/thumbnail/brohlson-gatsby-datocms-starter.jpg new file mode 100644 index 000000000..7a18166c3 Binary files /dev/null and b/static/images/theme/thumbnail/brohlson-gatsby-datocms-starter.jpg differ diff --git a/static/images/theme/thumbnail/brunch-brunch.github.io-source.jpg b/static/images/theme/thumbnail/brunch-brunch.github.io-source.jpg deleted file mode 100644 index 1d123eadd..000000000 Binary files a/static/images/theme/thumbnail/brunch-brunch.github.io-source.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/brunch-brunch.github.io.jpg b/static/images/theme/thumbnail/brunch-brunch.github.io.jpg new file mode 100644 index 000000000..8abbe7dce Binary files /dev/null and b/static/images/theme/thumbnail/brunch-brunch.github.io.jpg differ diff --git a/static/images/theme/thumbnail/brxck-gatsby-starter-stripe-master.jpg b/static/images/theme/thumbnail/brxck-gatsby-starter-stripe-master.jpg deleted file mode 100644 index e30cf6cb2..000000000 Binary files a/static/images/theme/thumbnail/brxck-gatsby-starter-stripe-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/brxck-gatsby-starter-stripe.jpg b/static/images/theme/thumbnail/brxck-gatsby-starter-stripe.jpg new file mode 100644 index 000000000..a48b2807c Binary files /dev/null and b/static/images/theme/thumbnail/brxck-gatsby-starter-stripe.jpg differ diff --git a/static/images/theme/thumbnail/brycematheson-allegiant-master.jpg b/static/images/theme/thumbnail/brycematheson-allegiant-master.jpg deleted file mode 100644 index 0c5a61365..000000000 Binary files a/static/images/theme/thumbnail/brycematheson-allegiant-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/budparr-gohugo-theme-ananke-master.jpg b/static/images/theme/thumbnail/budparr-gohugo-theme-ananke-master.jpg deleted file mode 100644 index e168c8d27..000000000 Binary files a/static/images/theme/thumbnail/budparr-gohugo-theme-ananke-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/budparr-gohugo-theme-ananke.jpg b/static/images/theme/thumbnail/budparr-gohugo-theme-ananke.jpg new file mode 100644 index 000000000..743657fea Binary files /dev/null and b/static/images/theme/thumbnail/budparr-gohugo-theme-ananke.jpg differ diff --git a/static/images/theme/thumbnail/bul-ikana-hugo-cards-master.jpg b/static/images/theme/thumbnail/bul-ikana-hugo-cards-master.jpg deleted file mode 100644 index 818603b9b..000000000 Binary files a/static/images/theme/thumbnail/bul-ikana-hugo-cards-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/buttercms-gatsby-starter-buttercms-master.jpg b/static/images/theme/thumbnail/buttercms-gatsby-starter-buttercms-master.jpg deleted file mode 100644 index 4c091ab15..000000000 Binary files a/static/images/theme/thumbnail/buttercms-gatsby-starter-buttercms-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/buttercms-gatsby-starter-buttercms.jpg b/static/images/theme/thumbnail/buttercms-gatsby-starter-buttercms.jpg new file mode 100644 index 000000000..5620f753e Binary files /dev/null and b/static/images/theme/thumbnail/buttercms-gatsby-starter-buttercms.jpg differ diff --git a/static/images/theme/thumbnail/caki0915-gatsby-starter-redux-master.jpg b/static/images/theme/thumbnail/caki0915-gatsby-starter-redux-master.jpg deleted file mode 100644 index 35a87baca..000000000 Binary files a/static/images/theme/thumbnail/caki0915-gatsby-starter-redux-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/caki0915-gatsby-starter-redux.jpg b/static/images/theme/thumbnail/caki0915-gatsby-starter-redux.jpg new file mode 100644 index 000000000..37621883a Binary files /dev/null and b/static/images/theme/thumbnail/caki0915-gatsby-starter-redux.jpg differ diff --git a/static/images/theme/thumbnail/calintat-minimal-master.jpg b/static/images/theme/thumbnail/calintat-minimal-master.jpg deleted file mode 100644 index b73d459f9..000000000 Binary files a/static/images/theme/thumbnail/calintat-minimal-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/calpa-gatsby-starter-calpa-blog-master.jpg b/static/images/theme/thumbnail/calpa-gatsby-starter-calpa-blog-master.jpg deleted file mode 100644 index 90f73147a..000000000 Binary files a/static/images/theme/thumbnail/calpa-gatsby-starter-calpa-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/calpa-gatsby-starter-calpa-blog.jpg b/static/images/theme/thumbnail/calpa-gatsby-starter-calpa-blog.jpg new file mode 100644 index 000000000..a0c445e1c Binary files /dev/null and b/static/images/theme/thumbnail/calpa-gatsby-starter-calpa-blog.jpg differ diff --git a/static/images/theme/thumbnail/canhtran-maverick.jpg b/static/images/theme/thumbnail/canhtran-maverick.jpg new file mode 100644 index 000000000..a7e032725 Binary files /dev/null and b/static/images/theme/thumbnail/canhtran-maverick.jpg differ diff --git a/static/images/theme/thumbnail/carsonip-hugo-theme-minos-master.jpg b/static/images/theme/thumbnail/carsonip-hugo-theme-minos-master.jpg deleted file mode 100644 index 7ef0bf3e4..000000000 Binary files a/static/images/theme/thumbnail/carsonip-hugo-theme-minos-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/cboettig-hugo-now-ui-master.jpg b/static/images/theme/thumbnail/cboettig-hugo-now-ui-master.jpg deleted file mode 100644 index 43934e919..000000000 Binary files a/static/images/theme/thumbnail/cboettig-hugo-now-ui-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/cdeck3r-onedly-theme-master.jpg b/static/images/theme/thumbnail/cdeck3r-onedly-theme-master.jpg deleted file mode 100644 index 83fc13212..000000000 Binary files a/static/images/theme/thumbnail/cdeck3r-onedly-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/cfrome77-hugo-theme-sky-master.jpg b/static/images/theme/thumbnail/cfrome77-hugo-theme-sky-master.jpg deleted file mode 100644 index 56533c324..000000000 Binary files a/static/images/theme/thumbnail/cfrome77-hugo-theme-sky-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/chaooo-hexo-theme-bluelake-master.jpg b/static/images/theme/thumbnail/chaooo-hexo-theme-bluelake-master.jpg deleted file mode 100644 index 94036282a..000000000 Binary files a/static/images/theme/thumbnail/chaooo-hexo-theme-bluelake-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/chaooo-hexo-theme-bluelake.jpg b/static/images/theme/thumbnail/chaooo-hexo-theme-bluelake.jpg new file mode 100644 index 000000000..dee9016e9 Binary files /dev/null and b/static/images/theme/thumbnail/chaooo-hexo-theme-bluelake.jpg differ diff --git a/static/images/theme/thumbnail/chec-commercejs-chopchop-demo.jpg b/static/images/theme/thumbnail/chec-commercejs-chopchop-demo.jpg new file mode 100644 index 000000000..27b5edc80 Binary files /dev/null and b/static/images/theme/thumbnail/chec-commercejs-chopchop-demo.jpg differ diff --git a/static/images/theme/thumbnail/chec-commercejs-nextjs-demo-store-master.jpg b/static/images/theme/thumbnail/chec-commercejs-nextjs-demo-store-master.jpg deleted file mode 100644 index 98763badc..000000000 Binary files a/static/images/theme/thumbnail/chec-commercejs-nextjs-demo-store-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/chec-commercejs-nextjs-demo-store.jpg b/static/images/theme/thumbnail/chec-commercejs-nextjs-demo-store.jpg new file mode 100644 index 000000000..96f7d2e60 Binary files /dev/null and b/static/images/theme/thumbnail/chec-commercejs-nextjs-demo-store.jpg differ diff --git a/static/images/theme/thumbnail/chec-commercejs-vuejs-boilerplate-master.jpg b/static/images/theme/thumbnail/chec-commercejs-vuejs-boilerplate-master.jpg deleted file mode 100644 index 7246f46ca..000000000 Binary files a/static/images/theme/thumbnail/chec-commercejs-vuejs-boilerplate-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/chec-commercejs-vuejs-boilerplate.jpg b/static/images/theme/thumbnail/chec-commercejs-vuejs-boilerplate.jpg new file mode 100644 index 000000000..ef72238ff Binary files /dev/null and b/static/images/theme/thumbnail/chec-commercejs-vuejs-boilerplate.jpg differ diff --git a/static/images/theme/thumbnail/chesterhow-tale-master.jpg b/static/images/theme/thumbnail/chesterhow-tale-master.jpg deleted file mode 100644 index 6566a403f..000000000 Binary files a/static/images/theme/thumbnail/chesterhow-tale-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/chesterhow-tale.jpg b/static/images/theme/thumbnail/chesterhow-tale.jpg new file mode 100644 index 000000000..a599b314c Binary files /dev/null and b/static/images/theme/thumbnail/chesterhow-tale.jpg differ diff --git a/static/images/theme/thumbnail/chetanverma16-react-portfolio-template.jpg b/static/images/theme/thumbnail/chetanverma16-react-portfolio-template.jpg new file mode 100644 index 000000000..628217c74 Binary files /dev/null and b/static/images/theme/thumbnail/chetanverma16-react-portfolio-template.jpg differ diff --git a/static/images/theme/thumbnail/chibicode-solo-gh-pages.jpg b/static/images/theme/thumbnail/chibicode-solo-gh-pages.jpg deleted file mode 100644 index 0d70b3c9d..000000000 Binary files a/static/images/theme/thumbnail/chibicode-solo-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/chibicode-solo.jpg b/static/images/theme/thumbnail/chibicode-solo.jpg new file mode 100644 index 000000000..6ad2b90da Binary files /dev/null and b/static/images/theme/thumbnail/chibicode-solo.jpg differ diff --git a/static/images/theme/thumbnail/chipsenkbeil-grid-side-master.jpg b/static/images/theme/thumbnail/chipsenkbeil-grid-side-master.jpg deleted file mode 100644 index a287dee56..000000000 Binary files a/static/images/theme/thumbnail/chipsenkbeil-grid-side-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/chipzoller-hugo-clarity-master.jpg b/static/images/theme/thumbnail/chipzoller-hugo-clarity-master.jpg deleted file mode 100644 index ea253e0b5..000000000 Binary files a/static/images/theme/thumbnail/chipzoller-hugo-clarity-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/chringel21-chringel-hugo-theme.jpg b/static/images/theme/thumbnail/chringel21-chringel-hugo-theme.jpg new file mode 100644 index 000000000..5e745c649 Binary files /dev/null and b/static/images/theme/thumbnail/chringel21-chringel-hugo-theme.jpg differ diff --git a/static/images/theme/thumbnail/chrisbobbe-jekyll-theme-prologue-master.jpg b/static/images/theme/thumbnail/chrisbobbe-jekyll-theme-prologue-master.jpg deleted file mode 100644 index 999138107..000000000 Binary files a/static/images/theme/thumbnail/chrisbobbe-jekyll-theme-prologue-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/chrisbobbe-jekyll-theme-prologue.jpg b/static/images/theme/thumbnail/chrisbobbe-jekyll-theme-prologue.jpg new file mode 100644 index 000000000..853320e35 Binary files /dev/null and b/static/images/theme/thumbnail/chrisbobbe-jekyll-theme-prologue.jpg differ diff --git a/static/images/theme/thumbnail/chrisnmorrison-revista-gatsby-blog-magazine.jpg b/static/images/theme/thumbnail/chrisnmorrison-revista-gatsby-blog-magazine.jpg new file mode 100644 index 000000000..5ad9649fc Binary files /dev/null and b/static/images/theme/thumbnail/chrisnmorrison-revista-gatsby-blog-magazine.jpg differ diff --git a/static/images/theme/thumbnail/chrisrhymes-bulma-clean-theme-master.jpg b/static/images/theme/thumbnail/chrisrhymes-bulma-clean-theme-master.jpg deleted file mode 100644 index f7d758d12..000000000 Binary files a/static/images/theme/thumbnail/chrisrhymes-bulma-clean-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/chrisrhymes-bulma-clean-theme.jpg b/static/images/theme/thumbnail/chrisrhymes-bulma-clean-theme.jpg new file mode 100644 index 000000000..cc8672014 Binary files /dev/null and b/static/images/theme/thumbnail/chrisrhymes-bulma-clean-theme.jpg differ diff --git a/static/images/theme/thumbnail/chrisrhymes-mere-blog-theme-master.jpg b/static/images/theme/thumbnail/chrisrhymes-mere-blog-theme-master.jpg deleted file mode 100644 index 234fa27e7..000000000 Binary files a/static/images/theme/thumbnail/chrisrhymes-mere-blog-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/chrisrhymes-mere-blog-theme.jpg b/static/images/theme/thumbnail/chrisrhymes-mere-blog-theme.jpg new file mode 100644 index 000000000..6ed19e44d Binary files /dev/null and b/static/images/theme/thumbnail/chrisrhymes-mere-blog-theme.jpg differ diff --git a/static/images/theme/thumbnail/chrissimpkins-cinder-master.jpg b/static/images/theme/thumbnail/chrissimpkins-cinder-master.jpg deleted file mode 100644 index 5c5f1c0b8..000000000 Binary files a/static/images/theme/thumbnail/chrissimpkins-cinder-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/chrissimpkins-cinder.jpg b/static/images/theme/thumbnail/chrissimpkins-cinder.jpg new file mode 100644 index 000000000..6afe938a5 Binary files /dev/null and b/static/images/theme/thumbnail/chrissimpkins-cinder.jpg differ diff --git a/static/images/theme/thumbnail/christianezeani-panthera-jekyll-master.jpg b/static/images/theme/thumbnail/christianezeani-panthera-jekyll-master.jpg deleted file mode 100644 index bc6d881d8..000000000 Binary files a/static/images/theme/thumbnail/christianezeani-panthera-jekyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/christianezeani-panthera-jekyll.jpg b/static/images/theme/thumbnail/christianezeani-panthera-jekyll.jpg new file mode 100644 index 000000000..2d2ae637b Binary files /dev/null and b/static/images/theme/thumbnail/christianezeani-panthera-jekyll.jpg differ diff --git a/static/images/theme/thumbnail/christianmendoza-hugo-split-theme-master.jpg b/static/images/theme/thumbnail/christianmendoza-hugo-split-theme-master.jpg deleted file mode 100644 index aab789e5c..000000000 Binary files a/static/images/theme/thumbnail/christianmendoza-hugo-split-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/cjsheets-mkdocs-rtd-dropdown-master.jpg b/static/images/theme/thumbnail/cjsheets-mkdocs-rtd-dropdown-master.jpg deleted file mode 100644 index 76e56973e..000000000 Binary files a/static/images/theme/thumbnail/cjsheets-mkdocs-rtd-dropdown-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/clark-zhao-bohu-jekyll-theme-gh-pages.jpg b/static/images/theme/thumbnail/clark-zhao-bohu-jekyll-theme-gh-pages.jpg deleted file mode 100644 index ec72583e6..000000000 Binary files a/static/images/theme/thumbnail/clark-zhao-bohu-jekyll-theme-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/clark-zhao-bohu-jekyll-theme.jpg b/static/images/theme/thumbnail/clark-zhao-bohu-jekyll-theme.jpg new file mode 100644 index 000000000..39d7295ce Binary files /dev/null and b/static/images/theme/thumbnail/clark-zhao-bohu-jekyll-theme.jpg differ diff --git a/static/images/theme/thumbnail/clarkhacks-minimal-text-master.jpg b/static/images/theme/thumbnail/clarkhacks-minimal-text-master.jpg deleted file mode 100644 index c9eb9ceac..000000000 Binary files a/static/images/theme/thumbnail/clarkhacks-minimal-text-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/clayh53-tufte-jekyll-master.jpg b/static/images/theme/thumbnail/clayh53-tufte-jekyll-master.jpg deleted file mode 100644 index 96f23d680..000000000 Binary files a/static/images/theme/thumbnail/clayh53-tufte-jekyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/clayh53-tufte-jekyll.jpg b/static/images/theme/thumbnail/clayh53-tufte-jekyll.jpg new file mode 100644 index 000000000..74f29d1b7 Binary files /dev/null and b/static/images/theme/thumbnail/clayh53-tufte-jekyll.jpg differ diff --git a/static/images/theme/thumbnail/cloudcannon-aviator-jekyll-theme-master.jpg b/static/images/theme/thumbnail/cloudcannon-aviator-jekyll-theme-master.jpg deleted file mode 100644 index 6eefdb3c0..000000000 Binary files a/static/images/theme/thumbnail/cloudcannon-aviator-jekyll-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/cloudcannon-aviator-jekyll-theme.jpg b/static/images/theme/thumbnail/cloudcannon-aviator-jekyll-theme.jpg new file mode 100644 index 000000000..16d55e128 Binary files /dev/null and b/static/images/theme/thumbnail/cloudcannon-aviator-jekyll-theme.jpg differ diff --git a/static/images/theme/thumbnail/cloudcannon-cause-jekyll-template-master.jpg b/static/images/theme/thumbnail/cloudcannon-cause-jekyll-template-master.jpg deleted file mode 100644 index 7d9b0a920..000000000 Binary files a/static/images/theme/thumbnail/cloudcannon-cause-jekyll-template-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/cloudcannon-cause-jekyll-template.jpg b/static/images/theme/thumbnail/cloudcannon-cause-jekyll-template.jpg new file mode 100644 index 000000000..14b961481 Binary files /dev/null and b/static/images/theme/thumbnail/cloudcannon-cause-jekyll-template.jpg differ diff --git a/static/images/theme/thumbnail/cloudcannon-dopetrope-jekyll-theme-master.jpg b/static/images/theme/thumbnail/cloudcannon-dopetrope-jekyll-theme-master.jpg deleted file mode 100644 index e1e3ba7f3..000000000 Binary files a/static/images/theme/thumbnail/cloudcannon-dopetrope-jekyll-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/cloudcannon-edition-jekyll-template-master.jpg b/static/images/theme/thumbnail/cloudcannon-edition-jekyll-template-master.jpg deleted file mode 100644 index 78cc19218..000000000 Binary files a/static/images/theme/thumbnail/cloudcannon-edition-jekyll-template-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/cloudcannon-edition-jekyll-template.jpg b/static/images/theme/thumbnail/cloudcannon-edition-jekyll-template.jpg new file mode 100644 index 000000000..db8159ade Binary files /dev/null and b/static/images/theme/thumbnail/cloudcannon-edition-jekyll-template.jpg differ diff --git a/static/images/theme/thumbnail/cloudcannon-frisco-jekyll-template-master.jpg b/static/images/theme/thumbnail/cloudcannon-frisco-jekyll-template-master.jpg deleted file mode 100644 index 634fb2c97..000000000 Binary files a/static/images/theme/thumbnail/cloudcannon-frisco-jekyll-template-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/cloudcannon-frisco-jekyll-template.jpg b/static/images/theme/thumbnail/cloudcannon-frisco-jekyll-template.jpg new file mode 100644 index 000000000..68b20d396 Binary files /dev/null and b/static/images/theme/thumbnail/cloudcannon-frisco-jekyll-template.jpg differ diff --git a/static/images/theme/thumbnail/cloudcannon-hydra-jekyll-template-master.jpg b/static/images/theme/thumbnail/cloudcannon-hydra-jekyll-template-master.jpg deleted file mode 100644 index 123f8c57b..000000000 Binary files a/static/images/theme/thumbnail/cloudcannon-hydra-jekyll-template-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/cloudcannon-hydra-jekyll-template.jpg b/static/images/theme/thumbnail/cloudcannon-hydra-jekyll-template.jpg new file mode 100644 index 000000000..af4870547 Binary files /dev/null and b/static/images/theme/thumbnail/cloudcannon-hydra-jekyll-template.jpg differ diff --git a/static/images/theme/thumbnail/cloudcannon-justice-jekyll-template-master.jpg b/static/images/theme/thumbnail/cloudcannon-justice-jekyll-template-master.jpg deleted file mode 100644 index 90afa4e34..000000000 Binary files a/static/images/theme/thumbnail/cloudcannon-justice-jekyll-template-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/cloudcannon-justice-jekyll-template.jpg b/static/images/theme/thumbnail/cloudcannon-justice-jekyll-template.jpg new file mode 100644 index 000000000..ee4f45ef2 Binary files /dev/null and b/static/images/theme/thumbnail/cloudcannon-justice-jekyll-template.jpg differ diff --git a/static/images/theme/thumbnail/cloudcannon-malt-jekyll-template-master.jpg b/static/images/theme/thumbnail/cloudcannon-malt-jekyll-template-master.jpg deleted file mode 100644 index ceaa85b0d..000000000 Binary files a/static/images/theme/thumbnail/cloudcannon-malt-jekyll-template-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/cloudcannon-malt-jekyll-template.jpg b/static/images/theme/thumbnail/cloudcannon-malt-jekyll-template.jpg new file mode 100644 index 000000000..3d3a4d9c0 Binary files /dev/null and b/static/images/theme/thumbnail/cloudcannon-malt-jekyll-template.jpg differ diff --git a/static/images/theme/thumbnail/cloudcannon-strata-jekyll-theme-master.jpg b/static/images/theme/thumbnail/cloudcannon-strata-jekyll-theme-master.jpg deleted file mode 100644 index 5a35c0088..000000000 Binary files a/static/images/theme/thumbnail/cloudcannon-strata-jekyll-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/cloudcannon-twenty-jekyll-theme-master.jpg b/static/images/theme/thumbnail/cloudcannon-twenty-jekyll-theme-master.jpg deleted file mode 100644 index da5d82e9e..000000000 Binary files a/static/images/theme/thumbnail/cloudcannon-twenty-jekyll-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/cloudcannon-urban-jekyll-template-master.jpg b/static/images/theme/thumbnail/cloudcannon-urban-jekyll-template-master.jpg deleted file mode 100644 index bfb084cfa..000000000 Binary files a/static/images/theme/thumbnail/cloudcannon-urban-jekyll-template-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/cloudcannon-urban-jekyll-template.jpg b/static/images/theme/thumbnail/cloudcannon-urban-jekyll-template.jpg new file mode 100644 index 000000000..2f178ef1b Binary files /dev/null and b/static/images/theme/thumbnail/cloudcannon-urban-jekyll-template.jpg differ diff --git a/static/images/theme/thumbnail/codeasashu-hcz-jekyll-blog-master.jpg b/static/images/theme/thumbnail/codeasashu-hcz-jekyll-blog-master.jpg deleted file mode 100644 index 15e97063f..000000000 Binary files a/static/images/theme/thumbnail/codeasashu-hcz-jekyll-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/codeasashu-hcz-jekyll-blog.jpg b/static/images/theme/thumbnail/codeasashu-hcz-jekyll-blog.jpg new file mode 100644 index 000000000..4f6790a46 Binary files /dev/null and b/static/images/theme/thumbnail/codeasashu-hcz-jekyll-blog.jpg differ diff --git a/static/images/theme/thumbnail/codebushi-gatsby-starter-dimension-master.jpg b/static/images/theme/thumbnail/codebushi-gatsby-starter-dimension-master.jpg deleted file mode 100644 index b3165d25f..000000000 Binary files a/static/images/theme/thumbnail/codebushi-gatsby-starter-dimension-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/codebushi-gatsby-starter-dimension.jpg b/static/images/theme/thumbnail/codebushi-gatsby-starter-dimension.jpg new file mode 100644 index 000000000..4572a444b Binary files /dev/null and b/static/images/theme/thumbnail/codebushi-gatsby-starter-dimension.jpg differ diff --git a/static/images/theme/thumbnail/codebushi-gatsby-starter-forty-master.jpg b/static/images/theme/thumbnail/codebushi-gatsby-starter-forty-master.jpg deleted file mode 100644 index 940bb4b8e..000000000 Binary files a/static/images/theme/thumbnail/codebushi-gatsby-starter-forty-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/codebushi-gatsby-starter-forty.jpg b/static/images/theme/thumbnail/codebushi-gatsby-starter-forty.jpg new file mode 100644 index 000000000..f40691b89 Binary files /dev/null and b/static/images/theme/thumbnail/codebushi-gatsby-starter-forty.jpg differ diff --git a/static/images/theme/thumbnail/codebushi-gatsby-starter-photon-master.jpg b/static/images/theme/thumbnail/codebushi-gatsby-starter-photon-master.jpg deleted file mode 100644 index 5581847a6..000000000 Binary files a/static/images/theme/thumbnail/codebushi-gatsby-starter-photon-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/codebushi-gatsby-starter-photon.jpg b/static/images/theme/thumbnail/codebushi-gatsby-starter-photon.jpg new file mode 100644 index 000000000..ee0d5d106 Binary files /dev/null and b/static/images/theme/thumbnail/codebushi-gatsby-starter-photon.jpg differ diff --git a/static/images/theme/thumbnail/codebushi-gatsby-starter-stellar-master.jpg b/static/images/theme/thumbnail/codebushi-gatsby-starter-stellar-master.jpg deleted file mode 100644 index e576fada0..000000000 Binary files a/static/images/theme/thumbnail/codebushi-gatsby-starter-stellar-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/codebushi-gatsby-starter-stellar.jpg b/static/images/theme/thumbnail/codebushi-gatsby-starter-stellar.jpg new file mode 100644 index 000000000..3ef807ccf Binary files /dev/null and b/static/images/theme/thumbnail/codebushi-gatsby-starter-stellar.jpg differ diff --git a/static/images/theme/thumbnail/codebushi-gatsby-starter-strata-master.jpg b/static/images/theme/thumbnail/codebushi-gatsby-starter-strata-master.jpg deleted file mode 100644 index 0873bc871..000000000 Binary files a/static/images/theme/thumbnail/codebushi-gatsby-starter-strata-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/codebushi-gatsby-starter-strata.jpg b/static/images/theme/thumbnail/codebushi-gatsby-starter-strata.jpg new file mode 100644 index 000000000..726933f49 Binary files /dev/null and b/static/images/theme/thumbnail/codebushi-gatsby-starter-strata.jpg differ diff --git a/static/images/theme/thumbnail/coderzh-hugo-pacman-theme-master.jpg b/static/images/theme/thumbnail/coderzh-hugo-pacman-theme-master.jpg deleted file mode 100644 index 32bfd25cb..000000000 Binary files a/static/images/theme/thumbnail/coderzh-hugo-pacman-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/codexfelis-paws-template.jpg b/static/images/theme/thumbnail/codexfelis-paws-template.jpg new file mode 100644 index 000000000..582c842e3 Binary files /dev/null and b/static/images/theme/thumbnail/codexfelis-paws-template.jpg differ diff --git a/static/images/theme/thumbnail/codinfox-codinfox-lanyon-dev.jpg b/static/images/theme/thumbnail/codinfox-codinfox-lanyon-dev.jpg deleted file mode 100644 index a2f86b9d2..000000000 Binary files a/static/images/theme/thumbnail/codinfox-codinfox-lanyon-dev.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/codinfox-codinfox-lanyon.jpg b/static/images/theme/thumbnail/codinfox-codinfox-lanyon.jpg new file mode 100644 index 000000000..bf18d347a Binary files /dev/null and b/static/images/theme/thumbnail/codinfox-codinfox-lanyon.jpg differ diff --git a/static/images/theme/thumbnail/colbyfayock-gatsby-starter-sass-master.jpg b/static/images/theme/thumbnail/colbyfayock-gatsby-starter-sass-master.jpg deleted file mode 100644 index da54cd3a5..000000000 Binary files a/static/images/theme/thumbnail/colbyfayock-gatsby-starter-sass-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/colbyfayock-gatsby-starter-sass.jpg b/static/images/theme/thumbnail/colbyfayock-gatsby-starter-sass.jpg new file mode 100644 index 000000000..5b9cb59b9 Binary files /dev/null and b/static/images/theme/thumbnail/colbyfayock-gatsby-starter-sass.jpg differ diff --git a/static/images/theme/thumbnail/coletownsend-balzac-for-jekyll-master.jpg b/static/images/theme/thumbnail/coletownsend-balzac-for-jekyll-master.jpg deleted file mode 100644 index 2a4e8af8e..000000000 Binary files a/static/images/theme/thumbnail/coletownsend-balzac-for-jekyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/coletownsend-balzac-for-jekyll.jpg b/static/images/theme/thumbnail/coletownsend-balzac-for-jekyll.jpg new file mode 100644 index 000000000..0d1910330 Binary files /dev/null and b/static/images/theme/thumbnail/coletownsend-balzac-for-jekyll.jpg differ diff --git a/static/images/theme/thumbnail/collective-gatsby-starter-plone-master.jpg b/static/images/theme/thumbnail/collective-gatsby-starter-plone-master.jpg deleted file mode 100644 index 1ceca535b..000000000 Binary files a/static/images/theme/thumbnail/collective-gatsby-starter-plone-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/collective-gatsby-starter-plone.jpg b/static/images/theme/thumbnail/collective-gatsby-starter-plone.jpg new file mode 100644 index 000000000..86fe67315 Binary files /dev/null and b/static/images/theme/thumbnail/collective-gatsby-starter-plone.jpg differ diff --git a/static/images/theme/thumbnail/contentful-userland-gatsby-contentful-starter-master.jpg b/static/images/theme/thumbnail/contentful-userland-gatsby-contentful-starter-master.jpg deleted file mode 100644 index 62c4c3d46..000000000 Binary files a/static/images/theme/thumbnail/contentful-userland-gatsby-contentful-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/contentful-userland-gatsby-contentful-starter.jpg b/static/images/theme/thumbnail/contentful-userland-gatsby-contentful-starter.jpg new file mode 100644 index 000000000..3781eb7c8 Binary files /dev/null and b/static/images/theme/thumbnail/contentful-userland-gatsby-contentful-starter.jpg differ diff --git a/static/images/theme/thumbnail/contentstack-gatsby-starter-contentstack-master.jpg b/static/images/theme/thumbnail/contentstack-gatsby-starter-contentstack-master.jpg deleted file mode 100644 index ad65019b9..000000000 Binary files a/static/images/theme/thumbnail/contentstack-gatsby-starter-contentstack-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/contentstack-gatsby-starter-contentstack.jpg b/static/images/theme/thumbnail/contentstack-gatsby-starter-contentstack.jpg new file mode 100644 index 000000000..a74488268 Binary files /dev/null and b/static/images/theme/thumbnail/contentstack-gatsby-starter-contentstack.jpg differ diff --git a/static/images/theme/thumbnail/cosmicjs-gatsby-agency-portfolio-master.jpg b/static/images/theme/thumbnail/cosmicjs-gatsby-agency-portfolio-master.jpg deleted file mode 100644 index 00d27f370..000000000 Binary files a/static/images/theme/thumbnail/cosmicjs-gatsby-agency-portfolio-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/cosmicjs-gatsby-agency-portfolio.jpg b/static/images/theme/thumbnail/cosmicjs-gatsby-agency-portfolio.jpg new file mode 100644 index 000000000..eab4b0f02 Binary files /dev/null and b/static/images/theme/thumbnail/cosmicjs-gatsby-agency-portfolio.jpg differ diff --git a/static/images/theme/thumbnail/cosmicjs-gatsby-blog-cosmicjs-master.jpg b/static/images/theme/thumbnail/cosmicjs-gatsby-blog-cosmicjs-master.jpg deleted file mode 100644 index adf8e065f..000000000 Binary files a/static/images/theme/thumbnail/cosmicjs-gatsby-blog-cosmicjs-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/cosmicjs-gatsby-blog-cosmicjs.jpg b/static/images/theme/thumbnail/cosmicjs-gatsby-blog-cosmicjs.jpg new file mode 100644 index 000000000..00348a184 Binary files /dev/null and b/static/images/theme/thumbnail/cosmicjs-gatsby-blog-cosmicjs.jpg differ diff --git a/static/images/theme/thumbnail/cosmicjs-gatsby-docs-app-master.jpg b/static/images/theme/thumbnail/cosmicjs-gatsby-docs-app-master.jpg deleted file mode 100644 index beeca6cc1..000000000 Binary files a/static/images/theme/thumbnail/cosmicjs-gatsby-docs-app-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/cosmicjs-gatsby-docs-app.jpg b/static/images/theme/thumbnail/cosmicjs-gatsby-docs-app.jpg new file mode 100644 index 000000000..f9e7f2bc1 Binary files /dev/null and b/static/images/theme/thumbnail/cosmicjs-gatsby-docs-app.jpg differ diff --git a/static/images/theme/thumbnail/cosmicjs-gatsby-localization-app-starter-master.jpg b/static/images/theme/thumbnail/cosmicjs-gatsby-localization-app-starter-master.jpg deleted file mode 100644 index 34e1b65d5..000000000 Binary files a/static/images/theme/thumbnail/cosmicjs-gatsby-localization-app-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/cosmicjs-gatsby-localization-app-starter.jpg b/static/images/theme/thumbnail/cosmicjs-gatsby-localization-app-starter.jpg new file mode 100644 index 000000000..6d8f303fd Binary files /dev/null and b/static/images/theme/thumbnail/cosmicjs-gatsby-localization-app-starter.jpg differ diff --git a/static/images/theme/thumbnail/cosmicjs-gatsby-starter-master.jpg b/static/images/theme/thumbnail/cosmicjs-gatsby-starter-master.jpg deleted file mode 100644 index 3f70f2f4a..000000000 Binary files a/static/images/theme/thumbnail/cosmicjs-gatsby-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/cosmicjs-gatsby-starter.jpg b/static/images/theme/thumbnail/cosmicjs-gatsby-starter.jpg new file mode 100644 index 000000000..0129b7954 Binary files /dev/null and b/static/images/theme/thumbnail/cosmicjs-gatsby-starter.jpg differ diff --git a/static/images/theme/thumbnail/cotes2020-jekyll-theme-chirpy-master.jpg b/static/images/theme/thumbnail/cotes2020-jekyll-theme-chirpy-master.jpg deleted file mode 100644 index 82504fd78..000000000 Binary files a/static/images/theme/thumbnail/cotes2020-jekyll-theme-chirpy-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/cotes2020-jekyll-theme-chirpy.jpg b/static/images/theme/thumbnail/cotes2020-jekyll-theme-chirpy.jpg new file mode 100644 index 000000000..10c4692d9 Binary files /dev/null and b/static/images/theme/thumbnail/cotes2020-jekyll-theme-chirpy.jpg differ diff --git a/static/images/theme/thumbnail/craigary-nobelium.jpg b/static/images/theme/thumbnail/craigary-nobelium.jpg new file mode 100644 index 000000000..1cd663ed4 Binary files /dev/null and b/static/images/theme/thumbnail/craigary-nobelium.jpg differ diff --git a/static/images/theme/thumbnail/creasoft-dev-fundamenty-master.jpg b/static/images/theme/thumbnail/creasoft-dev-fundamenty-master.jpg deleted file mode 100644 index 0526c41a3..000000000 Binary files a/static/images/theme/thumbnail/creasoft-dev-fundamenty-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/creasoft-dev-fundamenty.jpg b/static/images/theme/thumbnail/creasoft-dev-fundamenty.jpg new file mode 100644 index 000000000..5b244c10f Binary files /dev/null and b/static/images/theme/thumbnail/creasoft-dev-fundamenty.jpg differ diff --git a/static/images/theme/thumbnail/cssandstuff-hugo-theme-winning-master.jpg b/static/images/theme/thumbnail/cssandstuff-hugo-theme-winning-master.jpg deleted file mode 100644 index 0b09ad8e1..000000000 Binary files a/static/images/theme/thumbnail/cssandstuff-hugo-theme-winning-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/curtiscde-hugo-theme-dopetrope.jpg b/static/images/theme/thumbnail/curtiscde-hugo-theme-dopetrope.jpg new file mode 100644 index 000000000..8a1dc3191 Binary files /dev/null and b/static/images/theme/thumbnail/curtiscde-hugo-theme-dopetrope.jpg differ diff --git a/static/images/theme/thumbnail/curtiscde-hugo-theme-massively.jpg b/static/images/theme/thumbnail/curtiscde-hugo-theme-massively.jpg new file mode 100644 index 000000000..7c772fed1 Binary files /dev/null and b/static/images/theme/thumbnail/curtiscde-hugo-theme-massively.jpg differ diff --git a/static/images/theme/thumbnail/curtistimson-hugo-theme-dopetrope-master.jpg b/static/images/theme/thumbnail/curtistimson-hugo-theme-dopetrope-master.jpg deleted file mode 100644 index a554da2a0..000000000 Binary files a/static/images/theme/thumbnail/curtistimson-hugo-theme-dopetrope-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/curtistimson-hugo-theme-dopetrope.jpg b/static/images/theme/thumbnail/curtistimson-hugo-theme-dopetrope.jpg new file mode 100644 index 000000000..8a1dc3191 Binary files /dev/null and b/static/images/theme/thumbnail/curtistimson-hugo-theme-dopetrope.jpg differ diff --git a/static/images/theme/thumbnail/curtistimson-hugo-theme-massively-master.jpg b/static/images/theme/thumbnail/curtistimson-hugo-theme-massively-master.jpg deleted file mode 100644 index 975b33fc1..000000000 Binary files a/static/images/theme/thumbnail/curtistimson-hugo-theme-massively-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/curtistimson-hugo-theme-massively.jpg b/static/images/theme/thumbnail/curtistimson-hugo-theme-massively.jpg new file mode 100644 index 000000000..3793ee2e8 Binary files /dev/null and b/static/images/theme/thumbnail/curtistimson-hugo-theme-massively.jpg differ diff --git a/static/images/theme/thumbnail/cvluca-gatsby-starter-markdown-master.jpg b/static/images/theme/thumbnail/cvluca-gatsby-starter-markdown-master.jpg deleted file mode 100644 index c065de0f1..000000000 Binary files a/static/images/theme/thumbnail/cvluca-gatsby-starter-markdown-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/cvluca-gatsby-starter-markdown.jpg b/static/images/theme/thumbnail/cvluca-gatsby-starter-markdown.jpg new file mode 100644 index 000000000..c48480bff Binary files /dev/null and b/static/images/theme/thumbnail/cvluca-gatsby-starter-markdown.jpg differ diff --git a/static/images/theme/thumbnail/cwlsn-gatsby-simple-contentful-starter-master.jpg b/static/images/theme/thumbnail/cwlsn-gatsby-simple-contentful-starter-master.jpg deleted file mode 100644 index 2e2f9ea56..000000000 Binary files a/static/images/theme/thumbnail/cwlsn-gatsby-simple-contentful-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/cwlsn-gatsby-simple-contentful-starter.jpg b/static/images/theme/thumbnail/cwlsn-gatsby-simple-contentful-starter.jpg new file mode 100644 index 000000000..119be9727 Binary files /dev/null and b/static/images/theme/thumbnail/cwlsn-gatsby-simple-contentful-starter.jpg differ diff --git a/static/images/theme/thumbnail/cyevgeniy-jekyll-true-minimal-master.jpg b/static/images/theme/thumbnail/cyevgeniy-jekyll-true-minimal-master.jpg deleted file mode 100644 index 749f84c65..000000000 Binary files a/static/images/theme/thumbnail/cyevgeniy-jekyll-true-minimal-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/cyevgeniy-jekyll-true-minimal.jpg b/static/images/theme/thumbnail/cyevgeniy-jekyll-true-minimal.jpg new file mode 100644 index 000000000..887afe7bf Binary files /dev/null and b/static/images/theme/thumbnail/cyevgeniy-jekyll-true-minimal.jpg differ diff --git a/static/images/theme/thumbnail/d-kusk-minimage-master.jpg b/static/images/theme/thumbnail/d-kusk-minimage-master.jpg deleted file mode 100644 index 62f8d6bc1..000000000 Binary files a/static/images/theme/thumbnail/d-kusk-minimage-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/daattali-beautiful-jekyll-master.jpg b/static/images/theme/thumbnail/daattali-beautiful-jekyll-master.jpg deleted file mode 100644 index 50f81b868..000000000 Binary files a/static/images/theme/thumbnail/daattali-beautiful-jekyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/daattali-beautiful-jekyll.jpg b/static/images/theme/thumbnail/daattali-beautiful-jekyll.jpg new file mode 100644 index 000000000..b8802bfd8 Binary files /dev/null and b/static/images/theme/thumbnail/daattali-beautiful-jekyll.jpg differ diff --git a/static/images/theme/thumbnail/dabit3-gatsby-auth-starter-aws-amplify-master.jpg b/static/images/theme/thumbnail/dabit3-gatsby-auth-starter-aws-amplify-master.jpg deleted file mode 100644 index 2f98e6f3a..000000000 Binary files a/static/images/theme/thumbnail/dabit3-gatsby-auth-starter-aws-amplify-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/dabit3-gatsby-auth-starter-aws-amplify.jpg b/static/images/theme/thumbnail/dabit3-gatsby-auth-starter-aws-amplify.jpg new file mode 100644 index 000000000..f3511c9da Binary files /dev/null and b/static/images/theme/thumbnail/dabit3-gatsby-auth-starter-aws-amplify.jpg differ diff --git a/static/images/theme/thumbnail/dafiulh-vredeburg-master.jpg b/static/images/theme/thumbnail/dafiulh-vredeburg-master.jpg deleted file mode 100644 index 4b826cfc8..000000000 Binary files a/static/images/theme/thumbnail/dafiulh-vredeburg-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/dafiulh-vredeburg.jpg b/static/images/theme/thumbnail/dafiulh-vredeburg.jpg new file mode 100644 index 000000000..2e61851e8 Binary files /dev/null and b/static/images/theme/thumbnail/dafiulh-vredeburg.jpg differ diff --git a/static/images/theme/thumbnail/damassi-gatsby-starter-typescript-rebass-netlifycms-master.jpg b/static/images/theme/thumbnail/damassi-gatsby-starter-typescript-rebass-netlifycms-master.jpg deleted file mode 100644 index e27a7c224..000000000 Binary files a/static/images/theme/thumbnail/damassi-gatsby-starter-typescript-rebass-netlifycms-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/damassi-gatsby-starter-typescript-rebass-netlifycms.jpg b/static/images/theme/thumbnail/damassi-gatsby-starter-typescript-rebass-netlifycms.jpg new file mode 100644 index 000000000..ce7142995 Binary files /dev/null and b/static/images/theme/thumbnail/damassi-gatsby-starter-typescript-rebass-netlifycms.jpg differ diff --git a/static/images/theme/thumbnail/danielbayerlein-middleman-casper-master.jpg b/static/images/theme/thumbnail/danielbayerlein-middleman-casper-master.jpg deleted file mode 100644 index fa62b1dd6..000000000 Binary files a/static/images/theme/thumbnail/danielbayerlein-middleman-casper-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/danielbayerlein-middleman-casper.jpg b/static/images/theme/thumbnail/danielbayerlein-middleman-casper.jpg new file mode 100644 index 000000000..2f568bf7f Binary files /dev/null and b/static/images/theme/thumbnail/danielbayerlein-middleman-casper.jpg differ diff --git a/static/images/theme/thumbnail/danielkellyio-awake-template-master.jpg b/static/images/theme/thumbnail/danielkellyio-awake-template-master.jpg deleted file mode 100644 index 9b0a2c946..000000000 Binary files a/static/images/theme/thumbnail/danielkellyio-awake-template-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/danielkellyio-awake-template.jpg b/static/images/theme/thumbnail/danielkellyio-awake-template.jpg new file mode 100644 index 000000000..ee4b43cf6 Binary files /dev/null and b/static/images/theme/thumbnail/danielkellyio-awake-template.jpg differ diff --git a/static/images/theme/thumbnail/danielkvist-hugo-piercer-theme-master.jpg b/static/images/theme/thumbnail/danielkvist-hugo-piercer-theme-master.jpg deleted file mode 100644 index f5cecdaff..000000000 Binary files a/static/images/theme/thumbnail/danielkvist-hugo-piercer-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/danielkvist-hugo-piercer-theme.jpg b/static/images/theme/thumbnail/danielkvist-hugo-piercer-theme.jpg new file mode 100644 index 000000000..7e1d50536 Binary files /dev/null and b/static/images/theme/thumbnail/danielkvist-hugo-piercer-theme.jpg differ diff --git a/static/images/theme/thumbnail/danielkvist-hugo-terrassa-theme-master.jpg b/static/images/theme/thumbnail/danielkvist-hugo-terrassa-theme-master.jpg deleted file mode 100644 index f52bda67f..000000000 Binary files a/static/images/theme/thumbnail/danielkvist-hugo-terrassa-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/danielkvist-hugo-terrassa-theme.jpg b/static/images/theme/thumbnail/danielkvist-hugo-terrassa-theme.jpg new file mode 100644 index 000000000..1ec79a0e1 Binary files /dev/null and b/static/images/theme/thumbnail/danielkvist-hugo-terrassa-theme.jpg differ diff --git a/static/images/theme/thumbnail/danilowoz-gatsby-advanced-blog-system-master.jpg b/static/images/theme/thumbnail/danilowoz-gatsby-advanced-blog-system-master.jpg deleted file mode 100644 index c287a548c..000000000 Binary files a/static/images/theme/thumbnail/danilowoz-gatsby-advanced-blog-system-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/danilowoz-gatsby-advanced-blog-system.jpg b/static/images/theme/thumbnail/danilowoz-gatsby-advanced-blog-system.jpg new file mode 100644 index 000000000..634b0a678 Binary files /dev/null and b/static/images/theme/thumbnail/danilowoz-gatsby-advanced-blog-system.jpg differ diff --git a/static/images/theme/thumbnail/danshai-gatsbyv2-scientific-blog-machine-learning-master.jpg b/static/images/theme/thumbnail/danshai-gatsbyv2-scientific-blog-machine-learning-master.jpg deleted file mode 100644 index 11c34919b..000000000 Binary files a/static/images/theme/thumbnail/danshai-gatsbyv2-scientific-blog-machine-learning-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/danshai-gatsbyv2-scientific-blog-machine-learning.jpg b/static/images/theme/thumbnail/danshai-gatsbyv2-scientific-blog-machine-learning.jpg new file mode 100644 index 000000000..9f70aa5e7 Binary files /dev/null and b/static/images/theme/thumbnail/danshai-gatsbyv2-scientific-blog-machine-learning.jpg differ diff --git a/static/images/theme/thumbnail/danurbanowicz-eleventy-netlify-boilerplate-master.jpg b/static/images/theme/thumbnail/danurbanowicz-eleventy-netlify-boilerplate-master.jpg deleted file mode 100644 index dc262388a..000000000 Binary files a/static/images/theme/thumbnail/danurbanowicz-eleventy-netlify-boilerplate-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/danurbanowicz-eleventy-netlify-boilerplate.jpg b/static/images/theme/thumbnail/danurbanowicz-eleventy-netlify-boilerplate.jpg new file mode 100644 index 000000000..3531c255c Binary files /dev/null and b/static/images/theme/thumbnail/danurbanowicz-eleventy-netlify-boilerplate.jpg differ diff --git a/static/images/theme/thumbnail/darshanbaral-aafu-master.jpg b/static/images/theme/thumbnail/darshanbaral-aafu-master.jpg deleted file mode 100644 index 99b1d057e..000000000 Binary files a/static/images/theme/thumbnail/darshanbaral-aafu-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/darshanbaral-khata-master.jpg b/static/images/theme/thumbnail/darshanbaral-khata-master.jpg deleted file mode 100644 index 30a85da58..000000000 Binary files a/static/images/theme/thumbnail/darshanbaral-khata-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/darshanbaral-kitab-master.jpg b/static/images/theme/thumbnail/darshanbaral-kitab-master.jpg deleted file mode 100644 index 7071ec3df..000000000 Binary files a/static/images/theme/thumbnail/darshanbaral-kitab-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/darshanbaral-mero-master.jpg b/static/images/theme/thumbnail/darshanbaral-mero-master.jpg deleted file mode 100644 index 2fc8e85ad..000000000 Binary files a/static/images/theme/thumbnail/darshanbaral-mero-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/darshanbaral-sada-master.jpg b/static/images/theme/thumbnail/darshanbaral-sada-master.jpg deleted file mode 100644 index cc3c338ba..000000000 Binary files a/static/images/theme/thumbnail/darshanbaral-sada-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/dashdashzako-hugo-journal-master.jpg b/static/images/theme/thumbnail/dashdashzako-hugo-journal-master.jpg deleted file mode 100644 index f43dfbea8..000000000 Binary files a/static/images/theme/thumbnail/dashdashzako-hugo-journal-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/dashdashzako-hugo-journal.jpg b/static/images/theme/thumbnail/dashdashzako-hugo-journal.jpg new file mode 100644 index 000000000..68e50bc05 Binary files /dev/null and b/static/images/theme/thumbnail/dashdashzako-hugo-journal.jpg differ diff --git a/static/images/theme/thumbnail/dashdashzako-paperback-master.jpg b/static/images/theme/thumbnail/dashdashzako-paperback-master.jpg deleted file mode 100644 index 7d4e8ebd0..000000000 Binary files a/static/images/theme/thumbnail/dashdashzako-paperback-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/dashingcode-front-cover-master.jpg b/static/images/theme/thumbnail/dashingcode-front-cover-master.jpg deleted file mode 100644 index 2f3211c4f..000000000 Binary files a/static/images/theme/thumbnail/dashingcode-front-cover-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/dashingcode-front-cover.jpg b/static/images/theme/thumbnail/dashingcode-front-cover.jpg new file mode 100644 index 000000000..e2c90d412 Binary files /dev/null and b/static/images/theme/thumbnail/dashingcode-front-cover.jpg differ diff --git a/static/images/theme/thumbnail/datocms-gatsby-portfolio-master.jpg b/static/images/theme/thumbnail/datocms-gatsby-portfolio-master.jpg deleted file mode 100644 index 8d5981dfd..000000000 Binary files a/static/images/theme/thumbnail/datocms-gatsby-portfolio-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/datocms-gatsby-portfolio.jpg b/static/images/theme/thumbnail/datocms-gatsby-portfolio.jpg new file mode 100644 index 000000000..00af8c4de Binary files /dev/null and b/static/images/theme/thumbnail/datocms-gatsby-portfolio.jpg differ diff --git a/static/images/theme/thumbnail/daviddarnes-alembic-master.jpg b/static/images/theme/thumbnail/daviddarnes-alembic-master.jpg deleted file mode 100644 index 486eb5929..000000000 Binary files a/static/images/theme/thumbnail/daviddarnes-alembic-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/daviddarnes-alembic.jpg b/static/images/theme/thumbnail/daviddarnes-alembic.jpg new file mode 100644 index 000000000..095ec8cab Binary files /dev/null and b/static/images/theme/thumbnail/daviddarnes-alembic.jpg differ diff --git a/static/images/theme/thumbnail/daviddarnes-garth-master.jpg b/static/images/theme/thumbnail/daviddarnes-garth-master.jpg deleted file mode 100644 index d19cb1f1d..000000000 Binary files a/static/images/theme/thumbnail/daviddarnes-garth-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/daviddarnes-garth.jpg b/static/images/theme/thumbnail/daviddarnes-garth.jpg new file mode 100644 index 000000000..2e7bea8bf Binary files /dev/null and b/static/images/theme/thumbnail/daviddarnes-garth.jpg differ diff --git a/static/images/theme/thumbnail/davidhampgonsalves-hugo-black-and-light-theme-master.jpg b/static/images/theme/thumbnail/davidhampgonsalves-hugo-black-and-light-theme-master.jpg deleted file mode 100644 index 2112083af..000000000 Binary files a/static/images/theme/thumbnail/davidhampgonsalves-hugo-black-and-light-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/davshoward-gatsby-starter-honey-master.jpg b/static/images/theme/thumbnail/davshoward-gatsby-starter-honey-master.jpg deleted file mode 100644 index eb13f79d9..000000000 Binary files a/static/images/theme/thumbnail/davshoward-gatsby-starter-honey-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/davshoward-gatsby-starter-honey.jpg b/static/images/theme/thumbnail/davshoward-gatsby-starter-honey.jpg new file mode 100644 index 000000000..156088dd2 Binary files /dev/null and b/static/images/theme/thumbnail/davshoward-gatsby-starter-honey.jpg differ diff --git a/static/images/theme/thumbnail/dbtek-dbyll-master.jpg b/static/images/theme/thumbnail/dbtek-dbyll-master.jpg deleted file mode 100644 index 077ef09ad..000000000 Binary files a/static/images/theme/thumbnail/dbtek-dbyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/dbtek-dbyll.jpg b/static/images/theme/thumbnail/dbtek-dbyll.jpg new file mode 100644 index 000000000..dde670674 Binary files /dev/null and b/static/images/theme/thumbnail/dbtek-dbyll.jpg differ diff --git a/static/images/theme/thumbnail/dbtek-paper-master.jpg b/static/images/theme/thumbnail/dbtek-paper-master.jpg deleted file mode 100644 index 194601ce5..000000000 Binary files a/static/images/theme/thumbnail/dbtek-paper-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/dbtek-paper.jpg b/static/images/theme/thumbnail/dbtek-paper.jpg new file mode 100644 index 000000000..5c86f6c11 Binary files /dev/null and b/static/images/theme/thumbnail/dbtek-paper.jpg differ diff --git a/static/images/theme/thumbnail/ddbullfrog-resumecard-gh-pages.jpg b/static/images/theme/thumbnail/ddbullfrog-resumecard-gh-pages.jpg deleted file mode 100644 index 296a2dfec..000000000 Binary files a/static/images/theme/thumbnail/ddbullfrog-resumecard-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ddbullfrog-resumecard.jpg b/static/images/theme/thumbnail/ddbullfrog-resumecard.jpg new file mode 100644 index 000000000..58418e566 Binary files /dev/null and b/static/images/theme/thumbnail/ddbullfrog-resumecard.jpg differ diff --git a/static/images/theme/thumbnail/de-souza-hugo-flex-master.jpg b/static/images/theme/thumbnail/de-souza-hugo-flex-master.jpg deleted file mode 100644 index ada23b755..000000000 Binary files a/static/images/theme/thumbnail/de-souza-hugo-flex-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/de-souza-hugo-flex.jpg b/static/images/theme/thumbnail/de-souza-hugo-flex.jpg new file mode 100644 index 000000000..5fd27db64 Binary files /dev/null and b/static/images/theme/thumbnail/de-souza-hugo-flex.jpg differ diff --git a/static/images/theme/thumbnail/deamme-gatsby-starter-prismic-resume-master.jpg b/static/images/theme/thumbnail/deamme-gatsby-starter-prismic-resume-master.jpg deleted file mode 100644 index 85e5f8d40..000000000 Binary files a/static/images/theme/thumbnail/deamme-gatsby-starter-prismic-resume-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/deamme-gatsby-starter-prismic-resume.jpg b/static/images/theme/thumbnail/deamme-gatsby-starter-prismic-resume.jpg new file mode 100644 index 000000000..0ab0ac2e0 Binary files /dev/null and b/static/images/theme/thumbnail/deamme-gatsby-starter-prismic-resume.jpg differ diff --git a/static/images/theme/thumbnail/deepidea-web-presentation-master.jpg b/static/images/theme/thumbnail/deepidea-web-presentation-master.jpg deleted file mode 100644 index 67054343c..000000000 Binary files a/static/images/theme/thumbnail/deepidea-web-presentation-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/deepidea-web-presentation.jpg b/static/images/theme/thumbnail/deepidea-web-presentation.jpg new file mode 100644 index 000000000..91163b984 Binary files /dev/null and b/static/images/theme/thumbnail/deepidea-web-presentation.jpg differ diff --git a/static/images/theme/thumbnail/denjones-hexo-theme-chan-master.jpg b/static/images/theme/thumbnail/denjones-hexo-theme-chan-master.jpg deleted file mode 100644 index 64c7588aa..000000000 Binary files a/static/images/theme/thumbnail/denjones-hexo-theme-chan-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/denjones-hexo-theme-chan.jpg b/static/images/theme/thumbnail/denjones-hexo-theme-chan.jpg new file mode 100644 index 000000000..2d232d172 Binary files /dev/null and b/static/images/theme/thumbnail/denjones-hexo-theme-chan.jpg differ diff --git a/static/images/theme/thumbnail/denningk-gatsby-starter-typescript-jest-master.jpg b/static/images/theme/thumbnail/denningk-gatsby-starter-typescript-jest-master.jpg deleted file mode 100644 index 51aa92d0d..000000000 Binary files a/static/images/theme/thumbnail/denningk-gatsby-starter-typescript-jest-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/denningk-gatsby-starter-typescript-jest.jpg b/static/images/theme/thumbnail/denningk-gatsby-starter-typescript-jest.jpg new file mode 100644 index 000000000..50a0e91b5 Binary files /dev/null and b/static/images/theme/thumbnail/denningk-gatsby-starter-typescript-jest.jpg differ diff --git a/static/images/theme/thumbnail/devcows-hugo-universal-theme-master.jpg b/static/images/theme/thumbnail/devcows-hugo-universal-theme-master.jpg deleted file mode 100644 index e82f5d70a..000000000 Binary files a/static/images/theme/thumbnail/devcows-hugo-universal-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/devlocker-breakfast-master.jpg b/static/images/theme/thumbnail/devlocker-breakfast-master.jpg deleted file mode 100644 index 063342ec6..000000000 Binary files a/static/images/theme/thumbnail/devlocker-breakfast-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/devlocker-breakfast.jpg b/static/images/theme/thumbnail/devlocker-breakfast.jpg new file mode 100644 index 000000000..be3400212 Binary files /dev/null and b/static/images/theme/thumbnail/devlocker-breakfast.jpg differ diff --git a/static/images/theme/thumbnail/dfcommunity-hexo-web-nary-master.jpg b/static/images/theme/thumbnail/dfcommunity-hexo-web-nary-master.jpg deleted file mode 100644 index ebb8cd63c..000000000 Binary files a/static/images/theme/thumbnail/dfcommunity-hexo-web-nary-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/dfcommunity-hexo-web-nary.jpg b/static/images/theme/thumbnail/dfcommunity-hexo-web-nary.jpg new file mode 100644 index 000000000..250830ffe Binary files /dev/null and b/static/images/theme/thumbnail/dfcommunity-hexo-web-nary.jpg differ diff --git a/static/images/theme/thumbnail/dgraph-io-hugo-dgraph-theme-master.jpg b/static/images/theme/thumbnail/dgraph-io-hugo-dgraph-theme-master.jpg deleted file mode 100644 index 513246619..000000000 Binary files a/static/images/theme/thumbnail/dgraph-io-hugo-dgraph-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/dgraph-io-hugo-dgraph-theme.jpg b/static/images/theme/thumbnail/dgraph-io-hugo-dgraph-theme.jpg new file mode 100644 index 000000000..f0104a18b Binary files /dev/null and b/static/images/theme/thumbnail/dgraph-io-hugo-dgraph-theme.jpg differ diff --git a/static/images/theme/thumbnail/dieghernan-chulapa.jpg b/static/images/theme/thumbnail/dieghernan-chulapa.jpg new file mode 100644 index 000000000..0806bf588 Binary files /dev/null and b/static/images/theme/thumbnail/dieghernan-chulapa.jpg differ diff --git a/static/images/theme/thumbnail/diezcami-arctic-fox-theme-master.jpg b/static/images/theme/thumbnail/diezcami-arctic-fox-theme-master.jpg deleted file mode 100644 index e63dead3d..000000000 Binary files a/static/images/theme/thumbnail/diezcami-arctic-fox-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/diezcami-arctic-fox-theme.jpg b/static/images/theme/thumbnail/diezcami-arctic-fox-theme.jpg new file mode 100644 index 000000000..efafd6055 Binary files /dev/null and b/static/images/theme/thumbnail/diezcami-arctic-fox-theme.jpg differ diff --git a/static/images/theme/thumbnail/diezcami-polar-bear-theme-master.jpg b/static/images/theme/thumbnail/diezcami-polar-bear-theme-master.jpg deleted file mode 100644 index 1eb29887b..000000000 Binary files a/static/images/theme/thumbnail/diezcami-polar-bear-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/digitalcraftsman-hugo-artists-theme-master.jpg b/static/images/theme/thumbnail/digitalcraftsman-hugo-artists-theme-master.jpg deleted file mode 100644 index e89021d1a..000000000 Binary files a/static/images/theme/thumbnail/digitalcraftsman-hugo-artists-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/digitalcraftsman-hugo-cactus-theme-master.jpg b/static/images/theme/thumbnail/digitalcraftsman-hugo-cactus-theme-master.jpg deleted file mode 100644 index e89021d1a..000000000 Binary files a/static/images/theme/thumbnail/digitalcraftsman-hugo-cactus-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/digitalcraftsman-hugo-creative-theme-master.jpg b/static/images/theme/thumbnail/digitalcraftsman-hugo-creative-theme-master.jpg deleted file mode 100644 index e89021d1a..000000000 Binary files a/static/images/theme/thumbnail/digitalcraftsman-hugo-creative-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/digitalcraftsman-hugo-freelancer-theme-master.jpg b/static/images/theme/thumbnail/digitalcraftsman-hugo-freelancer-theme-master.jpg deleted file mode 100644 index e89021d1a..000000000 Binary files a/static/images/theme/thumbnail/digitalcraftsman-hugo-freelancer-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/digitalcraftsman-hugo-hikari-theme-master.jpg b/static/images/theme/thumbnail/digitalcraftsman-hugo-hikari-theme-master.jpg deleted file mode 100644 index e89021d1a..000000000 Binary files a/static/images/theme/thumbnail/digitalcraftsman-hugo-hikari-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/digitalcraftsman-hugo-icarus-theme-master.jpg b/static/images/theme/thumbnail/digitalcraftsman-hugo-icarus-theme-master.jpg deleted file mode 100644 index fcf45540a..000000000 Binary files a/static/images/theme/thumbnail/digitalcraftsman-hugo-icarus-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/digitalcraftsman-hugo-type-theme-master.jpg b/static/images/theme/thumbnail/digitalcraftsman-hugo-type-theme-master.jpg deleted file mode 100644 index e89021d1a..000000000 Binary files a/static/images/theme/thumbnail/digitalcraftsman-hugo-type-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/digitalmindch-gridster-jekyll-theme-master.jpg b/static/images/theme/thumbnail/digitalmindch-gridster-jekyll-theme-master.jpg deleted file mode 100644 index b2a43154e..000000000 Binary files a/static/images/theme/thumbnail/digitalmindch-gridster-jekyll-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/dikiaap-mangan-master.jpg b/static/images/theme/thumbnail/dikiaap-mangan-master.jpg deleted file mode 100644 index e921271c3..000000000 Binary files a/static/images/theme/thumbnail/dikiaap-mangan-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/dikiaap-mangan.jpg b/static/images/theme/thumbnail/dikiaap-mangan.jpg new file mode 100644 index 000000000..e8ad8aafd Binary files /dev/null and b/static/images/theme/thumbnail/dikiaap-mangan.jpg differ diff --git a/static/images/theme/thumbnail/dirkfabisch-mediator-master.jpg b/static/images/theme/thumbnail/dirkfabisch-mediator-master.jpg deleted file mode 100644 index 2973e487c..000000000 Binary files a/static/images/theme/thumbnail/dirkfabisch-mediator-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/dirkfabisch-mediator.jpg b/static/images/theme/thumbnail/dirkfabisch-mediator.jpg new file mode 100644 index 000000000..eb9f7e5cc Binary files /dev/null and b/static/images/theme/thumbnail/dirkfabisch-mediator.jpg differ diff --git a/static/images/theme/thumbnail/dirtyf-hylia-forestry-master.jpg b/static/images/theme/thumbnail/dirtyf-hylia-forestry-master.jpg deleted file mode 100644 index bc5c6d05e..000000000 Binary files a/static/images/theme/thumbnail/dirtyf-hylia-forestry-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/dirtyf-hylia-forestry.jpg b/static/images/theme/thumbnail/dirtyf-hylia-forestry.jpg new file mode 100644 index 000000000..191d7665f Binary files /dev/null and b/static/images/theme/thumbnail/dirtyf-hylia-forestry.jpg differ diff --git a/static/images/theme/thumbnail/diwao-hestia-pure-master.jpg b/static/images/theme/thumbnail/diwao-hestia-pure-master.jpg deleted file mode 100644 index 782f5b570..000000000 Binary files a/static/images/theme/thumbnail/diwao-hestia-pure-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/dldx-hpstr-hugo-theme-master.jpg b/static/images/theme/thumbnail/dldx-hpstr-hugo-theme-master.jpg deleted file mode 100644 index de816e434..000000000 Binary files a/static/images/theme/thumbnail/dldx-hpstr-hugo-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/dominicabela-gatsby-starter-material-ui-master.jpg b/static/images/theme/thumbnail/dominicabela-gatsby-starter-material-ui-master.jpg deleted file mode 100644 index c48078fd0..000000000 Binary files a/static/images/theme/thumbnail/dominicabela-gatsby-starter-material-ui-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/dominicabela-gatsby-starter-material-ui.jpg b/static/images/theme/thumbnail/dominicabela-gatsby-starter-material-ui.jpg new file mode 100644 index 000000000..9154854e6 Binary files /dev/null and b/static/images/theme/thumbnail/dominicabela-gatsby-starter-material-ui.jpg differ diff --git a/static/images/theme/thumbnail/dongchuan-yummy-jekyll-master.jpg b/static/images/theme/thumbnail/dongchuan-yummy-jekyll-master.jpg deleted file mode 100644 index 2ae9479ca..000000000 Binary files a/static/images/theme/thumbnail/dongchuan-yummy-jekyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/dongchuan-yummy-jekyll.jpg b/static/images/theme/thumbnail/dongchuan-yummy-jekyll.jpg new file mode 100644 index 000000000..1ae9ee48b Binary files /dev/null and b/static/images/theme/thumbnail/dongchuan-yummy-jekyll.jpg differ diff --git a/static/images/theme/thumbnail/dplesca-purehugo-master.jpg b/static/images/theme/thumbnail/dplesca-purehugo-master.jpg deleted file mode 100644 index 3ea6b0206..000000000 Binary files a/static/images/theme/thumbnail/dplesca-purehugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/dplesca-purehugo.jpg b/static/images/theme/thumbnail/dplesca-purehugo.jpg new file mode 100644 index 000000000..d2a2763c2 Binary files /dev/null and b/static/images/theme/thumbnail/dplesca-purehugo.jpg differ diff --git a/static/images/theme/thumbnail/drassil-git-wiki-master.jpg b/static/images/theme/thumbnail/drassil-git-wiki-master.jpg deleted file mode 100644 index d624e4904..000000000 Binary files a/static/images/theme/thumbnail/drassil-git-wiki-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/drassil-git-wiki.jpg b/static/images/theme/thumbnail/drassil-git-wiki.jpg new file mode 100644 index 000000000..abc0f00b2 Binary files /dev/null and b/static/images/theme/thumbnail/drassil-git-wiki.jpg differ diff --git a/static/images/theme/thumbnail/drvy-minimal-block-master.jpg b/static/images/theme/thumbnail/drvy-minimal-block-master.jpg deleted file mode 100644 index a70260e2f..000000000 Binary files a/static/images/theme/thumbnail/drvy-minimal-block-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/drvy-minimal-block.jpg b/static/images/theme/thumbnail/drvy-minimal-block.jpg new file mode 100644 index 000000000..404ca8c1f Binary files /dev/null and b/static/images/theme/thumbnail/drvy-minimal-block.jpg differ diff --git a/static/images/theme/thumbnail/dschau-gatsby-blog-starter-kit-master.jpg b/static/images/theme/thumbnail/dschau-gatsby-blog-starter-kit-master.jpg deleted file mode 100644 index f1f69786d..000000000 Binary files a/static/images/theme/thumbnail/dschau-gatsby-blog-starter-kit-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/dschau-gatsby-blog-starter-kit.jpg b/static/images/theme/thumbnail/dschau-gatsby-blog-starter-kit.jpg new file mode 100644 index 000000000..fa85609b1 Binary files /dev/null and b/static/images/theme/thumbnail/dschau-gatsby-blog-starter-kit.jpg differ diff --git a/static/images/theme/thumbnail/durianstack-gatsby-tailwindcss-sass-starter-master.jpg b/static/images/theme/thumbnail/durianstack-gatsby-tailwindcss-sass-starter-master.jpg deleted file mode 100644 index 6eeb0cd1c..000000000 Binary files a/static/images/theme/thumbnail/durianstack-gatsby-tailwindcss-sass-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/durianstack-gatsby-tailwindcss-sass-starter.jpg b/static/images/theme/thumbnail/durianstack-gatsby-tailwindcss-sass-starter.jpg new file mode 100644 index 000000000..5cccd98c4 Binary files /dev/null and b/static/images/theme/thumbnail/durianstack-gatsby-tailwindcss-sass-starter.jpg differ diff --git a/static/images/theme/thumbnail/dwyfrequency-gatsby-ghub-master.jpg b/static/images/theme/thumbnail/dwyfrequency-gatsby-ghub-master.jpg deleted file mode 100644 index c0cde8814..000000000 Binary files a/static/images/theme/thumbnail/dwyfrequency-gatsby-ghub-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/dwyfrequency-gatsby-ghub.jpg b/static/images/theme/thumbnail/dwyfrequency-gatsby-ghub.jpg new file mode 100644 index 000000000..67ea32ecf Binary files /dev/null and b/static/images/theme/thumbnail/dwyfrequency-gatsby-ghub.jpg differ diff --git a/static/images/theme/thumbnail/dyndna-lanyon-plus-master.jpg b/static/images/theme/thumbnail/dyndna-lanyon-plus-master.jpg deleted file mode 100644 index 7661c25e8..000000000 Binary files a/static/images/theme/thumbnail/dyndna-lanyon-plus-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/dyndna-lanyon-plus.jpg b/static/images/theme/thumbnail/dyndna-lanyon-plus.jpg new file mode 100644 index 000000000..4bee05537 Binary files /dev/null and b/static/images/theme/thumbnail/dyndna-lanyon-plus.jpg differ diff --git a/static/images/theme/thumbnail/dyutibarma-monochrome-master.jpg b/static/images/theme/thumbnail/dyutibarma-monochrome-master.jpg deleted file mode 100644 index 799d1e5ed..000000000 Binary files a/static/images/theme/thumbnail/dyutibarma-monochrome-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/dyutibarma-monochrome.jpg b/static/images/theme/thumbnail/dyutibarma-monochrome.jpg new file mode 100644 index 000000000..0c46548e5 Binary files /dev/null and b/static/images/theme/thumbnail/dyutibarma-monochrome.jpg differ diff --git a/static/images/theme/thumbnail/dzello-reveal-hugo-master.jpg b/static/images/theme/thumbnail/dzello-reveal-hugo-master.jpg deleted file mode 100644 index 6fd5328be..000000000 Binary files a/static/images/theme/thumbnail/dzello-reveal-hugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/dzello-reveal-hugo.jpg b/static/images/theme/thumbnail/dzello-reveal-hugo.jpg new file mode 100644 index 000000000..fcd402815 Binary files /dev/null and b/static/images/theme/thumbnail/dzello-reveal-hugo.jpg differ diff --git a/static/images/theme/thumbnail/edavidaja-docter-master.jpg b/static/images/theme/thumbnail/edavidaja-docter-master.jpg deleted file mode 100644 index 2ac7c1a3c..000000000 Binary files a/static/images/theme/thumbnail/edavidaja-docter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/edavidaja-docter.jpg b/static/images/theme/thumbnail/edavidaja-docter.jpg new file mode 100644 index 000000000..2816a791b Binary files /dev/null and b/static/images/theme/thumbnail/edavidaja-docter.jpg differ diff --git a/static/images/theme/thumbnail/eddiewebb-hugo-resume-master.jpg b/static/images/theme/thumbnail/eddiewebb-hugo-resume-master.jpg deleted file mode 100644 index d3b44ac02..000000000 Binary files a/static/images/theme/thumbnail/eddiewebb-hugo-resume-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/eliasson-liquorice-master.jpg b/static/images/theme/thumbnail/eliasson-liquorice-master.jpg deleted file mode 100644 index 150a73ebe..000000000 Binary files a/static/images/theme/thumbnail/eliasson-liquorice-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/eliottvincent-bay-master.jpg b/static/images/theme/thumbnail/eliottvincent-bay-master.jpg deleted file mode 100644 index a849a322b..000000000 Binary files a/static/images/theme/thumbnail/eliottvincent-bay-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/eliottvincent-bay.jpg b/static/images/theme/thumbnail/eliottvincent-bay.jpg new file mode 100644 index 000000000..da2760118 Binary files /dev/null and b/static/images/theme/thumbnail/eliottvincent-bay.jpg differ diff --git a/static/images/theme/thumbnail/ellekasai-resumecards-gh-pages.jpg b/static/images/theme/thumbnail/ellekasai-resumecards-gh-pages.jpg deleted file mode 100644 index 41879c831..000000000 Binary files a/static/images/theme/thumbnail/ellekasai-resumecards-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ellekasai-resumecards.jpg b/static/images/theme/thumbnail/ellekasai-resumecards.jpg new file mode 100644 index 000000000..66fd4684f Binary files /dev/null and b/static/images/theme/thumbnail/ellekasai-resumecards.jpg differ diff --git a/static/images/theme/thumbnail/ellekasai-shiori-gh-pages.jpg b/static/images/theme/thumbnail/ellekasai-shiori-gh-pages.jpg deleted file mode 100644 index 41a1ba986..000000000 Binary files a/static/images/theme/thumbnail/ellekasai-shiori-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ellekasai-shiori.jpg b/static/images/theme/thumbnail/ellekasai-shiori.jpg new file mode 100644 index 000000000..fa8ed0486 Binary files /dev/null and b/static/images/theme/thumbnail/ellekasai-shiori.jpg differ diff --git a/static/images/theme/thumbnail/elotroalex-ed-gh-pages.jpg b/static/images/theme/thumbnail/elotroalex-ed-gh-pages.jpg deleted file mode 100644 index 7d1ee483f..000000000 Binary files a/static/images/theme/thumbnail/elotroalex-ed-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/elotroalex-ed.jpg b/static/images/theme/thumbnail/elotroalex-ed.jpg new file mode 100644 index 000000000..ddb1df74b Binary files /dev/null and b/static/images/theme/thumbnail/elotroalex-ed.jpg differ diff --git a/static/images/theme/thumbnail/email2vimalraj-gatsby-starter-tech-blog-master.jpg b/static/images/theme/thumbnail/email2vimalraj-gatsby-starter-tech-blog-master.jpg deleted file mode 100644 index d77968f47..000000000 Binary files a/static/images/theme/thumbnail/email2vimalraj-gatsby-starter-tech-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/email2vimalraj-gatsby-starter-tech-blog.jpg b/static/images/theme/thumbnail/email2vimalraj-gatsby-starter-tech-blog.jpg new file mode 100644 index 000000000..165bab383 Binary files /dev/null and b/static/images/theme/thumbnail/email2vimalraj-gatsby-starter-tech-blog.jpg differ diff --git a/static/images/theme/thumbnail/emasuriano-gatsby-starter-event-calendar-master.jpg b/static/images/theme/thumbnail/emasuriano-gatsby-starter-event-calendar-master.jpg deleted file mode 100644 index 8150b4415..000000000 Binary files a/static/images/theme/thumbnail/emasuriano-gatsby-starter-event-calendar-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/emasuriano-gatsby-starter-event-calendar.jpg b/static/images/theme/thumbnail/emasuriano-gatsby-starter-event-calendar.jpg new file mode 100644 index 000000000..b44c213be Binary files /dev/null and b/static/images/theme/thumbnail/emasuriano-gatsby-starter-event-calendar.jpg differ diff --git a/static/images/theme/thumbnail/emasuriano-gatsby-starter-mate-master.jpg b/static/images/theme/thumbnail/emasuriano-gatsby-starter-mate-master.jpg deleted file mode 100644 index 88b618a60..000000000 Binary files a/static/images/theme/thumbnail/emasuriano-gatsby-starter-mate-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/emasuriano-gatsby-starter-mate.jpg b/static/images/theme/thumbnail/emasuriano-gatsby-starter-mate.jpg new file mode 100644 index 000000000..73971a0b6 Binary files /dev/null and b/static/images/theme/thumbnail/emasuriano-gatsby-starter-mate.jpg differ diff --git a/static/images/theme/thumbnail/emielh-hallo-hugo-master.jpg b/static/images/theme/thumbnail/emielh-hallo-hugo-master.jpg deleted file mode 100644 index cbe1f5aeb..000000000 Binary files a/static/images/theme/thumbnail/emielh-hallo-hugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/emielh-stip-hugo-master.jpg b/static/images/theme/thumbnail/emielh-stip-hugo-master.jpg deleted file mode 100644 index 58c21950c..000000000 Binary files a/static/images/theme/thumbnail/emielh-stip-hugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/emielh-tale-hugo-master.jpg b/static/images/theme/thumbnail/emielh-tale-hugo-master.jpg deleted file mode 100644 index 9feffd362..000000000 Binary files a/static/images/theme/thumbnail/emielh-tale-hugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/emilbaehr-automatic-app-landing-page-master.jpg b/static/images/theme/thumbnail/emilbaehr-automatic-app-landing-page-master.jpg deleted file mode 100644 index 3b3ce92cc..000000000 Binary files a/static/images/theme/thumbnail/emilbaehr-automatic-app-landing-page-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/emilbaehr-automatic-app-landing-page.jpg b/static/images/theme/thumbnail/emilbaehr-automatic-app-landing-page.jpg new file mode 100644 index 000000000..471674a9f Binary files /dev/null and b/static/images/theme/thumbnail/emilbaehr-automatic-app-landing-page.jpg differ diff --git a/static/images/theme/thumbnail/endymion1818-gatsby-starter-carraway-master.jpg b/static/images/theme/thumbnail/endymion1818-gatsby-starter-carraway-master.jpg deleted file mode 100644 index fd931f0d4..000000000 Binary files a/static/images/theme/thumbnail/endymion1818-gatsby-starter-carraway-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/endymion1818-gatsby-starter-carraway.jpg b/static/images/theme/thumbnail/endymion1818-gatsby-starter-carraway.jpg new file mode 100644 index 000000000..305a438d8 Binary files /dev/null and b/static/images/theme/thumbnail/endymion1818-gatsby-starter-carraway.jpg differ diff --git a/static/images/theme/thumbnail/epilocal-newsliner-gatsby.jpg b/static/images/theme/thumbnail/epilocal-newsliner-gatsby.jpg new file mode 100644 index 000000000..593c1b7e8 Binary files /dev/null and b/static/images/theme/thumbnail/epilocal-newsliner-gatsby.jpg differ diff --git a/static/images/theme/thumbnail/erayaydin-jekyll-bulma-master.jpg b/static/images/theme/thumbnail/erayaydin-jekyll-bulma-master.jpg deleted file mode 100644 index 1bdc4764b..000000000 Binary files a/static/images/theme/thumbnail/erayaydin-jekyll-bulma-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/erayaydin-jekyll-bulma.jpg b/static/images/theme/thumbnail/erayaydin-jekyll-bulma.jpg new file mode 100644 index 000000000..6f37ff7c8 Binary files /dev/null and b/static/images/theme/thumbnail/erayaydin-jekyll-bulma.jpg differ diff --git a/static/images/theme/thumbnail/esappear-hexo-theme-clover-master.jpg b/static/images/theme/thumbnail/esappear-hexo-theme-clover-master.jpg deleted file mode 100644 index 6193773e1..000000000 Binary files a/static/images/theme/thumbnail/esappear-hexo-theme-clover-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/escapemanuele-gatsby-contentful-blog-portfolio-master.jpg b/static/images/theme/thumbnail/escapemanuele-gatsby-contentful-blog-portfolio-master.jpg deleted file mode 100644 index 8d0a1afd8..000000000 Binary files a/static/images/theme/thumbnail/escapemanuele-gatsby-contentful-blog-portfolio-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/escapemanuele-gatsby-contentful-blog-portfolio.jpg b/static/images/theme/thumbnail/escapemanuele-gatsby-contentful-blog-portfolio.jpg new file mode 100644 index 000000000..e65a53530 Binary files /dev/null and b/static/images/theme/thumbnail/escapemanuele-gatsby-contentful-blog-portfolio.jpg differ diff --git a/static/images/theme/thumbnail/eshlox-simplicity-master.jpg b/static/images/theme/thumbnail/eshlox-simplicity-master.jpg deleted file mode 100644 index 831a4de6c..000000000 Binary files a/static/images/theme/thumbnail/eshlox-simplicity-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/excentris-compass-master.jpg b/static/images/theme/thumbnail/excentris-compass-master.jpg deleted file mode 100644 index 53a1d368d..000000000 Binary files a/static/images/theme/thumbnail/excentris-compass-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/excentris-compass.jpg b/static/images/theme/thumbnail/excentris-compass.jpg new file mode 100644 index 000000000..f6afb1d69 Binary files /dev/null and b/static/images/theme/thumbnail/excentris-compass.jpg differ diff --git a/static/images/theme/thumbnail/exchangerate-api-rlstevenson-jekyll-theme-master.jpg b/static/images/theme/thumbnail/exchangerate-api-rlstevenson-jekyll-theme-master.jpg deleted file mode 100644 index 7148cf142..000000000 Binary files a/static/images/theme/thumbnail/exchangerate-api-rlstevenson-jekyll-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/exchangerate-api-rlstevenson-jekyll-theme.jpg b/static/images/theme/thumbnail/exchangerate-api-rlstevenson-jekyll-theme.jpg new file mode 100644 index 000000000..5371ac72b Binary files /dev/null and b/static/images/theme/thumbnail/exchangerate-api-rlstevenson-jekyll-theme.jpg differ diff --git a/static/images/theme/thumbnail/exchangerate-api-strange-case-master.jpg b/static/images/theme/thumbnail/exchangerate-api-strange-case-master.jpg deleted file mode 100644 index 252138ffd..000000000 Binary files a/static/images/theme/thumbnail/exchangerate-api-strange-case-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ezrasavard-ezora-jekyll-theme-master.jpg b/static/images/theme/thumbnail/ezrasavard-ezora-jekyll-theme-master.jpg deleted file mode 100644 index db4b705de..000000000 Binary files a/static/images/theme/thumbnail/ezrasavard-ezora-jekyll-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ezrasavard-ezora-jekyll-theme.jpg b/static/images/theme/thumbnail/ezrasavard-ezora-jekyll-theme.jpg new file mode 100644 index 000000000..566662df2 Binary files /dev/null and b/static/images/theme/thumbnail/ezrasavard-ezora-jekyll-theme.jpg differ diff --git a/static/images/theme/thumbnail/fabe-gatsby-starter-deck-master.jpg b/static/images/theme/thumbnail/fabe-gatsby-starter-deck-master.jpg deleted file mode 100644 index 75a33c72b..000000000 Binary files a/static/images/theme/thumbnail/fabe-gatsby-starter-deck-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/fabe-gatsby-starter-deck.jpg b/static/images/theme/thumbnail/fabe-gatsby-starter-deck.jpg new file mode 100644 index 000000000..a1a4dc82b Binary files /dev/null and b/static/images/theme/thumbnail/fabe-gatsby-starter-deck.jpg differ diff --git a/static/images/theme/thumbnail/fabe-gatsby-universal-master.jpg b/static/images/theme/thumbnail/fabe-gatsby-universal-master.jpg deleted file mode 100644 index 60dc0d89d..000000000 Binary files a/static/images/theme/thumbnail/fabe-gatsby-universal-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/fabe-gatsby-universal.jpg b/static/images/theme/thumbnail/fabe-gatsby-universal.jpg new file mode 100644 index 000000000..4360a7fe6 Binary files /dev/null and b/static/images/theme/thumbnail/fabe-gatsby-universal.jpg differ diff --git a/static/images/theme/thumbnail/fabien0102-gatsby-starter-master.jpg b/static/images/theme/thumbnail/fabien0102-gatsby-starter-master.jpg deleted file mode 100644 index 52a91da95..000000000 Binary files a/static/images/theme/thumbnail/fabien0102-gatsby-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/fabien0102-gatsby-starter.jpg b/static/images/theme/thumbnail/fabien0102-gatsby-starter.jpg new file mode 100644 index 000000000..66ca62101 Binary files /dev/null and b/static/images/theme/thumbnail/fabien0102-gatsby-starter.jpg differ diff --git a/static/images/theme/thumbnail/fareez-ahamed-millikyl-master.jpg b/static/images/theme/thumbnail/fareez-ahamed-millikyl-master.jpg deleted file mode 100644 index cb9a2ae5b..000000000 Binary files a/static/images/theme/thumbnail/fareez-ahamed-millikyl-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/fareez-ahamed-millikyl.jpg b/static/images/theme/thumbnail/fareez-ahamed-millikyl.jpg new file mode 100644 index 000000000..dbec24b0c Binary files /dev/null and b/static/images/theme/thumbnail/fareez-ahamed-millikyl.jpg differ diff --git a/static/images/theme/thumbnail/fastbyte01-keepit-master.jpg b/static/images/theme/thumbnail/fastbyte01-keepit-master.jpg deleted file mode 100644 index c5077f3e5..000000000 Binary files a/static/images/theme/thumbnail/fastbyte01-keepit-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/fastbyte01-keepit.jpg b/static/images/theme/thumbnail/fastbyte01-keepit.jpg new file mode 100644 index 000000000..9f306281a Binary files /dev/null and b/static/images/theme/thumbnail/fastbyte01-keepit.jpg differ diff --git a/static/images/theme/thumbnail/felicianotech-hugo-theme-lean-launch-page-master.jpg b/static/images/theme/thumbnail/felicianotech-hugo-theme-lean-launch-page-master.jpg deleted file mode 100644 index 1be31e300..000000000 Binary files a/static/images/theme/thumbnail/felicianotech-hugo-theme-lean-launch-page-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ferrolho-jekyll-theme-libretto-gh-pages.jpg b/static/images/theme/thumbnail/ferrolho-jekyll-theme-libretto-gh-pages.jpg deleted file mode 100644 index a26803cf3..000000000 Binary files a/static/images/theme/thumbnail/ferrolho-jekyll-theme-libretto-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ferrolho-jekyll-theme-libretto.jpg b/static/images/theme/thumbnail/ferrolho-jekyll-theme-libretto.jpg new file mode 100644 index 000000000..5e497dd0d Binary files /dev/null and b/static/images/theme/thumbnail/ferrolho-jekyll-theme-libretto.jpg differ diff --git a/static/images/theme/thumbnail/fhavrlent-gatsby-contentful-typescript-starter-master.jpg b/static/images/theme/thumbnail/fhavrlent-gatsby-contentful-typescript-starter-master.jpg deleted file mode 100644 index 2167c232c..000000000 Binary files a/static/images/theme/thumbnail/fhavrlent-gatsby-contentful-typescript-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/fiatjaf-classless-hugo-master.jpg b/static/images/theme/thumbnail/fiatjaf-classless-hugo-master.jpg deleted file mode 100644 index b743ca480..000000000 Binary files a/static/images/theme/thumbnail/fiatjaf-classless-hugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/flotiq-flotiq-gatsby-blog-1.jpg b/static/images/theme/thumbnail/flotiq-flotiq-gatsby-blog-1.jpg new file mode 100644 index 000000000..5c48e9588 Binary files /dev/null and b/static/images/theme/thumbnail/flotiq-flotiq-gatsby-blog-1.jpg differ diff --git a/static/images/theme/thumbnail/flotiq-flotiq-gatsby-blog-2.jpg b/static/images/theme/thumbnail/flotiq-flotiq-gatsby-blog-2.jpg new file mode 100644 index 000000000..61928e2be Binary files /dev/null and b/static/images/theme/thumbnail/flotiq-flotiq-gatsby-blog-2.jpg differ diff --git a/static/images/theme/thumbnail/flotiq-flotiq-gatsby-event-1.jpg b/static/images/theme/thumbnail/flotiq-flotiq-gatsby-event-1.jpg new file mode 100644 index 000000000..83019e67a Binary files /dev/null and b/static/images/theme/thumbnail/flotiq-flotiq-gatsby-event-1.jpg differ diff --git a/static/images/theme/thumbnail/flotiq-flotiq-gatsby-event-2.jpg b/static/images/theme/thumbnail/flotiq-flotiq-gatsby-event-2.jpg new file mode 100644 index 000000000..00f976605 Binary files /dev/null and b/static/images/theme/thumbnail/flotiq-flotiq-gatsby-event-2.jpg differ diff --git a/static/images/theme/thumbnail/flotiq-flotiq-gatsby-portfolio-1.jpg b/static/images/theme/thumbnail/flotiq-flotiq-gatsby-portfolio-1.jpg new file mode 100644 index 000000000..bb9bb6b55 Binary files /dev/null and b/static/images/theme/thumbnail/flotiq-flotiq-gatsby-portfolio-1.jpg differ diff --git a/static/images/theme/thumbnail/flotiq-flotiq-gatsby-portfolio-2.jpg b/static/images/theme/thumbnail/flotiq-flotiq-gatsby-portfolio-2.jpg new file mode 100644 index 000000000..d7d3661f2 Binary files /dev/null and b/static/images/theme/thumbnail/flotiq-flotiq-gatsby-portfolio-2.jpg differ diff --git a/static/images/theme/thumbnail/flotiq-flotiq-gatsby-recipe-1.jpg b/static/images/theme/thumbnail/flotiq-flotiq-gatsby-recipe-1.jpg new file mode 100644 index 000000000..9d4a4eca1 Binary files /dev/null and b/static/images/theme/thumbnail/flotiq-flotiq-gatsby-recipe-1.jpg differ diff --git a/static/images/theme/thumbnail/flotiq-flotiq-gatsby-recipe-2.jpg b/static/images/theme/thumbnail/flotiq-flotiq-gatsby-recipe-2.jpg new file mode 100644 index 000000000..4d67227a9 Binary files /dev/null and b/static/images/theme/thumbnail/flotiq-flotiq-gatsby-recipe-2.jpg differ diff --git a/static/images/theme/thumbnail/flotiq-flotiq-gatsby-shop-1.jpg b/static/images/theme/thumbnail/flotiq-flotiq-gatsby-shop-1.jpg new file mode 100644 index 000000000..64bde81c6 Binary files /dev/null and b/static/images/theme/thumbnail/flotiq-flotiq-gatsby-shop-1.jpg differ diff --git a/static/images/theme/thumbnail/flotiq-flotiq-gatsby-shop-2.jpg b/static/images/theme/thumbnail/flotiq-flotiq-gatsby-shop-2.jpg new file mode 100644 index 000000000..ce9527cc0 Binary files /dev/null and b/static/images/theme/thumbnail/flotiq-flotiq-gatsby-shop-2.jpg differ diff --git a/static/images/theme/thumbnail/fncnt-vncnt-hugo-master.jpg b/static/images/theme/thumbnail/fncnt-vncnt-hugo-master.jpg deleted file mode 100644 index 95306c249..000000000 Binary files a/static/images/theme/thumbnail/fncnt-vncnt-hugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/fongandrew-hydeout-master.jpg b/static/images/theme/thumbnail/fongandrew-hydeout-master.jpg deleted file mode 100644 index 5265f8c1f..000000000 Binary files a/static/images/theme/thumbnail/fongandrew-hydeout-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/fongandrew-hydeout.jpg b/static/images/theme/thumbnail/fongandrew-hydeout.jpg new file mode 100644 index 000000000..3fe5405ca Binary files /dev/null and b/static/images/theme/thumbnail/fongandrew-hydeout.jpg differ diff --git a/static/images/theme/thumbnail/forestryio-ubuild-jekyll-master.jpg b/static/images/theme/thumbnail/forestryio-ubuild-jekyll-master.jpg deleted file mode 100644 index 3a05515ee..000000000 Binary files a/static/images/theme/thumbnail/forestryio-ubuild-jekyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/forestryio-ubuild-jekyll.jpg b/static/images/theme/thumbnail/forestryio-ubuild-jekyll.jpg new file mode 100644 index 000000000..262f0ebc7 Binary files /dev/null and b/static/images/theme/thumbnail/forestryio-ubuild-jekyll.jpg differ diff --git a/static/images/theme/thumbnail/forever-jekyll-forever-jekyll.jpg b/static/images/theme/thumbnail/forever-jekyll-forever-jekyll.jpg new file mode 100644 index 000000000..3526f4bd2 Binary files /dev/null and b/static/images/theme/thumbnail/forever-jekyll-forever-jekyll.jpg differ diff --git a/static/images/theme/thumbnail/formspree-blogophonic-hugo-master.jpg b/static/images/theme/thumbnail/formspree-blogophonic-hugo-master.jpg deleted file mode 100644 index 579ab45c7..000000000 Binary files a/static/images/theme/thumbnail/formspree-blogophonic-hugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/formspree-blogophonic-hugo.jpg b/static/images/theme/thumbnail/formspree-blogophonic-hugo.jpg new file mode 100644 index 000000000..490d2fad1 Binary files /dev/null and b/static/images/theme/thumbnail/formspree-blogophonic-hugo.jpg differ diff --git a/static/images/theme/thumbnail/foxandgeese-tiny-agency-master.jpg b/static/images/theme/thumbnail/foxandgeese-tiny-agency-master.jpg deleted file mode 100644 index 7f0c277bf..000000000 Binary files a/static/images/theme/thumbnail/foxandgeese-tiny-agency-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/foxandgeese-tiny-agency.jpg b/static/images/theme/thumbnail/foxandgeese-tiny-agency.jpg new file mode 100644 index 000000000..fbbd5d507 Binary files /dev/null and b/static/images/theme/thumbnail/foxandgeese-tiny-agency.jpg differ diff --git a/static/images/theme/thumbnail/frankievalentine-gatsby-craftcms-barebones-master.jpg b/static/images/theme/thumbnail/frankievalentine-gatsby-craftcms-barebones-master.jpg deleted file mode 100644 index a5caee3fb..000000000 Binary files a/static/images/theme/thumbnail/frankievalentine-gatsby-craftcms-barebones-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/frankievalentine-gatsby-craftcms-barebones.jpg b/static/images/theme/thumbnail/frankievalentine-gatsby-craftcms-barebones.jpg new file mode 100644 index 000000000..3e1b05d91 Binary files /dev/null and b/static/images/theme/thumbnail/frankievalentine-gatsby-craftcms-barebones.jpg differ diff --git a/static/images/theme/thumbnail/friedger-gatsby-starter-blockstack-master.jpg b/static/images/theme/thumbnail/friedger-gatsby-starter-blockstack-master.jpg deleted file mode 100644 index 45433359f..000000000 Binary files a/static/images/theme/thumbnail/friedger-gatsby-starter-blockstack-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/friedger-gatsby-starter-blockstack.jpg b/static/images/theme/thumbnail/friedger-gatsby-starter-blockstack.jpg new file mode 100644 index 000000000..e8931e430 Binary files /dev/null and b/static/images/theme/thumbnail/friedger-gatsby-starter-blockstack.jpg differ diff --git a/static/images/theme/thumbnail/friendlyuser-vuepress-theme-cool-starter-master.jpg b/static/images/theme/thumbnail/friendlyuser-vuepress-theme-cool-starter-master.jpg deleted file mode 100644 index fd68bc7dc..000000000 Binary files a/static/images/theme/thumbnail/friendlyuser-vuepress-theme-cool-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/friendlyuser-vuepress-theme-cool-starter.jpg b/static/images/theme/thumbnail/friendlyuser-vuepress-theme-cool-starter.jpg new file mode 100644 index 000000000..5b2b51df4 Binary files /dev/null and b/static/images/theme/thumbnail/friendlyuser-vuepress-theme-cool-starter.jpg differ diff --git a/static/images/theme/thumbnail/frjo-hugo-theme-zen-master.jpg b/static/images/theme/thumbnail/frjo-hugo-theme-zen-master.jpg deleted file mode 100644 index 93dee3e69..000000000 Binary files a/static/images/theme/thumbnail/frjo-hugo-theme-zen-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/frnki-gatsby-typescript-starter-blog-master.jpg b/static/images/theme/thumbnail/frnki-gatsby-typescript-starter-blog-master.jpg deleted file mode 100644 index c255b15c7..000000000 Binary files a/static/images/theme/thumbnail/frnki-gatsby-typescript-starter-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/frnki-gatsby-typescript-starter-blog.jpg b/static/images/theme/thumbnail/frnki-gatsby-typescript-starter-blog.jpg new file mode 100644 index 000000000..58de67bab Binary files /dev/null and b/static/images/theme/thumbnail/frnki-gatsby-typescript-starter-blog.jpg differ diff --git a/static/images/theme/thumbnail/fromendworld-loffer-master.jpg b/static/images/theme/thumbnail/fromendworld-loffer-master.jpg deleted file mode 100644 index df855828f..000000000 Binary files a/static/images/theme/thumbnail/fromendworld-loffer-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/fromendworld-loffer.jpg b/static/images/theme/thumbnail/fromendworld-loffer.jpg new file mode 100644 index 000000000..5add89a1b Binary files /dev/null and b/static/images/theme/thumbnail/fromendworld-loffer.jpg differ diff --git a/static/images/theme/thumbnail/fullit-fullit.github.io-master.jpg b/static/images/theme/thumbnail/fullit-fullit.github.io-master.jpg deleted file mode 100644 index 83545109a..000000000 Binary files a/static/images/theme/thumbnail/fullit-fullit.github.io-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/fullit-fullit.github.io.jpg b/static/images/theme/thumbnail/fullit-fullit.github.io.jpg new file mode 100644 index 000000000..94bca6fda Binary files /dev/null and b/static/images/theme/thumbnail/fullit-fullit.github.io.jpg differ diff --git a/static/images/theme/thumbnail/funkydan2-alpha-church-master.jpg b/static/images/theme/thumbnail/funkydan2-alpha-church-master.jpg deleted file mode 100644 index 2e0d63d99..000000000 Binary files a/static/images/theme/thumbnail/funkydan2-alpha-church-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/g1eny0ung-hugo-theme-dream-master.jpg b/static/images/theme/thumbnail/g1eny0ung-hugo-theme-dream-master.jpg deleted file mode 100644 index 96c0487f5..000000000 Binary files a/static/images/theme/thumbnail/g1eny0ung-hugo-theme-dream-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gallenhu-hexo-theme-daily-master.jpg b/static/images/theme/thumbnail/gallenhu-hexo-theme-daily-master.jpg deleted file mode 100644 index f53f3ac89..000000000 Binary files a/static/images/theme/thumbnail/gallenhu-hexo-theme-daily-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gallenhu-hexo-theme-daily.jpg b/static/images/theme/thumbnail/gallenhu-hexo-theme-daily.jpg new file mode 100644 index 000000000..3c3136633 Binary files /dev/null and b/static/images/theme/thumbnail/gallenhu-hexo-theme-daily.jpg differ diff --git a/static/images/theme/thumbnail/ganevru-gatsby-starter-blog-grommet-master.jpg b/static/images/theme/thumbnail/ganevru-gatsby-starter-blog-grommet-master.jpg deleted file mode 100644 index 777b28bc2..000000000 Binary files a/static/images/theme/thumbnail/ganevru-gatsby-starter-blog-grommet-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ganevru-gatsby-starter-blog-grommet.jpg b/static/images/theme/thumbnail/ganevru-gatsby-starter-blog-grommet.jpg new file mode 100644 index 000000000..9ddadfdbb Binary files /dev/null and b/static/images/theme/thumbnail/ganevru-gatsby-starter-blog-grommet.jpg differ diff --git a/static/images/theme/thumbnail/gaohaoyang-gaohaoyang.github.io-master.jpg b/static/images/theme/thumbnail/gaohaoyang-gaohaoyang.github.io-master.jpg deleted file mode 100644 index aabb61f7b..000000000 Binary files a/static/images/theme/thumbnail/gaohaoyang-gaohaoyang.github.io-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gaohaoyang-gaohaoyang.github.io.jpg b/static/images/theme/thumbnail/gaohaoyang-gaohaoyang.github.io.jpg new file mode 100644 index 000000000..d4434bc01 Binary files /dev/null and b/static/images/theme/thumbnail/gaohaoyang-gaohaoyang.github.io.jpg differ diff --git a/static/images/theme/thumbnail/garvincasimir-hugo-h5bp-simple-master.jpg b/static/images/theme/thumbnail/garvincasimir-hugo-h5bp-simple-master.jpg deleted file mode 100644 index c1bda5250..000000000 Binary files a/static/images/theme/thumbnail/garvincasimir-hugo-h5bp-simple-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gatsbycentral-gatsby-starter-wordpress-master.jpg b/static/images/theme/thumbnail/gatsbycentral-gatsby-starter-wordpress-master.jpg deleted file mode 100644 index 2edb68b1b..000000000 Binary files a/static/images/theme/thumbnail/gatsbycentral-gatsby-starter-wordpress-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gatsbycentral-gatsby-starter-wordpress.jpg b/static/images/theme/thumbnail/gatsbycentral-gatsby-starter-wordpress.jpg new file mode 100644 index 000000000..c97b94c6d Binary files /dev/null and b/static/images/theme/thumbnail/gatsbycentral-gatsby-starter-wordpress.jpg differ diff --git a/static/images/theme/thumbnail/gatsbycentral-gatsby-v2-starter-casper-master.jpg b/static/images/theme/thumbnail/gatsbycentral-gatsby-v2-starter-casper-master.jpg deleted file mode 100644 index 5990259f4..000000000 Binary files a/static/images/theme/thumbnail/gatsbycentral-gatsby-v2-starter-casper-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gatsbycentral-gatsby-v2-starter-casper.jpg b/static/images/theme/thumbnail/gatsbycentral-gatsby-v2-starter-casper.jpg new file mode 100644 index 000000000..0286d9868 Binary files /dev/null and b/static/images/theme/thumbnail/gatsbycentral-gatsby-v2-starter-casper.jpg differ diff --git a/static/images/theme/thumbnail/gatsbycentral-gatsby-v2-starter-lumen-master.jpg b/static/images/theme/thumbnail/gatsbycentral-gatsby-v2-starter-lumen-master.jpg deleted file mode 100644 index f492399c6..000000000 Binary files a/static/images/theme/thumbnail/gatsbycentral-gatsby-v2-starter-lumen-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gatsbycentral-gatsby-v2-starter-lumen.jpg b/static/images/theme/thumbnail/gatsbycentral-gatsby-v2-starter-lumen.jpg new file mode 100644 index 000000000..00c3df674 Binary files /dev/null and b/static/images/theme/thumbnail/gatsbycentral-gatsby-v2-starter-lumen.jpg differ diff --git a/static/images/theme/thumbnail/gatsbyjs-gatsby-starter-blog-master.jpg b/static/images/theme/thumbnail/gatsbyjs-gatsby-starter-blog-master.jpg deleted file mode 100644 index ef0d9abed..000000000 Binary files a/static/images/theme/thumbnail/gatsbyjs-gatsby-starter-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gatsbyjs-gatsby-starter-blog.jpg b/static/images/theme/thumbnail/gatsbyjs-gatsby-starter-blog.jpg new file mode 100644 index 000000000..11a048dee Binary files /dev/null and b/static/images/theme/thumbnail/gatsbyjs-gatsby-starter-blog.jpg differ diff --git a/static/images/theme/thumbnail/gatsbyjs-gatsby-starter-default-master.jpg b/static/images/theme/thumbnail/gatsbyjs-gatsby-starter-default-master.jpg deleted file mode 100644 index 0351c2981..000000000 Binary files a/static/images/theme/thumbnail/gatsbyjs-gatsby-starter-default-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gatsbyjs-gatsby-starter-default.jpg b/static/images/theme/thumbnail/gatsbyjs-gatsby-starter-default.jpg new file mode 100644 index 000000000..8afd9f339 Binary files /dev/null and b/static/images/theme/thumbnail/gatsbyjs-gatsby-starter-default.jpg differ diff --git a/static/images/theme/thumbnail/gchauras-much-worse-jekyll-theme-gh-pages.jpg b/static/images/theme/thumbnail/gchauras-much-worse-jekyll-theme-gh-pages.jpg deleted file mode 100644 index 1eb29887b..000000000 Binary files a/static/images/theme/thumbnail/gchauras-much-worse-jekyll-theme-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gcushen-hugo-academic-master.jpg b/static/images/theme/thumbnail/gcushen-hugo-academic-master.jpg deleted file mode 100644 index 400b033b3..000000000 Binary files a/static/images/theme/thumbnail/gcushen-hugo-academic-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gcushen-hugo-academic.jpg b/static/images/theme/thumbnail/gcushen-hugo-academic.jpg new file mode 100644 index 000000000..f0b24c589 Binary files /dev/null and b/static/images/theme/thumbnail/gcushen-hugo-academic.jpg differ diff --git a/static/images/theme/thumbnail/gdg-managua-jekyll-mdl-master.jpg b/static/images/theme/thumbnail/gdg-managua-jekyll-mdl-master.jpg deleted file mode 100644 index 43f42fa1d..000000000 Binary files a/static/images/theme/thumbnail/gdg-managua-jekyll-mdl-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gdgtoulouse-devfest-theme-hugo-master.jpg b/static/images/theme/thumbnail/gdgtoulouse-devfest-theme-hugo-master.jpg deleted file mode 100644 index 398c81bb7..000000000 Binary files a/static/images/theme/thumbnail/gdgtoulouse-devfest-theme-hugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gdgtoulouse-devfest-theme-hugo.jpg b/static/images/theme/thumbnail/gdgtoulouse-devfest-theme-hugo.jpg new file mode 100644 index 000000000..2f97b7f60 Binary files /dev/null and b/static/images/theme/thumbnail/gdgtoulouse-devfest-theme-hugo.jpg differ diff --git a/static/images/theme/thumbnail/geocine-gatsby-starter-devto-master.jpg b/static/images/theme/thumbnail/geocine-gatsby-starter-devto-master.jpg deleted file mode 100644 index 3a55f8d8b..000000000 Binary files a/static/images/theme/thumbnail/geocine-gatsby-starter-devto-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/geocine-gatsby-starter-devto.jpg b/static/images/theme/thumbnail/geocine-gatsby-starter-devto.jpg new file mode 100644 index 000000000..904b3bc0d Binary files /dev/null and b/static/images/theme/thumbnail/geocine-gatsby-starter-devto.jpg differ diff --git a/static/images/theme/thumbnail/geocine-gatsby-starter-organization-master.jpg b/static/images/theme/thumbnail/geocine-gatsby-starter-organization-master.jpg deleted file mode 100644 index d2208514a..000000000 Binary files a/static/images/theme/thumbnail/geocine-gatsby-starter-organization-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/geocine-gatsby-starter-organization.jpg b/static/images/theme/thumbnail/geocine-gatsby-starter-organization.jpg new file mode 100644 index 000000000..260e5f3b7 Binary files /dev/null and b/static/images/theme/thumbnail/geocine-gatsby-starter-organization.jpg differ diff --git a/static/images/theme/thumbnail/geschke-hugo-tikva-master.jpg b/static/images/theme/thumbnail/geschke-hugo-tikva-master.jpg deleted file mode 100644 index d48baba89..000000000 Binary files a/static/images/theme/thumbnail/geschke-hugo-tikva-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gesquive-slate-master.jpg b/static/images/theme/thumbnail/gesquive-slate-master.jpg deleted file mode 100644 index 777ab323a..000000000 Binary files a/static/images/theme/thumbnail/gesquive-slate-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gesquive-slate.jpg b/static/images/theme/thumbnail/gesquive-slate.jpg new file mode 100644 index 000000000..d4f01a3db Binary files /dev/null and b/static/images/theme/thumbnail/gesquive-slate.jpg differ diff --git a/static/images/theme/thumbnail/gethugothemes-andromeda-light.jpg b/static/images/theme/thumbnail/gethugothemes-andromeda-light.jpg new file mode 100644 index 000000000..2efa3d1be Binary files /dev/null and b/static/images/theme/thumbnail/gethugothemes-andromeda-light.jpg differ diff --git a/static/images/theme/thumbnail/gethugothemes-apollo-hugo.jpg b/static/images/theme/thumbnail/gethugothemes-apollo-hugo.jpg new file mode 100644 index 000000000..da358a5f2 Binary files /dev/null and b/static/images/theme/thumbnail/gethugothemes-apollo-hugo.jpg differ diff --git a/static/images/theme/thumbnail/gethugothemes-bookworm-light.jpg b/static/images/theme/thumbnail/gethugothemes-bookworm-light.jpg new file mode 100644 index 000000000..4cf34792c Binary files /dev/null and b/static/images/theme/thumbnail/gethugothemes-bookworm-light.jpg differ diff --git a/static/images/theme/thumbnail/gethugothemes-geeky-hugo.jpg b/static/images/theme/thumbnail/gethugothemes-geeky-hugo.jpg new file mode 100644 index 000000000..636d5e2b3 Binary files /dev/null and b/static/images/theme/thumbnail/gethugothemes-geeky-hugo.jpg differ diff --git a/static/images/theme/thumbnail/gethugothemes-influencer-hugo.jpg b/static/images/theme/thumbnail/gethugothemes-influencer-hugo.jpg new file mode 100644 index 000000000..197386545 Binary files /dev/null and b/static/images/theme/thumbnail/gethugothemes-influencer-hugo.jpg differ diff --git a/static/images/theme/thumbnail/gethugothemes-liva-hugo.jpg b/static/images/theme/thumbnail/gethugothemes-liva-hugo.jpg new file mode 100644 index 000000000..fe8162096 Binary files /dev/null and b/static/images/theme/thumbnail/gethugothemes-liva-hugo.jpg differ diff --git a/static/images/theme/thumbnail/gethugothemes-navigator-hugo.jpg b/static/images/theme/thumbnail/gethugothemes-navigator-hugo.jpg new file mode 100644 index 000000000..07c5e3428 Binary files /dev/null and b/static/images/theme/thumbnail/gethugothemes-navigator-hugo.jpg differ diff --git a/static/images/theme/thumbnail/gethugothemes-northendlab-light.jpg b/static/images/theme/thumbnail/gethugothemes-northendlab-light.jpg new file mode 100644 index 000000000..7f4f541e6 Binary files /dev/null and b/static/images/theme/thumbnail/gethugothemes-northendlab-light.jpg differ diff --git a/static/images/theme/thumbnail/gethugothemes-omega-hugo.jpg b/static/images/theme/thumbnail/gethugothemes-omega-hugo.jpg new file mode 100644 index 000000000..063b3cacf Binary files /dev/null and b/static/images/theme/thumbnail/gethugothemes-omega-hugo.jpg differ diff --git a/static/images/theme/thumbnail/gethugothemes-persian-hugo.jpg b/static/images/theme/thumbnail/gethugothemes-persian-hugo.jpg new file mode 100644 index 000000000..b2e695db8 Binary files /dev/null and b/static/images/theme/thumbnail/gethugothemes-persian-hugo.jpg differ diff --git a/static/images/theme/thumbnail/gethugothemes-restaurant-hugo.jpg b/static/images/theme/thumbnail/gethugothemes-restaurant-hugo.jpg new file mode 100644 index 000000000..fadbcc767 Binary files /dev/null and b/static/images/theme/thumbnail/gethugothemes-restaurant-hugo.jpg differ diff --git a/static/images/theme/thumbnail/gethugothemes-techfeed-hugo.jpg b/static/images/theme/thumbnail/gethugothemes-techfeed-hugo.jpg new file mode 100644 index 000000000..0644189d7 Binary files /dev/null and b/static/images/theme/thumbnail/gethugothemes-techfeed-hugo.jpg differ diff --git a/static/images/theme/thumbnail/gethugothemes-touchy-hugo.jpg b/static/images/theme/thumbnail/gethugothemes-touchy-hugo.jpg new file mode 100644 index 000000000..d5f99abb4 Binary files /dev/null and b/static/images/theme/thumbnail/gethugothemes-touchy-hugo.jpg differ diff --git a/static/images/theme/thumbnail/gherciu-gatsby-all-in-master.jpg b/static/images/theme/thumbnail/gherciu-gatsby-all-in-master.jpg deleted file mode 100644 index d971d08f9..000000000 Binary files a/static/images/theme/thumbnail/gherciu-gatsby-all-in-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gherciu-gatsby-all-in.jpg b/static/images/theme/thumbnail/gherciu-gatsby-all-in.jpg new file mode 100644 index 000000000..02eee88a5 Binary files /dev/null and b/static/images/theme/thumbnail/gherciu-gatsby-all-in.jpg differ diff --git a/static/images/theme/thumbnail/gildasio-clyell-gh-pages.jpg b/static/images/theme/thumbnail/gildasio-clyell-gh-pages.jpg deleted file mode 100644 index 4bb7359fd..000000000 Binary files a/static/images/theme/thumbnail/gildasio-clyell-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gildasio-clyell.jpg b/static/images/theme/thumbnail/gildasio-clyell.jpg new file mode 100644 index 000000000..fc0ed664f Binary files /dev/null and b/static/images/theme/thumbnail/gildasio-clyell.jpg differ diff --git a/static/images/theme/thumbnail/gillkyle-gatsby-starter-landing-page-master.jpg b/static/images/theme/thumbnail/gillkyle-gatsby-starter-landing-page-master.jpg deleted file mode 100644 index 1862259dc..000000000 Binary files a/static/images/theme/thumbnail/gillkyle-gatsby-starter-landing-page-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gillkyle-gatsby-starter-landing-page.jpg b/static/images/theme/thumbnail/gillkyle-gatsby-starter-landing-page.jpg new file mode 100644 index 000000000..ae2ebe0f7 Binary files /dev/null and b/static/images/theme/thumbnail/gillkyle-gatsby-starter-landing-page.jpg differ diff --git a/static/images/theme/thumbnail/gilsondev-pelican-clean-blog-master.jpg b/static/images/theme/thumbnail/gilsondev-pelican-clean-blog-master.jpg deleted file mode 100644 index 4e7ae0715..000000000 Binary files a/static/images/theme/thumbnail/gilsondev-pelican-clean-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gilsondev-pelican-clean-blog.jpg b/static/images/theme/thumbnail/gilsondev-pelican-clean-blog.jpg new file mode 100644 index 000000000..c5f54d4b7 Binary files /dev/null and b/static/images/theme/thumbnail/gilsondev-pelican-clean-blog.jpg differ diff --git a/static/images/theme/thumbnail/gizak-nofancy-master.jpg b/static/images/theme/thumbnail/gizak-nofancy-master.jpg deleted file mode 100644 index d8da901b7..000000000 Binary files a/static/images/theme/thumbnail/gizak-nofancy-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gjuniioor-darcli-gh-pages.jpg b/static/images/theme/thumbnail/gjuniioor-darcli-gh-pages.jpg deleted file mode 100644 index 1eb29887b..000000000 Binary files a/static/images/theme/thumbnail/gjuniioor-darcli-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gkmngrgn-hugo-alageek-theme-master.jpg b/static/images/theme/thumbnail/gkmngrgn-hugo-alageek-theme-master.jpg deleted file mode 100644 index ba92690d1..000000000 Binary files a/static/images/theme/thumbnail/gkmngrgn-hugo-alageek-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gkmngrgn-hugo-alageek-theme.jpg b/static/images/theme/thumbnail/gkmngrgn-hugo-alageek-theme.jpg new file mode 100644 index 000000000..23420d111 Binary files /dev/null and b/static/images/theme/thumbnail/gkmngrgn-hugo-alageek-theme.jpg differ diff --git a/static/images/theme/thumbnail/gmlunesa-gatsby-starter-personal-portfolio-main.jpg b/static/images/theme/thumbnail/gmlunesa-gatsby-starter-personal-portfolio-main.jpg deleted file mode 100644 index f9075d536..000000000 Binary files a/static/images/theme/thumbnail/gmlunesa-gatsby-starter-personal-portfolio-main.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gmlunesa-gatsby-starter-personal-portfolio.jpg b/static/images/theme/thumbnail/gmlunesa-gatsby-starter-personal-portfolio.jpg new file mode 100644 index 000000000..c01b5c2bc Binary files /dev/null and b/static/images/theme/thumbnail/gmlunesa-gatsby-starter-personal-portfolio.jpg differ diff --git a/static/images/theme/thumbnail/gomah-bluise-master.jpg b/static/images/theme/thumbnail/gomah-bluise-master.jpg deleted file mode 100644 index 9ca5ec335..000000000 Binary files a/static/images/theme/thumbnail/gomah-bluise-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gomah-bluise.jpg b/static/images/theme/thumbnail/gomah-bluise.jpg new file mode 100644 index 000000000..4242d9789 Binary files /dev/null and b/static/images/theme/thumbnail/gomah-bluise.jpg differ diff --git a/static/images/theme/thumbnail/gonapps-org-hugo-apps-theme-master.jpg b/static/images/theme/thumbnail/gonapps-org-hugo-apps-theme-master.jpg deleted file mode 100644 index df329cf44..000000000 Binary files a/static/images/theme/thumbnail/gonapps-org-hugo-apps-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/goodroot-hugo-classic-master.jpg b/static/images/theme/thumbnail/goodroot-hugo-classic-master.jpg deleted file mode 100644 index f16158d21..000000000 Binary files a/static/images/theme/thumbnail/goodroot-hugo-classic-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/goodroot-hugo-classic.jpg b/static/images/theme/thumbnail/goodroot-hugo-classic.jpg new file mode 100644 index 000000000..6c9e656d3 Binary files /dev/null and b/static/images/theme/thumbnail/goodroot-hugo-classic.jpg differ diff --git a/static/images/theme/thumbnail/graphcms-gatsby-graphcms-tailwindcss-example-master.jpg b/static/images/theme/thumbnail/graphcms-gatsby-graphcms-tailwindcss-example-master.jpg deleted file mode 100644 index 96132bc32..000000000 Binary files a/static/images/theme/thumbnail/graphcms-gatsby-graphcms-tailwindcss-example-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/graphcms-gatsby-graphcms-tailwindcss-example.jpg b/static/images/theme/thumbnail/graphcms-gatsby-graphcms-tailwindcss-example.jpg new file mode 100644 index 000000000..c31fcfa42 Binary files /dev/null and b/static/images/theme/thumbnail/graphcms-gatsby-graphcms-tailwindcss-example.jpg differ diff --git a/static/images/theme/thumbnail/graphcms-gatsby-starter-graphcms-blog.jpg b/static/images/theme/thumbnail/graphcms-gatsby-starter-graphcms-blog.jpg new file mode 100644 index 000000000..0b1630239 Binary files /dev/null and b/static/images/theme/thumbnail/graphcms-gatsby-starter-graphcms-blog.jpg differ diff --git a/static/images/theme/thumbnail/graphcms-graphcms-commerce-starter.jpg b/static/images/theme/thumbnail/graphcms-graphcms-commerce-starter.jpg new file mode 100644 index 000000000..f80bff3cc Binary files /dev/null and b/static/images/theme/thumbnail/graphcms-graphcms-commerce-starter.jpg differ diff --git a/static/images/theme/thumbnail/graphcms-reference-marketing-website.jpg b/static/images/theme/thumbnail/graphcms-reference-marketing-website.jpg new file mode 100644 index 000000000..80ff622b0 Binary files /dev/null and b/static/images/theme/thumbnail/graphcms-reference-marketing-website.jpg differ diff --git a/static/images/theme/thumbnail/greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog-master.jpg b/static/images/theme/thumbnail/greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog-master.jpg deleted file mode 100644 index 84436444e..000000000 Binary files a/static/images/theme/thumbnail/greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog.jpg b/static/images/theme/thumbnail/greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog.jpg new file mode 100644 index 000000000..004ec4ae2 Binary files /dev/null and b/static/images/theme/thumbnail/greatgatsbyjsthemes-gatsby-starter-ggt-material-ui-blog.jpg differ diff --git a/static/images/theme/thumbnail/greglobinski-gatsby-starter-hero-blog-master.jpg b/static/images/theme/thumbnail/greglobinski-gatsby-starter-hero-blog-master.jpg deleted file mode 100644 index 2f610aee7..000000000 Binary files a/static/images/theme/thumbnail/greglobinski-gatsby-starter-hero-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/greglobinski-gatsby-starter-hero-blog.jpg b/static/images/theme/thumbnail/greglobinski-gatsby-starter-hero-blog.jpg new file mode 100644 index 000000000..6aded6fe2 Binary files /dev/null and b/static/images/theme/thumbnail/greglobinski-gatsby-starter-hero-blog.jpg differ diff --git a/static/images/theme/thumbnail/gridsome-gridsome-starter-blog-master.jpg b/static/images/theme/thumbnail/gridsome-gridsome-starter-blog-master.jpg deleted file mode 100644 index 34e171cd7..000000000 Binary files a/static/images/theme/thumbnail/gridsome-gridsome-starter-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gridsome-gridsome-starter-blog.jpg b/static/images/theme/thumbnail/gridsome-gridsome-starter-blog.jpg new file mode 100644 index 000000000..b4e12ce86 Binary files /dev/null and b/static/images/theme/thumbnail/gridsome-gridsome-starter-blog.jpg differ diff --git a/static/images/theme/thumbnail/gristlabs-mkdocs-windmill-master.jpg b/static/images/theme/thumbnail/gristlabs-mkdocs-windmill-master.jpg deleted file mode 100644 index 615b23709..000000000 Binary files a/static/images/theme/thumbnail/gristlabs-mkdocs-windmill-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gristlabs-mkdocs-windmill.jpg b/static/images/theme/thumbnail/gristlabs-mkdocs-windmill.jpg new file mode 100644 index 000000000..9e895db86 Binary files /dev/null and b/static/images/theme/thumbnail/gristlabs-mkdocs-windmill.jpg differ diff --git a/static/images/theme/thumbnail/grrinchas-aliquam-master.jpg b/static/images/theme/thumbnail/grrinchas-aliquam-master.jpg deleted file mode 100644 index 5ecb3a0cc..000000000 Binary files a/static/images/theme/thumbnail/grrinchas-aliquam-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/grrinchas-aliquam.jpg b/static/images/theme/thumbnail/grrinchas-aliquam.jpg new file mode 100644 index 000000000..d7a9ab1b1 Binary files /dev/null and b/static/images/theme/thumbnail/grrinchas-aliquam.jpg differ diff --git a/static/images/theme/thumbnail/guangmean-niello-master.jpg b/static/images/theme/thumbnail/guangmean-niello-master.jpg deleted file mode 100644 index 732d312ea..000000000 Binary files a/static/images/theme/thumbnail/guangmean-niello-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gundamew-hugo-bingo-master.jpg b/static/images/theme/thumbnail/gundamew-hugo-bingo-master.jpg deleted file mode 100644 index 975ba81db..000000000 Binary files a/static/images/theme/thumbnail/gundamew-hugo-bingo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/guovz-pithy-master.jpg b/static/images/theme/thumbnail/guovz-pithy-master.jpg deleted file mode 100644 index de420e1c8..000000000 Binary files a/static/images/theme/thumbnail/guovz-pithy-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gurusabarish-hugo-profile-master.jpg b/static/images/theme/thumbnail/gurusabarish-hugo-profile-master.jpg deleted file mode 100644 index 52f615173..000000000 Binary files a/static/images/theme/thumbnail/gurusabarish-hugo-profile-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/gurusabarish-hugo-profile.jpg b/static/images/theme/thumbnail/gurusabarish-hugo-profile.jpg new file mode 100644 index 000000000..021e82bdc Binary files /dev/null and b/static/images/theme/thumbnail/gurusabarish-hugo-profile.jpg differ diff --git a/static/images/theme/thumbnail/gyorb-hugo-dusk-master.jpg b/static/images/theme/thumbnail/gyorb-hugo-dusk-master.jpg deleted file mode 100644 index 037f5749a..000000000 Binary files a/static/images/theme/thumbnail/gyorb-hugo-dusk-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/h-enk-doks-master.jpg b/static/images/theme/thumbnail/h-enk-doks-master.jpg deleted file mode 100644 index 85e772675..000000000 Binary files a/static/images/theme/thumbnail/h-enk-doks-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/h-enk-doks.jpg b/static/images/theme/thumbnail/h-enk-doks.jpg new file mode 100644 index 000000000..5056bc345 Binary files /dev/null and b/static/images/theme/thumbnail/h-enk-doks.jpg differ diff --git a/static/images/theme/thumbnail/h01000110-windows-95-master.jpg b/static/images/theme/thumbnail/h01000110-windows-95-master.jpg deleted file mode 100644 index e1fda8796..000000000 Binary files a/static/images/theme/thumbnail/h01000110-windows-95-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/h01000110-windows-95.jpg b/static/images/theme/thumbnail/h01000110-windows-95.jpg new file mode 100644 index 000000000..45234edc5 Binary files /dev/null and b/static/images/theme/thumbnail/h01000110-windows-95.jpg differ diff --git a/static/images/theme/thumbnail/hadisinaee-avicenna-develop.jpg b/static/images/theme/thumbnail/hadisinaee-avicenna-develop.jpg deleted file mode 100644 index f82a30727..000000000 Binary files a/static/images/theme/thumbnail/hadisinaee-avicenna-develop.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/haezl-gatsby-starter-haezl-master.jpg b/static/images/theme/thumbnail/haezl-gatsby-starter-haezl-master.jpg deleted file mode 100644 index f49a747ea..000000000 Binary files a/static/images/theme/thumbnail/haezl-gatsby-starter-haezl-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/hagnerd-gatsby-starter-blog-mdx-master.jpg b/static/images/theme/thumbnail/hagnerd-gatsby-starter-blog-mdx-master.jpg deleted file mode 100644 index d4a1c24e9..000000000 Binary files a/static/images/theme/thumbnail/hagnerd-gatsby-starter-blog-mdx-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/hagnerd-gatsby-starter-blog-mdx.jpg b/static/images/theme/thumbnail/hagnerd-gatsby-starter-blog-mdx.jpg new file mode 100644 index 000000000..8d0c63190 Binary files /dev/null and b/static/images/theme/thumbnail/hagnerd-gatsby-starter-blog-mdx.jpg differ diff --git a/static/images/theme/thumbnail/halogenica-beautifulhugo-master.jpg b/static/images/theme/thumbnail/halogenica-beautifulhugo-master.jpg deleted file mode 100644 index f6bf85609..000000000 Binary files a/static/images/theme/thumbnail/halogenica-beautifulhugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/harshil1712-gatsby-starter-googlesheets-master.jpg b/static/images/theme/thumbnail/harshil1712-gatsby-starter-googlesheets-master.jpg deleted file mode 100644 index cfce27aff..000000000 Binary files a/static/images/theme/thumbnail/harshil1712-gatsby-starter-googlesheets-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/harshil1712-gatsby-starter-googlesheets.jpg b/static/images/theme/thumbnail/harshil1712-gatsby-starter-googlesheets.jpg new file mode 100644 index 000000000..db65e256e Binary files /dev/null and b/static/images/theme/thumbnail/harshil1712-gatsby-starter-googlesheets.jpg differ diff --git a/static/images/theme/thumbnail/hasura-gatsby-gitbook-starter-master.jpg b/static/images/theme/thumbnail/hasura-gatsby-gitbook-starter-master.jpg deleted file mode 100644 index f4f008ce3..000000000 Binary files a/static/images/theme/thumbnail/hasura-gatsby-gitbook-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/hasura-gatsby-gitbook-starter.jpg b/static/images/theme/thumbnail/hasura-gatsby-gitbook-starter.jpg new file mode 100644 index 000000000..a1399ab36 Binary files /dev/null and b/static/images/theme/thumbnail/hasura-gatsby-gitbook-starter.jpg differ diff --git a/static/images/theme/thumbnail/hauke96-hugo-theme-hamburg-master.jpg b/static/images/theme/thumbnail/hauke96-hugo-theme-hamburg-master.jpg deleted file mode 100644 index 57c19edb0..000000000 Binary files a/static/images/theme/thumbnail/hauke96-hugo-theme-hamburg-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/hdcdstr8fwd-foundation-theme-master.jpg b/static/images/theme/thumbnail/hdcdstr8fwd-foundation-theme-master.jpg deleted file mode 100644 index c22177500..000000000 Binary files a/static/images/theme/thumbnail/hdcdstr8fwd-foundation-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/heiswayi-textlog-gh-pages.jpg b/static/images/theme/thumbnail/heiswayi-textlog-gh-pages.jpg deleted file mode 100644 index 123432569..000000000 Binary files a/static/images/theme/thumbnail/heiswayi-textlog-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/heiswayi-textlog.jpg b/static/images/theme/thumbnail/heiswayi-textlog.jpg new file mode 100644 index 000000000..cf59a26b8 Binary files /dev/null and b/static/images/theme/thumbnail/heiswayi-textlog.jpg differ diff --git a/static/images/theme/thumbnail/heiswayi-the-plain-master.jpg b/static/images/theme/thumbnail/heiswayi-the-plain-master.jpg deleted file mode 100644 index 5d8ac4252..000000000 Binary files a/static/images/theme/thumbnail/heiswayi-the-plain-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/heiswayi-the-plain.jpg b/static/images/theme/thumbnail/heiswayi-the-plain.jpg new file mode 100644 index 000000000..89c81a2c4 Binary files /dev/null and b/static/images/theme/thumbnail/heiswayi-the-plain.jpg differ diff --git a/static/images/theme/thumbnail/heiswayi-thinkspace-master.jpg b/static/images/theme/thumbnail/heiswayi-thinkspace-master.jpg deleted file mode 100644 index e9c4f8cca..000000000 Binary files a/static/images/theme/thumbnail/heiswayi-thinkspace-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/heiswayi-thinkspace.jpg b/static/images/theme/thumbnail/heiswayi-thinkspace.jpg new file mode 100644 index 000000000..11736617b Binary files /dev/null and b/static/images/theme/thumbnail/heiswayi-thinkspace.jpg differ diff --git a/static/images/theme/thumbnail/heliumjk-heliumjk.github.io-master.jpg b/static/images/theme/thumbnail/heliumjk-heliumjk.github.io-master.jpg deleted file mode 100644 index 40021b57a..000000000 Binary files a/static/images/theme/thumbnail/heliumjk-heliumjk.github.io-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/heliumjk-heliumjk.github.io.jpg b/static/images/theme/thumbnail/heliumjk-heliumjk.github.io.jpg new file mode 100644 index 000000000..b45c5a8cd Binary files /dev/null and b/static/images/theme/thumbnail/heliumjk-heliumjk.github.io.jpg differ diff --git a/static/images/theme/thumbnail/hellocosmin-gridsome-starter-bleda-master.jpg b/static/images/theme/thumbnail/hellocosmin-gridsome-starter-bleda-master.jpg deleted file mode 100644 index 145c50fc0..000000000 Binary files a/static/images/theme/thumbnail/hellocosmin-gridsome-starter-bleda-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/hellocosmin-gridsome-starter-bleda.jpg b/static/images/theme/thumbnail/hellocosmin-gridsome-starter-bleda.jpg new file mode 100644 index 000000000..00fd60b07 Binary files /dev/null and b/static/images/theme/thumbnail/hellocosmin-gridsome-starter-bleda.jpg differ diff --git a/static/images/theme/thumbnail/hemangsk-devjournal-master.jpg b/static/images/theme/thumbnail/hemangsk-devjournal-master.jpg deleted file mode 100644 index 71869d56a..000000000 Binary files a/static/images/theme/thumbnail/hemangsk-devjournal-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/hemangsk-devjournal.jpg b/static/images/theme/thumbnail/hemangsk-devjournal.jpg new file mode 100644 index 000000000..1f8b46378 Binary files /dev/null and b/static/images/theme/thumbnail/hemangsk-devjournal.jpg differ diff --git a/static/images/theme/thumbnail/hemangsk-gravity-master.jpg b/static/images/theme/thumbnail/hemangsk-gravity-master.jpg deleted file mode 100644 index ff6c4ab9e..000000000 Binary files a/static/images/theme/thumbnail/hemangsk-gravity-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/hemangsk-gravity.jpg b/static/images/theme/thumbnail/hemangsk-gravity.jpg new file mode 100644 index 000000000..9139f256f Binary files /dev/null and b/static/images/theme/thumbnail/hemangsk-gravity.jpg differ diff --git a/static/images/theme/thumbnail/hemangsk-safarnama-master.jpg b/static/images/theme/thumbnail/hemangsk-safarnama-master.jpg deleted file mode 100644 index 71e0ccc92..000000000 Binary files a/static/images/theme/thumbnail/hemangsk-safarnama-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/hemangsk-safarnama.jpg b/static/images/theme/thumbnail/hemangsk-safarnama.jpg new file mode 100644 index 000000000..5d8da84e8 Binary files /dev/null and b/static/images/theme/thumbnail/hemangsk-safarnama.jpg differ diff --git a/static/images/theme/thumbnail/henryhuang-hexo-theme-aloha-master.jpg b/static/images/theme/thumbnail/henryhuang-hexo-theme-aloha-master.jpg deleted file mode 100644 index f70ce8060..000000000 Binary files a/static/images/theme/thumbnail/henryhuang-hexo-theme-aloha-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/henryhuang-hexo-theme-aloha.jpg b/static/images/theme/thumbnail/henryhuang-hexo-theme-aloha.jpg new file mode 100644 index 000000000..84be4c713 Binary files /dev/null and b/static/images/theme/thumbnail/henryhuang-hexo-theme-aloha.jpg differ diff --git a/static/images/theme/thumbnail/henrythemes-jekyll-book-theme-master.jpg b/static/images/theme/thumbnail/henrythemes-jekyll-book-theme-master.jpg deleted file mode 100644 index e8a1dce86..000000000 Binary files a/static/images/theme/thumbnail/henrythemes-jekyll-book-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/henrythemes-jekyll-book-theme.jpg b/static/images/theme/thumbnail/henrythemes-jekyll-book-theme.jpg new file mode 100644 index 000000000..435a605a0 Binary files /dev/null and b/static/images/theme/thumbnail/henrythemes-jekyll-book-theme.jpg differ diff --git a/static/images/theme/thumbnail/henrythemes-jekyll-bootstrap-theme-master.jpg b/static/images/theme/thumbnail/henrythemes-jekyll-bootstrap-theme-master.jpg deleted file mode 100644 index 67eb334ad..000000000 Binary files a/static/images/theme/thumbnail/henrythemes-jekyll-bootstrap-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/henrythemes-jekyll-bootstrap-theme.jpg b/static/images/theme/thumbnail/henrythemes-jekyll-bootstrap-theme.jpg new file mode 100644 index 000000000..065b27b0a Binary files /dev/null and b/static/images/theme/thumbnail/henrythemes-jekyll-bootstrap-theme.jpg differ diff --git a/static/images/theme/thumbnail/henrythemes-jekyll-minimal-theme-master.jpg b/static/images/theme/thumbnail/henrythemes-jekyll-minimal-theme-master.jpg deleted file mode 100644 index 3c58a6995..000000000 Binary files a/static/images/theme/thumbnail/henrythemes-jekyll-minimal-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/henrythemes-jekyll-minimal-theme.jpg b/static/images/theme/thumbnail/henrythemes-jekyll-minimal-theme.jpg new file mode 100644 index 000000000..c7e6318ac Binary files /dev/null and b/static/images/theme/thumbnail/henrythemes-jekyll-minimal-theme.jpg differ diff --git a/static/images/theme/thumbnail/himali-patel-myclicks-master.jpg b/static/images/theme/thumbnail/himali-patel-myclicks-master.jpg deleted file mode 100644 index 0543d9922..000000000 Binary files a/static/images/theme/thumbnail/himali-patel-myclicks-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/himali-patel-myclicks.jpg b/static/images/theme/thumbnail/himali-patel-myclicks.jpg new file mode 100644 index 000000000..c1799a3fb Binary files /dev/null and b/static/images/theme/thumbnail/himali-patel-myclicks.jpg differ diff --git a/static/images/theme/thumbnail/histaff-website-static-master.jpg b/static/images/theme/thumbnail/histaff-website-static-master.jpg deleted file mode 100644 index d113883c5..000000000 Binary files a/static/images/theme/thumbnail/histaff-website-static-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/histaff-website-static.jpg b/static/images/theme/thumbnail/histaff-website-static.jpg new file mode 100644 index 000000000..e6aca151b Binary files /dev/null and b/static/images/theme/thumbnail/histaff-website-static.jpg differ diff --git a/static/images/theme/thumbnail/hmfaysal-hmfaysal-omega-theme-gh-pages.jpg b/static/images/theme/thumbnail/hmfaysal-hmfaysal-omega-theme-gh-pages.jpg deleted file mode 100644 index fecb36197..000000000 Binary files a/static/images/theme/thumbnail/hmfaysal-hmfaysal-omega-theme-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/hmfaysal-hmfaysal-omega-theme.jpg b/static/images/theme/thumbnail/hmfaysal-hmfaysal-omega-theme.jpg new file mode 100644 index 000000000..5a43fbb0f Binary files /dev/null and b/static/images/theme/thumbnail/hmfaysal-hmfaysal-omega-theme.jpg differ diff --git a/static/images/theme/thumbnail/hmfaysal-jekyll-hmfaysal-theme-master.jpg b/static/images/theme/thumbnail/hmfaysal-jekyll-hmfaysal-theme-master.jpg deleted file mode 100644 index 510819554..000000000 Binary files a/static/images/theme/thumbnail/hmfaysal-jekyll-hmfaysal-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/hmfaysal-jekyll-hmfaysal-theme.jpg b/static/images/theme/thumbnail/hmfaysal-jekyll-hmfaysal-theme.jpg new file mode 100644 index 000000000..6dd449c1b Binary files /dev/null and b/static/images/theme/thumbnail/hmfaysal-jekyll-hmfaysal-theme.jpg differ diff --git a/static/images/theme/thumbnail/hmfaysal-notepad-gh-pages.jpg b/static/images/theme/thumbnail/hmfaysal-notepad-gh-pages.jpg deleted file mode 100644 index 0b7648312..000000000 Binary files a/static/images/theme/thumbnail/hmfaysal-notepad-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/holger1411-11straps.jpg b/static/images/theme/thumbnail/holger1411-11straps.jpg new file mode 100644 index 000000000..2dcdc627a Binary files /dev/null and b/static/images/theme/thumbnail/holger1411-11straps.jpg differ diff --git a/static/images/theme/thumbnail/holger1411-brook-dev.jpg b/static/images/theme/thumbnail/holger1411-brook-dev.jpg new file mode 100644 index 000000000..0911fa886 Binary files /dev/null and b/static/images/theme/thumbnail/holger1411-brook-dev.jpg differ diff --git a/static/images/theme/thumbnail/holman-left-gh-pages.jpg b/static/images/theme/thumbnail/holman-left-gh-pages.jpg deleted file mode 100644 index 13bf96dbc..000000000 Binary files a/static/images/theme/thumbnail/holman-left-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/holman-left.jpg b/static/images/theme/thumbnail/holman-left.jpg new file mode 100644 index 000000000..8fc68cfe3 Binary files /dev/null and b/static/images/theme/thumbnail/holman-left.jpg differ diff --git a/static/images/theme/thumbnail/htdvisser-hugo-base16-theme-master.jpg b/static/images/theme/thumbnail/htdvisser-hugo-base16-theme-master.jpg deleted file mode 100644 index ec44b4466..000000000 Binary files a/static/images/theme/thumbnail/htdvisser-hugo-base16-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/htr3n-hyde-hyde-master.jpg b/static/images/theme/thumbnail/htr3n-hyde-hyde-master.jpg deleted file mode 100644 index 3b5c56695..000000000 Binary files a/static/images/theme/thumbnail/htr3n-hyde-hyde-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/hugo-sid-hugo-blog-awesome.jpg b/static/images/theme/thumbnail/hugo-sid-hugo-blog-awesome.jpg new file mode 100644 index 000000000..177adccf8 Binary files /dev/null and b/static/images/theme/thumbnail/hugo-sid-hugo-blog-awesome.jpg differ diff --git a/static/images/theme/thumbnail/hugocarreira-jekyll-materializecss-gh-pages.jpg b/static/images/theme/thumbnail/hugocarreira-jekyll-materializecss-gh-pages.jpg deleted file mode 100644 index 1fbf458cc..000000000 Binary files a/static/images/theme/thumbnail/hugocarreira-jekyll-materializecss-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/hugocarreira-jekyll-materializecss.jpg b/static/images/theme/thumbnail/hugocarreira-jekyll-materializecss.jpg new file mode 100644 index 000000000..ebe348af5 Binary files /dev/null and b/static/images/theme/thumbnail/hugocarreira-jekyll-materializecss.jpg differ diff --git a/static/images/theme/thumbnail/hugocarreira-jekyll-vision-casper-theme-gh-pages.jpg b/static/images/theme/thumbnail/hugocarreira-jekyll-vision-casper-theme-gh-pages.jpg deleted file mode 100644 index 673a95241..000000000 Binary files a/static/images/theme/thumbnail/hugocarreira-jekyll-vision-casper-theme-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/hugocarreira-jekyll-vision-casper-theme.jpg b/static/images/theme/thumbnail/hugocarreira-jekyll-vision-casper-theme.jpg new file mode 100644 index 000000000..3eac99d13 Binary files /dev/null and b/static/images/theme/thumbnail/hugocarreira-jekyll-vision-casper-theme.jpg differ diff --git a/static/images/theme/thumbnail/hugoferreira-papyrus-theme-master.jpg b/static/images/theme/thumbnail/hugoferreira-papyrus-theme-master.jpg deleted file mode 100644 index c5a78aa44..000000000 Binary files a/static/images/theme/thumbnail/hugoferreira-papyrus-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/hugoferreira-papyrus-theme.jpg b/static/images/theme/thumbnail/hugoferreira-papyrus-theme.jpg new file mode 100644 index 000000000..0824316e7 Binary files /dev/null and b/static/images/theme/thumbnail/hugoferreira-papyrus-theme.jpg differ diff --git a/static/images/theme/thumbnail/humrochagf-colordrop-master.jpg b/static/images/theme/thumbnail/humrochagf-colordrop-master.jpg deleted file mode 100644 index 7173eb4db..000000000 Binary files a/static/images/theme/thumbnail/humrochagf-colordrop-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/humrochagf-colordrop.jpg b/static/images/theme/thumbnail/humrochagf-colordrop.jpg new file mode 100644 index 000000000..082f7f9fe Binary files /dev/null and b/static/images/theme/thumbnail/humrochagf-colordrop.jpg differ diff --git a/static/images/theme/thumbnail/huweihuang-hexo-theme-huweihuang-master.jpg b/static/images/theme/thumbnail/huweihuang-hexo-theme-huweihuang-master.jpg deleted file mode 100644 index 49e215bfe..000000000 Binary files a/static/images/theme/thumbnail/huweihuang-hexo-theme-huweihuang-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/huweihuang-hexo-theme-huweihuang.jpg b/static/images/theme/thumbnail/huweihuang-hexo-theme-huweihuang.jpg new file mode 100644 index 000000000..819cd754c Binary files /dev/null and b/static/images/theme/thumbnail/huweihuang-hexo-theme-huweihuang.jpg differ diff --git a/static/images/theme/thumbnail/huyb1991-hugo-lamp-master.jpg b/static/images/theme/thumbnail/huyb1991-hugo-lamp-master.jpg deleted file mode 100644 index 64f108ba2..000000000 Binary files a/static/images/theme/thumbnail/huyb1991-hugo-lamp-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/huyingjie-hexo-theme-a-rsnippet-master.jpg b/static/images/theme/thumbnail/huyingjie-hexo-theme-a-rsnippet-master.jpg deleted file mode 100644 index ea45e8410..000000000 Binary files a/static/images/theme/thumbnail/huyingjie-hexo-theme-a-rsnippet-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/icyris-hugo-theme-yuki-master.jpg b/static/images/theme/thumbnail/icyris-hugo-theme-yuki-master.jpg deleted file mode 100644 index 8e62f3083..000000000 Binary files a/static/images/theme/thumbnail/icyris-hugo-theme-yuki-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ifedyukin-mekyll-master.jpg b/static/images/theme/thumbnail/ifedyukin-mekyll-master.jpg deleted file mode 100644 index edf77c964..000000000 Binary files a/static/images/theme/thumbnail/ifedyukin-mekyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ifedyukin-mekyll.jpg b/static/images/theme/thumbnail/ifedyukin-mekyll.jpg new file mode 100644 index 000000000..6d2fd4022 Binary files /dev/null and b/static/images/theme/thumbnail/ifedyukin-mekyll.jpg differ diff --git a/static/images/theme/thumbnail/ijjk-notion-blog.jpg b/static/images/theme/thumbnail/ijjk-notion-blog.jpg new file mode 100644 index 000000000..721acad82 Binary files /dev/null and b/static/images/theme/thumbnail/ijjk-notion-blog.jpg differ diff --git a/static/images/theme/thumbnail/ijsucceed-onepress-master.jpg b/static/images/theme/thumbnail/ijsucceed-onepress-master.jpg deleted file mode 100644 index b83f5f55f..000000000 Binary files a/static/images/theme/thumbnail/ijsucceed-onepress-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/imedadel-gatsby-london-master.jpg b/static/images/theme/thumbnail/imedadel-gatsby-london-master.jpg deleted file mode 100644 index 43ddd82d9..000000000 Binary files a/static/images/theme/thumbnail/imedadel-gatsby-london-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/imedadel-gatsby-london.jpg b/static/images/theme/thumbnail/imedadel-gatsby-london.jpg new file mode 100644 index 000000000..5ef3a135f Binary files /dev/null and b/static/images/theme/thumbnail/imedadel-gatsby-london.jpg differ diff --git a/static/images/theme/thumbnail/inded-jekyll_modern-blog-gh-pages.jpg b/static/images/theme/thumbnail/inded-jekyll_modern-blog-gh-pages.jpg deleted file mode 100644 index 89576a36c..000000000 Binary files a/static/images/theme/thumbnail/inded-jekyll_modern-blog-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/inded-jekyll_modern-blog.jpg b/static/images/theme/thumbnail/inded-jekyll_modern-blog.jpg new file mode 100644 index 000000000..b0a0651c2 Binary files /dev/null and b/static/images/theme/thumbnail/inded-jekyll_modern-blog.jpg differ diff --git a/static/images/theme/thumbnail/insidiousmind-material-bliss-jekyll-theme-master.jpg b/static/images/theme/thumbnail/insidiousmind-material-bliss-jekyll-theme-master.jpg deleted file mode 100644 index 4ff97891d..000000000 Binary files a/static/images/theme/thumbnail/insidiousmind-material-bliss-jekyll-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/insidiousmind-material-bliss-jekyll-theme.jpg b/static/images/theme/thumbnail/insidiousmind-material-bliss-jekyll-theme.jpg new file mode 100644 index 000000000..0d37b3922 Binary files /dev/null and b/static/images/theme/thumbnail/insidiousmind-material-bliss-jekyll-theme.jpg differ diff --git a/static/images/theme/thumbnail/issydennis-gatsby-snipcart-master.jpg b/static/images/theme/thumbnail/issydennis-gatsby-snipcart-master.jpg deleted file mode 100644 index 020ee3737..000000000 Binary files a/static/images/theme/thumbnail/issydennis-gatsby-snipcart-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/issydennis-gatsby-snipcart.jpg b/static/images/theme/thumbnail/issydennis-gatsby-snipcart.jpg new file mode 100644 index 000000000..1a4122d71 Binary files /dev/null and b/static/images/theme/thumbnail/issydennis-gatsby-snipcart.jpg differ diff --git a/static/images/theme/thumbnail/it-gro-hugo-theme-w3css-basic-master.jpg b/static/images/theme/thumbnail/it-gro-hugo-theme-w3css-basic-master.jpg deleted file mode 100644 index f89a1aa77..000000000 Binary files a/static/images/theme/thumbnail/it-gro-hugo-theme-w3css-basic-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/it-gro-hugo-theme-w3css-basic.jpg b/static/images/theme/thumbnail/it-gro-hugo-theme-w3css-basic.jpg new file mode 100644 index 000000000..ee6e18338 Binary files /dev/null and b/static/images/theme/thumbnail/it-gro-hugo-theme-w3css-basic.jpg differ diff --git a/static/images/theme/thumbnail/itisbenjamin-nice_blog-master.jpg b/static/images/theme/thumbnail/itisbenjamin-nice_blog-master.jpg deleted file mode 100644 index 1eb29887b..000000000 Binary files a/static/images/theme/thumbnail/itisbenjamin-nice_blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/itsmeaga1n-minimal-categorized-master.jpg b/static/images/theme/thumbnail/itsmeaga1n-minimal-categorized-master.jpg deleted file mode 100644 index a1bb8fc51..000000000 Binary files a/static/images/theme/thumbnail/itsmeaga1n-minimal-categorized-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/itsmeaga1n-minimal-categorized.jpg b/static/images/theme/thumbnail/itsmeaga1n-minimal-categorized.jpg new file mode 100644 index 000000000..39becdf53 Binary files /dev/null and b/static/images/theme/thumbnail/itsmeaga1n-minimal-categorized.jpg differ diff --git a/static/images/theme/thumbnail/itsnwa-darkfolio-master.jpg b/static/images/theme/thumbnail/itsnwa-darkfolio-master.jpg deleted file mode 100644 index 75b82aff5..000000000 Binary files a/static/images/theme/thumbnail/itsnwa-darkfolio-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/itsnwa-darkfolio.jpg b/static/images/theme/thumbnail/itsnwa-darkfolio.jpg new file mode 100644 index 000000000..f8f9cc968 Binary files /dev/null and b/static/images/theme/thumbnail/itsnwa-darkfolio.jpg differ diff --git a/static/images/theme/thumbnail/itsnwa-gridsome-forestry-starter-master.jpg b/static/images/theme/thumbnail/itsnwa-gridsome-forestry-starter-master.jpg deleted file mode 100644 index 334004a5b..000000000 Binary files a/static/images/theme/thumbnail/itsnwa-gridsome-forestry-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/itsnwa-gridsome-forestry-starter.jpg b/static/images/theme/thumbnail/itsnwa-gridsome-forestry-starter.jpg new file mode 100644 index 000000000..dda567e8c Binary files /dev/null and b/static/images/theme/thumbnail/itsnwa-gridsome-forestry-starter.jpg differ diff --git a/static/images/theme/thumbnail/itsrifat-rifyll-master.jpg b/static/images/theme/thumbnail/itsrifat-rifyll-master.jpg deleted file mode 100644 index 2f60968a8..000000000 Binary files a/static/images/theme/thumbnail/itsrifat-rifyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/itsrifat-rifyll.jpg b/static/images/theme/thumbnail/itsrifat-rifyll.jpg new file mode 100644 index 000000000..481c7e392 Binary files /dev/null and b/static/images/theme/thumbnail/itsrifat-rifyll.jpg differ diff --git a/static/images/theme/thumbnail/ivanchou-hugo-theme-vec-master.jpg b/static/images/theme/thumbnail/ivanchou-hugo-theme-vec-master.jpg deleted file mode 100644 index cd13d159a..000000000 Binary files a/static/images/theme/thumbnail/ivanchou-hugo-theme-vec-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/iwiedenm-jekyll-theme-massively-src-master.jpg b/static/images/theme/thumbnail/iwiedenm-jekyll-theme-massively-src-master.jpg deleted file mode 100644 index db3c50288..000000000 Binary files a/static/images/theme/thumbnail/iwiedenm-jekyll-theme-massively-src-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/iwiedenm-jekyll-theme-massively-src.jpg b/static/images/theme/thumbnail/iwiedenm-jekyll-theme-massively-src.jpg new file mode 100644 index 000000000..3f5945335 Binary files /dev/null and b/static/images/theme/thumbnail/iwiedenm-jekyll-theme-massively-src.jpg differ diff --git a/static/images/theme/thumbnail/iwilsonq-gatsby-starter-reasonml-master.jpg b/static/images/theme/thumbnail/iwilsonq-gatsby-starter-reasonml-master.jpg deleted file mode 100644 index eafb6875b..000000000 Binary files a/static/images/theme/thumbnail/iwilsonq-gatsby-starter-reasonml-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/iwilsonq-gatsby-starter-reasonml.jpg b/static/images/theme/thumbnail/iwilsonq-gatsby-starter-reasonml.jpg new file mode 100644 index 000000000..490423870 Binary files /dev/null and b/static/images/theme/thumbnail/iwilsonq-gatsby-starter-reasonml.jpg differ diff --git a/static/images/theme/thumbnail/ixartz-astro-boilerplate.jpg b/static/images/theme/thumbnail/ixartz-astro-boilerplate.jpg new file mode 100644 index 000000000..c4ed1b58e Binary files /dev/null and b/static/images/theme/thumbnail/ixartz-astro-boilerplate.jpg differ diff --git a/static/images/theme/thumbnail/ixartz-eleventy-starter-boilerplate-master.jpg b/static/images/theme/thumbnail/ixartz-eleventy-starter-boilerplate-master.jpg deleted file mode 100644 index 606587163..000000000 Binary files a/static/images/theme/thumbnail/ixartz-eleventy-starter-boilerplate-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ixartz-eleventy-starter-boilerplate.jpg b/static/images/theme/thumbnail/ixartz-eleventy-starter-boilerplate.jpg new file mode 100644 index 000000000..b4ee3edea Binary files /dev/null and b/static/images/theme/thumbnail/ixartz-eleventy-starter-boilerplate.jpg differ diff --git a/static/images/theme/thumbnail/ixartz-next-js-blog-boilerplate-master.jpg b/static/images/theme/thumbnail/ixartz-next-js-blog-boilerplate-master.jpg deleted file mode 100644 index cfbc503f9..000000000 Binary files a/static/images/theme/thumbnail/ixartz-next-js-blog-boilerplate-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ixartz-next-js-blog-boilerplate.jpg b/static/images/theme/thumbnail/ixartz-next-js-blog-boilerplate.jpg new file mode 100644 index 000000000..3566f5572 Binary files /dev/null and b/static/images/theme/thumbnail/ixartz-next-js-blog-boilerplate.jpg differ diff --git a/static/images/theme/thumbnail/ixartz-next-js-boilerplate-master.jpg b/static/images/theme/thumbnail/ixartz-next-js-boilerplate-master.jpg deleted file mode 100644 index 35a979197..000000000 Binary files a/static/images/theme/thumbnail/ixartz-next-js-boilerplate-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ixartz-next-js-boilerplate.jpg b/static/images/theme/thumbnail/ixartz-next-js-boilerplate.jpg new file mode 100644 index 000000000..8011d89f3 Binary files /dev/null and b/static/images/theme/thumbnail/ixartz-next-js-boilerplate.jpg differ diff --git a/static/images/theme/thumbnail/ixartz-next-js-landing-page-starter-template.jpg b/static/images/theme/thumbnail/ixartz-next-js-landing-page-starter-template.jpg new file mode 100644 index 000000000..a6b780220 Binary files /dev/null and b/static/images/theme/thumbnail/ixartz-next-js-landing-page-starter-template.jpg differ diff --git a/static/images/theme/thumbnail/jackbravo-gatsby-starter-i18n-blog-master.jpg b/static/images/theme/thumbnail/jackbravo-gatsby-starter-i18n-blog-master.jpg deleted file mode 100644 index 541b3b823..000000000 Binary files a/static/images/theme/thumbnail/jackbravo-gatsby-starter-i18n-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jackbravo-gatsby-starter-i18n-blog.jpg b/static/images/theme/thumbnail/jackbravo-gatsby-starter-i18n-blog.jpg new file mode 100644 index 000000000..6eb254239 Binary files /dev/null and b/static/images/theme/thumbnail/jackbravo-gatsby-starter-i18n-blog.jpg differ diff --git a/static/images/theme/thumbnail/jacobsun-edidor-master.jpg b/static/images/theme/thumbnail/jacobsun-edidor-master.jpg deleted file mode 100644 index 1ac405360..000000000 Binary files a/static/images/theme/thumbnail/jacobsun-edidor-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jacobtomlinson-carte-noire-gh-pages.jpg b/static/images/theme/thumbnail/jacobtomlinson-carte-noire-gh-pages.jpg deleted file mode 100644 index c47705aa6..000000000 Binary files a/static/images/theme/thumbnail/jacobtomlinson-carte-noire-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jacobtomlinson-carte-noire.jpg b/static/images/theme/thumbnail/jacobtomlinson-carte-noire.jpg new file mode 100644 index 000000000..0ae0e0258 Binary files /dev/null and b/static/images/theme/thumbnail/jacobtomlinson-carte-noire.jpg differ diff --git a/static/images/theme/thumbnail/jaden-twentyfourteen-master.jpg b/static/images/theme/thumbnail/jaden-twentyfourteen-master.jpg deleted file mode 100644 index d1e122c27..000000000 Binary files a/static/images/theme/thumbnail/jaden-twentyfourteen-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jaehee0113-console-master.jpg b/static/images/theme/thumbnail/jaehee0113-console-master.jpg deleted file mode 100644 index 461800907..000000000 Binary files a/static/images/theme/thumbnail/jaehee0113-console-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jaehee0113-console.jpg b/static/images/theme/thumbnail/jaehee0113-console.jpg new file mode 100644 index 000000000..cb168d672 Binary files /dev/null and b/static/images/theme/thumbnail/jaehee0113-console.jpg differ diff --git a/static/images/theme/thumbnail/jaeyeophan-gatsby-starter-bee-master.jpg b/static/images/theme/thumbnail/jaeyeophan-gatsby-starter-bee-master.jpg deleted file mode 100644 index 1ce57e33d..000000000 Binary files a/static/images/theme/thumbnail/jaeyeophan-gatsby-starter-bee-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jaeyeophan-gatsby-starter-bee.jpg b/static/images/theme/thumbnail/jaeyeophan-gatsby-starter-bee.jpg new file mode 100644 index 000000000..a7c0469d9 Binary files /dev/null and b/static/images/theme/thumbnail/jaeyeophan-gatsby-starter-bee.jpg differ diff --git a/static/images/theme/thumbnail/jake-101-bael-template-master.jpg b/static/images/theme/thumbnail/jake-101-bael-template-master.jpg deleted file mode 100644 index ed36a2739..000000000 Binary files a/static/images/theme/thumbnail/jake-101-bael-template-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jake-101-bael-template.jpg b/static/images/theme/thumbnail/jake-101-bael-template.jpg new file mode 100644 index 000000000..00cfea0ce Binary files /dev/null and b/static/images/theme/thumbnail/jake-101-bael-template.jpg differ diff --git a/static/images/theme/thumbnail/jameshamann-jekyll-material-theme-master.jpg b/static/images/theme/thumbnail/jameshamann-jekyll-material-theme-master.jpg deleted file mode 100644 index 563391315..000000000 Binary files a/static/images/theme/thumbnail/jameshamann-jekyll-material-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jameshamann-jekyll-material-theme.jpg b/static/images/theme/thumbnail/jameshamann-jekyll-material-theme.jpg new file mode 100644 index 000000000..37fe99d26 Binary files /dev/null and b/static/images/theme/thumbnail/jameshamann-jekyll-material-theme.jpg differ diff --git a/static/images/theme/thumbnail/jamigibbs-phantom-master.jpg b/static/images/theme/thumbnail/jamigibbs-phantom-master.jpg deleted file mode 100644 index 5011e93a3..000000000 Binary files a/static/images/theme/thumbnail/jamigibbs-phantom-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jamigibbs-phantom.jpg b/static/images/theme/thumbnail/jamigibbs-phantom.jpg new file mode 100644 index 000000000..ce0c76e48 Binary files /dev/null and b/static/images/theme/thumbnail/jamigibbs-phantom.jpg differ diff --git a/static/images/theme/thumbnail/janczizikow-sleek-master.jpg b/static/images/theme/thumbnail/janczizikow-sleek-master.jpg deleted file mode 100644 index d2ea7cd17..000000000 Binary files a/static/images/theme/thumbnail/janczizikow-sleek-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/janczizikow-sleek.jpg b/static/images/theme/thumbnail/janczizikow-sleek.jpg new file mode 100644 index 000000000..3dae42a65 Binary files /dev/null and b/static/images/theme/thumbnail/janczizikow-sleek.jpg differ diff --git a/static/images/theme/thumbnail/jannikbuschke-gatsby-antd-docs-master.jpg b/static/images/theme/thumbnail/jannikbuschke-gatsby-antd-docs-master.jpg deleted file mode 100644 index 4ba357268..000000000 Binary files a/static/images/theme/thumbnail/jannikbuschke-gatsby-antd-docs-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jannikbuschke-gatsby-antd-docs.jpg b/static/images/theme/thumbnail/jannikbuschke-gatsby-antd-docs.jpg new file mode 100644 index 000000000..98786fdc4 Binary files /dev/null and b/static/images/theme/thumbnail/jannikbuschke-gatsby-antd-docs.jpg differ diff --git a/static/images/theme/thumbnail/janraasch-hugo-scroll.jpg b/static/images/theme/thumbnail/janraasch-hugo-scroll.jpg new file mode 100644 index 000000000..9a14af514 Binary files /dev/null and b/static/images/theme/thumbnail/janraasch-hugo-scroll.jpg differ diff --git a/static/images/theme/thumbnail/jarrekk-jalpc-master.jpg b/static/images/theme/thumbnail/jarrekk-jalpc-master.jpg deleted file mode 100644 index a4cdfd833..000000000 Binary files a/static/images/theme/thumbnail/jarrekk-jalpc-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jarrekk-jalpc.jpg b/static/images/theme/thumbnail/jarrekk-jalpc.jpg new file mode 100644 index 000000000..e4d1d2c32 Binary files /dev/null and b/static/images/theme/thumbnail/jarrekk-jalpc.jpg differ diff --git a/static/images/theme/thumbnail/jasoncostello-slate-gh-pages.jpg b/static/images/theme/thumbnail/jasoncostello-slate-gh-pages.jpg deleted file mode 100644 index 2abe8abd6..000000000 Binary files a/static/images/theme/thumbnail/jasoncostello-slate-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jasoncostello-slate.jpg b/static/images/theme/thumbnail/jasoncostello-slate.jpg new file mode 100644 index 000000000..850732388 Binary files /dev/null and b/static/images/theme/thumbnail/jasoncostello-slate.jpg differ diff --git a/static/images/theme/thumbnail/jaymehta20-nextjs-blog-page.jpg b/static/images/theme/thumbnail/jaymehta20-nextjs-blog-page.jpg new file mode 100644 index 000000000..d661aa869 Binary files /dev/null and b/static/images/theme/thumbnail/jaymehta20-nextjs-blog-page.jpg differ diff --git a/static/images/theme/thumbnail/jbub-ghostwriter-master.jpg b/static/images/theme/thumbnail/jbub-ghostwriter-master.jpg deleted file mode 100644 index b832b43da..000000000 Binary files a/static/images/theme/thumbnail/jbub-ghostwriter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jdh8-sweet-16-master.jpg b/static/images/theme/thumbnail/jdh8-sweet-16-master.jpg deleted file mode 100644 index a5372a58a..000000000 Binary files a/static/images/theme/thumbnail/jdh8-sweet-16-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jeblister-bulma-master.jpg b/static/images/theme/thumbnail/jeblister-bulma-master.jpg deleted file mode 100644 index 43934e919..000000000 Binary files a/static/images/theme/thumbnail/jeblister-bulma-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jeblister-kube-master.jpg b/static/images/theme/thumbnail/jeblister-kube-master.jpg deleted file mode 100644 index b6943ae13..000000000 Binary files a/static/images/theme/thumbnail/jeblister-kube-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jeblister-kube.jpg b/static/images/theme/thumbnail/jeblister-kube.jpg new file mode 100644 index 000000000..827bf90e7 Binary files /dev/null and b/static/images/theme/thumbnail/jeblister-kube.jpg differ diff --git a/static/images/theme/thumbnail/jeffreytse-jekyll-theme-yat-master.jpg b/static/images/theme/thumbnail/jeffreytse-jekyll-theme-yat-master.jpg deleted file mode 100644 index 02a45e9b4..000000000 Binary files a/static/images/theme/thumbnail/jeffreytse-jekyll-theme-yat-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jeffreytse-jekyll-theme-yat.jpg b/static/images/theme/thumbnail/jeffreytse-jekyll-theme-yat.jpg new file mode 100644 index 000000000..42b2642f9 Binary files /dev/null and b/static/images/theme/thumbnail/jeffreytse-jekyll-theme-yat.jpg differ diff --git a/static/images/theme/thumbnail/jekyll-garden-jekyll-garden.github.io.jpg b/static/images/theme/thumbnail/jekyll-garden-jekyll-garden.github.io.jpg new file mode 100644 index 000000000..b5dd65af2 Binary files /dev/null and b/static/images/theme/thumbnail/jekyll-garden-jekyll-garden.github.io.jpg differ diff --git a/static/images/theme/thumbnail/jekyll-one-j1-template-starter.jpg b/static/images/theme/thumbnail/jekyll-one-j1-template-starter.jpg new file mode 100644 index 000000000..6437529cb Binary files /dev/null and b/static/images/theme/thumbnail/jekyll-one-j1-template-starter.jpg differ diff --git a/static/images/theme/thumbnail/jekyller-jasper2-master.jpg b/static/images/theme/thumbnail/jekyller-jasper2-master.jpg deleted file mode 100644 index bee37c23a..000000000 Binary files a/static/images/theme/thumbnail/jekyller-jasper2-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jekyller-online-cv-master.jpg b/static/images/theme/thumbnail/jekyller-online-cv-master.jpg deleted file mode 100644 index b0e3f0e19..000000000 Binary files a/static/images/theme/thumbnail/jekyller-online-cv-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jekyller-online-cv.jpg b/static/images/theme/thumbnail/jekyller-online-cv.jpg new file mode 100644 index 000000000..982986986 Binary files /dev/null and b/static/images/theme/thumbnail/jekyller-online-cv.jpg differ diff --git a/static/images/theme/thumbnail/jekyller-panelcv-master.jpg b/static/images/theme/thumbnail/jekyller-panelcv-master.jpg deleted file mode 100644 index 48b22e12d..000000000 Binary files a/static/images/theme/thumbnail/jekyller-panelcv-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jekyller-panelcv.jpg b/static/images/theme/thumbnail/jekyller-panelcv.jpg new file mode 100644 index 000000000..72d0cd83f Binary files /dev/null and b/static/images/theme/thumbnail/jekyller-panelcv.jpg differ diff --git a/static/images/theme/thumbnail/jekynewage-jekynewage.github.io-master.jpg b/static/images/theme/thumbnail/jekynewage-jekynewage.github.io-master.jpg deleted file mode 100644 index e3b59ff65..000000000 Binary files a/static/images/theme/thumbnail/jekynewage-jekynewage.github.io-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jekynewage-jekynewage.github.io.jpg b/static/images/theme/thumbnail/jekynewage-jekynewage.github.io.jpg new file mode 100644 index 000000000..1ed0beef5 Binary files /dev/null and b/static/images/theme/thumbnail/jekynewage-jekynewage.github.io.jpg differ diff --git a/static/images/theme/thumbnail/jeromelachaud-freelancer-theme-master.jpg b/static/images/theme/thumbnail/jeromelachaud-freelancer-theme-master.jpg deleted file mode 100644 index 4399c166e..000000000 Binary files a/static/images/theme/thumbnail/jeromelachaud-freelancer-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jeromelachaud-freelancer-theme.jpg b/static/images/theme/thumbnail/jeromelachaud-freelancer-theme.jpg new file mode 100644 index 000000000..cfbefa482 Binary files /dev/null and b/static/images/theme/thumbnail/jeromelachaud-freelancer-theme.jpg differ diff --git a/static/images/theme/thumbnail/jeromelachaud-grayscale-theme-master.jpg b/static/images/theme/thumbnail/jeromelachaud-grayscale-theme-master.jpg deleted file mode 100644 index a30d0bcb9..000000000 Binary files a/static/images/theme/thumbnail/jeromelachaud-grayscale-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jeromelachaud-grayscale-theme.jpg b/static/images/theme/thumbnail/jeromelachaud-grayscale-theme.jpg new file mode 100644 index 000000000..e1e6240dd Binary files /dev/null and b/static/images/theme/thumbnail/jeromelachaud-grayscale-theme.jpg differ diff --git a/static/images/theme/thumbnail/jerryc127-hexo-theme-butterfly-master.jpg b/static/images/theme/thumbnail/jerryc127-hexo-theme-butterfly-master.jpg deleted file mode 100644 index 2390a322b..000000000 Binary files a/static/images/theme/thumbnail/jerryc127-hexo-theme-butterfly-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jerryc127-hexo-theme-butterfly.jpg b/static/images/theme/thumbnail/jerryc127-hexo-theme-butterfly.jpg new file mode 100644 index 000000000..760a8b70e Binary files /dev/null and b/static/images/theme/thumbnail/jerryc127-hexo-theme-butterfly.jpg differ diff --git a/static/images/theme/thumbnail/jesselau76-hugo-w3-simple-master.jpg b/static/images/theme/thumbnail/jesselau76-hugo-w3-simple-master.jpg deleted file mode 100644 index cf804bd88..000000000 Binary files a/static/images/theme/thumbnail/jesselau76-hugo-w3-simple-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jitinnair1-gradfolio.jpg b/static/images/theme/thumbnail/jitinnair1-gradfolio.jpg new file mode 100644 index 000000000..6a343a2fc Binary files /dev/null and b/static/images/theme/thumbnail/jitinnair1-gradfolio.jpg differ diff --git a/static/images/theme/thumbnail/jjcav84-mdbreact-gatsby-starter-gh-pages.jpg b/static/images/theme/thumbnail/jjcav84-mdbreact-gatsby-starter-gh-pages.jpg deleted file mode 100644 index ad0471862..000000000 Binary files a/static/images/theme/thumbnail/jjcav84-mdbreact-gatsby-starter-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jjcav84-mdbreact-gatsby-starter.jpg b/static/images/theme/thumbnail/jjcav84-mdbreact-gatsby-starter.jpg new file mode 100644 index 000000000..ac46d7217 Binary files /dev/null and b/static/images/theme/thumbnail/jjcav84-mdbreact-gatsby-starter.jpg differ diff --git a/static/images/theme/thumbnail/jkytoela-next-startd.jpg b/static/images/theme/thumbnail/jkytoela-next-startd.jpg new file mode 100644 index 000000000..e9f75b41f Binary files /dev/null and b/static/images/theme/thumbnail/jkytoela-next-startd.jpg differ diff --git a/static/images/theme/thumbnail/jmau111-gatsby-juma.jpg b/static/images/theme/thumbnail/jmau111-gatsby-juma.jpg new file mode 100644 index 000000000..493724d20 Binary files /dev/null and b/static/images/theme/thumbnail/jmau111-gatsby-juma.jpg differ diff --git a/static/images/theme/thumbnail/jmau111-gatsby-nes.jpg b/static/images/theme/thumbnail/jmau111-gatsby-nes.jpg new file mode 100644 index 000000000..e3cf56d28 Binary files /dev/null and b/static/images/theme/thumbnail/jmau111-gatsby-nes.jpg differ diff --git a/static/images/theme/thumbnail/jmau111-hugo-theme-ava.jpg b/static/images/theme/thumbnail/jmau111-hugo-theme-ava.jpg new file mode 100644 index 000000000..916a01da6 Binary files /dev/null and b/static/images/theme/thumbnail/jmau111-hugo-theme-ava.jpg differ diff --git a/static/images/theme/thumbnail/jmschrack-dark-portfolio-template-11ty-dev.jpg b/static/images/theme/thumbnail/jmschrack-dark-portfolio-template-11ty-dev.jpg deleted file mode 100644 index 5071ac15c..000000000 Binary files a/static/images/theme/thumbnail/jmschrack-dark-portfolio-template-11ty-dev.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jmschrack-dark-portfolio-template-11ty.jpg b/static/images/theme/thumbnail/jmschrack-dark-portfolio-template-11ty.jpg new file mode 100644 index 000000000..5828dce13 Binary files /dev/null and b/static/images/theme/thumbnail/jmschrack-dark-portfolio-template-11ty.jpg differ diff --git a/static/images/theme/thumbnail/jnjosh-internet-weblog-master.jpg b/static/images/theme/thumbnail/jnjosh-internet-weblog-master.jpg deleted file mode 100644 index 628ea9e84..000000000 Binary files a/static/images/theme/thumbnail/jnjosh-internet-weblog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/johncoene-marat-master.jpg b/static/images/theme/thumbnail/johncoene-marat-master.jpg deleted file mode 100644 index 2d6721791..000000000 Binary files a/static/images/theme/thumbnail/johncoene-marat-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/johncoene-marat.jpg b/static/images/theme/thumbnail/johncoene-marat.jpg new file mode 100644 index 000000000..d4828a171 Binary files /dev/null and b/static/images/theme/thumbnail/johncoene-marat.jpg differ diff --git a/static/images/theme/thumbnail/johnotander-pixyll-master.jpg b/static/images/theme/thumbnail/johnotander-pixyll-master.jpg deleted file mode 100644 index fee0d9307..000000000 Binary files a/static/images/theme/thumbnail/johnotander-pixyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/josephdyer-skeleventy-master.jpg b/static/images/theme/thumbnail/josephdyer-skeleventy-master.jpg deleted file mode 100644 index cc08bc02a..000000000 Binary files a/static/images/theme/thumbnail/josephdyer-skeleventy-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/josephdyer-skeleventy.jpg b/static/images/theme/thumbnail/josephdyer-skeleventy.jpg new file mode 100644 index 000000000..ff3e06bc8 Binary files /dev/null and b/static/images/theme/thumbnail/josephdyer-skeleventy.jpg differ diff --git a/static/images/theme/thumbnail/josephhutch-aether-master.jpg b/static/images/theme/thumbnail/josephhutch-aether-master.jpg deleted file mode 100644 index 5590f1e9c..000000000 Binary files a/static/images/theme/thumbnail/josephhutch-aether-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/joshgerdes-jekyll-uno-master.jpg b/static/images/theme/thumbnail/joshgerdes-jekyll-uno-master.jpg deleted file mode 100644 index 91f47b38d..000000000 Binary files a/static/images/theme/thumbnail/joshgerdes-jekyll-uno-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/joshgerdes-jekyll-uno.jpg b/static/images/theme/thumbnail/joshgerdes-jekyll-uno.jpg new file mode 100644 index 000000000..e9a6c3425 Binary files /dev/null and b/static/images/theme/thumbnail/joshgerdes-jekyll-uno.jpg differ diff --git a/static/images/theme/thumbnail/joshuaavalon-jekyll-avalon-master.jpg b/static/images/theme/thumbnail/joshuaavalon-jekyll-avalon-master.jpg deleted file mode 100644 index 75cda0faa..000000000 Binary files a/static/images/theme/thumbnail/joshuaavalon-jekyll-avalon-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/joshuaavalon-jekyll-avalon.jpg b/static/images/theme/thumbnail/joshuaavalon-jekyll-avalon.jpg new file mode 100644 index 000000000..36980d57e Binary files /dev/null and b/static/images/theme/thumbnail/joshuaavalon-jekyll-avalon.jpg differ diff --git a/static/images/theme/thumbnail/jota-ele-ene-just-me.jpg b/static/images/theme/thumbnail/jota-ele-ene-just-me.jpg new file mode 100644 index 000000000..e37763d79 Binary files /dev/null and b/static/images/theme/thumbnail/jota-ele-ene-just-me.jpg differ diff --git a/static/images/theme/thumbnail/joway-hugo-theme-yinyang-master.jpg b/static/images/theme/thumbnail/joway-hugo-theme-yinyang-master.jpg deleted file mode 100644 index 11106eea2..000000000 Binary files a/static/images/theme/thumbnail/joway-hugo-theme-yinyang-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/joway-hugo-theme-yinyang.jpg b/static/images/theme/thumbnail/joway-hugo-theme-yinyang.jpg new file mode 100644 index 000000000..f510d5eb5 Binary files /dev/null and b/static/images/theme/thumbnail/joway-hugo-theme-yinyang.jpg differ diff --git a/static/images/theme/thumbnail/joytou-joytou.github.io-master.jpg b/static/images/theme/thumbnail/joytou-joytou.github.io-master.jpg deleted file mode 100644 index 5926cb2ab..000000000 Binary files a/static/images/theme/thumbnail/joytou-joytou.github.io-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/joytou-joytou.github.io.jpg b/static/images/theme/thumbnail/joytou-joytou.github.io.jpg new file mode 100644 index 000000000..7ea9545fb Binary files /dev/null and b/static/images/theme/thumbnail/joytou-joytou.github.io.jpg differ diff --git a/static/images/theme/thumbnail/jpanther-congo.jpg b/static/images/theme/thumbnail/jpanther-congo.jpg new file mode 100644 index 000000000..367d27705 Binary files /dev/null and b/static/images/theme/thumbnail/jpanther-congo.jpg differ diff --git a/static/images/theme/thumbnail/jpanther-lynx.jpg b/static/images/theme/thumbnail/jpanther-lynx.jpg new file mode 100644 index 000000000..ea235cd7e Binary files /dev/null and b/static/images/theme/thumbnail/jpanther-lynx.jpg differ diff --git a/static/images/theme/thumbnail/jpescador-hugo-future-imperfect-master.jpg b/static/images/theme/thumbnail/jpescador-hugo-future-imperfect-master.jpg deleted file mode 100644 index eebbb3efa..000000000 Binary files a/static/images/theme/thumbnail/jpescador-hugo-future-imperfect-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jrutheiser-hugo-lithium-theme-master.jpg b/static/images/theme/thumbnail/jrutheiser-hugo-lithium-theme-master.jpg deleted file mode 100644 index e3e7aedf1..000000000 Binary files a/static/images/theme/thumbnail/jrutheiser-hugo-lithium-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jsappme-gridsome-shopify-starter-master.jpg b/static/images/theme/thumbnail/jsappme-gridsome-shopify-starter-master.jpg deleted file mode 100644 index b62d243b9..000000000 Binary files a/static/images/theme/thumbnail/jsappme-gridsome-shopify-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jsappme-gridsome-shopify-starter.jpg b/static/images/theme/thumbnail/jsappme-gridsome-shopify-starter.jpg new file mode 100644 index 000000000..277de2999 Binary files /dev/null and b/static/images/theme/thumbnail/jsappme-gridsome-shopify-starter.jpg differ diff --git a/static/images/theme/thumbnail/jsnjack-hugo-changelog-theme-master.jpg b/static/images/theme/thumbnail/jsnjack-hugo-changelog-theme-master.jpg deleted file mode 100644 index 1e79644fe..000000000 Binary files a/static/images/theme/thumbnail/jsnjack-hugo-changelog-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jsnjack-kraiklyn-master.jpg b/static/images/theme/thumbnail/jsnjack-kraiklyn-master.jpg deleted file mode 100644 index 303a1f5a1..000000000 Binary files a/static/images/theme/thumbnail/jsnjack-kraiklyn-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jugglerx-gatsby-serif-theme-master.jpg b/static/images/theme/thumbnail/jugglerx-gatsby-serif-theme-master.jpg deleted file mode 100644 index 0a59494f1..000000000 Binary files a/static/images/theme/thumbnail/jugglerx-gatsby-serif-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jugglerx-gatsby-serif-theme.jpg b/static/images/theme/thumbnail/jugglerx-gatsby-serif-theme.jpg new file mode 100644 index 000000000..982fc3101 Binary files /dev/null and b/static/images/theme/thumbnail/jugglerx-gatsby-serif-theme.jpg differ diff --git a/static/images/theme/thumbnail/jugglerx-hugo-hero-theme-master.jpg b/static/images/theme/thumbnail/jugglerx-hugo-hero-theme-master.jpg deleted file mode 100644 index f54b0b789..000000000 Binary files a/static/images/theme/thumbnail/jugglerx-hugo-hero-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jugglerx-hugo-hero-theme.jpg b/static/images/theme/thumbnail/jugglerx-hugo-hero-theme.jpg new file mode 100644 index 000000000..ffd3656d5 Binary files /dev/null and b/static/images/theme/thumbnail/jugglerx-hugo-hero-theme.jpg differ diff --git a/static/images/theme/thumbnail/jugglerx-hugo-whisper-theme-master.jpg b/static/images/theme/thumbnail/jugglerx-hugo-whisper-theme-master.jpg deleted file mode 100644 index 28fa62df0..000000000 Binary files a/static/images/theme/thumbnail/jugglerx-hugo-whisper-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jugglerx-hugo-whisper-theme.jpg b/static/images/theme/thumbnail/jugglerx-hugo-whisper-theme.jpg new file mode 100644 index 000000000..37e8c61d4 Binary files /dev/null and b/static/images/theme/thumbnail/jugglerx-hugo-whisper-theme.jpg differ diff --git a/static/images/theme/thumbnail/jugglerx-jekyll-serif-theme-master.jpg b/static/images/theme/thumbnail/jugglerx-jekyll-serif-theme-master.jpg deleted file mode 100644 index c4b94738f..000000000 Binary files a/static/images/theme/thumbnail/jugglerx-jekyll-serif-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/juhi-trivedi-cape-master.jpg b/static/images/theme/thumbnail/juhi-trivedi-cape-master.jpg deleted file mode 100644 index f6056da9a..000000000 Binary files a/static/images/theme/thumbnail/juhi-trivedi-cape-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/juhi-trivedi-cape.jpg b/static/images/theme/thumbnail/juhi-trivedi-cape.jpg new file mode 100644 index 000000000..2094f39bf Binary files /dev/null and b/static/images/theme/thumbnail/juhi-trivedi-cape.jpg differ diff --git a/static/images/theme/thumbnail/jumpalottahigh-gatsby-starter-blog-jumpalottahigh-master.jpg b/static/images/theme/thumbnail/jumpalottahigh-gatsby-starter-blog-jumpalottahigh-master.jpg deleted file mode 100644 index 0f95c9285..000000000 Binary files a/static/images/theme/thumbnail/jumpalottahigh-gatsby-starter-blog-jumpalottahigh-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jumpalottahigh-gatsby-starter-blog-jumpalottahigh.jpg b/static/images/theme/thumbnail/jumpalottahigh-gatsby-starter-blog-jumpalottahigh.jpg new file mode 100644 index 000000000..74fc4e909 Binary files /dev/null and b/static/images/theme/thumbnail/jumpalottahigh-gatsby-starter-blog-jumpalottahigh.jpg differ diff --git a/static/images/theme/thumbnail/junlulocky-popuptweets-gh-pages.jpg b/static/images/theme/thumbnail/junlulocky-popuptweets-gh-pages.jpg deleted file mode 100644 index 48edf064d..000000000 Binary files a/static/images/theme/thumbnail/junlulocky-popuptweets-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/junlulocky-popuptweets.jpg b/static/images/theme/thumbnail/junlulocky-popuptweets.jpg new file mode 100644 index 000000000..7cd975c09 Binary files /dev/null and b/static/images/theme/thumbnail/junlulocky-popuptweets.jpg differ diff --git a/static/images/theme/thumbnail/justgoodthemes-blogbox-jekyll-theme.jpg b/static/images/theme/thumbnail/justgoodthemes-blogbox-jekyll-theme.jpg new file mode 100644 index 000000000..414b70769 Binary files /dev/null and b/static/images/theme/thumbnail/justgoodthemes-blogbox-jekyll-theme.jpg differ diff --git a/static/images/theme/thumbnail/justgoodthemes-scriptor-jekyll-theme.jpg b/static/images/theme/thumbnail/justgoodthemes-scriptor-jekyll-theme.jpg new file mode 100644 index 000000000..544b264d3 Binary files /dev/null and b/static/images/theme/thumbnail/justgoodthemes-scriptor-jekyll-theme.jpg differ diff --git a/static/images/theme/thumbnail/justinformentin-gatsby-v2-tutorial-starter-master.jpg b/static/images/theme/thumbnail/justinformentin-gatsby-v2-tutorial-starter-master.jpg deleted file mode 100644 index 56b414f66..000000000 Binary files a/static/images/theme/thumbnail/justinformentin-gatsby-v2-tutorial-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/justinformentin-gatsby-v2-tutorial-starter.jpg b/static/images/theme/thumbnail/justinformentin-gatsby-v2-tutorial-starter.jpg new file mode 100644 index 000000000..dea3dee69 Binary files /dev/null and b/static/images/theme/thumbnail/justinformentin-gatsby-v2-tutorial-starter.jpg differ diff --git a/static/images/theme/thumbnail/jweslley-hugo-conference-master.jpg b/static/images/theme/thumbnail/jweslley-hugo-conference-master.jpg deleted file mode 100644 index 2558501bd..000000000 Binary files a/static/images/theme/thumbnail/jweslley-hugo-conference-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jwillmer-jekylldecent-gh-pages.jpg b/static/images/theme/thumbnail/jwillmer-jekylldecent-gh-pages.jpg deleted file mode 100644 index b11f4cdb4..000000000 Binary files a/static/images/theme/thumbnail/jwillmer-jekylldecent-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/jwillmer-jekylldecent.jpg b/static/images/theme/thumbnail/jwillmer-jekylldecent.jpg new file mode 100644 index 000000000..0c1c3e722 Binary files /dev/null and b/static/images/theme/thumbnail/jwillmer-jekylldecent.jpg differ diff --git a/static/images/theme/thumbnail/kakawait-hugo-tranquilpeak-theme-master.jpg b/static/images/theme/thumbnail/kakawait-hugo-tranquilpeak-theme-master.jpg deleted file mode 100644 index 48d19b51f..000000000 Binary files a/static/images/theme/thumbnail/kakawait-hugo-tranquilpeak-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kakawait-hugo-tranquilpeak-theme.jpg b/static/images/theme/thumbnail/kakawait-hugo-tranquilpeak-theme.jpg new file mode 100644 index 000000000..ac802edf7 Binary files /dev/null and b/static/images/theme/thumbnail/kakawait-hugo-tranquilpeak-theme.jpg differ diff --git a/static/images/theme/thumbnail/kamikat-jekyll-theme-kagami-master.jpg b/static/images/theme/thumbnail/kamikat-jekyll-theme-kagami-master.jpg deleted file mode 100644 index 6c15765ab..000000000 Binary files a/static/images/theme/thumbnail/kamikat-jekyll-theme-kagami-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kamikat-jekyll-theme-kagami.jpg b/static/images/theme/thumbnail/kamikat-jekyll-theme-kagami.jpg new file mode 100644 index 000000000..f16048bf1 Binary files /dev/null and b/static/images/theme/thumbnail/kamikat-jekyll-theme-kagami.jpg differ diff --git a/static/images/theme/thumbnail/karloespiritu-blackdoc-master.jpg b/static/images/theme/thumbnail/karloespiritu-blackdoc-master.jpg deleted file mode 100644 index 590617321..000000000 Binary files a/static/images/theme/thumbnail/karloespiritu-blackdoc-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kausalflow-connectome-master.jpg b/static/images/theme/thumbnail/kausalflow-connectome-master.jpg deleted file mode 100644 index bb3406ee5..000000000 Binary files a/static/images/theme/thumbnail/kausalflow-connectome-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kausalflow-connectome.jpg b/static/images/theme/thumbnail/kausalflow-connectome.jpg new file mode 100644 index 000000000..9033be5de Binary files /dev/null and b/static/images/theme/thumbnail/kausalflow-connectome.jpg differ diff --git a/static/images/theme/thumbnail/kaushalmodi-hugo-bare-min-theme-master.jpg b/static/images/theme/thumbnail/kaushalmodi-hugo-bare-min-theme-master.jpg deleted file mode 100644 index 9c7281b0f..000000000 Binary files a/static/images/theme/thumbnail/kaushalmodi-hugo-bare-min-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kaushalmodi-hugo-bare-min-theme.jpg b/static/images/theme/thumbnail/kaushalmodi-hugo-bare-min-theme.jpg new file mode 100644 index 000000000..49f10fa77 Binary files /dev/null and b/static/images/theme/thumbnail/kaushalmodi-hugo-bare-min-theme.jpg differ diff --git a/static/images/theme/thumbnail/kazumasato-siera-master.jpg b/static/images/theme/thumbnail/kazumasato-siera-master.jpg deleted file mode 100644 index a769fa4cd..000000000 Binary files a/static/images/theme/thumbnail/kazumasato-siera-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kazumasato-siera.jpg b/static/images/theme/thumbnail/kazumasato-siera.jpg new file mode 100644 index 000000000..c75782aba Binary files /dev/null and b/static/images/theme/thumbnail/kazumasato-siera.jpg differ diff --git a/static/images/theme/thumbnail/kc0bfv-autophugo-master.jpg b/static/images/theme/thumbnail/kc0bfv-autophugo-master.jpg deleted file mode 100644 index 6653b3190..000000000 Binary files a/static/images/theme/thumbnail/kc0bfv-autophugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kc0bfv-autophugo.jpg b/static/images/theme/thumbnail/kc0bfv-autophugo.jpg new file mode 100644 index 000000000..929e52c1f Binary files /dev/null and b/static/images/theme/thumbnail/kc0bfv-autophugo.jpg differ diff --git a/static/images/theme/thumbnail/kc0bfv-ticky_tacky_dark-master.jpg b/static/images/theme/thumbnail/kc0bfv-ticky_tacky_dark-master.jpg deleted file mode 100644 index 02fcccc2c..000000000 Binary files a/static/images/theme/thumbnail/kc0bfv-ticky_tacky_dark-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kc0bfv-ticky_tacky_dark.jpg b/static/images/theme/thumbnail/kc0bfv-ticky_tacky_dark.jpg new file mode 100644 index 000000000..df17129bc Binary files /dev/null and b/static/images/theme/thumbnail/kc0bfv-ticky_tacky_dark.jpg differ diff --git a/static/images/theme/thumbnail/kdevo-osprey-delight.jpg b/static/images/theme/thumbnail/kdevo-osprey-delight.jpg new file mode 100644 index 000000000..ff64f5a67 Binary files /dev/null and b/static/images/theme/thumbnail/kdevo-osprey-delight.jpg differ diff --git a/static/images/theme/thumbnail/kdheepak-pelican-smoothie-master.jpg b/static/images/theme/thumbnail/kdheepak-pelican-smoothie-master.jpg deleted file mode 100644 index 80d44036c..000000000 Binary files a/static/images/theme/thumbnail/kdheepak-pelican-smoothie-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kdheepak-pelican-smoothie.jpg b/static/images/theme/thumbnail/kdheepak-pelican-smoothie.jpg new file mode 100644 index 000000000..aabd95936 Binary files /dev/null and b/static/images/theme/thumbnail/kdheepak-pelican-smoothie.jpg differ diff --git a/static/images/theme/thumbnail/keichi-vienna-master.jpg b/static/images/theme/thumbnail/keichi-vienna-master.jpg deleted file mode 100644 index fc55a3d12..000000000 Binary files a/static/images/theme/thumbnail/keichi-vienna-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kejunmao-jekyll-theme-mdui-master.jpg b/static/images/theme/thumbnail/kejunmao-jekyll-theme-mdui-master.jpg deleted file mode 100644 index 57ff0bd59..000000000 Binary files a/static/images/theme/thumbnail/kejunmao-jekyll-theme-mdui-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kendallstrautman-brevifolia-gatsby-forestry-master.jpg b/static/images/theme/thumbnail/kendallstrautman-brevifolia-gatsby-forestry-master.jpg deleted file mode 100644 index 192c22f8f..000000000 Binary files a/static/images/theme/thumbnail/kendallstrautman-brevifolia-gatsby-forestry-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kendallstrautman-brevifolia-gatsby-forestry.jpg b/static/images/theme/thumbnail/kendallstrautman-brevifolia-gatsby-forestry.jpg new file mode 100644 index 000000000..90f24f1f8 Binary files /dev/null and b/static/images/theme/thumbnail/kendallstrautman-brevifolia-gatsby-forestry.jpg differ diff --git a/static/images/theme/thumbnail/kendallstrautman-brevifolia-gridsome-forestry-master.jpg b/static/images/theme/thumbnail/kendallstrautman-brevifolia-gridsome-forestry-master.jpg deleted file mode 100644 index dc9959bac..000000000 Binary files a/static/images/theme/thumbnail/kendallstrautman-brevifolia-gridsome-forestry-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kendallstrautman-brevifolia-gridsome-forestry.jpg b/static/images/theme/thumbnail/kendallstrautman-brevifolia-gridsome-forestry.jpg new file mode 100644 index 000000000..61c3a72bb Binary files /dev/null and b/static/images/theme/thumbnail/kendallstrautman-brevifolia-gridsome-forestry.jpg differ diff --git a/static/images/theme/thumbnail/kentico-gatsby-starter-kentico-cloud-master.jpg b/static/images/theme/thumbnail/kentico-gatsby-starter-kentico-cloud-master.jpg deleted file mode 100644 index 2167c232c..000000000 Binary files a/static/images/theme/thumbnail/kentico-gatsby-starter-kentico-cloud-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kentico-gatsby-starter-kontent-lumen-master.jpg b/static/images/theme/thumbnail/kentico-gatsby-starter-kontent-lumen-master.jpg deleted file mode 100644 index e66cd0e89..000000000 Binary files a/static/images/theme/thumbnail/kentico-gatsby-starter-kontent-lumen-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kentico-gatsby-starter-kontent-lumen.jpg b/static/images/theme/thumbnail/kentico-gatsby-starter-kontent-lumen.jpg new file mode 100644 index 000000000..0c5f70074 Binary files /dev/null and b/static/images/theme/thumbnail/kentico-gatsby-starter-kontent-lumen.jpg differ diff --git a/static/images/theme/thumbnail/kentico-gatsby-starter-kontent-master.jpg b/static/images/theme/thumbnail/kentico-gatsby-starter-kontent-master.jpg deleted file mode 100644 index fb9313c69..000000000 Binary files a/static/images/theme/thumbnail/kentico-gatsby-starter-kontent-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kentico-gatsby-starter-kontent.jpg b/static/images/theme/thumbnail/kentico-gatsby-starter-kontent.jpg new file mode 100644 index 000000000..3f1220c99 Binary files /dev/null and b/static/images/theme/thumbnail/kentico-gatsby-starter-kontent.jpg differ diff --git a/static/images/theme/thumbnail/kentico-kontent-boilerplate-statiq-net-master.jpg b/static/images/theme/thumbnail/kentico-kontent-boilerplate-statiq-net-master.jpg deleted file mode 100644 index afa3e1bed..000000000 Binary files a/static/images/theme/thumbnail/kentico-kontent-boilerplate-statiq-net-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kentico-kontent-boilerplate-statiq-net.jpg b/static/images/theme/thumbnail/kentico-kontent-boilerplate-statiq-net.jpg new file mode 100644 index 000000000..609c01944 Binary files /dev/null and b/static/images/theme/thumbnail/kentico-kontent-boilerplate-statiq-net.jpg differ diff --git a/static/images/theme/thumbnail/kentico-kontent-jekyll-blog-master.jpg b/static/images/theme/thumbnail/kentico-kontent-jekyll-blog-master.jpg deleted file mode 100644 index 6f2280ff5..000000000 Binary files a/static/images/theme/thumbnail/kentico-kontent-jekyll-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kentico-kontent-jekyll-blog.jpg b/static/images/theme/thumbnail/kentico-kontent-jekyll-blog.jpg new file mode 100644 index 000000000..21387b91c Binary files /dev/null and b/static/images/theme/thumbnail/kentico-kontent-jekyll-blog.jpg differ diff --git a/static/images/theme/thumbnail/kentico-kontent-sample-dancing-goat-gridsome-master.jpg b/static/images/theme/thumbnail/kentico-kontent-sample-dancing-goat-gridsome-master.jpg deleted file mode 100644 index f20b481f5..000000000 Binary files a/static/images/theme/thumbnail/kentico-kontent-sample-dancing-goat-gridsome-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kentico-kontent-sample-dancing-goat-gridsome.jpg b/static/images/theme/thumbnail/kentico-kontent-sample-dancing-goat-gridsome.jpg new file mode 100644 index 000000000..2016f675f Binary files /dev/null and b/static/images/theme/thumbnail/kentico-kontent-sample-dancing-goat-gridsome.jpg differ diff --git a/static/images/theme/thumbnail/kentico-statiq-starter-kontent-lumen-master.jpg b/static/images/theme/thumbnail/kentico-statiq-starter-kontent-lumen-master.jpg deleted file mode 100644 index 71ff5d69e..000000000 Binary files a/static/images/theme/thumbnail/kentico-statiq-starter-kontent-lumen-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kentico-statiq-starter-kontent-lumen.jpg b/static/images/theme/thumbnail/kentico-statiq-starter-kontent-lumen.jpg new file mode 100644 index 000000000..b751cac59 Binary files /dev/null and b/static/images/theme/thumbnail/kentico-statiq-starter-kontent-lumen.jpg differ diff --git a/static/images/theme/thumbnail/kevit-devaid-jekyll-theme-master.jpg b/static/images/theme/thumbnail/kevit-devaid-jekyll-theme-master.jpg deleted file mode 100644 index df87769be..000000000 Binary files a/static/images/theme/thumbnail/kevit-devaid-jekyll-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kevit-devaid-jekyll-theme.jpg b/static/images/theme/thumbnail/kevit-devaid-jekyll-theme.jpg new file mode 100644 index 000000000..036ef7de3 Binary files /dev/null and b/static/images/theme/thumbnail/kevit-devaid-jekyll-theme.jpg differ diff --git a/static/images/theme/thumbnail/kimnagui-gatsby-starter-nagui-master.jpg b/static/images/theme/thumbnail/kimnagui-gatsby-starter-nagui-master.jpg deleted file mode 100644 index 58ca89c6c..000000000 Binary files a/static/images/theme/thumbnail/kimnagui-gatsby-starter-nagui-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kingfelix-emerald-master.jpg b/static/images/theme/thumbnail/kingfelix-emerald-master.jpg deleted file mode 100644 index 26ef0ee10..000000000 Binary files a/static/images/theme/thumbnail/kingfelix-emerald-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kishaningithub-hugo-creative-portfolio-theme-master.jpg b/static/images/theme/thumbnail/kishaningithub-hugo-creative-portfolio-theme-master.jpg deleted file mode 100644 index 0ffd89c8d..000000000 Binary files a/static/images/theme/thumbnail/kishaningithub-hugo-creative-portfolio-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kitian616-jekyll-text-theme-master.jpg b/static/images/theme/thumbnail/kitian616-jekyll-text-theme-master.jpg deleted file mode 100644 index e7c15fe9d..000000000 Binary files a/static/images/theme/thumbnail/kitian616-jekyll-text-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kitian616-jekyll-text-theme.jpg b/static/images/theme/thumbnail/kitian616-jekyll-text-theme.jpg new file mode 100644 index 000000000..54fa707a3 Binary files /dev/null and b/static/images/theme/thumbnail/kitian616-jekyll-text-theme.jpg differ diff --git a/static/images/theme/thumbnail/kkninjae-book-master.jpg b/static/images/theme/thumbnail/kkninjae-book-master.jpg deleted file mode 100644 index a3c8adbf0..000000000 Binary files a/static/images/theme/thumbnail/kkninjae-book-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/klugjo-hexo-theme-alpha-dust-master.jpg b/static/images/theme/thumbnail/klugjo-hexo-theme-alpha-dust-master.jpg deleted file mode 100644 index ecfcc602e..000000000 Binary files a/static/images/theme/thumbnail/klugjo-hexo-theme-alpha-dust-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/klugjo-hexo-theme-alpha-dust.jpg b/static/images/theme/thumbnail/klugjo-hexo-theme-alpha-dust.jpg new file mode 100644 index 000000000..87722c876 Binary files /dev/null and b/static/images/theme/thumbnail/klugjo-hexo-theme-alpha-dust.jpg differ diff --git a/static/images/theme/thumbnail/klugjo-hexo-theme-anodyne-master.jpg b/static/images/theme/thumbnail/klugjo-hexo-theme-anodyne-master.jpg deleted file mode 100644 index ab801b090..000000000 Binary files a/static/images/theme/thumbnail/klugjo-hexo-theme-anodyne-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/klugjo-hexo-theme-anodyne.jpg b/static/images/theme/thumbnail/klugjo-hexo-theme-anodyne.jpg new file mode 100644 index 000000000..add474d02 Binary files /dev/null and b/static/images/theme/thumbnail/klugjo-hexo-theme-anodyne.jpg differ diff --git a/static/images/theme/thumbnail/klugjo-hexo-theme-clean-blog-master.jpg b/static/images/theme/thumbnail/klugjo-hexo-theme-clean-blog-master.jpg deleted file mode 100644 index f26ebb53d..000000000 Binary files a/static/images/theme/thumbnail/klugjo-hexo-theme-clean-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/klugjo-hexo-theme-clean-blog.jpg b/static/images/theme/thumbnail/klugjo-hexo-theme-clean-blog.jpg new file mode 100644 index 000000000..a1ab75331 Binary files /dev/null and b/static/images/theme/thumbnail/klugjo-hexo-theme-clean-blog.jpg differ diff --git a/static/images/theme/thumbnail/klugjo-hexo-theme-phantom-master.jpg b/static/images/theme/thumbnail/klugjo-hexo-theme-phantom-master.jpg deleted file mode 100644 index ef118144f..000000000 Binary files a/static/images/theme/thumbnail/klugjo-hexo-theme-phantom-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/klugjo-hexo-theme-phantom.jpg b/static/images/theme/thumbnail/klugjo-hexo-theme-phantom.jpg new file mode 100644 index 000000000..605c8b16e Binary files /dev/null and b/static/images/theme/thumbnail/klugjo-hexo-theme-phantom.jpg differ diff --git a/static/images/theme/thumbnail/knaman2609-clean-master.jpg b/static/images/theme/thumbnail/knaman2609-clean-master.jpg deleted file mode 100644 index 0b1d8fe58..000000000 Binary files a/static/images/theme/thumbnail/knaman2609-clean-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/knaman2609-clean.jpg b/static/images/theme/thumbnail/knaman2609-clean.jpg new file mode 100644 index 000000000..3092c6df6 Binary files /dev/null and b/static/images/theme/thumbnail/knaman2609-clean.jpg differ diff --git a/static/images/theme/thumbnail/knhash-jekyllbear.jpg b/static/images/theme/thumbnail/knhash-jekyllbear.jpg new file mode 100644 index 000000000..1c3da7e55 Binary files /dev/null and b/static/images/theme/thumbnail/knhash-jekyllbear.jpg differ diff --git a/static/images/theme/thumbnail/knhash-pudhina-master.jpg b/static/images/theme/thumbnail/knhash-pudhina-master.jpg deleted file mode 100644 index 6689b1532..000000000 Binary files a/static/images/theme/thumbnail/knhash-pudhina-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/knhash-pudhina.jpg b/static/images/theme/thumbnail/knhash-pudhina.jpg new file mode 100644 index 000000000..fd90ce43a Binary files /dev/null and b/static/images/theme/thumbnail/knhash-pudhina.jpg differ diff --git a/static/images/theme/thumbnail/knightjdr-gatsby-starter-scientist-master.jpg b/static/images/theme/thumbnail/knightjdr-gatsby-starter-scientist-master.jpg deleted file mode 100644 index 694907424..000000000 Binary files a/static/images/theme/thumbnail/knightjdr-gatsby-starter-scientist-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/knightjdr-gatsby-starter-scientist.jpg b/static/images/theme/thumbnail/knightjdr-gatsby-starter-scientist.jpg new file mode 100644 index 000000000..f2ea7caad Binary files /dev/null and b/static/images/theme/thumbnail/knightjdr-gatsby-starter-scientist.jpg differ diff --git a/static/images/theme/thumbnail/koirand-pulp-master.jpg b/static/images/theme/thumbnail/koirand-pulp-master.jpg deleted file mode 100644 index 717ffab47..000000000 Binary files a/static/images/theme/thumbnail/koirand-pulp-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/konsumer-gatsby-starter-bootstrap-netlify-master.jpg b/static/images/theme/thumbnail/konsumer-gatsby-starter-bootstrap-netlify-master.jpg deleted file mode 100644 index b7c527b64..000000000 Binary files a/static/images/theme/thumbnail/konsumer-gatsby-starter-bootstrap-netlify-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/konsumer-gatsby-starter-bootstrap-netlify.jpg b/static/images/theme/thumbnail/konsumer-gatsby-starter-bootstrap-netlify.jpg new file mode 100644 index 000000000..1055a7a49 Binary files /dev/null and b/static/images/theme/thumbnail/konsumer-gatsby-starter-bootstrap-netlify.jpg differ diff --git a/static/images/theme/thumbnail/kronik3r-daktilo-master.jpg b/static/images/theme/thumbnail/kronik3r-daktilo-master.jpg deleted file mode 100644 index bef392ed0..000000000 Binary files a/static/images/theme/thumbnail/kronik3r-daktilo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kronik3r-daktilo.jpg b/static/images/theme/thumbnail/kronik3r-daktilo.jpg new file mode 100644 index 000000000..d7bc1817b Binary files /dev/null and b/static/images/theme/thumbnail/kronik3r-daktilo.jpg differ diff --git a/static/images/theme/thumbnail/kulacino-bajawa.jpg b/static/images/theme/thumbnail/kulacino-bajawa.jpg new file mode 100644 index 000000000..118d41595 Binary files /dev/null and b/static/images/theme/thumbnail/kulacino-bajawa.jpg differ diff --git a/static/images/theme/thumbnail/kun8018-gatsby-starter-icarus-blog.jpg b/static/images/theme/thumbnail/kun8018-gatsby-starter-icarus-blog.jpg new file mode 100644 index 000000000..93d895686 Binary files /dev/null and b/static/images/theme/thumbnail/kun8018-gatsby-starter-icarus-blog.jpg differ diff --git a/static/images/theme/thumbnail/kuntoaji-dekyll-master.jpg b/static/images/theme/thumbnail/kuntoaji-dekyll-master.jpg deleted file mode 100644 index 2c066ae71..000000000 Binary files a/static/images/theme/thumbnail/kuntoaji-dekyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kuntoaji-dekyll.jpg b/static/images/theme/thumbnail/kuntoaji-dekyll.jpg new file mode 100644 index 000000000..28400b581 Binary files /dev/null and b/static/images/theme/thumbnail/kuntoaji-dekyll.jpg differ diff --git a/static/images/theme/thumbnail/kxxvii-kikofri-master.jpg b/static/images/theme/thumbnail/kxxvii-kikofri-master.jpg deleted file mode 100644 index cbe73f050..000000000 Binary files a/static/images/theme/thumbnail/kxxvii-kikofri-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/kxxvii-kikofri.jpg b/static/images/theme/thumbnail/kxxvii-kikofri.jpg new file mode 100644 index 000000000..798ab7660 Binary files /dev/null and b/static/images/theme/thumbnail/kxxvii-kikofri.jpg differ diff --git a/static/images/theme/thumbnail/laixintao-princess-diaries-master.jpg b/static/images/theme/thumbnail/laixintao-princess-diaries-master.jpg deleted file mode 100644 index 5c3422bdb..000000000 Binary files a/static/images/theme/thumbnail/laixintao-princess-diaries-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/laixintao-princess-diaries.jpg b/static/images/theme/thumbnail/laixintao-princess-diaries.jpg new file mode 100644 index 000000000..1ef1e2a15 Binary files /dev/null and b/static/images/theme/thumbnail/laixintao-princess-diaries.jpg differ diff --git a/static/images/theme/thumbnail/laobubu-jekyll-theme-easybook-gh-pages.jpg b/static/images/theme/thumbnail/laobubu-jekyll-theme-easybook-gh-pages.jpg deleted file mode 100644 index d41f8b4ca..000000000 Binary files a/static/images/theme/thumbnail/laobubu-jekyll-theme-easybook-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lasseborly-anybodyhome-master.jpg b/static/images/theme/thumbnail/lasseborly-anybodyhome-master.jpg deleted file mode 100644 index 0e1765b5a..000000000 Binary files a/static/images/theme/thumbnail/lasseborly-anybodyhome-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lauragift21-gridsome-minimal-blog-master.jpg b/static/images/theme/thumbnail/lauragift21-gridsome-minimal-blog-master.jpg deleted file mode 100644 index 4b4b2230d..000000000 Binary files a/static/images/theme/thumbnail/lauragift21-gridsome-minimal-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lauragift21-gridsome-minimal-blog.jpg b/static/images/theme/thumbnail/lauragift21-gridsome-minimal-blog.jpg new file mode 100644 index 000000000..d0aa9ef9e Binary files /dev/null and b/static/images/theme/thumbnail/lauragift21-gridsome-minimal-blog.jpg differ diff --git a/static/images/theme/thumbnail/lavkumarv-feature-blog-jekyll-master.jpg b/static/images/theme/thumbnail/lavkumarv-feature-blog-jekyll-master.jpg deleted file mode 100644 index 90fd21df3..000000000 Binary files a/static/images/theme/thumbnail/lavkumarv-feature-blog-jekyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lavkumarv-feature-blog-jekyll.jpg b/static/images/theme/thumbnail/lavkumarv-feature-blog-jekyll.jpg new file mode 100644 index 000000000..2a7a81f63 Binary files /dev/null and b/static/images/theme/thumbnail/lavkumarv-feature-blog-jekyll.jpg differ diff --git a/static/images/theme/thumbnail/le4ker-personal-jekyll-theme-master.jpg b/static/images/theme/thumbnail/le4ker-personal-jekyll-theme-master.jpg deleted file mode 100644 index 2346f95bc..000000000 Binary files a/static/images/theme/thumbnail/le4ker-personal-jekyll-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/le4ker-personal-jekyll-theme.jpg b/static/images/theme/thumbnail/le4ker-personal-jekyll-theme.jpg new file mode 100644 index 000000000..0bbd56d0e Binary files /dev/null and b/static/images/theme/thumbnail/le4ker-personal-jekyll-theme.jpg differ diff --git a/static/images/theme/thumbnail/lednerb-bilberry-hugo-theme-master.jpg b/static/images/theme/thumbnail/lednerb-bilberry-hugo-theme-master.jpg deleted file mode 100644 index 4108b90c8..000000000 Binary files a/static/images/theme/thumbnail/lednerb-bilberry-hugo-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lednerb-bilberry-hugo-theme.jpg b/static/images/theme/thumbnail/lednerb-bilberry-hugo-theme.jpg new file mode 100644 index 000000000..b9baa4e00 Binary files /dev/null and b/static/images/theme/thumbnail/lednerb-bilberry-hugo-theme.jpg differ diff --git a/static/images/theme/thumbnail/lekoarts-gatsby-starter-minimal-blog-master.jpg b/static/images/theme/thumbnail/lekoarts-gatsby-starter-minimal-blog-master.jpg deleted file mode 100644 index 393f29051..000000000 Binary files a/static/images/theme/thumbnail/lekoarts-gatsby-starter-minimal-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lekoarts-gatsby-starter-minimal-blog.jpg b/static/images/theme/thumbnail/lekoarts-gatsby-starter-minimal-blog.jpg new file mode 100644 index 000000000..762c45552 Binary files /dev/null and b/static/images/theme/thumbnail/lekoarts-gatsby-starter-minimal-blog.jpg differ diff --git a/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-bella-master.jpg b/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-bella-master.jpg deleted file mode 100644 index 455a14e62..000000000 Binary files a/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-bella-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-bella.jpg b/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-bella.jpg new file mode 100644 index 000000000..6cdad7a48 Binary files /dev/null and b/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-bella.jpg differ diff --git a/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-cara-master.jpg b/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-cara-master.jpg deleted file mode 100644 index 457a6f226..000000000 Binary files a/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-cara-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-cara.jpg b/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-cara.jpg new file mode 100644 index 000000000..e5f36cbb5 Binary files /dev/null and b/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-cara.jpg differ diff --git a/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-emilia-master.jpg b/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-emilia-master.jpg deleted file mode 100644 index 14d9d07ff..000000000 Binary files a/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-emilia-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-emilia.jpg b/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-emilia.jpg new file mode 100644 index 000000000..9c6ea10e7 Binary files /dev/null and b/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-emilia.jpg differ diff --git a/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-emma-master.jpg b/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-emma-master.jpg deleted file mode 100644 index adec29aef..000000000 Binary files a/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-emma-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-emma.jpg b/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-emma.jpg new file mode 100644 index 000000000..cb01a0740 Binary files /dev/null and b/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-emma.jpg differ diff --git a/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-jodie-master.jpg b/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-jodie-master.jpg deleted file mode 100644 index dfade748c..000000000 Binary files a/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-jodie-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-jodie.jpg b/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-jodie.jpg new file mode 100644 index 000000000..20a1fc9d9 Binary files /dev/null and b/static/images/theme/thumbnail/lekoarts-gatsby-starter-portfolio-jodie.jpg differ diff --git a/static/images/theme/thumbnail/lekoarts-gatsby-starter-prismic-i18n-master.jpg b/static/images/theme/thumbnail/lekoarts-gatsby-starter-prismic-i18n-master.jpg deleted file mode 100644 index 315fd14db..000000000 Binary files a/static/images/theme/thumbnail/lekoarts-gatsby-starter-prismic-i18n-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lekoarts-gatsby-starter-prismic-i18n.jpg b/static/images/theme/thumbnail/lekoarts-gatsby-starter-prismic-i18n.jpg new file mode 100644 index 000000000..1ee749d36 Binary files /dev/null and b/static/images/theme/thumbnail/lekoarts-gatsby-starter-prismic-i18n.jpg differ diff --git a/static/images/theme/thumbnail/lekovicmilos-gatsby-starter-portfolio-master.jpg b/static/images/theme/thumbnail/lekovicmilos-gatsby-starter-portfolio-master.jpg deleted file mode 100644 index 584bed6e7..000000000 Binary files a/static/images/theme/thumbnail/lekovicmilos-gatsby-starter-portfolio-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lekovicmilos-gatsby-starter-portfolio.jpg b/static/images/theme/thumbnail/lekovicmilos-gatsby-starter-portfolio.jpg new file mode 100644 index 000000000..6ac7253c8 Binary files /dev/null and b/static/images/theme/thumbnail/lekovicmilos-gatsby-starter-portfolio.jpg differ diff --git a/static/images/theme/thumbnail/lenpaul-academic.jpg b/static/images/theme/thumbnail/lenpaul-academic.jpg new file mode 100644 index 000000000..48d577f94 Binary files /dev/null and b/static/images/theme/thumbnail/lenpaul-academic.jpg differ diff --git a/static/images/theme/thumbnail/lenpaul-lagrange-gh-pages.jpg b/static/images/theme/thumbnail/lenpaul-lagrange-gh-pages.jpg deleted file mode 100644 index 64d3ade39..000000000 Binary files a/static/images/theme/thumbnail/lenpaul-lagrange-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lenpaul-lagrange.jpg b/static/images/theme/thumbnail/lenpaul-lagrange.jpg new file mode 100644 index 000000000..8617a7d67 Binary files /dev/null and b/static/images/theme/thumbnail/lenpaul-lagrange.jpg differ diff --git a/static/images/theme/thumbnail/lenpaul-millennial-gh-pages.jpg b/static/images/theme/thumbnail/lenpaul-millennial-gh-pages.jpg deleted file mode 100644 index c37935aff..000000000 Binary files a/static/images/theme/thumbnail/lenpaul-millennial-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lenpaul-millennial.jpg b/static/images/theme/thumbnail/lenpaul-millennial.jpg new file mode 100644 index 000000000..20036fcd6 Binary files /dev/null and b/static/images/theme/thumbnail/lenpaul-millennial.jpg differ diff --git a/static/images/theme/thumbnail/lenpaul-portfolio-jekyll-theme-gh-pages.jpg b/static/images/theme/thumbnail/lenpaul-portfolio-jekyll-theme-gh-pages.jpg deleted file mode 100644 index 26238d0aa..000000000 Binary files a/static/images/theme/thumbnail/lenpaul-portfolio-jekyll-theme-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lenpaul-portfolio-jekyll-theme.jpg b/static/images/theme/thumbnail/lenpaul-portfolio-jekyll-theme.jpg new file mode 100644 index 000000000..945df8556 Binary files /dev/null and b/static/images/theme/thumbnail/lenpaul-portfolio-jekyll-theme.jpg differ diff --git a/static/images/theme/thumbnail/leonhe-hugo_eiio-master.jpg b/static/images/theme/thumbnail/leonhe-hugo_eiio-master.jpg deleted file mode 100644 index 58fb5737e..000000000 Binary files a/static/images/theme/thumbnail/leonhe-hugo_eiio-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/leopardpan-leopardpan.github.io-master.jpg b/static/images/theme/thumbnail/leopardpan-leopardpan.github.io-master.jpg deleted file mode 100644 index fb6081059..000000000 Binary files a/static/images/theme/thumbnail/leopardpan-leopardpan.github.io-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lewislbr-lewis-gatsby-starter-blog-master.jpg b/static/images/theme/thumbnail/lewislbr-lewis-gatsby-starter-blog-master.jpg deleted file mode 100644 index 8390ef2f7..000000000 Binary files a/static/images/theme/thumbnail/lewislbr-lewis-gatsby-starter-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lgaida-mediumish-gohugo-theme-master.jpg b/static/images/theme/thumbnail/lgaida-mediumish-gohugo-theme-master.jpg deleted file mode 100644 index 22245d1b8..000000000 Binary files a/static/images/theme/thumbnail/lgaida-mediumish-gohugo-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lgaida-mediumish-gohugo-theme.jpg b/static/images/theme/thumbnail/lgaida-mediumish-gohugo-theme.jpg new file mode 100644 index 000000000..05b97ea59 Binary files /dev/null and b/static/images/theme/thumbnail/lgaida-mediumish-gohugo-theme.jpg differ diff --git a/static/images/theme/thumbnail/lgcolella-gatsby-starter-developer-blog-master.jpg b/static/images/theme/thumbnail/lgcolella-gatsby-starter-developer-blog-master.jpg deleted file mode 100644 index 7912efe2e..000000000 Binary files a/static/images/theme/thumbnail/lgcolella-gatsby-starter-developer-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/liberxue-liberxue.github.io-master.jpg b/static/images/theme/thumbnail/liberxue-liberxue.github.io-master.jpg deleted file mode 100644 index 758d16fab..000000000 Binary files a/static/images/theme/thumbnail/liberxue-liberxue.github.io-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/liberxue-liberxue.github.io.jpg b/static/images/theme/thumbnail/liberxue-liberxue.github.io.jpg new file mode 100644 index 000000000..5d78ebc65 Binary files /dev/null and b/static/images/theme/thumbnail/liberxue-liberxue.github.io.jpg differ diff --git a/static/images/theme/thumbnail/lingxz-er-master.jpg b/static/images/theme/thumbnail/lingxz-er-master.jpg deleted file mode 100644 index 24f572632..000000000 Binary files a/static/images/theme/thumbnail/lingxz-er-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/link9596-hydrogen-master.jpg b/static/images/theme/thumbnail/link9596-hydrogen-master.jpg deleted file mode 100644 index 8ed8625b3..000000000 Binary files a/static/images/theme/thumbnail/link9596-hydrogen-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/link9596-hydrogen.jpg b/static/images/theme/thumbnail/link9596-hydrogen.jpg new file mode 100644 index 000000000..5f20239af Binary files /dev/null and b/static/images/theme/thumbnail/link9596-hydrogen.jpg differ diff --git a/static/images/theme/thumbnail/link9596-jekyll-theme-hydrogen.jpg b/static/images/theme/thumbnail/link9596-jekyll-theme-hydrogen.jpg new file mode 100644 index 000000000..cae689c65 Binary files /dev/null and b/static/images/theme/thumbnail/link9596-jekyll-theme-hydrogen.jpg differ diff --git a/static/images/theme/thumbnail/liungkejin-liungkejin.github.io-master.jpg b/static/images/theme/thumbnail/liungkejin-liungkejin.github.io-master.jpg deleted file mode 100644 index f0ccfa051..000000000 Binary files a/static/images/theme/thumbnail/liungkejin-liungkejin.github.io-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/liungkejin-liungkejin.github.io.jpg b/static/images/theme/thumbnail/liungkejin-liungkejin.github.io.jpg new file mode 100644 index 000000000..e489d0146 Binary files /dev/null and b/static/images/theme/thumbnail/liungkejin-liungkejin.github.io.jpg differ diff --git a/static/images/theme/thumbnail/liuzc-leaveit-master.jpg b/static/images/theme/thumbnail/liuzc-leaveit-master.jpg deleted file mode 100644 index 0f28a6bbc..000000000 Binary files a/static/images/theme/thumbnail/liuzc-leaveit-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/livingdocsio-gatsby-magazine-example-master.jpg b/static/images/theme/thumbnail/livingdocsio-gatsby-magazine-example-master.jpg deleted file mode 100644 index 356c155ff..000000000 Binary files a/static/images/theme/thumbnail/livingdocsio-gatsby-magazine-example-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/livingdocsio-gatsby-magazine-example.jpg b/static/images/theme/thumbnail/livingdocsio-gatsby-magazine-example.jpg new file mode 100644 index 000000000..7be98657b Binary files /dev/null and b/static/images/theme/thumbnail/livingdocsio-gatsby-magazine-example.jpg differ diff --git a/static/images/theme/thumbnail/lixizhi-lixizhi.github.io-master.jpg b/static/images/theme/thumbnail/lixizhi-lixizhi.github.io-master.jpg deleted file mode 100644 index 27667fce6..000000000 Binary files a/static/images/theme/thumbnail/lixizhi-lixizhi.github.io-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lixizhi-lixizhi.github.io.jpg b/static/images/theme/thumbnail/lixizhi-lixizhi.github.io.jpg new file mode 100644 index 000000000..d3fcd1f2d Binary files /dev/null and b/static/images/theme/thumbnail/lixizhi-lixizhi.github.io.jpg differ diff --git a/static/images/theme/thumbnail/longpdo-neumorphism-master.jpg b/static/images/theme/thumbnail/longpdo-neumorphism-master.jpg deleted file mode 100644 index 0d9dae6fd..000000000 Binary files a/static/images/theme/thumbnail/longpdo-neumorphism-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/longpdo-neumorphism.jpg b/static/images/theme/thumbnail/longpdo-neumorphism.jpg new file mode 100644 index 000000000..c489daa34 Binary files /dev/null and b/static/images/theme/thumbnail/longpdo-neumorphism.jpg differ diff --git a/static/images/theme/thumbnail/lordmathis-hugo-theme-nix-master.jpg b/static/images/theme/thumbnail/lordmathis-hugo-theme-nix-master.jpg deleted file mode 100644 index fe842e213..000000000 Binary files a/static/images/theme/thumbnail/lordmathis-hugo-theme-nix-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lorepirri-cayman-blog-master.jpg b/static/images/theme/thumbnail/lorepirri-cayman-blog-master.jpg deleted file mode 100644 index dd2fb0cf1..000000000 Binary files a/static/images/theme/thumbnail/lorepirri-cayman-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lorepirri-cayman-blog.jpg b/static/images/theme/thumbnail/lorepirri-cayman-blog.jpg new file mode 100644 index 000000000..0f7670337 Binary files /dev/null and b/static/images/theme/thumbnail/lorepirri-cayman-blog.jpg differ diff --git a/static/images/theme/thumbnail/lorepirri-jekyll-theme-simple-blog-master.jpg b/static/images/theme/thumbnail/lorepirri-jekyll-theme-simple-blog-master.jpg deleted file mode 100644 index a2e869858..000000000 Binary files a/static/images/theme/thumbnail/lorepirri-jekyll-theme-simple-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/loveminimal-hugo-theme-virgo.jpg b/static/images/theme/thumbnail/loveminimal-hugo-theme-virgo.jpg new file mode 100644 index 000000000..7606f1fff Binary files /dev/null and b/static/images/theme/thumbnail/loveminimal-hugo-theme-virgo.jpg differ diff --git a/static/images/theme/thumbnail/lubang-hugo-hello-programmer-theme-master.jpg b/static/images/theme/thumbnail/lubang-hugo-hello-programmer-theme-master.jpg deleted file mode 100644 index 059ba2676..000000000 Binary files a/static/images/theme/thumbnail/lubang-hugo-hello-programmer-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lubang-hugo-hello-programmer-theme.jpg b/static/images/theme/thumbnail/lubang-hugo-hello-programmer-theme.jpg new file mode 100644 index 000000000..9bdf6e9ca Binary files /dev/null and b/static/images/theme/thumbnail/lubang-hugo-hello-programmer-theme.jpg differ diff --git a/static/images/theme/thumbnail/lucaspulliese-next-ecommerce.jpg b/static/images/theme/thumbnail/lucaspulliese-next-ecommerce.jpg new file mode 100644 index 000000000..9d2713600 Binary files /dev/null and b/static/images/theme/thumbnail/lucaspulliese-next-ecommerce.jpg differ diff --git a/static/images/theme/thumbnail/luizdepra-hugo-coder-master.jpg b/static/images/theme/thumbnail/luizdepra-hugo-coder-master.jpg deleted file mode 100644 index 28fe01fc5..000000000 Binary files a/static/images/theme/thumbnail/luizdepra-hugo-coder-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lukewhitehouse-gatsby-starter-blog-with-lunr-master.jpg b/static/images/theme/thumbnail/lukewhitehouse-gatsby-starter-blog-with-lunr-master.jpg deleted file mode 100644 index 0710eae68..000000000 Binary files a/static/images/theme/thumbnail/lukewhitehouse-gatsby-starter-blog-with-lunr-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lukewhitehouse-gatsby-starter-blog-with-lunr.jpg b/static/images/theme/thumbnail/lukewhitehouse-gatsby-starter-blog-with-lunr.jpg new file mode 100644 index 000000000..55f776fb2 Binary files /dev/null and b/static/images/theme/thumbnail/lukewhitehouse-gatsby-starter-blog-with-lunr.jpg differ diff --git a/static/images/theme/thumbnail/lunaceee-hexo-material-netlify-master.jpg b/static/images/theme/thumbnail/lunaceee-hexo-material-netlify-master.jpg deleted file mode 100644 index e3e62174a..000000000 Binary files a/static/images/theme/thumbnail/lunaceee-hexo-material-netlify-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lunaceee-hexo-material-netlify.jpg b/static/images/theme/thumbnail/lunaceee-hexo-material-netlify.jpg new file mode 100644 index 000000000..ee4fe6d37 Binary files /dev/null and b/static/images/theme/thumbnail/lunaceee-hexo-material-netlify.jpg differ diff --git a/static/images/theme/thumbnail/lundgren2-gatsby-starter-github-api-master.jpg b/static/images/theme/thumbnail/lundgren2-gatsby-starter-github-api-master.jpg deleted file mode 100644 index 7d1c657fa..000000000 Binary files a/static/images/theme/thumbnail/lundgren2-gatsby-starter-github-api-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lundgren2-gatsby-starter-github-api.jpg b/static/images/theme/thumbnail/lundgren2-gatsby-starter-github-api.jpg new file mode 100644 index 000000000..29ba14e2d Binary files /dev/null and b/static/images/theme/thumbnail/lundgren2-gatsby-starter-github-api.jpg differ diff --git a/static/images/theme/thumbnail/luoyan35714-lessormore-master.jpg b/static/images/theme/thumbnail/luoyan35714-lessormore-master.jpg deleted file mode 100644 index faf36fb93..000000000 Binary files a/static/images/theme/thumbnail/luoyan35714-lessormore-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/luoyan35714-lessormore.jpg b/static/images/theme/thumbnail/luoyan35714-lessormore.jpg new file mode 100644 index 000000000..5fe215a5a Binary files /dev/null and b/static/images/theme/thumbnail/luoyan35714-lessormore.jpg differ diff --git a/static/images/theme/thumbnail/lwojcik-eleventy-template-bliss.jpg b/static/images/theme/thumbnail/lwojcik-eleventy-template-bliss.jpg new file mode 100644 index 000000000..e24ff8d9f Binary files /dev/null and b/static/images/theme/thumbnail/lwojcik-eleventy-template-bliss.jpg differ diff --git a/static/images/theme/thumbnail/lwz7512-gatsby-netlify-identity-starter-master.jpg b/static/images/theme/thumbnail/lwz7512-gatsby-netlify-identity-starter-master.jpg deleted file mode 100644 index 76587354e..000000000 Binary files a/static/images/theme/thumbnail/lwz7512-gatsby-netlify-identity-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lwz7512-gatsby-netlify-identity-starter.jpg b/static/images/theme/thumbnail/lwz7512-gatsby-netlify-identity-starter.jpg new file mode 100644 index 000000000..48f81bf7f Binary files /dev/null and b/static/images/theme/thumbnail/lwz7512-gatsby-netlify-identity-starter.jpg differ diff --git a/static/images/theme/thumbnail/lwz7512-next-dev-studio.jpg b/static/images/theme/thumbnail/lwz7512-next-dev-studio.jpg new file mode 100644 index 000000000..8772fa54e Binary files /dev/null and b/static/images/theme/thumbnail/lwz7512-next-dev-studio.jpg differ diff --git a/static/images/theme/thumbnail/lwz7512-next-smooth-doc.jpg b/static/images/theme/thumbnail/lwz7512-next-smooth-doc.jpg new file mode 100644 index 000000000..39da2f29e Binary files /dev/null and b/static/images/theme/thumbnail/lwz7512-next-smooth-doc.jpg differ diff --git a/static/images/theme/thumbnail/lwz7512-next-static-neve.jpg b/static/images/theme/thumbnail/lwz7512-next-static-neve.jpg new file mode 100644 index 000000000..4c0e76fed Binary files /dev/null and b/static/images/theme/thumbnail/lwz7512-next-static-neve.jpg differ diff --git a/static/images/theme/thumbnail/lxndrblz-anatole.jpg b/static/images/theme/thumbnail/lxndrblz-anatole.jpg new file mode 100644 index 000000000..368bd5f75 Binary files /dev/null and b/static/images/theme/thumbnail/lxndrblz-anatole.jpg differ diff --git a/static/images/theme/thumbnail/lyket-dev-nextjs-simple-blog-theme-main.jpg b/static/images/theme/thumbnail/lyket-dev-nextjs-simple-blog-theme-main.jpg deleted file mode 100644 index 481271c02..000000000 Binary files a/static/images/theme/thumbnail/lyket-dev-nextjs-simple-blog-theme-main.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/lyket-dev-nextjs-simple-blog-theme.jpg b/static/images/theme/thumbnail/lyket-dev-nextjs-simple-blog-theme.jpg new file mode 100644 index 000000000..115dd8d52 Binary files /dev/null and b/static/images/theme/thumbnail/lyket-dev-nextjs-simple-blog-theme.jpg differ diff --git a/static/images/theme/thumbnail/macrod68-jekyll-materialize-starter-template-master.jpg b/static/images/theme/thumbnail/macrod68-jekyll-materialize-starter-template-master.jpg deleted file mode 100644 index 213cbad98..000000000 Binary files a/static/images/theme/thumbnail/macrod68-jekyll-materialize-starter-template-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/madelyneriksen-gatsby-starter-tyra-master.jpg b/static/images/theme/thumbnail/madelyneriksen-gatsby-starter-tyra-master.jpg deleted file mode 100644 index e8debfb35..000000000 Binary files a/static/images/theme/thumbnail/madelyneriksen-gatsby-starter-tyra-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/madelyneriksen-gatsby-starter-tyra.jpg b/static/images/theme/thumbnail/madelyneriksen-gatsby-starter-tyra.jpg new file mode 100644 index 000000000..63077ddea Binary files /dev/null and b/static/images/theme/thumbnail/madelyneriksen-gatsby-starter-tyra.jpg differ diff --git a/static/images/theme/thumbnail/madforjekyll-madforjekyll.github.io-master.jpg b/static/images/theme/thumbnail/madforjekyll-madforjekyll.github.io-master.jpg deleted file mode 100644 index c2b12247c..000000000 Binary files a/static/images/theme/thumbnail/madforjekyll-madforjekyll.github.io-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/madforjekyll-madforjekyll.github.io.jpg b/static/images/theme/thumbnail/madforjekyll-madforjekyll.github.io.jpg new file mode 100644 index 000000000..541acfaa5 Binary files /dev/null and b/static/images/theme/thumbnail/madforjekyll-madforjekyll.github.io.jpg differ diff --git a/static/images/theme/thumbnail/manid2-lone-wolf-theme-master.jpg b/static/images/theme/thumbnail/manid2-lone-wolf-theme-master.jpg deleted file mode 100644 index b979a0235..000000000 Binary files a/static/images/theme/thumbnail/manid2-lone-wolf-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/manid2-lone-wolf-theme.jpg b/static/images/theme/thumbnail/manid2-lone-wolf-theme.jpg new file mode 100644 index 000000000..9a6fc18d7 Binary files /dev/null and b/static/images/theme/thumbnail/manid2-lone-wolf-theme.jpg differ diff --git a/static/images/theme/thumbnail/marcanuy-hugotube-master.jpg b/static/images/theme/thumbnail/marcanuy-hugotube-master.jpg deleted file mode 100644 index 642ceca0a..000000000 Binary files a/static/images/theme/thumbnail/marcanuy-hugotube-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/marcanuy-hugotube.jpg b/static/images/theme/thumbnail/marcanuy-hugotube.jpg new file mode 100644 index 000000000..f6a7c883e Binary files /dev/null and b/static/images/theme/thumbnail/marcanuy-hugotube.jpg differ diff --git a/static/images/theme/thumbnail/marcanuy-simpleit-hugo-theme-master.jpg b/static/images/theme/thumbnail/marcanuy-simpleit-hugo-theme-master.jpg deleted file mode 100644 index 10ab280ff..000000000 Binary files a/static/images/theme/thumbnail/marcanuy-simpleit-hugo-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/marcomelilli-gatsby-airtable-advanced-starter-master.jpg b/static/images/theme/thumbnail/marcomelilli-gatsby-airtable-advanced-starter-master.jpg deleted file mode 100644 index 3ea167606..000000000 Binary files a/static/images/theme/thumbnail/marcomelilli-gatsby-airtable-advanced-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/marcomelilli-gatsby-airtable-advanced-starter.jpg b/static/images/theme/thumbnail/marcomelilli-gatsby-airtable-advanced-starter.jpg new file mode 100644 index 000000000..b677874e9 Binary files /dev/null and b/static/images/theme/thumbnail/marcomelilli-gatsby-airtable-advanced-starter.jpg differ diff --git a/static/images/theme/thumbnail/marcusvirg-forty-master.jpg b/static/images/theme/thumbnail/marcusvirg-forty-master.jpg deleted file mode 100644 index 6c07810f2..000000000 Binary files a/static/images/theme/thumbnail/marcusvirg-forty-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/margueriteroth-gatsby-prismic-starter-prist-master.jpg b/static/images/theme/thumbnail/margueriteroth-gatsby-prismic-starter-prist-master.jpg deleted file mode 100644 index c3e78f623..000000000 Binary files a/static/images/theme/thumbnail/margueriteroth-gatsby-prismic-starter-prist-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/margueriteroth-gatsby-prismic-starter-prist.jpg b/static/images/theme/thumbnail/margueriteroth-gatsby-prismic-starter-prist.jpg new file mode 100644 index 000000000..406fd1de0 Binary files /dev/null and b/static/images/theme/thumbnail/margueriteroth-gatsby-prismic-starter-prist.jpg differ diff --git a/static/images/theme/thumbnail/markoradak-gatsby-starter-storybook-master.jpg b/static/images/theme/thumbnail/markoradak-gatsby-starter-storybook-master.jpg deleted file mode 100644 index 9207cbc38..000000000 Binary files a/static/images/theme/thumbnail/markoradak-gatsby-starter-storybook-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/markoradak-gatsby-starter-storybook.jpg b/static/images/theme/thumbnail/markoradak-gatsby-starter-storybook.jpg new file mode 100644 index 000000000..f240ceeae Binary files /dev/null and b/static/images/theme/thumbnail/markoradak-gatsby-starter-storybook.jpg differ diff --git a/static/images/theme/thumbnail/matcornic-hugo-theme-learn-master.jpg b/static/images/theme/thumbnail/matcornic-hugo-theme-learn-master.jpg deleted file mode 100644 index 416f610d0..000000000 Binary files a/static/images/theme/thumbnail/matcornic-hugo-theme-learn-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/matcornic-hugo-theme-learn.jpg b/static/images/theme/thumbnail/matcornic-hugo-theme-learn.jpg new file mode 100644 index 000000000..9dd68a127 Binary files /dev/null and b/static/images/theme/thumbnail/matcornic-hugo-theme-learn.jpg differ diff --git a/static/images/theme/thumbnail/materio-react-github-banner.png b/static/images/theme/thumbnail/materio-react-github-banner.png new file mode 100644 index 000000000..865ea2560 Binary files /dev/null and b/static/images/theme/thumbnail/materio-react-github-banner.png differ diff --git a/static/images/theme/thumbnail/materio-vue-nuxtjs-free-banner-github.png b/static/images/theme/thumbnail/materio-vue-nuxtjs-free-banner-github.png new file mode 100644 index 000000000..c4629128b Binary files /dev/null and b/static/images/theme/thumbnail/materio-vue-nuxtjs-free-banner-github.png differ diff --git a/static/images/theme/thumbnail/mateussmedeiros-blade-theme-master.jpg b/static/images/theme/thumbnail/mateussmedeiros-blade-theme-master.jpg deleted file mode 100644 index 7eacacfee..000000000 Binary files a/static/images/theme/thumbnail/mateussmedeiros-blade-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/mateussmedeiros-blade-theme.jpg b/static/images/theme/thumbnail/mateussmedeiros-blade-theme.jpg new file mode 100644 index 000000000..9ad65c78a Binary files /dev/null and b/static/images/theme/thumbnail/mateussmedeiros-blade-theme.jpg differ diff --git a/static/images/theme/thumbnail/mattbutton-silhouette-hugo-master.jpg b/static/images/theme/thumbnail/mattbutton-silhouette-hugo-master.jpg deleted file mode 100644 index 7c938f832..000000000 Binary files a/static/images/theme/thumbnail/mattbutton-silhouette-hugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/mattgraham-leap-day-master.jpg b/static/images/theme/thumbnail/mattgraham-leap-day-master.jpg deleted file mode 100644 index 0768e3a34..000000000 Binary files a/static/images/theme/thumbnail/mattgraham-leap-day-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/mattgraham-leap-day.jpg b/static/images/theme/thumbnail/mattgraham-leap-day.jpg new file mode 100644 index 000000000..ab77cae72 Binary files /dev/null and b/static/images/theme/thumbnail/mattgraham-leap-day.jpg differ diff --git a/static/images/theme/thumbnail/mattgraham-midnight-master.jpg b/static/images/theme/thumbnail/mattgraham-midnight-master.jpg deleted file mode 100644 index 2e1d43406..000000000 Binary files a/static/images/theme/thumbnail/mattgraham-midnight-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/mattgraham-midnight.jpg b/static/images/theme/thumbnail/mattgraham-midnight.jpg new file mode 100644 index 000000000..fb212650f Binary files /dev/null and b/static/images/theme/thumbnail/mattgraham-midnight.jpg differ diff --git a/static/images/theme/thumbnail/mattolson-middleman-bootstrap-template-master.jpg b/static/images/theme/thumbnail/mattolson-middleman-bootstrap-template-master.jpg deleted file mode 100644 index aa86a4854..000000000 Binary files a/static/images/theme/thumbnail/mattolson-middleman-bootstrap-template-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/mattolson-middleman-zurb-template-master.jpg b/static/images/theme/thumbnail/mattolson-middleman-zurb-template-master.jpg deleted file mode 100644 index 094ac1f6c..000000000 Binary files a/static/images/theme/thumbnail/mattolson-middleman-zurb-template-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/mattvh-solar-theme-jekyll-master.jpg b/static/images/theme/thumbnail/mattvh-solar-theme-jekyll-master.jpg deleted file mode 100644 index 2df9ac38a..000000000 Binary files a/static/images/theme/thumbnail/mattvh-solar-theme-jekyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/mattvh-solar-theme-jekyll.jpg b/static/images/theme/thumbnail/mattvh-solar-theme-jekyll.jpg new file mode 100644 index 000000000..73b04fb05 Binary files /dev/null and b/static/images/theme/thumbnail/mattvh-solar-theme-jekyll.jpg differ diff --git a/static/images/theme/thumbnail/maxpou-gatsby-starter-morning-dew-master.jpg b/static/images/theme/thumbnail/maxpou-gatsby-starter-morning-dew-master.jpg deleted file mode 100644 index 9485b1d2f..000000000 Binary files a/static/images/theme/thumbnail/maxpou-gatsby-starter-morning-dew-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/maxpou-gatsby-starter-morning-dew.jpg b/static/images/theme/thumbnail/maxpou-gatsby-starter-morning-dew.jpg new file mode 100644 index 000000000..ebf2a117f Binary files /dev/null and b/static/images/theme/thumbnail/maxpou-gatsby-starter-morning-dew.jpg differ diff --git a/static/images/theme/thumbnail/mazgi-hugo-theme-techlog-simple-master.jpg b/static/images/theme/thumbnail/mazgi-hugo-theme-techlog-simple-master.jpg deleted file mode 100644 index 210554ca3..000000000 Binary files a/static/images/theme/thumbnail/mazgi-hugo-theme-techlog-simple-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/mccrodp-gatsby-starter-contentful-i18n-master.jpg b/static/images/theme/thumbnail/mccrodp-gatsby-starter-contentful-i18n-master.jpg deleted file mode 100644 index dbee3a92a..000000000 Binary files a/static/images/theme/thumbnail/mccrodp-gatsby-starter-contentful-i18n-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/mccrodp-gatsby-starter-contentful-i18n.jpg b/static/images/theme/thumbnail/mccrodp-gatsby-starter-contentful-i18n.jpg new file mode 100644 index 000000000..dd4150669 Binary files /dev/null and b/static/images/theme/thumbnail/mccrodp-gatsby-starter-contentful-i18n.jpg differ diff --git a/static/images/theme/thumbnail/mdrathik-nuxtjs-tailwind-blog.jpg b/static/images/theme/thumbnail/mdrathik-nuxtjs-tailwind-blog.jpg new file mode 100644 index 000000000..2ce7f0ead Binary files /dev/null and b/static/images/theme/thumbnail/mdrathik-nuxtjs-tailwind-blog.jpg differ diff --git a/static/images/theme/thumbnail/meibenny-elephants-master.jpg b/static/images/theme/thumbnail/meibenny-elephants-master.jpg deleted file mode 100644 index 445493eb2..000000000 Binary files a/static/images/theme/thumbnail/meibenny-elephants-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/melangue-dactl-master.jpg b/static/images/theme/thumbnail/melangue-dactl-master.jpg deleted file mode 100644 index 5a09b9462..000000000 Binary files a/static/images/theme/thumbnail/melangue-dactl-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/melangue-dactl.jpg b/static/images/theme/thumbnail/melangue-dactl.jpg new file mode 100644 index 000000000..5d5893c8d Binary files /dev/null and b/static/images/theme/thumbnail/melangue-dactl.jpg differ diff --git a/static/images/theme/thumbnail/meliodus-meliodus.github.io-master.jpg b/static/images/theme/thumbnail/meliodus-meliodus.github.io-master.jpg deleted file mode 100644 index f01fbbdba..000000000 Binary files a/static/images/theme/thumbnail/meliodus-meliodus.github.io-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/meliodus-meliodus.github.io.jpg b/static/images/theme/thumbnail/meliodus-meliodus.github.io.jpg new file mode 100644 index 000000000..512570ca4 Binary files /dev/null and b/static/images/theme/thumbnail/meliodus-meliodus.github.io.jpg differ diff --git a/static/images/theme/thumbnail/meliodus-uno-dbyll-gh-pages.jpg b/static/images/theme/thumbnail/meliodus-uno-dbyll-gh-pages.jpg deleted file mode 100644 index 2e812663e..000000000 Binary files a/static/images/theme/thumbnail/meliodus-uno-dbyll-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/meliodus-uno-dbyll.jpg b/static/images/theme/thumbnail/meliodus-uno-dbyll.jpg new file mode 100644 index 000000000..5bd7a6c2f Binary files /dev/null and b/static/images/theme/thumbnail/meliodus-uno-dbyll.jpg differ diff --git a/static/images/theme/thumbnail/melvinchng-event-jekyll-theme-master.jpg b/static/images/theme/thumbnail/melvinchng-event-jekyll-theme-master.jpg deleted file mode 100644 index e05e4af93..000000000 Binary files a/static/images/theme/thumbnail/melvinchng-event-jekyll-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/melvinchng-event-jekyll-theme.jpg b/static/images/theme/thumbnail/melvinchng-event-jekyll-theme.jpg new file mode 100644 index 000000000..f2d3caa89 Binary files /dev/null and b/static/images/theme/thumbnail/melvinchng-event-jekyll-theme.jpg differ diff --git a/static/images/theme/thumbnail/mendhak-eleventy-satisfactory.jpg b/static/images/theme/thumbnail/mendhak-eleventy-satisfactory.jpg new file mode 100644 index 000000000..f0f64c55e Binary files /dev/null and b/static/images/theme/thumbnail/mendhak-eleventy-satisfactory.jpg differ diff --git a/static/images/theme/thumbnail/meteorlxy-vuepress-theme-meteorlxy-master.jpg b/static/images/theme/thumbnail/meteorlxy-vuepress-theme-meteorlxy-master.jpg deleted file mode 100644 index 18da09fb7..000000000 Binary files a/static/images/theme/thumbnail/meteorlxy-vuepress-theme-meteorlxy-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/meteorlxy-vuepress-theme-meteorlxy.jpg b/static/images/theme/thumbnail/meteorlxy-vuepress-theme-meteorlxy.jpg new file mode 100644 index 000000000..ab2558eae Binary files /dev/null and b/static/images/theme/thumbnail/meteorlxy-vuepress-theme-meteorlxy.jpg differ diff --git a/static/images/theme/thumbnail/mhadaily-gatsby-starter-typescript-power-blog-master.jpg b/static/images/theme/thumbnail/mhadaily-gatsby-starter-typescript-power-blog-master.jpg deleted file mode 100644 index cd2859aa0..000000000 Binary files a/static/images/theme/thumbnail/mhadaily-gatsby-starter-typescript-power-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/mhadaily-gatsby-starter-typescript-power-blog.jpg b/static/images/theme/thumbnail/mhadaily-gatsby-starter-typescript-power-blog.jpg new file mode 100644 index 000000000..b1c32c8df Binary files /dev/null and b/static/images/theme/thumbnail/mhadaily-gatsby-starter-typescript-power-blog.jpg differ diff --git a/static/images/theme/thumbnail/miccall-hexo-theme-mic_theme-master.jpg b/static/images/theme/thumbnail/miccall-hexo-theme-mic_theme-master.jpg deleted file mode 100644 index 1bf5038d1..000000000 Binary files a/static/images/theme/thumbnail/miccall-hexo-theme-mic_theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/midzer-urban-theme-master.jpg b/static/images/theme/thumbnail/midzer-urban-theme-master.jpg deleted file mode 100644 index fc0277c46..000000000 Binary files a/static/images/theme/thumbnail/midzer-urban-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/midzer-urban-theme.jpg b/static/images/theme/thumbnail/midzer-urban-theme.jpg new file mode 100644 index 000000000..c25a846e6 Binary files /dev/null and b/static/images/theme/thumbnail/midzer-urban-theme.jpg differ diff --git a/static/images/theme/thumbnail/miguelsimoni-hugo-initio-master.jpg b/static/images/theme/thumbnail/miguelsimoni-hugo-initio-master.jpg deleted file mode 100644 index 246a3adfc..000000000 Binary files a/static/images/theme/thumbnail/miguelsimoni-hugo-initio-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/mikeblum-hugo-now-master.jpg b/static/images/theme/thumbnail/mikeblum-hugo-now-master.jpg deleted file mode 100644 index e8479f09f..000000000 Binary files a/static/images/theme/thumbnail/mikeblum-hugo-now-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/minhhuy150894-minhhuy150894.github.io-master.jpg b/static/images/theme/thumbnail/minhhuy150894-minhhuy150894.github.io-master.jpg deleted file mode 100644 index 1eb29887b..000000000 Binary files a/static/images/theme/thumbnail/minhhuy150894-minhhuy150894.github.io-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/mmistakes-hpstr-jekyll-theme-master.jpg b/static/images/theme/thumbnail/mmistakes-hpstr-jekyll-theme-master.jpg deleted file mode 100644 index 962463077..000000000 Binary files a/static/images/theme/thumbnail/mmistakes-hpstr-jekyll-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/mmistakes-hpstr-jekyll-theme.jpg b/static/images/theme/thumbnail/mmistakes-hpstr-jekyll-theme.jpg new file mode 100644 index 000000000..7ddbeeb9a Binary files /dev/null and b/static/images/theme/thumbnail/mmistakes-hpstr-jekyll-theme.jpg differ diff --git a/static/images/theme/thumbnail/mmistakes-jekyll-theme-basically-basic-master.jpg b/static/images/theme/thumbnail/mmistakes-jekyll-theme-basically-basic-master.jpg deleted file mode 100644 index ed396e059..000000000 Binary files a/static/images/theme/thumbnail/mmistakes-jekyll-theme-basically-basic-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/mmistakes-jekyll-theme-basically-basic.jpg b/static/images/theme/thumbnail/mmistakes-jekyll-theme-basically-basic.jpg new file mode 100644 index 000000000..b87768419 Binary files /dev/null and b/static/images/theme/thumbnail/mmistakes-jekyll-theme-basically-basic.jpg differ diff --git a/static/images/theme/thumbnail/mmistakes-jekyll-theme-skinny-bones-master.jpg b/static/images/theme/thumbnail/mmistakes-jekyll-theme-skinny-bones-master.jpg deleted file mode 100644 index 195eddadf..000000000 Binary files a/static/images/theme/thumbnail/mmistakes-jekyll-theme-skinny-bones-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/mmistakes-jekyll-theme-skinny-bones.jpg b/static/images/theme/thumbnail/mmistakes-jekyll-theme-skinny-bones.jpg new file mode 100644 index 000000000..77ed0ae4c Binary files /dev/null and b/static/images/theme/thumbnail/mmistakes-jekyll-theme-skinny-bones.jpg differ diff --git a/static/images/theme/thumbnail/mmistakes-minimal-mistakes-master.jpg b/static/images/theme/thumbnail/mmistakes-minimal-mistakes-master.jpg deleted file mode 100644 index ccc2ca2e2..000000000 Binary files a/static/images/theme/thumbnail/mmistakes-minimal-mistakes-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/mmistakes-minimal-mistakes.jpg b/static/images/theme/thumbnail/mmistakes-minimal-mistakes.jpg new file mode 100644 index 000000000..33accad73 Binary files /dev/null and b/static/images/theme/thumbnail/mmistakes-minimal-mistakes.jpg differ diff --git a/static/images/theme/thumbnail/mmistakes-so-simple-theme-master.jpg b/static/images/theme/thumbnail/mmistakes-so-simple-theme-master.jpg deleted file mode 100644 index 28ec61bd1..000000000 Binary files a/static/images/theme/thumbnail/mmistakes-so-simple-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/mmistakes-so-simple-theme.jpg b/static/images/theme/thumbnail/mmistakes-so-simple-theme.jpg new file mode 100644 index 000000000..bb3f199da Binary files /dev/null and b/static/images/theme/thumbnail/mmistakes-so-simple-theme.jpg differ diff --git a/static/images/theme/thumbnail/mmrath-hugo-bootstrap-master.jpg b/static/images/theme/thumbnail/mmrath-hugo-bootstrap-master.jpg deleted file mode 100644 index dbc997f87..000000000 Binary files a/static/images/theme/thumbnail/mmrath-hugo-bootstrap-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/mohanmonu777-gatsby-starter-krisp-master.jpg b/static/images/theme/thumbnail/mohanmonu777-gatsby-starter-krisp-master.jpg deleted file mode 100644 index 460f72d15..000000000 Binary files a/static/images/theme/thumbnail/mohanmonu777-gatsby-starter-krisp-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/mohanmonu777-gatsby-starter-krisp.jpg b/static/images/theme/thumbnail/mohanmonu777-gatsby-starter-krisp.jpg new file mode 100644 index 000000000..0d6db70fa Binary files /dev/null and b/static/images/theme/thumbnail/mohanmonu777-gatsby-starter-krisp.jpg differ diff --git a/static/images/theme/thumbnail/molebox-gatsby-theme-pocket-master.jpg b/static/images/theme/thumbnail/molebox-gatsby-theme-pocket-master.jpg deleted file mode 100644 index ba15bfcee..000000000 Binary files a/static/images/theme/thumbnail/molebox-gatsby-theme-pocket-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/molebox-gatsby-theme-pocket.jpg b/static/images/theme/thumbnail/molebox-gatsby-theme-pocket.jpg new file mode 100644 index 000000000..0aedb9349 Binary files /dev/null and b/static/images/theme/thumbnail/molebox-gatsby-theme-pocket.jpg differ diff --git a/static/images/theme/thumbnail/moltin-gatsby-demo-store-master.jpg b/static/images/theme/thumbnail/moltin-gatsby-demo-store-master.jpg deleted file mode 100644 index c9072e0f1..000000000 Binary files a/static/images/theme/thumbnail/moltin-gatsby-demo-store-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/moltin-gatsby-demo-store.jpg b/static/images/theme/thumbnail/moltin-gatsby-demo-store.jpg new file mode 100644 index 000000000..437bba413 Binary files /dev/null and b/static/images/theme/thumbnail/moltin-gatsby-demo-store.jpg differ diff --git a/static/images/theme/thumbnail/moonwave99-waffel-master.jpg b/static/images/theme/thumbnail/moonwave99-waffel-master.jpg deleted file mode 100644 index 4a89ba8dc..000000000 Binary files a/static/images/theme/thumbnail/moonwave99-waffel-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/moonwave99-waffel.jpg b/static/images/theme/thumbnail/moonwave99-waffel.jpg new file mode 100644 index 000000000..ca00449db Binary files /dev/null and b/static/images/theme/thumbnail/moonwave99-waffel.jpg differ diff --git a/static/images/theme/thumbnail/mrgreensworkshop-mrgreen-jekylltheme.jpg b/static/images/theme/thumbnail/mrgreensworkshop-mrgreen-jekylltheme.jpg new file mode 100644 index 000000000..4dc00b726 Binary files /dev/null and b/static/images/theme/thumbnail/mrgreensworkshop-mrgreen-jekylltheme.jpg differ diff --git a/static/images/theme/thumbnail/muan-scribble-gh-pages.jpg b/static/images/theme/thumbnail/muan-scribble-gh-pages.jpg deleted file mode 100644 index bb7fb06ab..000000000 Binary files a/static/images/theme/thumbnail/muan-scribble-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/muan-scribble.jpg b/static/images/theme/thumbnail/muan-scribble.jpg new file mode 100644 index 000000000..0d12a3964 Binary files /dev/null and b/static/images/theme/thumbnail/muan-scribble.jpg differ diff --git a/static/images/theme/thumbnail/mudassirgithub-next-basic-blog-master.jpg b/static/images/theme/thumbnail/mudassirgithub-next-basic-blog-master.jpg deleted file mode 100644 index 66eae5304..000000000 Binary files a/static/images/theme/thumbnail/mudassirgithub-next-basic-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/mudassirgithub-next-basic-blog.jpg b/static/images/theme/thumbnail/mudassirgithub-next-basic-blog.jpg new file mode 100644 index 000000000..d6b097eed Binary files /dev/null and b/static/images/theme/thumbnail/mudassirgithub-next-basic-blog.jpg differ diff --git a/static/images/theme/thumbnail/muenzpraeger-eleventy-chirpy-blog-template-main.jpg b/static/images/theme/thumbnail/muenzpraeger-eleventy-chirpy-blog-template-main.jpg deleted file mode 100644 index e10c37bcb..000000000 Binary files a/static/images/theme/thumbnail/muenzpraeger-eleventy-chirpy-blog-template-main.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/muenzpraeger-eleventy-chirpy-blog-template.jpg b/static/images/theme/thumbnail/muenzpraeger-eleventy-chirpy-blog-template.jpg new file mode 100644 index 000000000..c96db7825 Binary files /dev/null and b/static/images/theme/thumbnail/muenzpraeger-eleventy-chirpy-blog-template.jpg differ diff --git a/static/images/theme/thumbnail/muhajirdev-gatsby-starter-firebase-master.jpg b/static/images/theme/thumbnail/muhajirdev-gatsby-starter-firebase-master.jpg deleted file mode 100644 index 73c2dc58f..000000000 Binary files a/static/images/theme/thumbnail/muhajirdev-gatsby-starter-firebase-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/muhajirdev-gatsby-starter-firebase.jpg b/static/images/theme/thumbnail/muhajirdev-gatsby-starter-firebase.jpg new file mode 100644 index 000000000..dd397b7a4 Binary files /dev/null and b/static/images/theme/thumbnail/muhajirdev-gatsby-starter-firebase.jpg differ diff --git a/static/images/theme/thumbnail/muhajirdev-gatsby-starter-redux-firebase-master.jpg b/static/images/theme/thumbnail/muhajirdev-gatsby-starter-redux-firebase-master.jpg deleted file mode 100644 index fb6081059..000000000 Binary files a/static/images/theme/thumbnail/muhajirdev-gatsby-starter-redux-firebase-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/muhajirdev-gatsby-starter-redux-firebase.jpg b/static/images/theme/thumbnail/muhajirdev-gatsby-starter-redux-firebase.jpg new file mode 100644 index 000000000..dd397b7a4 Binary files /dev/null and b/static/images/theme/thumbnail/muhajirdev-gatsby-starter-redux-firebase.jpg differ diff --git a/static/images/theme/thumbnail/muhajirdev-gatsby-tailwind-emotion-starter-master.jpg b/static/images/theme/thumbnail/muhajirdev-gatsby-tailwind-emotion-starter-master.jpg deleted file mode 100644 index a722c05a4..000000000 Binary files a/static/images/theme/thumbnail/muhajirdev-gatsby-tailwind-emotion-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/muhajirdev-gatsby-tailwind-emotion-starter.jpg b/static/images/theme/thumbnail/muhajirdev-gatsby-tailwind-emotion-starter.jpg new file mode 100644 index 000000000..9fe041988 Binary files /dev/null and b/static/images/theme/thumbnail/muhajirdev-gatsby-tailwind-emotion-starter.jpg differ diff --git a/static/images/theme/thumbnail/mumuxme-materialize-jekyll-master.jpg b/static/images/theme/thumbnail/mumuxme-materialize-jekyll-master.jpg deleted file mode 100644 index dd1b9d31e..000000000 Binary files a/static/images/theme/thumbnail/mumuxme-materialize-jekyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/mumuxme-materialize-jekyll.jpg b/static/images/theme/thumbnail/mumuxme-materialize-jekyll.jpg new file mode 100644 index 000000000..018a41ca4 Binary files /dev/null and b/static/images/theme/thumbnail/mumuxme-materialize-jekyll.jpg differ diff --git a/static/images/theme/thumbnail/muniftanjim-minimo-master.jpg b/static/images/theme/thumbnail/muniftanjim-minimo-master.jpg deleted file mode 100644 index dbf720d13..000000000 Binary files a/static/images/theme/thumbnail/muniftanjim-minimo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/muniftanjim-minimo.jpg b/static/images/theme/thumbnail/muniftanjim-minimo.jpg new file mode 100644 index 000000000..283d59f43 Binary files /dev/null and b/static/images/theme/thumbnail/muniftanjim-minimo.jpg differ diff --git a/static/images/theme/thumbnail/murraco-jekyll-theme-minimal-resume-master.jpg b/static/images/theme/thumbnail/murraco-jekyll-theme-minimal-resume-master.jpg deleted file mode 100644 index daadc8048..000000000 Binary files a/static/images/theme/thumbnail/murraco-jekyll-theme-minimal-resume-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/murraco-jekyll-theme-minimal-resume.jpg b/static/images/theme/thumbnail/murraco-jekyll-theme-minimal-resume.jpg new file mode 100644 index 000000000..352fa8ad5 Binary files /dev/null and b/static/images/theme/thumbnail/murraco-jekyll-theme-minimal-resume.jpg differ diff --git a/static/images/theme/thumbnail/mushishi78-jekyll-video-gh-pages.jpg b/static/images/theme/thumbnail/mushishi78-jekyll-video-gh-pages.jpg deleted file mode 100644 index 081a7f7a3..000000000 Binary files a/static/images/theme/thumbnail/mushishi78-jekyll-video-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/mushishi78-jekyll-video.jpg b/static/images/theme/thumbnail/mushishi78-jekyll-video.jpg new file mode 100644 index 000000000..8cd9e547a Binary files /dev/null and b/static/images/theme/thumbnail/mushishi78-jekyll-video.jpg differ diff --git a/static/images/theme/thumbnail/mushishi78-one-page-wonder-jekyll-gh-pages.jpg b/static/images/theme/thumbnail/mushishi78-one-page-wonder-jekyll-gh-pages.jpg deleted file mode 100644 index b3a279a42..000000000 Binary files a/static/images/theme/thumbnail/mushishi78-one-page-wonder-jekyll-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/mushishi78-one-page-wonder-jekyll.jpg b/static/images/theme/thumbnail/mushishi78-one-page-wonder-jekyll.jpg new file mode 100644 index 000000000..968fc6f40 Binary files /dev/null and b/static/images/theme/thumbnail/mushishi78-one-page-wonder-jekyll.jpg differ diff --git a/static/images/theme/thumbnail/mx3m-hikari-for-jekyll-gh-pages.jpg b/static/images/theme/thumbnail/mx3m-hikari-for-jekyll-gh-pages.jpg deleted file mode 100644 index 6193773e1..000000000 Binary files a/static/images/theme/thumbnail/mx3m-hikari-for-jekyll-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/nadjetey-gridgallery-master.jpg b/static/images/theme/thumbnail/nadjetey-gridgallery-master.jpg deleted file mode 100644 index 6193773e1..000000000 Binary files a/static/images/theme/thumbnail/nadjetey-gridgallery-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/nadjetey-redcup-master.jpg b/static/images/theme/thumbnail/nadjetey-redcup-master.jpg deleted file mode 100644 index 6193773e1..000000000 Binary files a/static/images/theme/thumbnail/nadjetey-redcup-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/nadjetey-wangana-master.jpg b/static/images/theme/thumbnail/nadjetey-wangana-master.jpg deleted file mode 100644 index 929d20203..000000000 Binary files a/static/images/theme/thumbnail/nadjetey-wangana-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/nadjetey-wangana.jpg b/static/images/theme/thumbnail/nadjetey-wangana.jpg new file mode 100644 index 000000000..f6537dfdd Binary files /dev/null and b/static/images/theme/thumbnail/nadjetey-wangana.jpg differ diff --git a/static/images/theme/thumbnail/nairobilug-pelican-alchemy-master.jpg b/static/images/theme/thumbnail/nairobilug-pelican-alchemy-master.jpg deleted file mode 100644 index a0cce5d80..000000000 Binary files a/static/images/theme/thumbnail/nairobilug-pelican-alchemy-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/nairobilug-pelican-alchemy.jpg b/static/images/theme/thumbnail/nairobilug-pelican-alchemy.jpg new file mode 100644 index 000000000..4ebc4d05f Binary files /dev/null and b/static/images/theme/thumbnail/nairobilug-pelican-alchemy.jpg differ diff --git a/static/images/theme/thumbnail/nakorndev-vuepress-theme-bulma-master.jpg b/static/images/theme/thumbnail/nakorndev-vuepress-theme-bulma-master.jpg deleted file mode 100644 index 7f90618be..000000000 Binary files a/static/images/theme/thumbnail/nakorndev-vuepress-theme-bulma-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/nandomoreirame-dotx-master.jpg b/static/images/theme/thumbnail/nandomoreirame-dotx-master.jpg deleted file mode 100644 index b9e29d50f..000000000 Binary files a/static/images/theme/thumbnail/nandomoreirame-dotx-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/nandomoreirame-dotx.jpg b/static/images/theme/thumbnail/nandomoreirame-dotx.jpg new file mode 100644 index 000000000..d54e725aa Binary files /dev/null and b/static/images/theme/thumbnail/nandomoreirame-dotx.jpg differ diff --git a/static/images/theme/thumbnail/nandomoreirame-end2end-master.jpg b/static/images/theme/thumbnail/nandomoreirame-end2end-master.jpg deleted file mode 100644 index 7b15471a2..000000000 Binary files a/static/images/theme/thumbnail/nandomoreirame-end2end-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/nandomoreirame-end2end.jpg b/static/images/theme/thumbnail/nandomoreirame-end2end.jpg new file mode 100644 index 000000000..c3f715fd3 Binary files /dev/null and b/static/images/theme/thumbnail/nandomoreirame-end2end.jpg differ diff --git a/static/images/theme/thumbnail/nandomoreirame-lora-master.jpg b/static/images/theme/thumbnail/nandomoreirame-lora-master.jpg deleted file mode 100644 index 060105914..000000000 Binary files a/static/images/theme/thumbnail/nandomoreirame-lora-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/nandomoreirame-mug-master.jpg b/static/images/theme/thumbnail/nandomoreirame-mug-master.jpg deleted file mode 100644 index d163c83d3..000000000 Binary files a/static/images/theme/thumbnail/nandomoreirame-mug-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/nandomoreirame-nandomoreira-jekyll-theme-master.jpg b/static/images/theme/thumbnail/nandomoreirame-nandomoreira-jekyll-theme-master.jpg deleted file mode 100644 index 9f516f253..000000000 Binary files a/static/images/theme/thumbnail/nandomoreirame-nandomoreira-jekyll-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/nandomoreirame-simplest-master.jpg b/static/images/theme/thumbnail/nandomoreirame-simplest-master.jpg deleted file mode 100644 index 155119633..000000000 Binary files a/static/images/theme/thumbnail/nandomoreirame-simplest-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/nandomoreirame-zetsu-master.jpg b/static/images/theme/thumbnail/nandomoreirame-zetsu-master.jpg deleted file mode 100644 index 1091a1bf5..000000000 Binary files a/static/images/theme/thumbnail/nandomoreirame-zetsu-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/nandomoreirame-zetsu.jpg b/static/images/theme/thumbnail/nandomoreirame-zetsu.jpg new file mode 100644 index 000000000..d2648362e Binary files /dev/null and b/static/images/theme/thumbnail/nandomoreirame-zetsu.jpg differ diff --git a/static/images/theme/thumbnail/nanxiaobei-hugo-paper-master.jpg b/static/images/theme/thumbnail/nanxiaobei-hugo-paper-master.jpg deleted file mode 100644 index e809eb378..000000000 Binary files a/static/images/theme/thumbnail/nanxiaobei-hugo-paper-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/nanxiaobei-hugo-paper.jpg b/static/images/theme/thumbnail/nanxiaobei-hugo-paper.jpg new file mode 100644 index 000000000..4659172be Binary files /dev/null and b/static/images/theme/thumbnail/nanxiaobei-hugo-paper.jpg differ diff --git a/static/images/theme/thumbnail/narative-gatsby-theme-novela-master.jpg b/static/images/theme/thumbnail/narative-gatsby-theme-novela-master.jpg deleted file mode 100644 index e4637660b..000000000 Binary files a/static/images/theme/thumbnail/narative-gatsby-theme-novela-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/narative-gatsby-theme-novela.jpg b/static/images/theme/thumbnail/narative-gatsby-theme-novela.jpg new file mode 100644 index 000000000..d3c7aa1a9 Binary files /dev/null and b/static/images/theme/thumbnail/narative-gatsby-theme-novela.jpg differ diff --git a/static/images/theme/thumbnail/natarajmb-charaka-hugo-theme-master.jpg b/static/images/theme/thumbnail/natarajmb-charaka-hugo-theme-master.jpg deleted file mode 100644 index fcd8673b5..000000000 Binary files a/static/images/theme/thumbnail/natarajmb-charaka-hugo-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/nathancday-min_night-master.jpg b/static/images/theme/thumbnail/nathancday-min_night-master.jpg deleted file mode 100644 index 806b94a11..000000000 Binary files a/static/images/theme/thumbnail/nathancday-min_night-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/nathancday-min_night.jpg b/static/images/theme/thumbnail/nathancday-min_night.jpg new file mode 100644 index 000000000..7ce625bb2 Binary files /dev/null and b/static/images/theme/thumbnail/nathancday-min_night.jpg differ diff --git a/static/images/theme/thumbnail/naufaldi-next-landing-vpn.jpg b/static/images/theme/thumbnail/naufaldi-next-landing-vpn.jpg new file mode 100644 index 000000000..5876ce8e1 Binary files /dev/null and b/static/images/theme/thumbnail/naufaldi-next-landing-vpn.jpg differ diff --git a/static/images/theme/thumbnail/ndimatteo-hull.jpg b/static/images/theme/thumbnail/ndimatteo-hull.jpg new file mode 100644 index 000000000..5949b6028 Binary files /dev/null and b/static/images/theme/thumbnail/ndimatteo-hull.jpg differ diff --git a/static/images/theme/thumbnail/nehalist-gatsby-starter-nehalem-master.jpg b/static/images/theme/thumbnail/nehalist-gatsby-starter-nehalem-master.jpg deleted file mode 100644 index c9dbaddab..000000000 Binary files a/static/images/theme/thumbnail/nehalist-gatsby-starter-nehalem-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/nehalist-gatsby-starter-nehalem.jpg b/static/images/theme/thumbnail/nehalist-gatsby-starter-nehalem.jpg new file mode 100644 index 000000000..9efded26f Binary files /dev/null and b/static/images/theme/thumbnail/nehalist-gatsby-starter-nehalem.jpg differ diff --git a/static/images/theme/thumbnail/neizod-lemma-theme-gh-pages.jpg b/static/images/theme/thumbnail/neizod-lemma-theme-gh-pages.jpg deleted file mode 100644 index 1b15f1948..000000000 Binary files a/static/images/theme/thumbnail/neizod-lemma-theme-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/neizod-lemma-theme.jpg b/static/images/theme/thumbnail/neizod-lemma-theme.jpg new file mode 100644 index 000000000..b02630717 Binary files /dev/null and b/static/images/theme/thumbnail/neizod-lemma-theme.jpg differ diff --git a/static/images/theme/thumbnail/netlify-templates-gatsby-starter-netlify-cms-master.jpg b/static/images/theme/thumbnail/netlify-templates-gatsby-starter-netlify-cms-master.jpg deleted file mode 100644 index 5bb6077c3..000000000 Binary files a/static/images/theme/thumbnail/netlify-templates-gatsby-starter-netlify-cms-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/netlify-templates-gatsby-starter-netlify-cms.jpg b/static/images/theme/thumbnail/netlify-templates-gatsby-starter-netlify-cms.jpg new file mode 100644 index 000000000..55210e6b6 Binary files /dev/null and b/static/images/theme/thumbnail/netlify-templates-gatsby-starter-netlify-cms.jpg differ diff --git a/static/images/theme/thumbnail/netlify-templates-one-click-hugo-cms-master.jpg b/static/images/theme/thumbnail/netlify-templates-one-click-hugo-cms-master.jpg deleted file mode 100644 index 1609e4040..000000000 Binary files a/static/images/theme/thumbnail/netlify-templates-one-click-hugo-cms-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/netlify-templates-one-click-hugo-cms.jpg b/static/images/theme/thumbnail/netlify-templates-one-click-hugo-cms.jpg new file mode 100644 index 000000000..4f2547a04 Binary files /dev/null and b/static/images/theme/thumbnail/netlify-templates-one-click-hugo-cms.jpg differ diff --git a/static/images/theme/thumbnail/netlify-templates-remix-admin-template.jpg b/static/images/theme/thumbnail/netlify-templates-remix-admin-template.jpg new file mode 100644 index 000000000..007bd57aa Binary files /dev/null and b/static/images/theme/thumbnail/netlify-templates-remix-admin-template.jpg differ diff --git a/static/images/theme/thumbnail/netlify-templates-tanstack-template.jpg b/static/images/theme/thumbnail/netlify-templates-tanstack-template.jpg new file mode 100644 index 000000000..d63e48732 Binary files /dev/null and b/static/images/theme/thumbnail/netlify-templates-tanstack-template.jpg differ diff --git a/static/images/theme/thumbnail/ngzhio-jekyll-theme-hamilton-master.jpg b/static/images/theme/thumbnail/ngzhio-jekyll-theme-hamilton-master.jpg deleted file mode 100644 index 0b8165fb3..000000000 Binary files a/static/images/theme/thumbnail/ngzhio-jekyll-theme-hamilton-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/nickbalestra-kactus-master.jpg b/static/images/theme/thumbnail/nickbalestra-kactus-master.jpg deleted file mode 100644 index 917bf03ba..000000000 Binary files a/static/images/theme/thumbnail/nickbalestra-kactus-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/nickbalestra-kactus.jpg b/static/images/theme/thumbnail/nickbalestra-kactus.jpg new file mode 100644 index 000000000..3cccb432c Binary files /dev/null and b/static/images/theme/thumbnail/nickbalestra-kactus.jpg differ diff --git a/static/images/theme/thumbnail/nielsenramon-chalk-master.jpg b/static/images/theme/thumbnail/nielsenramon-chalk-master.jpg deleted file mode 100644 index 9bcf55aee..000000000 Binary files a/static/images/theme/thumbnail/nielsenramon-chalk-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/nielsenramon-chalk.jpg b/static/images/theme/thumbnail/nielsenramon-chalk.jpg new file mode 100644 index 000000000..455caedf7 Binary files /dev/null and b/static/images/theme/thumbnail/nielsenramon-chalk.jpg differ diff --git a/static/images/theme/thumbnail/niklasbuschmann-contrast-hugo-master.jpg b/static/images/theme/thumbnail/niklasbuschmann-contrast-hugo-master.jpg deleted file mode 100644 index 0171019a0..000000000 Binary files a/static/images/theme/thumbnail/niklasbuschmann-contrast-hugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/niklasbuschmann-contrast-master.jpg b/static/images/theme/thumbnail/niklasbuschmann-contrast-master.jpg deleted file mode 100644 index 18934e3e7..000000000 Binary files a/static/images/theme/thumbnail/niklasbuschmann-contrast-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/niklasbuschmann-contrast.jpg b/static/images/theme/thumbnail/niklasbuschmann-contrast.jpg new file mode 100644 index 000000000..385f62fdd Binary files /dev/null and b/static/images/theme/thumbnail/niklasbuschmann-contrast.jpg differ diff --git a/static/images/theme/thumbnail/niklasmtj-gatsby-starter-julia-master.jpg b/static/images/theme/thumbnail/niklasmtj-gatsby-starter-julia-master.jpg deleted file mode 100644 index 29454eeb8..000000000 Binary files a/static/images/theme/thumbnail/niklasmtj-gatsby-starter-julia-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/niklasmtj-gatsby-starter-julia.jpg b/static/images/theme/thumbnail/niklasmtj-gatsby-starter-julia.jpg new file mode 100644 index 000000000..5553354d1 Binary files /dev/null and b/static/images/theme/thumbnail/niklasmtj-gatsby-starter-julia.jpg differ diff --git a/static/images/theme/thumbnail/nikrich-jekyll-slender-template-master.jpg b/static/images/theme/thumbnail/nikrich-jekyll-slender-template-master.jpg deleted file mode 100644 index 207ec8e4a..000000000 Binary files a/static/images/theme/thumbnail/nikrich-jekyll-slender-template-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/nikrich-jekyll-slender-template.jpg b/static/images/theme/thumbnail/nikrich-jekyll-slender-template.jpg new file mode 100644 index 000000000..817313fef Binary files /dev/null and b/static/images/theme/thumbnail/nikrich-jekyll-slender-template.jpg differ diff --git a/static/images/theme/thumbnail/nikrich-jekyll-wing-template-master.jpg b/static/images/theme/thumbnail/nikrich-jekyll-wing-template-master.jpg deleted file mode 100644 index 5ca9daf31..000000000 Binary files a/static/images/theme/thumbnail/nikrich-jekyll-wing-template-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/nikrich-jekyll-wing-template.jpg b/static/images/theme/thumbnail/nikrich-jekyll-wing-template.jpg new file mode 100644 index 000000000..e1f6e2b3c Binary files /dev/null and b/static/images/theme/thumbnail/nikrich-jekyll-wing-template.jpg differ diff --git a/static/images/theme/thumbnail/ninapetrop-artist-theme-master.jpg b/static/images/theme/thumbnail/ninapetrop-artist-theme-master.jpg deleted file mode 100644 index c05125f49..000000000 Binary files a/static/images/theme/thumbnail/ninapetrop-artist-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ninapetrop-artist-theme.jpg b/static/images/theme/thumbnail/ninapetrop-artist-theme.jpg new file mode 100644 index 000000000..9d3071b53 Binary files /dev/null and b/static/images/theme/thumbnail/ninapetrop-artist-theme.jpg differ diff --git a/static/images/theme/thumbnail/nirocfz-arabica-master.jpg b/static/images/theme/thumbnail/nirocfz-arabica-master.jpg deleted file mode 100644 index 017150a44..000000000 Binary files a/static/images/theme/thumbnail/nirocfz-arabica-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/nirocfz-arabica.jpg b/static/images/theme/thumbnail/nirocfz-arabica.jpg new file mode 100644 index 000000000..706afbf6c Binary files /dev/null and b/static/images/theme/thumbnail/nirocfz-arabica.jpg differ diff --git a/static/images/theme/thumbnail/nix1947-jekyll-hilmi-master.jpg b/static/images/theme/thumbnail/nix1947-jekyll-hilmi-master.jpg deleted file mode 100644 index 86a2a21a9..000000000 Binary files a/static/images/theme/thumbnail/nix1947-jekyll-hilmi-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/nodejh-hugo-theme-cactus-plus-master.jpg b/static/images/theme/thumbnail/nodejh-hugo-theme-cactus-plus-master.jpg deleted file mode 100644 index 413992e4a..000000000 Binary files a/static/images/theme/thumbnail/nodejh-hugo-theme-cactus-plus-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/notpushkin-mkdocs-alabaster-master.jpg b/static/images/theme/thumbnail/notpushkin-mkdocs-alabaster-master.jpg deleted file mode 100644 index 90c973054..000000000 Binary files a/static/images/theme/thumbnail/notpushkin-mkdocs-alabaster-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/notpushkin-mkdocs-alabaster.jpg b/static/images/theme/thumbnail/notpushkin-mkdocs-alabaster.jpg new file mode 100644 index 000000000..e681325ec Binary files /dev/null and b/static/images/theme/thumbnail/notpushkin-mkdocs-alabaster.jpg differ diff --git a/static/images/theme/thumbnail/nrandecker-particle-master.jpg b/static/images/theme/thumbnail/nrandecker-particle-master.jpg deleted file mode 100644 index 81a5e9206..000000000 Binary files a/static/images/theme/thumbnail/nrandecker-particle-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/nrandecker-particle.jpg b/static/images/theme/thumbnail/nrandecker-particle.jpg new file mode 100644 index 000000000..5577585cd Binary files /dev/null and b/static/images/theme/thumbnail/nrandecker-particle.jpg differ diff --git a/static/images/theme/thumbnail/nunocoracao-blowfish.jpg b/static/images/theme/thumbnail/nunocoracao-blowfish.jpg new file mode 100644 index 000000000..c12e191a9 Binary files /dev/null and b/static/images/theme/thumbnail/nunocoracao-blowfish.jpg differ diff --git a/static/images/theme/thumbnail/nurlansu-hugo-sustain-master.jpg b/static/images/theme/thumbnail/nurlansu-hugo-sustain-master.jpg deleted file mode 100644 index a4a4fe95f..000000000 Binary files a/static/images/theme/thumbnail/nurlansu-hugo-sustain-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/nurlansu-hugo-sustain.jpg b/static/images/theme/thumbnail/nurlansu-hugo-sustain.jpg new file mode 100644 index 000000000..d002ebad9 Binary files /dev/null and b/static/images/theme/thumbnail/nurlansu-hugo-sustain.jpg differ diff --git a/static/images/theme/thumbnail/obaez-dentistsmile-master.jpg b/static/images/theme/thumbnail/obaez-dentistsmile-master.jpg deleted file mode 100644 index bbed668a4..000000000 Binary files a/static/images/theme/thumbnail/obaez-dentistsmile-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/octoxalis-11tyframe-master.jpg b/static/images/theme/thumbnail/octoxalis-11tyframe-master.jpg deleted file mode 100644 index e0f8972ae..000000000 Binary files a/static/images/theme/thumbnail/octoxalis-11tyframe-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/octoxalis-11tyframe.jpg b/static/images/theme/thumbnail/octoxalis-11tyframe.jpg new file mode 100644 index 000000000..d1e974677 Binary files /dev/null and b/static/images/theme/thumbnail/octoxalis-11tyframe.jpg differ diff --git a/static/images/theme/thumbnail/ofranke-gatsby-typescript-scss-docker-master.jpg b/static/images/theme/thumbnail/ofranke-gatsby-typescript-scss-docker-master.jpg deleted file mode 100644 index 82c0cf02a..000000000 Binary files a/static/images/theme/thumbnail/ofranke-gatsby-typescript-scss-docker-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ofranke-gatsby-typescript-scss-docker.jpg b/static/images/theme/thumbnail/ofranke-gatsby-typescript-scss-docker.jpg new file mode 100644 index 000000000..ffb0ab8dc Binary files /dev/null and b/static/images/theme/thumbnail/ofranke-gatsby-typescript-scss-docker.jpg differ diff --git a/static/images/theme/thumbnail/ohduran-onassis-master.jpg b/static/images/theme/thumbnail/ohduran-onassis-master.jpg deleted file mode 100644 index 0d945ee2f..000000000 Binary files a/static/images/theme/thumbnail/ohduran-onassis-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ohduran-onassis.jpg b/static/images/theme/thumbnail/ohduran-onassis.jpg new file mode 100644 index 000000000..6f8a546fb Binary files /dev/null and b/static/images/theme/thumbnail/ohduran-onassis.jpg differ diff --git a/static/images/theme/thumbnail/ohduran-the-interesting-times-master.jpg b/static/images/theme/thumbnail/ohduran-the-interesting-times-master.jpg deleted file mode 100644 index d188d19f6..000000000 Binary files a/static/images/theme/thumbnail/ohduran-the-interesting-times-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ohduran-the-interesting-times.jpg b/static/images/theme/thumbnail/ohduran-the-interesting-times.jpg new file mode 100644 index 000000000..e08ef00dc Binary files /dev/null and b/static/images/theme/thumbnail/ohduran-the-interesting-times.jpg differ diff --git a/static/images/theme/thumbnail/okkur-syna-master.jpg b/static/images/theme/thumbnail/okkur-syna-master.jpg deleted file mode 100644 index f44df63ba..000000000 Binary files a/static/images/theme/thumbnail/okkur-syna-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/olakara-jekyllmetro-master.jpg b/static/images/theme/thumbnail/olakara-jekyllmetro-master.jpg deleted file mode 100644 index 545c3f417..000000000 Binary files a/static/images/theme/thumbnail/olakara-jekyllmetro-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/olivier3lanc-jekyll-libdoc.jpg b/static/images/theme/thumbnail/olivier3lanc-jekyll-libdoc.jpg new file mode 100644 index 000000000..15a4a1740 Binary files /dev/null and b/static/images/theme/thumbnail/olivier3lanc-jekyll-libdoc.jpg differ diff --git a/static/images/theme/thumbnail/olowolo-hugo-theme-even-master.jpg b/static/images/theme/thumbnail/olowolo-hugo-theme-even-master.jpg deleted file mode 100644 index 2bdec48ff..000000000 Binary files a/static/images/theme/thumbnail/olowolo-hugo-theme-even-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ondrabus-gridsome-starter-kontent-lumen-master.jpg b/static/images/theme/thumbnail/ondrabus-gridsome-starter-kontent-lumen-master.jpg deleted file mode 100644 index 71ebb4bd7..000000000 Binary files a/static/images/theme/thumbnail/ondrabus-gridsome-starter-kontent-lumen-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ondrabus-gridsome-starter-kontent-lumen.jpg b/static/images/theme/thumbnail/ondrabus-gridsome-starter-kontent-lumen.jpg new file mode 100644 index 000000000..264d28b53 Binary files /dev/null and b/static/images/theme/thumbnail/ondrabus-gridsome-starter-kontent-lumen.jpg differ diff --git a/static/images/theme/thumbnail/ondrabus-scully-starter-kontent-lumen-master.jpg b/static/images/theme/thumbnail/ondrabus-scully-starter-kontent-lumen-master.jpg deleted file mode 100644 index aeb12e9fb..000000000 Binary files a/static/images/theme/thumbnail/ondrabus-scully-starter-kontent-lumen-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ondrabus-scully-starter-kontent-lumen.jpg b/static/images/theme/thumbnail/ondrabus-scully-starter-kontent-lumen.jpg new file mode 100644 index 000000000..e3d8e2fbc Binary files /dev/null and b/static/images/theme/thumbnail/ondrabus-scully-starter-kontent-lumen.jpg differ diff --git a/static/images/theme/thumbnail/onepase-ephesus.jpg b/static/images/theme/thumbnail/onepase-ephesus.jpg new file mode 100644 index 000000000..a285679c1 Binary files /dev/null and b/static/images/theme/thumbnail/onepase-ephesus.jpg differ diff --git a/static/images/theme/thumbnail/onweru-compose-master.jpg b/static/images/theme/thumbnail/onweru-compose-master.jpg deleted file mode 100644 index 7b8cdbeec..000000000 Binary files a/static/images/theme/thumbnail/onweru-compose-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/onweru-compose.jpg b/static/images/theme/thumbnail/onweru-compose.jpg new file mode 100644 index 000000000..c8cf8cc46 Binary files /dev/null and b/static/images/theme/thumbnail/onweru-compose.jpg differ diff --git a/static/images/theme/thumbnail/onweru-hugo-swift-theme-master.jpg b/static/images/theme/thumbnail/onweru-hugo-swift-theme-master.jpg deleted file mode 100644 index 87b279bcd..000000000 Binary files a/static/images/theme/thumbnail/onweru-hugo-swift-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/onweru-hugo-swift-theme.jpg b/static/images/theme/thumbnail/onweru-hugo-swift-theme.jpg new file mode 100644 index 000000000..9d9b5273f Binary files /dev/null and b/static/images/theme/thumbnail/onweru-hugo-swift-theme.jpg differ diff --git a/static/images/theme/thumbnail/onweru-newsroom-master.jpg b/static/images/theme/thumbnail/onweru-newsroom-master.jpg deleted file mode 100644 index 0b62844a2..000000000 Binary files a/static/images/theme/thumbnail/onweru-newsroom-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/onweru-newsroom.jpg b/static/images/theme/thumbnail/onweru-newsroom.jpg new file mode 100644 index 000000000..74163e9d3 Binary files /dev/null and b/static/images/theme/thumbnail/onweru-newsroom.jpg differ diff --git a/static/images/theme/thumbnail/onwidget-astrowind.jpg b/static/images/theme/thumbnail/onwidget-astrowind.jpg new file mode 100644 index 000000000..510b81a21 Binary files /dev/null and b/static/images/theme/thumbnail/onwidget-astrowind.jpg differ diff --git a/static/images/theme/thumbnail/open-sl-jekyll-modern-blog-master.jpg b/static/images/theme/thumbnail/open-sl-jekyll-modern-blog-master.jpg deleted file mode 100644 index d24a848a6..000000000 Binary files a/static/images/theme/thumbnail/open-sl-jekyll-modern-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/open-sl-jekyll-modern-blog.jpg b/static/images/theme/thumbnail/open-sl-jekyll-modern-blog.jpg new file mode 100644 index 000000000..39c49d161 Binary files /dev/null and b/static/images/theme/thumbnail/open-sl-jekyll-modern-blog.jpg differ diff --git a/static/images/theme/thumbnail/open-start-opentheme-master.jpg b/static/images/theme/thumbnail/open-start-opentheme-master.jpg deleted file mode 100644 index f9c702c0d..000000000 Binary files a/static/images/theme/thumbnail/open-start-opentheme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/orderedlist-minimal-master.jpg b/static/images/theme/thumbnail/orderedlist-minimal-master.jpg deleted file mode 100644 index 6d76c7550..000000000 Binary files a/static/images/theme/thumbnail/orderedlist-minimal-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/orderedlist-minimal.jpg b/static/images/theme/thumbnail/orderedlist-minimal.jpg new file mode 100644 index 000000000..32b001e71 Binary files /dev/null and b/static/images/theme/thumbnail/orderedlist-minimal.jpg differ diff --git a/static/images/theme/thumbnail/orderedlist-modernist-master.jpg b/static/images/theme/thumbnail/orderedlist-modernist-master.jpg deleted file mode 100644 index 7940f926c..000000000 Binary files a/static/images/theme/thumbnail/orderedlist-modernist-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/orderedlist-modernist.jpg b/static/images/theme/thumbnail/orderedlist-modernist.jpg new file mode 100644 index 000000000..91e7b26f6 Binary files /dev/null and b/static/images/theme/thumbnail/orderedlist-modernist.jpg differ diff --git a/static/images/theme/thumbnail/osogrizz-gatsby-starter-santa-fe-master.jpg b/static/images/theme/thumbnail/osogrizz-gatsby-starter-santa-fe-master.jpg deleted file mode 100644 index 48b19e2da..000000000 Binary files a/static/images/theme/thumbnail/osogrizz-gatsby-starter-santa-fe-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/osogrizz-gatsby-starter-santa-fe.jpg b/static/images/theme/thumbnail/osogrizz-gatsby-starter-santa-fe.jpg new file mode 100644 index 000000000..bc354b8db Binary files /dev/null and b/static/images/theme/thumbnail/osogrizz-gatsby-starter-santa-fe.jpg differ diff --git a/static/images/theme/thumbnail/ovidiumihaibelciug-gatsby-firebase-starter-master.jpg b/static/images/theme/thumbnail/ovidiumihaibelciug-gatsby-firebase-starter-master.jpg deleted file mode 100644 index 045394016..000000000 Binary files a/static/images/theme/thumbnail/ovidiumihaibelciug-gatsby-firebase-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ovidiumihaibelciug-gatsby-firebase-starter.jpg b/static/images/theme/thumbnail/ovidiumihaibelciug-gatsby-firebase-starter.jpg new file mode 100644 index 000000000..afedd3d52 Binary files /dev/null and b/static/images/theme/thumbnail/ovidiumihaibelciug-gatsby-firebase-starter.jpg differ diff --git a/static/images/theme/thumbnail/ozgrozer-dasper-master.jpg b/static/images/theme/thumbnail/ozgrozer-dasper-master.jpg deleted file mode 100644 index b5f7b0cac..000000000 Binary files a/static/images/theme/thumbnail/ozgrozer-dasper-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ozgrozer-dasper.jpg b/static/images/theme/thumbnail/ozgrozer-dasper.jpg new file mode 100644 index 000000000..8733f2828 Binary files /dev/null and b/static/images/theme/thumbnail/ozgrozer-dasper.jpg differ diff --git a/static/images/theme/thumbnail/p0wex-gesko.jpg b/static/images/theme/thumbnail/p0wex-gesko.jpg new file mode 100644 index 000000000..9f3e98cab Binary files /dev/null and b/static/images/theme/thumbnail/p0wex-gesko.jpg differ diff --git a/static/images/theme/thumbnail/pablovila-gatsby-starter-wordpress-community-master.jpg b/static/images/theme/thumbnail/pablovila-gatsby-starter-wordpress-community-master.jpg deleted file mode 100644 index b6b07d679..000000000 Binary files a/static/images/theme/thumbnail/pablovila-gatsby-starter-wordpress-community-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/pablovila-gatsby-starter-wordpress-community.jpg b/static/images/theme/thumbnail/pablovila-gatsby-starter-wordpress-community.jpg new file mode 100644 index 000000000..c42350d14 Binary files /dev/null and b/static/images/theme/thumbnail/pablovila-gatsby-starter-wordpress-community.jpg differ diff --git a/static/images/theme/thumbnail/pacollins-hugo-future-imperfect-slim-master.jpg b/static/images/theme/thumbnail/pacollins-hugo-future-imperfect-slim-master.jpg deleted file mode 100644 index 489391e71..000000000 Binary files a/static/images/theme/thumbnail/pacollins-hugo-future-imperfect-slim-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/pandasekh-jekyll-podcaster-master.jpg b/static/images/theme/thumbnail/pandasekh-jekyll-podcaster-master.jpg deleted file mode 100644 index 1c6a314a5..000000000 Binary files a/static/images/theme/thumbnail/pandasekh-jekyll-podcaster-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/pandasekh-jekyll-podcaster.jpg b/static/images/theme/thumbnail/pandasekh-jekyll-podcaster.jpg new file mode 100644 index 000000000..8ab514ddd Binary files /dev/null and b/static/images/theme/thumbnail/pandasekh-jekyll-podcaster.jpg differ diff --git a/static/images/theme/thumbnail/pandasekh-jekyll-yamt-master.jpg b/static/images/theme/thumbnail/pandasekh-jekyll-yamt-master.jpg deleted file mode 100644 index a01e2b4fb..000000000 Binary files a/static/images/theme/thumbnail/pandasekh-jekyll-yamt-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/pandasekh-jekyll-yamt.jpg b/static/images/theme/thumbnail/pandasekh-jekyll-yamt.jpg new file mode 100644 index 000000000..55569278d Binary files /dev/null and b/static/images/theme/thumbnail/pandasekh-jekyll-yamt.jpg differ diff --git a/static/images/theme/thumbnail/panr-gatsby-starter-hello-friend-master.jpg b/static/images/theme/thumbnail/panr-gatsby-starter-hello-friend-master.jpg deleted file mode 100644 index da1ed2b37..000000000 Binary files a/static/images/theme/thumbnail/panr-gatsby-starter-hello-friend-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/panr-hugo-theme-hello-friend-master.jpg b/static/images/theme/thumbnail/panr-hugo-theme-hello-friend-master.jpg deleted file mode 100644 index 4bdb9763c..000000000 Binary files a/static/images/theme/thumbnail/panr-hugo-theme-hello-friend-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/panr-hugo-theme-hello-friend.jpg b/static/images/theme/thumbnail/panr-hugo-theme-hello-friend.jpg new file mode 100644 index 000000000..8a953874e Binary files /dev/null and b/static/images/theme/thumbnail/panr-hugo-theme-hello-friend.jpg differ diff --git a/static/images/theme/thumbnail/panr-hugo-theme-terminal-master.jpg b/static/images/theme/thumbnail/panr-hugo-theme-terminal-master.jpg deleted file mode 100644 index 3f70422d1..000000000 Binary files a/static/images/theme/thumbnail/panr-hugo-theme-terminal-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/panr-hugo-theme-terminal.jpg b/static/images/theme/thumbnail/panr-hugo-theme-terminal.jpg new file mode 100644 index 000000000..3a2bfb428 Binary files /dev/null and b/static/images/theme/thumbnail/panr-hugo-theme-terminal.jpg differ diff --git a/static/images/theme/thumbnail/parmsang-gatsby-starter-ecommerce-master.jpg b/static/images/theme/thumbnail/parmsang-gatsby-starter-ecommerce-master.jpg deleted file mode 100644 index 07bc634e5..000000000 Binary files a/static/images/theme/thumbnail/parmsang-gatsby-starter-ecommerce-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/parmsang-gatsby-starter-ecommerce.jpg b/static/images/theme/thumbnail/parmsang-gatsby-starter-ecommerce.jpg new file mode 100644 index 000000000..db50e61a5 Binary files /dev/null and b/static/images/theme/thumbnail/parmsang-gatsby-starter-ecommerce.jpg differ diff --git a/static/images/theme/thumbnail/parsiya-hugo-octopress-master.jpg b/static/images/theme/thumbnail/parsiya-hugo-octopress-master.jpg deleted file mode 100644 index dbb4768d2..000000000 Binary files a/static/images/theme/thumbnail/parsiya-hugo-octopress-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/pasindud-jekyll-masonry-master.jpg b/static/images/theme/thumbnail/pasindud-jekyll-masonry-master.jpg deleted file mode 100644 index 67846729c..000000000 Binary files a/static/images/theme/thumbnail/pasindud-jekyll-masonry-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/patdryburgh-hitchens-master.jpg b/static/images/theme/thumbnail/patdryburgh-hitchens-master.jpg deleted file mode 100644 index eec0fc501..000000000 Binary files a/static/images/theme/thumbnail/patdryburgh-hitchens-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/patdryburgh-hitchens.jpg b/static/images/theme/thumbnail/patdryburgh-hitchens.jpg new file mode 100644 index 000000000..384df4d29 Binary files /dev/null and b/static/images/theme/thumbnail/patdryburgh-hitchens.jpg differ diff --git a/static/images/theme/thumbnail/patricoferris-gatsby-starter-notes-master.jpg b/static/images/theme/thumbnail/patricoferris-gatsby-starter-notes-master.jpg deleted file mode 100644 index 46b9bb840..000000000 Binary files a/static/images/theme/thumbnail/patricoferris-gatsby-starter-notes-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/patricoferris-gatsby-starter-notes.jpg b/static/images/theme/thumbnail/patricoferris-gatsby-starter-notes.jpg new file mode 100644 index 000000000..76272bbe3 Binary files /dev/null and b/static/images/theme/thumbnail/patricoferris-gatsby-starter-notes.jpg differ diff --git a/static/images/theme/thumbnail/pdevty-material-design-master.jpg b/static/images/theme/thumbnail/pdevty-material-design-master.jpg deleted file mode 100644 index 47ec7ccc5..000000000 Binary files a/static/images/theme/thumbnail/pdevty-material-design-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/pdevty-polymer-master.jpg b/static/images/theme/thumbnail/pdevty-polymer-master.jpg deleted file mode 100644 index 3db24628f..000000000 Binary files a/static/images/theme/thumbnail/pdevty-polymer-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/peaceiris-hugo-theme-iris-master.jpg b/static/images/theme/thumbnail/peaceiris-hugo-theme-iris-master.jpg deleted file mode 100644 index ad4ad54be..000000000 Binary files a/static/images/theme/thumbnail/peaceiris-hugo-theme-iris-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/peaceiris-hugo-theme-iris.jpg b/static/images/theme/thumbnail/peaceiris-hugo-theme-iris.jpg new file mode 100644 index 000000000..63cf677bf Binary files /dev/null and b/static/images/theme/thumbnail/peaceiris-hugo-theme-iris.jpg differ diff --git a/static/images/theme/thumbnail/peahatlanding-plain-webcomic-master.jpg b/static/images/theme/thumbnail/peahatlanding-plain-webcomic-master.jpg deleted file mode 100644 index 5d0de4069..000000000 Binary files a/static/images/theme/thumbnail/peahatlanding-plain-webcomic-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/peahatlanding-plain-webcomic.jpg b/static/images/theme/thumbnail/peahatlanding-plain-webcomic.jpg new file mode 100644 index 000000000..4a964224d Binary files /dev/null and b/static/images/theme/thumbnail/peahatlanding-plain-webcomic.jpg differ diff --git a/static/images/theme/thumbnail/pelican-elegant-elegant-master.jpg b/static/images/theme/thumbnail/pelican-elegant-elegant-master.jpg deleted file mode 100644 index babfaed86..000000000 Binary files a/static/images/theme/thumbnail/pelican-elegant-elegant-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/pelican-elegant-elegant.jpg b/static/images/theme/thumbnail/pelican-elegant-elegant.jpg new file mode 100644 index 000000000..ef06d320b Binary files /dev/null and b/static/images/theme/thumbnail/pelican-elegant-elegant.jpg differ diff --git a/static/images/theme/thumbnail/penibelst-jekyll-noita-gh-pages.jpg b/static/images/theme/thumbnail/penibelst-jekyll-noita-gh-pages.jpg deleted file mode 100644 index decb5ef96..000000000 Binary files a/static/images/theme/thumbnail/penibelst-jekyll-noita-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/penibelst-jekyll-noita.jpg b/static/images/theme/thumbnail/penibelst-jekyll-noita.jpg new file mode 100644 index 000000000..92bde48a7 Binary files /dev/null and b/static/images/theme/thumbnail/penibelst-jekyll-noita.jpg differ diff --git a/static/images/theme/thumbnail/petrsvihlik-statiq-starter-kontent-lumen-master.jpg b/static/images/theme/thumbnail/petrsvihlik-statiq-starter-kontent-lumen-master.jpg deleted file mode 100644 index 71ff5d69e..000000000 Binary files a/static/images/theme/thumbnail/petrsvihlik-statiq-starter-kontent-lumen-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/philhawksworth-eleventyone-master.jpg b/static/images/theme/thumbnail/philhawksworth-eleventyone-master.jpg deleted file mode 100644 index b3aec3ef5..000000000 Binary files a/static/images/theme/thumbnail/philhawksworth-eleventyone-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/philhawksworth-eleventyone.jpg b/static/images/theme/thumbnail/philhawksworth-eleventyone.jpg new file mode 100644 index 000000000..a710b0af3 Binary files /dev/null and b/static/images/theme/thumbnail/philhawksworth-eleventyone.jpg differ diff --git a/static/images/theme/thumbnail/philhawksworth-hawksworx.com-master.jpg b/static/images/theme/thumbnail/philhawksworth-hawksworx.com-master.jpg deleted file mode 100644 index 5117db1af..000000000 Binary files a/static/images/theme/thumbnail/philhawksworth-hawksworx.com-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/philhawksworth-medium-export-master.jpg b/static/images/theme/thumbnail/philhawksworth-medium-export-master.jpg deleted file mode 100644 index ae404fb27..000000000 Binary files a/static/images/theme/thumbnail/philhawksworth-medium-export-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/philhawksworth-medium-export.jpg b/static/images/theme/thumbnail/philhawksworth-medium-export.jpg new file mode 100644 index 000000000..32754b0ac Binary files /dev/null and b/static/images/theme/thumbnail/philhawksworth-medium-export.jpg differ diff --git a/static/images/theme/thumbnail/phlow-feeling-responsive-gh-pages.jpg b/static/images/theme/thumbnail/phlow-feeling-responsive-gh-pages.jpg deleted file mode 100644 index 62f778118..000000000 Binary files a/static/images/theme/thumbnail/phlow-feeling-responsive-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/phlow-feeling-responsive.jpg b/static/images/theme/thumbnail/phlow-feeling-responsive.jpg new file mode 100644 index 000000000..6c70bb156 Binary files /dev/null and b/static/images/theme/thumbnail/phlow-feeling-responsive.jpg differ diff --git a/static/images/theme/thumbnail/piandhust-tailieubkhn.jpg b/static/images/theme/thumbnail/piandhust-tailieubkhn.jpg new file mode 100644 index 000000000..66a2b337f Binary files /dev/null and b/static/images/theme/thumbnail/piandhust-tailieubkhn.jpg differ diff --git a/static/images/theme/thumbnail/piducancore-gatsby-starter-apollo-netlify-master.jpg b/static/images/theme/thumbnail/piducancore-gatsby-starter-apollo-netlify-master.jpg deleted file mode 100644 index 32fb30d71..000000000 Binary files a/static/images/theme/thumbnail/piducancore-gatsby-starter-apollo-netlify-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/piducancore-gatsby-starter-apollo-netlify.jpg b/static/images/theme/thumbnail/piducancore-gatsby-starter-apollo-netlify.jpg new file mode 100644 index 000000000..427235257 Binary files /dev/null and b/static/images/theme/thumbnail/piducancore-gatsby-starter-apollo-netlify.jpg differ diff --git a/static/images/theme/thumbnail/pietromenna-jekyll-architect-theme-master.jpg b/static/images/theme/thumbnail/pietromenna-jekyll-architect-theme-master.jpg deleted file mode 100644 index be054d634..000000000 Binary files a/static/images/theme/thumbnail/pietromenna-jekyll-architect-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/pietromenna-jekyll-architect-theme.jpg b/static/images/theme/thumbnail/pietromenna-jekyll-architect-theme.jpg new file mode 100644 index 000000000..c4908d22c Binary files /dev/null and b/static/images/theme/thumbnail/pietromenna-jekyll-architect-theme.jpg differ diff --git a/static/images/theme/thumbnail/pietromenna-jekyll-cayman-theme-master.jpg b/static/images/theme/thumbnail/pietromenna-jekyll-cayman-theme-master.jpg deleted file mode 100644 index fbf2f80e1..000000000 Binary files a/static/images/theme/thumbnail/pietromenna-jekyll-cayman-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/pietromenna-jekyll-cayman-theme.jpg b/static/images/theme/thumbnail/pietromenna-jekyll-cayman-theme.jpg new file mode 100644 index 000000000..c6a8f3bc0 Binary files /dev/null and b/static/images/theme/thumbnail/pietromenna-jekyll-cayman-theme.jpg differ diff --git a/static/images/theme/thumbnail/piharpi-jekyll-klise-master.jpg b/static/images/theme/thumbnail/piharpi-jekyll-klise-master.jpg deleted file mode 100644 index 731faf835..000000000 Binary files a/static/images/theme/thumbnail/piharpi-jekyll-klise-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/piharpi-jekyll-klise.jpg b/static/images/theme/thumbnail/piharpi-jekyll-klise.jpg new file mode 100644 index 000000000..959722679 Binary files /dev/null and b/static/images/theme/thumbnail/piharpi-jekyll-klise.jpg differ diff --git a/static/images/theme/thumbnail/pipporj-hugo-refresh-master.jpg b/static/images/theme/thumbnail/pipporj-hugo-refresh-master.jpg deleted file mode 100644 index 14ad292fe..000000000 Binary files a/static/images/theme/thumbnail/pipporj-hugo-refresh-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/pixelsign-gatsby-starter-tachyons-master.jpg b/static/images/theme/thumbnail/pixelsign-gatsby-starter-tachyons-master.jpg deleted file mode 100644 index dc307ab1e..000000000 Binary files a/static/images/theme/thumbnail/pixelsign-gatsby-starter-tachyons-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/pixelsign-gatsby-starter-tachyons.jpg b/static/images/theme/thumbnail/pixelsign-gatsby-starter-tachyons.jpg new file mode 100644 index 000000000..8782c92bc Binary files /dev/null and b/static/images/theme/thumbnail/pixelsign-gatsby-starter-tachyons.jpg differ diff --git a/static/images/theme/thumbnail/planetjekyll-jekyll-starter-theme-master.jpg b/static/images/theme/thumbnail/planetjekyll-jekyll-starter-theme-master.jpg deleted file mode 100644 index 6193773e1..000000000 Binary files a/static/images/theme/thumbnail/planetjekyll-jekyll-starter-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/planetoftheweb-seven-master.jpg b/static/images/theme/thumbnail/planetoftheweb-seven-master.jpg deleted file mode 100644 index ad423aea0..000000000 Binary files a/static/images/theme/thumbnail/planetoftheweb-seven-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/planetoftheweb-seven.jpg b/static/images/theme/thumbnail/planetoftheweb-seven.jpg new file mode 100644 index 000000000..1473dee21 Binary files /dev/null and b/static/images/theme/thumbnail/planetoftheweb-seven.jpg differ diff --git a/static/images/theme/thumbnail/platframe-platframe-master.jpg b/static/images/theme/thumbnail/platframe-platframe-master.jpg deleted file mode 100644 index d1686e124..000000000 Binary files a/static/images/theme/thumbnail/platframe-platframe-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/platframe-platframe.jpg b/static/images/theme/thumbnail/platframe-platframe.jpg new file mode 100644 index 000000000..0e1f96bf8 Binary files /dev/null and b/static/images/theme/thumbnail/platframe-platframe.jpg differ diff --git a/static/images/theme/thumbnail/pmarsceill-just-the-docs-master.jpg b/static/images/theme/thumbnail/pmarsceill-just-the-docs-master.jpg deleted file mode 100644 index 11470a6f4..000000000 Binary files a/static/images/theme/thumbnail/pmarsceill-just-the-docs-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/pmarsceill-just-the-docs.jpg b/static/images/theme/thumbnail/pmarsceill-just-the-docs.jpg new file mode 100644 index 000000000..079b9fa1b Binary files /dev/null and b/static/images/theme/thumbnail/pmarsceill-just-the-docs.jpg differ diff --git a/static/images/theme/thumbnail/poole-hyde-master.jpg b/static/images/theme/thumbnail/poole-hyde-master.jpg deleted file mode 100644 index d19adce63..000000000 Binary files a/static/images/theme/thumbnail/poole-hyde-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/poole-hyde.jpg b/static/images/theme/thumbnail/poole-hyde.jpg new file mode 100644 index 000000000..4a618210b Binary files /dev/null and b/static/images/theme/thumbnail/poole-hyde.jpg differ diff --git a/static/images/theme/thumbnail/poole-lanyon-master.jpg b/static/images/theme/thumbnail/poole-lanyon-master.jpg deleted file mode 100644 index d15dea381..000000000 Binary files a/static/images/theme/thumbnail/poole-lanyon-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/poole-lanyon.jpg b/static/images/theme/thumbnail/poole-lanyon.jpg new file mode 100644 index 000000000..d49f12ec2 Binary files /dev/null and b/static/images/theme/thumbnail/poole-lanyon.jpg differ diff --git a/static/images/theme/thumbnail/poole-poole-master.jpg b/static/images/theme/thumbnail/poole-poole-master.jpg deleted file mode 100644 index 5a8f4216b..000000000 Binary files a/static/images/theme/thumbnail/poole-poole-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/poole-poole.jpg b/static/images/theme/thumbnail/poole-poole.jpg new file mode 100644 index 000000000..a30a86283 Binary files /dev/null and b/static/images/theme/thumbnail/poole-poole.jpg differ diff --git a/static/images/theme/thumbnail/portfolio-central-jekyll-instagram-portfolio-theme-gh-pages.jpg b/static/images/theme/thumbnail/portfolio-central-jekyll-instagram-portfolio-theme-gh-pages.jpg deleted file mode 100644 index 1eb29887b..000000000 Binary files a/static/images/theme/thumbnail/portfolio-central-jekyll-instagram-portfolio-theme-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/pranavrajs-limpid-master.jpg b/static/images/theme/thumbnail/pranavrajs-limpid-master.jpg deleted file mode 100644 index 3bf212d04..000000000 Binary files a/static/images/theme/thumbnail/pranavrajs-limpid-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/pranavrajs-limpid.jpg b/static/images/theme/thumbnail/pranavrajs-limpid.jpg new file mode 100644 index 000000000..e92ca4b24 Binary files /dev/null and b/static/images/theme/thumbnail/pranavrajs-limpid.jpg differ diff --git a/static/images/theme/thumbnail/pranavrajs-swift-master.jpg b/static/images/theme/thumbnail/pranavrajs-swift-master.jpg deleted file mode 100644 index 9aa8dc8d2..000000000 Binary files a/static/images/theme/thumbnail/pranavrajs-swift-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/pranavrajs-swift.jpg b/static/images/theme/thumbnail/pranavrajs-swift.jpg new file mode 100644 index 000000000..19b70e75b Binary files /dev/null and b/static/images/theme/thumbnail/pranavrajs-swift.jpg differ diff --git a/static/images/theme/thumbnail/prezly-theme-nextjs-bea.jpg b/static/images/theme/thumbnail/prezly-theme-nextjs-bea.jpg new file mode 100644 index 000000000..4d350cc98 Binary files /dev/null and b/static/images/theme/thumbnail/prezly-theme-nextjs-bea.jpg differ diff --git a/static/images/theme/thumbnail/progrhyme-hugo-theme-bootie-docs-master.jpg b/static/images/theme/thumbnail/progrhyme-hugo-theme-bootie-docs-master.jpg deleted file mode 100644 index 638b09575..000000000 Binary files a/static/images/theme/thumbnail/progrhyme-hugo-theme-bootie-docs-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/progrhyme-hugo-theme-bootie-docs.jpg b/static/images/theme/thumbnail/progrhyme-hugo-theme-bootie-docs.jpg new file mode 100644 index 000000000..1988f877b Binary files /dev/null and b/static/images/theme/thumbnail/progrhyme-hugo-theme-bootie-docs.jpg differ diff --git a/static/images/theme/thumbnail/projectpages-project-pages-gh-pages.jpg b/static/images/theme/thumbnail/projectpages-project-pages-gh-pages.jpg deleted file mode 100644 index 42c2e46e1..000000000 Binary files a/static/images/theme/thumbnail/projectpages-project-pages-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/projectpages-project-pages.jpg b/static/images/theme/thumbnail/projectpages-project-pages.jpg new file mode 100644 index 000000000..a1149937b Binary files /dev/null and b/static/images/theme/thumbnail/projectpages-project-pages.jpg differ diff --git a/static/images/theme/thumbnail/prototypeinteractive-gatsby-react-boilerplate-master.jpg b/static/images/theme/thumbnail/prototypeinteractive-gatsby-react-boilerplate-master.jpg deleted file mode 100644 index cc15f4b8a..000000000 Binary files a/static/images/theme/thumbnail/prototypeinteractive-gatsby-react-boilerplate-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/prototypeinteractive-gatsby-react-boilerplate.jpg b/static/images/theme/thumbnail/prototypeinteractive-gatsby-react-boilerplate.jpg new file mode 100644 index 000000000..6f1e7808d Binary files /dev/null and b/static/images/theme/thumbnail/prototypeinteractive-gatsby-react-boilerplate.jpg differ diff --git a/static/images/theme/thumbnail/puresyntax71-hugo-theme-chunky-poster-master.jpg b/static/images/theme/thumbnail/puresyntax71-hugo-theme-chunky-poster-master.jpg deleted file mode 100644 index eafcd42d2..000000000 Binary files a/static/images/theme/thumbnail/puresyntax71-hugo-theme-chunky-poster-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/puresyntax71-hugo-theme-chunky-poster.jpg b/static/images/theme/thumbnail/puresyntax71-hugo-theme-chunky-poster.jpg new file mode 100644 index 000000000..07498ffdb Binary files /dev/null and b/static/images/theme/thumbnail/puresyntax71-hugo-theme-chunky-poster.jpg differ diff --git a/static/images/theme/thumbnail/qingpingmeng-gatsby-starter-traveler-blog-master.jpg b/static/images/theme/thumbnail/qingpingmeng-gatsby-starter-traveler-blog-master.jpg deleted file mode 100644 index ddfb8b99b..000000000 Binary files a/static/images/theme/thumbnail/qingpingmeng-gatsby-starter-traveler-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/qingpingmeng-gatsby-starter-traveler-blog.jpg b/static/images/theme/thumbnail/qingpingmeng-gatsby-starter-traveler-blog.jpg new file mode 100644 index 000000000..72cfe0273 Binary files /dev/null and b/static/images/theme/thumbnail/qingpingmeng-gatsby-starter-traveler-blog.jpg differ diff --git a/static/images/theme/thumbnail/qqhann-hugo-primer-master.jpg b/static/images/theme/thumbnail/qqhann-hugo-primer-master.jpg deleted file mode 100644 index b3dd9fabd..000000000 Binary files a/static/images/theme/thumbnail/qqhann-hugo-primer-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/qwtel-hydejack-master.jpg b/static/images/theme/thumbnail/qwtel-hydejack-master.jpg deleted file mode 100644 index 16386cd5d..000000000 Binary files a/static/images/theme/thumbnail/qwtel-hydejack-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/qwtel-hydejack.jpg b/static/images/theme/thumbnail/qwtel-hydejack.jpg new file mode 100644 index 000000000..39d10f8e7 Binary files /dev/null and b/static/images/theme/thumbnail/qwtel-hydejack.jpg differ diff --git a/static/images/theme/thumbnail/railsr-autm-rb-master.jpg b/static/images/theme/thumbnail/railsr-autm-rb-master.jpg deleted file mode 100644 index 8e59d1772..000000000 Binary files a/static/images/theme/thumbnail/railsr-autm-rb-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/railsr-autm-rb.jpg b/static/images/theme/thumbnail/railsr-autm-rb.jpg new file mode 100644 index 000000000..76256f57d Binary files /dev/null and b/static/images/theme/thumbnail/railsr-autm-rb.jpg differ diff --git a/static/images/theme/thumbnail/raniesantos-artisan-static-master.jpg b/static/images/theme/thumbnail/raniesantos-artisan-static-master.jpg deleted file mode 100644 index 6c90ecfb0..000000000 Binary files a/static/images/theme/thumbnail/raniesantos-artisan-static-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/raniesantos-artisan-static.jpg b/static/images/theme/thumbnail/raniesantos-artisan-static.jpg new file mode 100644 index 000000000..3481dff47 Binary files /dev/null and b/static/images/theme/thumbnail/raniesantos-artisan-static.jpg differ diff --git a/static/images/theme/thumbnail/raphadeluca-gatsby-starter-quiz-master.jpg b/static/images/theme/thumbnail/raphadeluca-gatsby-starter-quiz-master.jpg deleted file mode 100644 index bac8df896..000000000 Binary files a/static/images/theme/thumbnail/raphadeluca-gatsby-starter-quiz-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/razonyang-hugo-theme-bootstrap.jpg b/static/images/theme/thumbnail/razonyang-hugo-theme-bootstrap.jpg new file mode 100644 index 000000000..b4003f1c5 Binary files /dev/null and b/static/images/theme/thumbnail/razonyang-hugo-theme-bootstrap.jpg differ diff --git a/static/images/theme/thumbnail/rcjach-hugo-webslides-master.jpg b/static/images/theme/thumbnail/rcjach-hugo-webslides-master.jpg deleted file mode 100644 index 4c8042565..000000000 Binary files a/static/images/theme/thumbnail/rcjach-hugo-webslides-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/rcjach-hugo-webslides.jpg b/static/images/theme/thumbnail/rcjach-hugo-webslides.jpg new file mode 100644 index 000000000..88359997b Binary files /dev/null and b/static/images/theme/thumbnail/rcjach-hugo-webslides.jpg differ diff --git a/static/images/theme/thumbnail/realorangeone-hugo-theme-revealjs-master.jpg b/static/images/theme/thumbnail/realorangeone-hugo-theme-revealjs-master.jpg deleted file mode 100644 index aedbd065d..000000000 Binary files a/static/images/theme/thumbnail/realorangeone-hugo-theme-revealjs-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/realorangeone-hugo-theme-revealjs.jpg b/static/images/theme/thumbnail/realorangeone-hugo-theme-revealjs.jpg new file mode 100644 index 000000000..477ab3549 Binary files /dev/null and b/static/images/theme/thumbnail/realorangeone-hugo-theme-revealjs.jpg differ diff --git a/static/images/theme/thumbnail/redvi-voyager-master.jpg b/static/images/theme/thumbnail/redvi-voyager-master.jpg deleted file mode 100644 index 967c3c954..000000000 Binary files a/static/images/theme/thumbnail/redvi-voyager-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/redvi-voyager.jpg b/static/images/theme/thumbnail/redvi-voyager.jpg new file mode 100644 index 000000000..3a2f52698 Binary files /dev/null and b/static/images/theme/thumbnail/redvi-voyager.jpg differ diff --git a/static/images/theme/thumbnail/reeseschultz-11r-master.jpg b/static/images/theme/thumbnail/reeseschultz-11r-master.jpg deleted file mode 100644 index b14f06de8..000000000 Binary files a/static/images/theme/thumbnail/reeseschultz-11r-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/reeseschultz-11r.jpg b/static/images/theme/thumbnail/reeseschultz-11r.jpg new file mode 100644 index 000000000..43a57dddb Binary files /dev/null and b/static/images/theme/thumbnail/reeseschultz-11r.jpg differ diff --git a/static/images/theme/thumbnail/renvrant-gatsby-mdx-netlify-cms-starter-master.jpg b/static/images/theme/thumbnail/renvrant-gatsby-mdx-netlify-cms-starter-master.jpg deleted file mode 100644 index 4e77a1ca1..000000000 Binary files a/static/images/theme/thumbnail/renvrant-gatsby-mdx-netlify-cms-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/renvrant-gatsby-mdx-netlify-cms-starter.jpg b/static/images/theme/thumbnail/renvrant-gatsby-mdx-netlify-cms-starter.jpg new file mode 100644 index 000000000..10efa45d6 Binary files /dev/null and b/static/images/theme/thumbnail/renvrant-gatsby-mdx-netlify-cms-starter.jpg differ diff --git a/static/images/theme/thumbnail/renyuanz-leonids-master.jpg b/static/images/theme/thumbnail/renyuanz-leonids-master.jpg deleted file mode 100644 index 9718aff98..000000000 Binary files a/static/images/theme/thumbnail/renyuanz-leonids-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/renyuanz-leonids.jpg b/static/images/theme/thumbnail/renyuanz-leonids.jpg new file mode 100644 index 000000000..faf0c4099 Binary files /dev/null and b/static/images/theme/thumbnail/renyuanz-leonids.jpg differ diff --git a/static/images/theme/thumbnail/resir014-gatsby-starter-typescript-plus-master.jpg b/static/images/theme/thumbnail/resir014-gatsby-starter-typescript-plus-master.jpg deleted file mode 100644 index 10759665f..000000000 Binary files a/static/images/theme/thumbnail/resir014-gatsby-starter-typescript-plus-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/resir014-gatsby-starter-typescript-plus.jpg b/static/images/theme/thumbnail/resir014-gatsby-starter-typescript-plus.jpg new file mode 100644 index 000000000..a7ca12d4f Binary files /dev/null and b/static/images/theme/thumbnail/resir014-gatsby-starter-typescript-plus.jpg differ diff --git a/static/images/theme/thumbnail/reuixiy-hugo-theme-meme-master.jpg b/static/images/theme/thumbnail/reuixiy-hugo-theme-meme-master.jpg deleted file mode 100644 index 070501027..000000000 Binary files a/static/images/theme/thumbnail/reuixiy-hugo-theme-meme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/rhazdon-hugo-theme-hello-friend-ng-master.jpg b/static/images/theme/thumbnail/rhazdon-hugo-theme-hello-friend-ng-master.jpg deleted file mode 100644 index 29e3d6f1a..000000000 Binary files a/static/images/theme/thumbnail/rhazdon-hugo-theme-hello-friend-ng-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ribice-kiss-master.jpg b/static/images/theme/thumbnail/ribice-kiss-master.jpg deleted file mode 100644 index c1a72d49b..000000000 Binary files a/static/images/theme/thumbnail/ribice-kiss-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/riggraz-no-style-please-master.jpg b/static/images/theme/thumbnail/riggraz-no-style-please-master.jpg deleted file mode 100644 index 40e924dba..000000000 Binary files a/static/images/theme/thumbnail/riggraz-no-style-please-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/riggraz-no-style-please.jpg b/static/images/theme/thumbnail/riggraz-no-style-please.jpg new file mode 100644 index 000000000..07915304f Binary files /dev/null and b/static/images/theme/thumbnail/riggraz-no-style-please.jpg differ diff --git a/static/images/theme/thumbnail/ritijjain-pudhina-fresh-master.jpg b/static/images/theme/thumbnail/ritijjain-pudhina-fresh-master.jpg deleted file mode 100644 index 657902bc8..000000000 Binary files a/static/images/theme/thumbnail/ritijjain-pudhina-fresh-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ritijjain-pudhina-fresh.jpg b/static/images/theme/thumbnail/ritijjain-pudhina-fresh.jpg new file mode 100644 index 000000000..25f7c9ece Binary files /dev/null and b/static/images/theme/thumbnail/ritijjain-pudhina-fresh.jpg differ diff --git a/static/images/theme/thumbnail/rlue-jekyll-solana-master.jpg b/static/images/theme/thumbnail/rlue-jekyll-solana-master.jpg deleted file mode 100644 index aa6690ca0..000000000 Binary files a/static/images/theme/thumbnail/rlue-jekyll-solana-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/rlue-jekyll-solana.jpg b/static/images/theme/thumbnail/rlue-jekyll-solana.jpg new file mode 100644 index 000000000..2f7b994a8 Binary files /dev/null and b/static/images/theme/thumbnail/rlue-jekyll-solana.jpg differ diff --git a/static/images/theme/thumbnail/rmagon-gatsby-starter-interviews-master.jpg b/static/images/theme/thumbnail/rmagon-gatsby-starter-interviews-master.jpg deleted file mode 100644 index e77054a13..000000000 Binary files a/static/images/theme/thumbnail/rmagon-gatsby-starter-interviews-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/rmagon-gatsby-starter-interviews.jpg b/static/images/theme/thumbnail/rmagon-gatsby-starter-interviews.jpg new file mode 100644 index 000000000..f116f9e43 Binary files /dev/null and b/static/images/theme/thumbnail/rmagon-gatsby-starter-interviews.jpg differ diff --git a/static/images/theme/thumbnail/rmsubekti-emping-master.jpg b/static/images/theme/thumbnail/rmsubekti-emping-master.jpg deleted file mode 100644 index 70cfa85ed..000000000 Binary files a/static/images/theme/thumbnail/rmsubekti-emping-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/rmsubekti-emping.jpg b/static/images/theme/thumbnail/rmsubekti-emping.jpg new file mode 100644 index 000000000..320289905 Binary files /dev/null and b/static/images/theme/thumbnail/rmsubekti-emping.jpg differ diff --git a/static/images/theme/thumbnail/rmsubekti-nangka-gh-pages.jpg b/static/images/theme/thumbnail/rmsubekti-nangka-gh-pages.jpg deleted file mode 100644 index 35ca2596a..000000000 Binary files a/static/images/theme/thumbnail/rmsubekti-nangka-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/rmsubekti-nangka.jpg b/static/images/theme/thumbnail/rmsubekti-nangka.jpg new file mode 100644 index 000000000..b658687d8 Binary files /dev/null and b/static/images/theme/thumbnail/rmsubekti-nangka.jpg differ diff --git a/static/images/theme/thumbnail/robertcoopercode-gatsby-netlify-cms-master.jpg b/static/images/theme/thumbnail/robertcoopercode-gatsby-netlify-cms-master.jpg deleted file mode 100644 index cfc170676..000000000 Binary files a/static/images/theme/thumbnail/robertcoopercode-gatsby-netlify-cms-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/robertcoopercode-gatsby-netlify-cms.jpg b/static/images/theme/thumbnail/robertcoopercode-gatsby-netlify-cms.jpg new file mode 100644 index 000000000..58825d108 Binary files /dev/null and b/static/images/theme/thumbnail/robertcoopercode-gatsby-netlify-cms.jpg differ diff --git a/static/images/theme/thumbnail/robincsl-gatsby-starter-docz-master.jpg b/static/images/theme/thumbnail/robincsl-gatsby-starter-docz-master.jpg deleted file mode 100644 index 205e15d25..000000000 Binary files a/static/images/theme/thumbnail/robincsl-gatsby-starter-docz-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/robincsl-gatsby-starter-docz.jpg b/static/images/theme/thumbnail/robincsl-gatsby-starter-docz.jpg new file mode 100644 index 000000000..fbcb0c630 Binary files /dev/null and b/static/images/theme/thumbnail/robincsl-gatsby-starter-docz.jpg differ diff --git a/static/images/theme/thumbnail/robinmetral-gatsby-starter-under-construction-master.jpg b/static/images/theme/thumbnail/robinmetral-gatsby-starter-under-construction-master.jpg deleted file mode 100644 index 26ef0ee10..000000000 Binary files a/static/images/theme/thumbnail/robinmetral-gatsby-starter-under-construction-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/rohanchandra-type-theme-master.jpg b/static/images/theme/thumbnail/rohanchandra-type-theme-master.jpg deleted file mode 100644 index a7469918a..000000000 Binary files a/static/images/theme/thumbnail/rohanchandra-type-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/rohanchandra-type-theme.jpg b/static/images/theme/thumbnail/rohanchandra-type-theme.jpg new file mode 100644 index 000000000..d67f445c5 Binary files /dev/null and b/static/images/theme/thumbnail/rohanchandra-type-theme.jpg differ diff --git a/static/images/theme/thumbnail/rohitguptab-oneshopper-master.jpg b/static/images/theme/thumbnail/rohitguptab-oneshopper-master.jpg deleted file mode 100644 index 9c28aa3ea..000000000 Binary files a/static/images/theme/thumbnail/rohitguptab-oneshopper-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/rohitguptab-oneshopper.jpg b/static/images/theme/thumbnail/rohitguptab-oneshopper.jpg new file mode 100644 index 000000000..a23bc9031 Binary files /dev/null and b/static/images/theme/thumbnail/rohitguptab-oneshopper.jpg differ diff --git a/static/images/theme/thumbnail/rohitguptab-rg-portfolio-master.jpg b/static/images/theme/thumbnail/rohitguptab-rg-portfolio-master.jpg deleted file mode 100644 index 4aa6c24b4..000000000 Binary files a/static/images/theme/thumbnail/rohitguptab-rg-portfolio-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/rohitguptab-rg-portfolio.jpg b/static/images/theme/thumbnail/rohitguptab-rg-portfolio.jpg new file mode 100644 index 000000000..0149fe59d Binary files /dev/null and b/static/images/theme/thumbnail/rohitguptab-rg-portfolio.jpg differ diff --git a/static/images/theme/thumbnail/roninro-hugo-theme-puppet.jpg b/static/images/theme/thumbnail/roninro-hugo-theme-puppet.jpg new file mode 100644 index 000000000..2248b68b3 Binary files /dev/null and b/static/images/theme/thumbnail/roninro-hugo-theme-puppet.jpg differ diff --git a/static/images/theme/thumbnail/ronv-colorie-master.jpg b/static/images/theme/thumbnail/ronv-colorie-master.jpg deleted file mode 100644 index 4c3d67547..000000000 Binary files a/static/images/theme/thumbnail/ronv-colorie-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ronv-colorie.jpg b/static/images/theme/thumbnail/ronv-colorie.jpg new file mode 100644 index 000000000..5a42ee8c9 Binary files /dev/null and b/static/images/theme/thumbnail/ronv-colorie.jpg differ diff --git a/static/images/theme/thumbnail/ronv-gray-master.jpg b/static/images/theme/thumbnail/ronv-gray-master.jpg deleted file mode 100644 index 8527a4c76..000000000 Binary files a/static/images/theme/thumbnail/ronv-gray-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ronv-gray.jpg b/static/images/theme/thumbnail/ronv-gray.jpg new file mode 100644 index 000000000..d320afa57 Binary files /dev/null and b/static/images/theme/thumbnail/ronv-gray.jpg differ diff --git a/static/images/theme/thumbnail/ronv-jam.jpg b/static/images/theme/thumbnail/ronv-jam.jpg new file mode 100644 index 000000000..5094aa7fa Binary files /dev/null and b/static/images/theme/thumbnail/ronv-jam.jpg differ diff --git a/static/images/theme/thumbnail/ronv-lines-master.jpg b/static/images/theme/thumbnail/ronv-lines-master.jpg deleted file mode 100644 index 095335a12..000000000 Binary files a/static/images/theme/thumbnail/ronv-lines-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ronv-lines.jpg b/static/images/theme/thumbnail/ronv-lines.jpg new file mode 100644 index 000000000..b92942fa1 Binary files /dev/null and b/static/images/theme/thumbnail/ronv-lines.jpg differ diff --git a/static/images/theme/thumbnail/ronv-listed.jpg b/static/images/theme/thumbnail/ronv-listed.jpg new file mode 100644 index 000000000..7d6853699 Binary files /dev/null and b/static/images/theme/thumbnail/ronv-listed.jpg differ diff --git a/static/images/theme/thumbnail/ronv-minimalist.jpg b/static/images/theme/thumbnail/ronv-minimalist.jpg new file mode 100644 index 000000000..bfe60820b Binary files /dev/null and b/static/images/theme/thumbnail/ronv-minimalist.jpg differ diff --git a/static/images/theme/thumbnail/ronv-sidey-master.jpg b/static/images/theme/thumbnail/ronv-sidey-master.jpg deleted file mode 100644 index ad029551c..000000000 Binary files a/static/images/theme/thumbnail/ronv-sidey-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ronv-sidey.jpg b/static/images/theme/thumbnail/ronv-sidey.jpg new file mode 100644 index 000000000..c49924879 Binary files /dev/null and b/static/images/theme/thumbnail/ronv-sidey.jpg differ diff --git a/static/images/theme/thumbnail/ronv-ultra-master.jpg b/static/images/theme/thumbnail/ronv-ultra-master.jpg deleted file mode 100644 index 4b838f9d5..000000000 Binary files a/static/images/theme/thumbnail/ronv-ultra-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ronv-ultra.jpg b/static/images/theme/thumbnail/ronv-ultra.jpg new file mode 100644 index 000000000..e30563083 Binary files /dev/null and b/static/images/theme/thumbnail/ronv-ultra.jpg differ diff --git a/static/images/theme/thumbnail/rosario-kasper-master.jpg b/static/images/theme/thumbnail/rosario-kasper-master.jpg deleted file mode 100644 index d142a5323..000000000 Binary files a/static/images/theme/thumbnail/rosario-kasper-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/rosario-kasper.jpg b/static/images/theme/thumbnail/rosario-kasper.jpg new file mode 100644 index 000000000..a31a697be Binary files /dev/null and b/static/images/theme/thumbnail/rosario-kasper.jpg differ diff --git a/static/images/theme/thumbnail/rowanoulton-galileo-theme-master.jpg b/static/images/theme/thumbnail/rowanoulton-galileo-theme-master.jpg deleted file mode 100644 index 1eb29887b..000000000 Binary files a/static/images/theme/thumbnail/rowanoulton-galileo-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/runbytech-gatsby-theme-ultronele-master.jpg b/static/images/theme/thumbnail/runbytech-gatsby-theme-ultronele-master.jpg deleted file mode 100644 index c85793edb..000000000 Binary files a/static/images/theme/thumbnail/runbytech-gatsby-theme-ultronele-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/runbytech-gatsby-theme-ultronele.jpg b/static/images/theme/thumbnail/runbytech-gatsby-theme-ultronele.jpg new file mode 100644 index 000000000..4750ea59d Binary files /dev/null and b/static/images/theme/thumbnail/runbytech-gatsby-theme-ultronele.jpg differ diff --git a/static/images/theme/thumbnail/rundocs-jekyll-rtd-theme-master.jpg b/static/images/theme/thumbnail/rundocs-jekyll-rtd-theme-master.jpg deleted file mode 100644 index 01123f4d1..000000000 Binary files a/static/images/theme/thumbnail/rundocs-jekyll-rtd-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/runningstream-hugograyscale-master.jpg b/static/images/theme/thumbnail/runningstream-hugograyscale-master.jpg deleted file mode 100644 index 70a06b329..000000000 Binary files a/static/images/theme/thumbnail/runningstream-hugograyscale-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/runningstream-hugograyscale.jpg b/static/images/theme/thumbnail/runningstream-hugograyscale.jpg new file mode 100644 index 000000000..52bfe540b Binary files /dev/null and b/static/images/theme/thumbnail/runningstream-hugograyscale.jpg differ diff --git a/static/images/theme/thumbnail/ryanfitzgerald-devblog-master.jpg b/static/images/theme/thumbnail/ryanfitzgerald-devblog-master.jpg deleted file mode 100644 index 97e53eaf6..000000000 Binary files a/static/images/theme/thumbnail/ryanfitzgerald-devblog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ryanfitzgerald-devblog.jpg b/static/images/theme/thumbnail/ryanfitzgerald-devblog.jpg new file mode 100644 index 000000000..8d2a22d2e Binary files /dev/null and b/static/images/theme/thumbnail/ryanfitzgerald-devblog.jpg differ diff --git a/static/images/theme/thumbnail/ryanwiemer-gatsby-starter-gcn-master.jpg b/static/images/theme/thumbnail/ryanwiemer-gatsby-starter-gcn-master.jpg deleted file mode 100644 index e547df5e4..000000000 Binary files a/static/images/theme/thumbnail/ryanwiemer-gatsby-starter-gcn-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ryanwiemer-gatsby-starter-gcn.jpg b/static/images/theme/thumbnail/ryanwiemer-gatsby-starter-gcn.jpg new file mode 100644 index 000000000..f9e5e8803 Binary files /dev/null and b/static/images/theme/thumbnail/ryanwiemer-gatsby-starter-gcn.jpg differ diff --git a/static/images/theme/thumbnail/s-kris-gatsby-minimal-portfolio-blog-master.jpg b/static/images/theme/thumbnail/s-kris-gatsby-minimal-portfolio-blog-master.jpg deleted file mode 100644 index 16402ebfa..000000000 Binary files a/static/images/theme/thumbnail/s-kris-gatsby-minimal-portfolio-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/s-kris-gatsby-minimal-portfolio-blog.jpg b/static/images/theme/thumbnail/s-kris-gatsby-minimal-portfolio-blog.jpg new file mode 100644 index 000000000..685b6d85a Binary files /dev/null and b/static/images/theme/thumbnail/s-kris-gatsby-minimal-portfolio-blog.jpg differ diff --git a/static/images/theme/thumbnail/saey55-hugo-elate-theme-master.jpg b/static/images/theme/thumbnail/saey55-hugo-elate-theme-master.jpg deleted file mode 100644 index 97679d2bc..000000000 Binary files a/static/images/theme/thumbnail/saey55-hugo-elate-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sag-dev-hugo-minimalist-spa-master.jpg b/static/images/theme/thumbnail/sag-dev-hugo-minimalist-spa-master.jpg deleted file mode 100644 index 22aa05a3a..000000000 Binary files a/static/images/theme/thumbnail/sag-dev-hugo-minimalist-spa-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sagar7993-gatsby-wordpress-typescript-scss-blog-master.jpg b/static/images/theme/thumbnail/sagar7993-gatsby-wordpress-typescript-scss-blog-master.jpg deleted file mode 100644 index 39ca46f0a..000000000 Binary files a/static/images/theme/thumbnail/sagar7993-gatsby-wordpress-typescript-scss-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sagar7993-gatsby-wordpress-typescript-scss-blog.jpg b/static/images/theme/thumbnail/sagar7993-gatsby-wordpress-typescript-scss-blog.jpg new file mode 100644 index 000000000..cc5dc5d6a Binary files /dev/null and b/static/images/theme/thumbnail/sagar7993-gatsby-wordpress-typescript-scss-blog.jpg differ diff --git a/static/images/theme/thumbnail/salcan-beyondnothing-master.jpg b/static/images/theme/thumbnail/salcan-beyondnothing-master.jpg deleted file mode 100644 index b2f73d98f..000000000 Binary files a/static/images/theme/thumbnail/salcan-beyondnothing-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/saleor-react-storefront.jpg b/static/images/theme/thumbnail/saleor-react-storefront.jpg new file mode 100644 index 000000000..e570748c7 Binary files /dev/null and b/static/images/theme/thumbnail/saleor-react-storefront.jpg differ diff --git a/static/images/theme/thumbnail/salgnt-travelogue-master.jpg b/static/images/theme/thumbnail/salgnt-travelogue-master.jpg deleted file mode 100644 index d7c35183f..000000000 Binary files a/static/images/theme/thumbnail/salgnt-travelogue-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/salgnt-travelogue.jpg b/static/images/theme/thumbnail/salgnt-travelogue.jpg new file mode 100644 index 000000000..32e372af5 Binary files /dev/null and b/static/images/theme/thumbnail/salgnt-travelogue.jpg differ diff --git a/static/images/theme/thumbnail/salsysd-hugo-assembly-master.jpg b/static/images/theme/thumbnail/salsysd-hugo-assembly-master.jpg deleted file mode 100644 index febc47420..000000000 Binary files a/static/images/theme/thumbnail/salsysd-hugo-assembly-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/samanyougarg-hanuman-master.jpg b/static/images/theme/thumbnail/samanyougarg-hanuman-master.jpg deleted file mode 100644 index 38878ed10..000000000 Binary files a/static/images/theme/thumbnail/samanyougarg-hanuman-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/samesies-barber-jekyll-master.jpg b/static/images/theme/thumbnail/samesies-barber-jekyll-master.jpg deleted file mode 100644 index 1b08d7a87..000000000 Binary files a/static/images/theme/thumbnail/samesies-barber-jekyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/samme-brunch-phaser-master.jpg b/static/images/theme/thumbnail/samme-brunch-phaser-master.jpg deleted file mode 100644 index 8df568f05..000000000 Binary files a/static/images/theme/thumbnail/samme-brunch-phaser-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/samme-brunch-phaser.jpg b/static/images/theme/thumbnail/samme-brunch-phaser.jpg new file mode 100644 index 000000000..d7dc091ed Binary files /dev/null and b/static/images/theme/thumbnail/samme-brunch-phaser.jpg differ diff --git a/static/images/theme/thumbnail/samuelhorn-jamdocs-master.jpg b/static/images/theme/thumbnail/samuelhorn-jamdocs-master.jpg deleted file mode 100644 index 8da71a2ac..000000000 Binary files a/static/images/theme/thumbnail/samuelhorn-jamdocs-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/samuelhorn-jamdocs.jpg b/static/images/theme/thumbnail/samuelhorn-jamdocs.jpg new file mode 100644 index 000000000..ae29ffa38 Binary files /dev/null and b/static/images/theme/thumbnail/samuelhorn-jamdocs.jpg differ diff --git a/static/images/theme/thumbnail/samuelkraft-notion-blog-nextjs.jpg b/static/images/theme/thumbnail/samuelkraft-notion-blog-nextjs.jpg new file mode 100644 index 000000000..b9fdd576c Binary files /dev/null and b/static/images/theme/thumbnail/samuelkraft-notion-blog-nextjs.jpg differ diff --git a/static/images/theme/thumbnail/santosfrancisco-gatsby-starter-cv-master.jpg b/static/images/theme/thumbnail/santosfrancisco-gatsby-starter-cv-master.jpg deleted file mode 100644 index 25b93f098..000000000 Binary files a/static/images/theme/thumbnail/santosfrancisco-gatsby-starter-cv-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/santosfrancisco-gatsby-starter-cv.jpg b/static/images/theme/thumbnail/santosfrancisco-gatsby-starter-cv.jpg new file mode 100644 index 000000000..5c662b7f7 Binary files /dev/null and b/static/images/theme/thumbnail/santosfrancisco-gatsby-starter-cv.jpg differ diff --git a/static/images/theme/thumbnail/sarasate-gate-master.jpg b/static/images/theme/thumbnail/sarasate-gate-master.jpg deleted file mode 100644 index 07ddfc807..000000000 Binary files a/static/images/theme/thumbnail/sarasate-gate-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/saschajullmann-gatsby-starter-gatsbythemes-master.jpg b/static/images/theme/thumbnail/saschajullmann-gatsby-starter-gatsbythemes-master.jpg deleted file mode 100644 index 9734a252e..000000000 Binary files a/static/images/theme/thumbnail/saschajullmann-gatsby-starter-gatsbythemes-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sblisesivdin-biscuit.jpg b/static/images/theme/thumbnail/sblisesivdin-biscuit.jpg new file mode 100644 index 000000000..abc2fa4e4 Binary files /dev/null and b/static/images/theme/thumbnail/sblisesivdin-biscuit.jpg differ diff --git a/static/images/theme/thumbnail/schmanat-hugo-highlights-theme-master.jpg b/static/images/theme/thumbnail/schmanat-hugo-highlights-theme-master.jpg deleted file mode 100644 index 0d0791d64..000000000 Binary files a/static/images/theme/thumbnail/schmanat-hugo-highlights-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/schollz-onetwothree-master.jpg b/static/images/theme/thumbnail/schollz-onetwothree-master.jpg deleted file mode 100644 index c76cb4aea..000000000 Binary files a/static/images/theme/thumbnail/schollz-onetwothree-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/schollz-onetwothree.jpg b/static/images/theme/thumbnail/schollz-onetwothree.jpg new file mode 100644 index 000000000..2b24c5581 Binary files /dev/null and b/static/images/theme/thumbnail/schollz-onetwothree.jpg differ diff --git a/static/images/theme/thumbnail/scotte-jekyll-clean-gh-pages.jpg b/static/images/theme/thumbnail/scotte-jekyll-clean-gh-pages.jpg deleted file mode 100644 index 068cb66f1..000000000 Binary files a/static/images/theme/thumbnail/scotte-jekyll-clean-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/scotte-jekyll-clean.jpg b/static/images/theme/thumbnail/scotte-jekyll-clean.jpg new file mode 100644 index 000000000..4f3cec1d7 Binary files /dev/null and b/static/images/theme/thumbnail/scotte-jekyll-clean.jpg differ diff --git a/static/images/theme/thumbnail/scottmathson-simpol-theme-master.jpg b/static/images/theme/thumbnail/scottmathson-simpol-theme-master.jpg deleted file mode 100644 index be3b580da..000000000 Binary files a/static/images/theme/thumbnail/scottmathson-simpol-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/scottmathson-simpol-theme.jpg b/static/images/theme/thumbnail/scottmathson-simpol-theme.jpg new file mode 100644 index 000000000..09e0a90ca Binary files /dev/null and b/static/images/theme/thumbnail/scottmathson-simpol-theme.jpg differ diff --git a/static/images/theme/thumbnail/scttcper-gatsby-casper-master.jpg b/static/images/theme/thumbnail/scttcper-gatsby-casper-master.jpg deleted file mode 100644 index 6712b43f3..000000000 Binary files a/static/images/theme/thumbnail/scttcper-gatsby-casper-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/scttcper-gatsby-casper.jpg b/static/images/theme/thumbnail/scttcper-gatsby-casper.jpg new file mode 100644 index 000000000..d8f938bf3 Binary files /dev/null and b/static/images/theme/thumbnail/scttcper-gatsby-casper.jpg differ diff --git a/static/images/theme/thumbnail/sdtelectronics-jekyll-theme-antarctica.jpg b/static/images/theme/thumbnail/sdtelectronics-jekyll-theme-antarctica.jpg new file mode 100644 index 000000000..47a3741ea Binary files /dev/null and b/static/images/theme/thumbnail/sdtelectronics-jekyll-theme-antarctica.jpg differ diff --git a/static/images/theme/thumbnail/seanlane-gochowdown-master.jpg b/static/images/theme/thumbnail/seanlane-gochowdown-master.jpg deleted file mode 100644 index 297c2b56b..000000000 Binary files a/static/images/theme/thumbnail/seanlane-gochowdown-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/seanlane-gochowdown.jpg b/static/images/theme/thumbnail/seanlane-gochowdown.jpg new file mode 100644 index 000000000..3df0f95c6 Binary files /dev/null and b/static/images/theme/thumbnail/seanlane-gochowdown.jpg differ diff --git a/static/images/theme/thumbnail/serg-yourfolio-master.jpg b/static/images/theme/thumbnail/serg-yourfolio-master.jpg deleted file mode 100644 index dd6b07691..000000000 Binary files a/static/images/theme/thumbnail/serg-yourfolio-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sergiokopplin-indigo-gh-pages.jpg b/static/images/theme/thumbnail/sergiokopplin-indigo-gh-pages.jpg deleted file mode 100644 index 2a9587ffc..000000000 Binary files a/static/images/theme/thumbnail/sergiokopplin-indigo-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sergiokopplin-indigo.jpg b/static/images/theme/thumbnail/sergiokopplin-indigo.jpg new file mode 100644 index 000000000..ebd6ade64 Binary files /dev/null and b/static/images/theme/thumbnail/sergiokopplin-indigo.jpg differ diff --git a/static/images/theme/thumbnail/sfreytag-friday-theme-master.jpg b/static/images/theme/thumbnail/sfreytag-friday-theme-master.jpg deleted file mode 100644 index eb99901f4..000000000 Binary files a/static/images/theme/thumbnail/sfreytag-friday-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sfreytag-friday-theme.jpg b/static/images/theme/thumbnail/sfreytag-friday-theme.jpg new file mode 100644 index 000000000..38baf0895 Binary files /dev/null and b/static/images/theme/thumbnail/sfreytag-friday-theme.jpg differ diff --git a/static/images/theme/thumbnail/shaform-hugo-theme-den-master.jpg b/static/images/theme/thumbnail/shaform-hugo-theme-den-master.jpg deleted file mode 100644 index ff1d4b901..000000000 Binary files a/static/images/theme/thumbnail/shaform-hugo-theme-den-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/shankar-hugo-grapes-master.jpg b/static/images/theme/thumbnail/shankar-hugo-grapes-master.jpg deleted file mode 100644 index 9ef44b71f..000000000 Binary files a/static/images/theme/thumbnail/shankar-hugo-grapes-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/shantanu-deshmukh-vhealth-gatsby-master.jpg b/static/images/theme/thumbnail/shantanu-deshmukh-vhealth-gatsby-master.jpg deleted file mode 100644 index 3b0a934c3..000000000 Binary files a/static/images/theme/thumbnail/shantanu-deshmukh-vhealth-gatsby-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/shantanu-deshmukh-vhealth-gatsby.jpg b/static/images/theme/thumbnail/shantanu-deshmukh-vhealth-gatsby.jpg new file mode 100644 index 000000000..9b04a8197 Binary files /dev/null and b/static/images/theme/thumbnail/shantanu-deshmukh-vhealth-gatsby.jpg differ diff --git a/static/images/theme/thumbnail/sharadcodes-gatsby-theme-serial-programmer.jpg b/static/images/theme/thumbnail/sharadcodes-gatsby-theme-serial-programmer.jpg new file mode 100644 index 000000000..3ddc5b80e Binary files /dev/null and b/static/images/theme/thumbnail/sharadcodes-gatsby-theme-serial-programmer.jpg differ diff --git a/static/images/theme/thumbnail/sharadcodes-geekyll-starter-blog-master.jpg b/static/images/theme/thumbnail/sharadcodes-geekyll-starter-blog-master.jpg deleted file mode 100644 index c96b8694e..000000000 Binary files a/static/images/theme/thumbnail/sharadcodes-geekyll-starter-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sharadcodes-geekyll-starter-blog.jpg b/static/images/theme/thumbnail/sharadcodes-geekyll-starter-blog.jpg new file mode 100644 index 000000000..4fe3579fe Binary files /dev/null and b/static/images/theme/thumbnail/sharadcodes-geekyll-starter-blog.jpg differ diff --git a/static/images/theme/thumbnail/sharadcodes-hugo-theme-serial-programmer.jpg b/static/images/theme/thumbnail/sharadcodes-hugo-theme-serial-programmer.jpg new file mode 100644 index 000000000..75a82f647 Binary files /dev/null and b/static/images/theme/thumbnail/sharadcodes-hugo-theme-serial-programmer.jpg differ diff --git a/static/images/theme/thumbnail/sharadcodes-jekyll-theme-dark-reader-master.jpg b/static/images/theme/thumbnail/sharadcodes-jekyll-theme-dark-reader-master.jpg deleted file mode 100644 index 7fd8cecd6..000000000 Binary files a/static/images/theme/thumbnail/sharadcodes-jekyll-theme-dark-reader-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sharadcodes-jekyll-theme-dark-reader.jpg b/static/images/theme/thumbnail/sharadcodes-jekyll-theme-dark-reader.jpg new file mode 100644 index 000000000..5fff645c6 Binary files /dev/null and b/static/images/theme/thumbnail/sharadcodes-jekyll-theme-dark-reader.jpg differ diff --git a/static/images/theme/thumbnail/sharadcodes-jekyll-theme-material-you.jpg b/static/images/theme/thumbnail/sharadcodes-jekyll-theme-material-you.jpg new file mode 100644 index 000000000..256a29361 Binary files /dev/null and b/static/images/theme/thumbnail/sharadcodes-jekyll-theme-material-you.jpg differ diff --git a/static/images/theme/thumbnail/sharadcodes-jekyll-theme-milo-master.jpg b/static/images/theme/thumbnail/sharadcodes-jekyll-theme-milo-master.jpg deleted file mode 100644 index f79f52517..000000000 Binary files a/static/images/theme/thumbnail/sharadcodes-jekyll-theme-milo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sharadcodes-jekyll-theme-milo.jpg b/static/images/theme/thumbnail/sharadcodes-jekyll-theme-milo.jpg new file mode 100644 index 000000000..06fd3395c Binary files /dev/null and b/static/images/theme/thumbnail/sharadcodes-jekyll-theme-milo.jpg differ diff --git a/static/images/theme/thumbnail/sharadcodes-jekyll-theme-retro-yellow-master.jpg b/static/images/theme/thumbnail/sharadcodes-jekyll-theme-retro-yellow-master.jpg deleted file mode 100644 index dc2505852..000000000 Binary files a/static/images/theme/thumbnail/sharadcodes-jekyll-theme-retro-yellow-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sharadcodes-jekyll-theme-retro-yellow.jpg b/static/images/theme/thumbnail/sharadcodes-jekyll-theme-retro-yellow.jpg new file mode 100644 index 000000000..98e95d8c0 Binary files /dev/null and b/static/images/theme/thumbnail/sharadcodes-jekyll-theme-retro-yellow.jpg differ diff --git a/static/images/theme/thumbnail/sharadcodes-jekyll-theme-serial-programmer.jpg b/static/images/theme/thumbnail/sharadcodes-jekyll-theme-serial-programmer.jpg new file mode 100644 index 000000000..9d05047f3 Binary files /dev/null and b/static/images/theme/thumbnail/sharadcodes-jekyll-theme-serial-programmer.jpg differ diff --git a/static/images/theme/thumbnail/sharu725-ashwath-master.jpg b/static/images/theme/thumbnail/sharu725-ashwath-master.jpg deleted file mode 100644 index 88fa437cb..000000000 Binary files a/static/images/theme/thumbnail/sharu725-ashwath-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sharu725-bheema-master.jpg b/static/images/theme/thumbnail/sharu725-bheema-master.jpg deleted file mode 100644 index 33234331d..000000000 Binary files a/static/images/theme/thumbnail/sharu725-bheema-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sharu725-bheema.jpg b/static/images/theme/thumbnail/sharu725-bheema.jpg new file mode 100644 index 000000000..8e54ab6a3 Binary files /dev/null and b/static/images/theme/thumbnail/sharu725-bheema.jpg differ diff --git a/static/images/theme/thumbnail/sharu725-cards-master.jpg b/static/images/theme/thumbnail/sharu725-cards-master.jpg deleted file mode 100644 index 63fc38a6f..000000000 Binary files a/static/images/theme/thumbnail/sharu725-cards-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sharu725-cards.jpg b/static/images/theme/thumbnail/sharu725-cards.jpg new file mode 100644 index 000000000..3e023e536 Binary files /dev/null and b/static/images/theme/thumbnail/sharu725-cards.jpg differ diff --git a/static/images/theme/thumbnail/sharu725-gatok-master.jpg b/static/images/theme/thumbnail/sharu725-gatok-master.jpg deleted file mode 100644 index 6d34e4817..000000000 Binary files a/static/images/theme/thumbnail/sharu725-gatok-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sharu725-hagura-gh-pages.jpg b/static/images/theme/thumbnail/sharu725-hagura-gh-pages.jpg deleted file mode 100644 index d735913f0..000000000 Binary files a/static/images/theme/thumbnail/sharu725-hagura-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sharu725-hagura.jpg b/static/images/theme/thumbnail/sharu725-hagura.jpg new file mode 100644 index 000000000..a54f5f69d Binary files /dev/null and b/static/images/theme/thumbnail/sharu725-hagura.jpg differ diff --git a/static/images/theme/thumbnail/sharu725-karna-master.jpg b/static/images/theme/thumbnail/sharu725-karna-master.jpg deleted file mode 100644 index b3830d0ab..000000000 Binary files a/static/images/theme/thumbnail/sharu725-karna-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sharu725-karna.jpg b/static/images/theme/thumbnail/sharu725-karna.jpg new file mode 100644 index 000000000..09be571d2 Binary files /dev/null and b/static/images/theme/thumbnail/sharu725-karna.jpg differ diff --git a/static/images/theme/thumbnail/sharu725-online-cv-master.jpg b/static/images/theme/thumbnail/sharu725-online-cv-master.jpg deleted file mode 100644 index c54ef0316..000000000 Binary files a/static/images/theme/thumbnail/sharu725-online-cv-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sharu725-online-cv.jpg b/static/images/theme/thumbnail/sharu725-online-cv.jpg new file mode 100644 index 000000000..ee5d54453 Binary files /dev/null and b/static/images/theme/thumbnail/sharu725-online-cv.jpg differ diff --git a/static/images/theme/thumbnail/sharu725-slides-master.jpg b/static/images/theme/thumbnail/sharu725-slides-master.jpg deleted file mode 100644 index 6ebe88023..000000000 Binary files a/static/images/theme/thumbnail/sharu725-slides-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sharu725-thunder-master.jpg b/static/images/theme/thumbnail/sharu725-thunder-master.jpg deleted file mode 100644 index 674249fc4..000000000 Binary files a/static/images/theme/thumbnail/sharu725-thunder-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sharu725-thunder.jpg b/static/images/theme/thumbnail/sharu725-thunder.jpg new file mode 100644 index 000000000..0ad016a87 Binary files /dev/null and b/static/images/theme/thumbnail/sharu725-thunder.jpg differ diff --git a/static/images/theme/thumbnail/sharu725-vyaasa-master.jpg b/static/images/theme/thumbnail/sharu725-vyaasa-master.jpg deleted file mode 100644 index b63f3ee84..000000000 Binary files a/static/images/theme/thumbnail/sharu725-vyaasa-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sharvaridesai-hexo-theme-edinburgh-master.jpg b/static/images/theme/thumbnail/sharvaridesai-hexo-theme-edinburgh-master.jpg deleted file mode 100644 index cc5ad58ba..000000000 Binary files a/static/images/theme/thumbnail/sharvaridesai-hexo-theme-edinburgh-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sharvaridesai-hexo-theme-edinburgh.jpg b/static/images/theme/thumbnail/sharvaridesai-hexo-theme-edinburgh.jpg new file mode 100644 index 000000000..e80b74c93 Binary files /dev/null and b/static/images/theme/thumbnail/sharvaridesai-hexo-theme-edinburgh.jpg differ diff --git a/static/images/theme/thumbnail/shawnteoh-matjek-gh-pages.jpg b/static/images/theme/thumbnail/shawnteoh-matjek-gh-pages.jpg deleted file mode 100644 index 6840d9dc8..000000000 Binary files a/static/images/theme/thumbnail/shawnteoh-matjek-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/shawnteoh-matjek.jpg b/static/images/theme/thumbnail/shawnteoh-matjek.jpg new file mode 100644 index 000000000..7572d2f10 Binary files /dev/null and b/static/images/theme/thumbnail/shawnteoh-matjek.jpg differ diff --git a/static/images/theme/thumbnail/shenliyang-hexo-theme-snippet-master.jpg b/static/images/theme/thumbnail/shenliyang-hexo-theme-snippet-master.jpg deleted file mode 100644 index 2b5eee663..000000000 Binary files a/static/images/theme/thumbnail/shenliyang-hexo-theme-snippet-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/shenliyang-hexo-theme-snippet.jpg b/static/images/theme/thumbnail/shenliyang-hexo-theme-snippet.jpg new file mode 100644 index 000000000..a2c71b6bb Binary files /dev/null and b/static/images/theme/thumbnail/shenliyang-hexo-theme-snippet.jpg differ diff --git a/static/images/theme/thumbnail/shenoybr-hugo-goa-master.jpg b/static/images/theme/thumbnail/shenoybr-hugo-goa-master.jpg deleted file mode 100644 index c50058cf6..000000000 Binary files a/static/images/theme/thumbnail/shenoybr-hugo-goa-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/shobhitchittora-gatsby-starter-fashion-portfolio-master.jpg b/static/images/theme/thumbnail/shobhitchittora-gatsby-starter-fashion-portfolio-master.jpg deleted file mode 100644 index 49d914835..000000000 Binary files a/static/images/theme/thumbnail/shobhitchittora-gatsby-starter-fashion-portfolio-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/shobhitchittora-gatsby-starter-fashion-portfolio.jpg b/static/images/theme/thumbnail/shobhitchittora-gatsby-starter-fashion-portfolio.jpg new file mode 100644 index 000000000..328158190 Binary files /dev/null and b/static/images/theme/thumbnail/shobhitchittora-gatsby-starter-fashion-portfolio.jpg differ diff --git a/static/images/theme/thumbnail/siawyoung-immaculate-master.jpg b/static/images/theme/thumbnail/siawyoung-immaculate-master.jpg deleted file mode 100644 index a691e6ae0..000000000 Binary files a/static/images/theme/thumbnail/siawyoung-immaculate-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/siawyoung-immaculate.jpg b/static/images/theme/thumbnail/siawyoung-immaculate.jpg new file mode 100644 index 000000000..1a62b7607 Binary files /dev/null and b/static/images/theme/thumbnail/siawyoung-immaculate.jpg differ diff --git a/static/images/theme/thumbnail/siegerts-hugo-theme-basic-master.jpg b/static/images/theme/thumbnail/siegerts-hugo-theme-basic-master.jpg deleted file mode 100644 index df1c50e78..000000000 Binary files a/static/images/theme/thumbnail/siegerts-hugo-theme-basic-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/siegerts-hugo-theme-basic.jpg b/static/images/theme/thumbnail/siegerts-hugo-theme-basic.jpg new file mode 100644 index 000000000..9e74b36f7 Binary files /dev/null and b/static/images/theme/thumbnail/siegerts-hugo-theme-basic.jpg differ diff --git a/static/images/theme/thumbnail/simarmannsingh-gatsby-netlifycms-starter-template.jpg b/static/images/theme/thumbnail/simarmannsingh-gatsby-netlifycms-starter-template.jpg new file mode 100644 index 000000000..745641042 Binary files /dev/null and b/static/images/theme/thumbnail/simarmannsingh-gatsby-netlifycms-starter-template.jpg differ diff --git a/static/images/theme/thumbnail/simplecode-io-gatsby-crafty-theme-master.jpg b/static/images/theme/thumbnail/simplecode-io-gatsby-crafty-theme-master.jpg deleted file mode 100644 index 76477bb76..000000000 Binary files a/static/images/theme/thumbnail/simplecode-io-gatsby-crafty-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/simplecode-io-gatsby-crafty-theme.jpg b/static/images/theme/thumbnail/simplecode-io-gatsby-crafty-theme.jpg new file mode 100644 index 000000000..6f372d134 Binary files /dev/null and b/static/images/theme/thumbnail/simplecode-io-gatsby-crafty-theme.jpg differ diff --git a/static/images/theme/thumbnail/simpleyyt-jekyll-jacman-master.jpg b/static/images/theme/thumbnail/simpleyyt-jekyll-jacman-master.jpg deleted file mode 100644 index da5c5c4e6..000000000 Binary files a/static/images/theme/thumbnail/simpleyyt-jekyll-jacman-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/simpleyyt-jekyll-jacman.jpg b/static/images/theme/thumbnail/simpleyyt-jekyll-jacman.jpg new file mode 100644 index 000000000..4c31a99eb Binary files /dev/null and b/static/images/theme/thumbnail/simpleyyt-jekyll-jacman.jpg differ diff --git a/static/images/theme/thumbnail/simpleyyt-jekyll-simpleyyt-master.jpg b/static/images/theme/thumbnail/simpleyyt-jekyll-simpleyyt-master.jpg deleted file mode 100644 index 973ce5764..000000000 Binary files a/static/images/theme/thumbnail/simpleyyt-jekyll-simpleyyt-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/simpleyyt-jekyll-simpleyyt.jpg b/static/images/theme/thumbnail/simpleyyt-jekyll-simpleyyt.jpg new file mode 100644 index 000000000..941201203 Binary files /dev/null and b/static/images/theme/thumbnail/simpleyyt-jekyll-simpleyyt.jpg differ diff --git a/static/images/theme/thumbnail/simpleyyt-jekyll-theme-next-master.jpg b/static/images/theme/thumbnail/simpleyyt-jekyll-theme-next-master.jpg deleted file mode 100644 index 612820186..000000000 Binary files a/static/images/theme/thumbnail/simpleyyt-jekyll-theme-next-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/simpleyyt-jekyll-theme-next.jpg b/static/images/theme/thumbnail/simpleyyt-jekyll-theme-next.jpg new file mode 100644 index 000000000..e4cafcb9b Binary files /dev/null and b/static/images/theme/thumbnail/simpleyyt-jekyll-theme-next.jpg differ diff --git a/static/images/theme/thumbnail/simply007-kontent-sample-app-gatsby-intranet-master.jpg b/static/images/theme/thumbnail/simply007-kontent-sample-app-gatsby-intranet-master.jpg deleted file mode 100644 index 551bc8b03..000000000 Binary files a/static/images/theme/thumbnail/simply007-kontent-sample-app-gatsby-intranet-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/simply007-kontent-sample-app-gatsby-intranet.jpg b/static/images/theme/thumbnail/simply007-kontent-sample-app-gatsby-intranet.jpg new file mode 100644 index 000000000..089ea40c3 Binary files /dev/null and b/static/images/theme/thumbnail/simply007-kontent-sample-app-gatsby-intranet.jpg differ diff --git a/static/images/theme/thumbnail/simply007-kontent-sample-app-svelte-sapper-master.jpg b/static/images/theme/thumbnail/simply007-kontent-sample-app-svelte-sapper-master.jpg deleted file mode 100644 index 6adbe4cf0..000000000 Binary files a/static/images/theme/thumbnail/simply007-kontent-sample-app-svelte-sapper-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/simply007-kontent-sample-app-svelte-sapper.jpg b/static/images/theme/thumbnail/simply007-kontent-sample-app-svelte-sapper.jpg new file mode 100644 index 000000000..2cf82b268 Binary files /dev/null and b/static/images/theme/thumbnail/simply007-kontent-sample-app-svelte-sapper.jpg differ diff --git a/static/images/theme/thumbnail/simply007-kontent-template-gatsby-landing-page-photon-master.jpg b/static/images/theme/thumbnail/simply007-kontent-template-gatsby-landing-page-photon-master.jpg deleted file mode 100644 index 686790d2b..000000000 Binary files a/static/images/theme/thumbnail/simply007-kontent-template-gatsby-landing-page-photon-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/simply007-kontent-template-gatsby-landing-page-photon.jpg b/static/images/theme/thumbnail/simply007-kontent-template-gatsby-landing-page-photon.jpg new file mode 100644 index 000000000..e5ecd90d8 Binary files /dev/null and b/static/images/theme/thumbnail/simply007-kontent-template-gatsby-landing-page-photon.jpg differ diff --git a/static/images/theme/thumbnail/slashformotion-hugo-tufte.jpg b/static/images/theme/thumbnail/slashformotion-hugo-tufte.jpg new file mode 100644 index 000000000..b20031f05 Binary files /dev/null and b/static/images/theme/thumbnail/slashformotion-hugo-tufte.jpg differ diff --git a/static/images/theme/thumbnail/smakosh-gatsby-apollo-starter-master.jpg b/static/images/theme/thumbnail/smakosh-gatsby-apollo-starter-master.jpg deleted file mode 100644 index de4ae0a9c..000000000 Binary files a/static/images/theme/thumbnail/smakosh-gatsby-apollo-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/smakosh-gatsby-apollo-starter.jpg b/static/images/theme/thumbnail/smakosh-gatsby-apollo-starter.jpg new file mode 100644 index 000000000..904e1594c Binary files /dev/null and b/static/images/theme/thumbnail/smakosh-gatsby-apollo-starter.jpg differ diff --git a/static/images/theme/thumbnail/smakosh-gatsby-app-starter-rest-api-master.jpg b/static/images/theme/thumbnail/smakosh-gatsby-app-starter-rest-api-master.jpg deleted file mode 100644 index fe093009f..000000000 Binary files a/static/images/theme/thumbnail/smakosh-gatsby-app-starter-rest-api-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/smakosh-gatsby-app-starter-rest-api.jpg b/static/images/theme/thumbnail/smakosh-gatsby-app-starter-rest-api.jpg new file mode 100644 index 000000000..4370c532f Binary files /dev/null and b/static/images/theme/thumbnail/smakosh-gatsby-app-starter-rest-api.jpg differ diff --git a/static/images/theme/thumbnail/smakosh-gatsby-portfolio-dev-master.jpg b/static/images/theme/thumbnail/smakosh-gatsby-portfolio-dev-master.jpg deleted file mode 100644 index c1c49223b..000000000 Binary files a/static/images/theme/thumbnail/smakosh-gatsby-portfolio-dev-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/smakosh-gatsby-portfolio-dev.jpg b/static/images/theme/thumbnail/smakosh-gatsby-portfolio-dev.jpg new file mode 100644 index 000000000..2b9358cc0 Binary files /dev/null and b/static/images/theme/thumbnail/smakosh-gatsby-portfolio-dev.jpg differ diff --git a/static/images/theme/thumbnail/smakosh-gatsby-starter-i18n-master.jpg b/static/images/theme/thumbnail/smakosh-gatsby-starter-i18n-master.jpg deleted file mode 100644 index 6aefb89da..000000000 Binary files a/static/images/theme/thumbnail/smakosh-gatsby-starter-i18n-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/smallmuou-jekyll-pithy-master.jpg b/static/images/theme/thumbnail/smallmuou-jekyll-pithy-master.jpg deleted file mode 100644 index 98529b66e..000000000 Binary files a/static/images/theme/thumbnail/smallmuou-jekyll-pithy-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/smallmuou-jekyll-pithy.jpg b/static/images/theme/thumbnail/smallmuou-jekyll-pithy.jpg new file mode 100644 index 000000000..6bca73a11 Binary files /dev/null and b/static/images/theme/thumbnail/smallmuou-jekyll-pithy.jpg differ diff --git a/static/images/theme/thumbnail/smastrom-headless-gatsby-multilang.jpg b/static/images/theme/thumbnail/smastrom-headless-gatsby-multilang.jpg new file mode 100644 index 000000000..14d23d649 Binary files /dev/null and b/static/images/theme/thumbnail/smastrom-headless-gatsby-multilang.jpg differ diff --git a/static/images/theme/thumbnail/smolcodes-twentytwenyonetheme-main.jpg b/static/images/theme/thumbnail/smolcodes-twentytwenyonetheme-main.jpg deleted file mode 100644 index 81e3881e6..000000000 Binary files a/static/images/theme/thumbnail/smolcodes-twentytwenyonetheme-main.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/smolcodes-twentytwenyonetheme.jpg b/static/images/theme/thumbnail/smolcodes-twentytwenyonetheme.jpg new file mode 100644 index 000000000..c77746d6a Binary files /dev/null and b/static/images/theme/thumbnail/smolcodes-twentytwenyonetheme.jpg differ diff --git a/static/images/theme/thumbnail/snipcart-11ty-demo-snipcart-master.jpg b/static/images/theme/thumbnail/snipcart-11ty-demo-snipcart-master.jpg deleted file mode 100644 index d127415b0..000000000 Binary files a/static/images/theme/thumbnail/snipcart-11ty-demo-snipcart-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/snipcart-11ty-demo-snipcart.jpg b/static/images/theme/thumbnail/snipcart-11ty-demo-snipcart.jpg new file mode 100644 index 000000000..bec97a8fd Binary files /dev/null and b/static/images/theme/thumbnail/snipcart-11ty-demo-snipcart.jpg differ diff --git a/static/images/theme/thumbnail/snipcart-directus-metalsmith-snipcart-master.jpg b/static/images/theme/thumbnail/snipcart-directus-metalsmith-snipcart-master.jpg deleted file mode 100644 index 8a1e89ec1..000000000 Binary files a/static/images/theme/thumbnail/snipcart-directus-metalsmith-snipcart-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/snipcart-directus-metalsmith-snipcart.jpg b/static/images/theme/thumbnail/snipcart-directus-metalsmith-snipcart.jpg new file mode 100644 index 000000000..74a228db1 Binary files /dev/null and b/static/images/theme/thumbnail/snipcart-directus-metalsmith-snipcart.jpg differ diff --git a/static/images/theme/thumbnail/snipcart-snipcart-middleman-integration-master.jpg b/static/images/theme/thumbnail/snipcart-snipcart-middleman-integration-master.jpg deleted file mode 100644 index ebdc4b33e..000000000 Binary files a/static/images/theme/thumbnail/snipcart-snipcart-middleman-integration-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/snipcart-snipcart-middleman-integration.jpg b/static/images/theme/thumbnail/snipcart-snipcart-middleman-integration.jpg new file mode 100644 index 000000000..3bb05a419 Binary files /dev/null and b/static/images/theme/thumbnail/snipcart-snipcart-middleman-integration.jpg differ diff --git a/static/images/theme/thumbnail/snipcart-stackbit-theme-planty-master.jpg b/static/images/theme/thumbnail/snipcart-stackbit-theme-planty-master.jpg deleted file mode 100644 index 44a0f9639..000000000 Binary files a/static/images/theme/thumbnail/snipcart-stackbit-theme-planty-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/snipcart-stackbit-theme-planty.jpg b/static/images/theme/thumbnail/snipcart-stackbit-theme-planty.jpg new file mode 100644 index 000000000..f82079953 Binary files /dev/null and b/static/images/theme/thumbnail/snipcart-stackbit-theme-planty.jpg differ diff --git a/static/images/theme/thumbnail/songroger-murmur-master.jpg b/static/images/theme/thumbnail/songroger-murmur-master.jpg deleted file mode 100644 index 3100790c5..000000000 Binary files a/static/images/theme/thumbnail/songroger-murmur-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/songroger-murmur.jpg b/static/images/theme/thumbnail/songroger-murmur.jpg new file mode 100644 index 000000000..7e519e6c0 Binary files /dev/null and b/static/images/theme/thumbnail/songroger-murmur.jpg differ diff --git a/static/images/theme/thumbnail/south-paw-awesome-gatsby-starter-master.jpg b/static/images/theme/thumbnail/south-paw-awesome-gatsby-starter-master.jpg deleted file mode 100644 index af501d8eb..000000000 Binary files a/static/images/theme/thumbnail/south-paw-awesome-gatsby-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/south-paw-awesome-gatsby-starter.jpg b/static/images/theme/thumbnail/south-paw-awesome-gatsby-starter.jpg new file mode 100644 index 000000000..9b711748f Binary files /dev/null and b/static/images/theme/thumbnail/south-paw-awesome-gatsby-starter.jpg differ diff --git a/static/images/theme/thumbnail/spaceg-glas-master.jpg b/static/images/theme/thumbnail/spaceg-glas-master.jpg deleted file mode 100644 index 5b946d61f..000000000 Binary files a/static/images/theme/thumbnail/spaceg-glas-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sparanoid-almace-scaffolding-master.jpg b/static/images/theme/thumbnail/sparanoid-almace-scaffolding-master.jpg deleted file mode 100644 index 96fed31a7..000000000 Binary files a/static/images/theme/thumbnail/sparanoid-almace-scaffolding-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sparanoid-almace-scaffolding.jpg b/static/images/theme/thumbnail/sparanoid-almace-scaffolding.jpg new file mode 100644 index 000000000..f5169a38c Binary files /dev/null and b/static/images/theme/thumbnail/sparanoid-almace-scaffolding.jpg differ diff --git a/static/images/theme/thumbnail/spech66-bootstrap-bp-hugo-startpage-master.jpg b/static/images/theme/thumbnail/spech66-bootstrap-bp-hugo-startpage-master.jpg deleted file mode 100644 index 77dcb69af..000000000 Binary files a/static/images/theme/thumbnail/spech66-bootstrap-bp-hugo-startpage-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/spech66-bootstrap-bp-hugo-theme-master.jpg b/static/images/theme/thumbnail/spech66-bootstrap-bp-hugo-theme-master.jpg deleted file mode 100644 index 24a16e0c2..000000000 Binary files a/static/images/theme/thumbnail/spech66-bootstrap-bp-hugo-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/spf13-hyde-master.jpg b/static/images/theme/thumbnail/spf13-hyde-master.jpg deleted file mode 100644 index d5206bb7c..000000000 Binary files a/static/images/theme/thumbnail/spf13-hyde-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/spinalcms-11ty-docs-template.jpg b/static/images/theme/thumbnail/spinalcms-11ty-docs-template.jpg new file mode 100644 index 000000000..f783666b4 Binary files /dev/null and b/static/images/theme/thumbnail/spinalcms-11ty-docs-template.jpg differ diff --git a/static/images/theme/thumbnail/spookey-slick-master.jpg b/static/images/theme/thumbnail/spookey-slick-master.jpg deleted file mode 100644 index 93dd45eeb..000000000 Binary files a/static/images/theme/thumbnail/spookey-slick-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/squidfunk-mkdocs-material-master.jpg b/static/images/theme/thumbnail/squidfunk-mkdocs-material-master.jpg deleted file mode 100644 index 40862e1a7..000000000 Binary files a/static/images/theme/thumbnail/squidfunk-mkdocs-material-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/squidfunk-mkdocs-material.jpg b/static/images/theme/thumbnail/squidfunk-mkdocs-material.jpg new file mode 100644 index 000000000..a2f1ba0b9 Binary files /dev/null and b/static/images/theme/thumbnail/squidfunk-mkdocs-material.jpg differ diff --git a/static/images/theme/thumbnail/ssokurenko-jekyll-smart-material-gh-pages.jpg b/static/images/theme/thumbnail/ssokurenko-jekyll-smart-material-gh-pages.jpg deleted file mode 100644 index 6d28c1ee1..000000000 Binary files a/static/images/theme/thumbnail/ssokurenko-jekyll-smart-material-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ssokurenko-jekyll-smart-material.jpg b/static/images/theme/thumbnail/ssokurenko-jekyll-smart-material.jpg new file mode 100644 index 000000000..0db5b1df7 Binary files /dev/null and b/static/images/theme/thumbnail/ssokurenko-jekyll-smart-material.jpg differ diff --git a/static/images/theme/thumbnail/st4ple-solid-jekyll-master.jpg b/static/images/theme/thumbnail/st4ple-solid-jekyll-master.jpg deleted file mode 100644 index 5fd5885c0..000000000 Binary files a/static/images/theme/thumbnail/st4ple-solid-jekyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/st4ple-solid-jekyll.jpg b/static/images/theme/thumbnail/st4ple-solid-jekyll.jpg new file mode 100644 index 000000000..0ea9ca362 Binary files /dev/null and b/static/images/theme/thumbnail/st4ple-solid-jekyll.jpg differ diff --git a/static/images/theme/thumbnail/stackbit-stackbit-theme-ampersand-master.jpg b/static/images/theme/thumbnail/stackbit-stackbit-theme-ampersand-master.jpg deleted file mode 100644 index f133dc8f0..000000000 Binary files a/static/images/theme/thumbnail/stackbit-stackbit-theme-ampersand-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbit-stackbit-theme-azimuth-master.jpg b/static/images/theme/thumbnail/stackbit-stackbit-theme-azimuth-master.jpg deleted file mode 100644 index 2c82fdc46..000000000 Binary files a/static/images/theme/thumbnail/stackbit-stackbit-theme-azimuth-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbit-stackbit-theme-fjord-master.jpg b/static/images/theme/thumbnail/stackbit-stackbit-theme-fjord-master.jpg deleted file mode 100644 index c446e6cbb..000000000 Binary files a/static/images/theme/thumbnail/stackbit-stackbit-theme-fjord-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbit-stackbit-theme-fresh-master.jpg b/static/images/theme/thumbnail/stackbit-stackbit-theme-fresh-master.jpg deleted file mode 100644 index e5fae6254..000000000 Binary files a/static/images/theme/thumbnail/stackbit-stackbit-theme-fresh-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbit-stackbit-theme-starter-master.jpg b/static/images/theme/thumbnail/stackbit-stackbit-theme-starter-master.jpg deleted file mode 100644 index d118019ae..000000000 Binary files a/static/images/theme/thumbnail/stackbit-stackbit-theme-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbit-themes-agency-nextjs.jpg b/static/images/theme/thumbnail/stackbit-themes-agency-nextjs.jpg new file mode 100644 index 000000000..9dd1ab40b Binary files /dev/null and b/static/images/theme/thumbnail/stackbit-themes-agency-nextjs.jpg differ diff --git a/static/images/theme/thumbnail/stackbit-themes-ampersand-nextjs.jpg b/static/images/theme/thumbnail/stackbit-themes-ampersand-nextjs.jpg new file mode 100644 index 000000000..b8312ecaf Binary files /dev/null and b/static/images/theme/thumbnail/stackbit-themes-ampersand-nextjs.jpg differ diff --git a/static/images/theme/thumbnail/stackbit-themes-app-nextjs.jpg b/static/images/theme/thumbnail/stackbit-themes-app-nextjs.jpg new file mode 100644 index 000000000..36450a582 Binary files /dev/null and b/static/images/theme/thumbnail/stackbit-themes-app-nextjs.jpg differ diff --git a/static/images/theme/thumbnail/stackbit-themes-azimuth-gatsby-master.jpg b/static/images/theme/thumbnail/stackbit-themes-azimuth-gatsby-master.jpg deleted file mode 100644 index af69516ca..000000000 Binary files a/static/images/theme/thumbnail/stackbit-themes-azimuth-gatsby-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbit-themes-azimuth-hugo-master.jpg b/static/images/theme/thumbnail/stackbit-themes-azimuth-hugo-master.jpg deleted file mode 100644 index af69516ca..000000000 Binary files a/static/images/theme/thumbnail/stackbit-themes-azimuth-hugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbit-themes-azimuth-jekyll-master.jpg b/static/images/theme/thumbnail/stackbit-themes-azimuth-jekyll-master.jpg deleted file mode 100644 index af69516ca..000000000 Binary files a/static/images/theme/thumbnail/stackbit-themes-azimuth-jekyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbit-themes-azimuth-nextjs-master.jpg b/static/images/theme/thumbnail/stackbit-themes-azimuth-nextjs-master.jpg deleted file mode 100644 index af69516ca..000000000 Binary files a/static/images/theme/thumbnail/stackbit-themes-azimuth-nextjs-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbit-themes-azimuth-nextjs.jpg b/static/images/theme/thumbnail/stackbit-themes-azimuth-nextjs.jpg new file mode 100644 index 000000000..cdcd5c6cb Binary files /dev/null and b/static/images/theme/thumbnail/stackbit-themes-azimuth-nextjs.jpg differ diff --git a/static/images/theme/thumbnail/stackbit-themes-book-nextjs.jpg b/static/images/theme/thumbnail/stackbit-themes-book-nextjs.jpg new file mode 100644 index 000000000..e22226d91 Binary files /dev/null and b/static/images/theme/thumbnail/stackbit-themes-book-nextjs.jpg differ diff --git a/static/images/theme/thumbnail/stackbit-themes-diy-gatsby-master.jpg b/static/images/theme/thumbnail/stackbit-themes-diy-gatsby-master.jpg deleted file mode 100644 index 10223d733..000000000 Binary files a/static/images/theme/thumbnail/stackbit-themes-diy-gatsby-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbit-themes-diy-hugo-master.jpg b/static/images/theme/thumbnail/stackbit-themes-diy-hugo-master.jpg deleted file mode 100644 index 10223d733..000000000 Binary files a/static/images/theme/thumbnail/stackbit-themes-diy-hugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbit-themes-diy-jekyll-master.jpg b/static/images/theme/thumbnail/stackbit-themes-diy-jekyll-master.jpg deleted file mode 100644 index 10223d733..000000000 Binary files a/static/images/theme/thumbnail/stackbit-themes-diy-jekyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbit-stackbit-theme-diy-master.jpg b/static/images/theme/thumbnail/stackbit-themes-diy-nextjs.jpg similarity index 100% rename from static/images/theme/thumbnail/stackbit-stackbit-theme-diy-master.jpg rename to static/images/theme/thumbnail/stackbit-themes-diy-nextjs.jpg diff --git a/static/images/theme/thumbnail/stackbit-themes-event-nextjs.jpg b/static/images/theme/thumbnail/stackbit-themes-event-nextjs.jpg new file mode 100644 index 000000000..4a78d4d80 Binary files /dev/null and b/static/images/theme/thumbnail/stackbit-themes-event-nextjs.jpg differ diff --git a/static/images/theme/thumbnail/stackbit-themes-exto-gatsby-master.jpg b/static/images/theme/thumbnail/stackbit-themes-exto-gatsby-master.jpg deleted file mode 100644 index 60f7b7b87..000000000 Binary files a/static/images/theme/thumbnail/stackbit-themes-exto-gatsby-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbit-themes-exto-hugo-master.jpg b/static/images/theme/thumbnail/stackbit-themes-exto-hugo-master.jpg deleted file mode 100644 index 60f7b7b87..000000000 Binary files a/static/images/theme/thumbnail/stackbit-themes-exto-hugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbit-themes-exto-jekyll-master.jpg b/static/images/theme/thumbnail/stackbit-themes-exto-jekyll-master.jpg deleted file mode 100644 index 60f7b7b87..000000000 Binary files a/static/images/theme/thumbnail/stackbit-themes-exto-jekyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbit-stackbit-theme-exto-master.jpg b/static/images/theme/thumbnail/stackbit-themes-exto-nextjs.jpg similarity index 100% rename from static/images/theme/thumbnail/stackbit-stackbit-theme-exto-master.jpg rename to static/images/theme/thumbnail/stackbit-themes-exto-nextjs.jpg diff --git a/static/images/theme/thumbnail/stackbit-themes-fjord-gatsby-master.jpg b/static/images/theme/thumbnail/stackbit-themes-fjord-gatsby-master.jpg deleted file mode 100644 index 4c340dea8..000000000 Binary files a/static/images/theme/thumbnail/stackbit-themes-fjord-gatsby-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbit-themes-fjord-hugo-master.jpg b/static/images/theme/thumbnail/stackbit-themes-fjord-hugo-master.jpg deleted file mode 100644 index 4c340dea8..000000000 Binary files a/static/images/theme/thumbnail/stackbit-themes-fjord-hugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbit-themes-fjord-jekyll-master.jpg b/static/images/theme/thumbnail/stackbit-themes-fjord-jekyll-master.jpg deleted file mode 100644 index 4c340dea8..000000000 Binary files a/static/images/theme/thumbnail/stackbit-themes-fjord-jekyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbit-themes-fjord-nextjs.jpg b/static/images/theme/thumbnail/stackbit-themes-fjord-nextjs.jpg new file mode 100644 index 000000000..965fcfbbb Binary files /dev/null and b/static/images/theme/thumbnail/stackbit-themes-fjord-nextjs.jpg differ diff --git a/static/images/theme/thumbnail/stackbit-themes-fresh-nextjs.jpg b/static/images/theme/thumbnail/stackbit-themes-fresh-nextjs.jpg new file mode 100644 index 000000000..50b0ff202 Binary files /dev/null and b/static/images/theme/thumbnail/stackbit-themes-fresh-nextjs.jpg differ diff --git a/static/images/theme/thumbnail/stackbit-themes-libris-nextjs.jpg b/static/images/theme/thumbnail/stackbit-themes-libris-nextjs.jpg new file mode 100644 index 000000000..8074004be Binary files /dev/null and b/static/images/theme/thumbnail/stackbit-themes-libris-nextjs.jpg differ diff --git a/static/images/theme/thumbnail/stackbit-themes-personal-nextjs.jpg b/static/images/theme/thumbnail/stackbit-themes-personal-nextjs.jpg new file mode 100644 index 000000000..dfba61faa Binary files /dev/null and b/static/images/theme/thumbnail/stackbit-themes-personal-nextjs.jpg differ diff --git a/static/images/theme/thumbnail/stackbit-themes-podcaster-nextjs.jpg b/static/images/theme/thumbnail/stackbit-themes-podcaster-nextjs.jpg new file mode 100644 index 000000000..a97623be1 Binary files /dev/null and b/static/images/theme/thumbnail/stackbit-themes-podcaster-nextjs.jpg differ diff --git a/static/images/theme/thumbnail/stackbit-themes-stackbit-starter-gatsby-master.jpg b/static/images/theme/thumbnail/stackbit-themes-stackbit-starter-gatsby-master.jpg deleted file mode 100644 index a8a9435e0..000000000 Binary files a/static/images/theme/thumbnail/stackbit-themes-stackbit-starter-gatsby-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbit-themes-stackbit-starter-hugo-master.jpg b/static/images/theme/thumbnail/stackbit-themes-stackbit-starter-hugo-master.jpg deleted file mode 100644 index a8a9435e0..000000000 Binary files a/static/images/theme/thumbnail/stackbit-themes-stackbit-starter-hugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbit-themes-stackbit-starter-jekyll-master.jpg b/static/images/theme/thumbnail/stackbit-themes-stackbit-starter-jekyll-master.jpg deleted file mode 100644 index a8a9435e0..000000000 Binary files a/static/images/theme/thumbnail/stackbit-themes-stackbit-starter-jekyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbit-themes-stackbit-starter-nextjs-master.jpg b/static/images/theme/thumbnail/stackbit-themes-stackbit-starter-nextjs-master.jpg deleted file mode 100644 index a8a9435e0..000000000 Binary files a/static/images/theme/thumbnail/stackbit-themes-stackbit-starter-nextjs-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbit-stackbit-theme-vanilla-master.jpg b/static/images/theme/thumbnail/stackbit-themes-vanilla-jekyll.jpg similarity index 100% rename from static/images/theme/thumbnail/stackbit-stackbit-theme-vanilla-master.jpg rename to static/images/theme/thumbnail/stackbit-themes-vanilla-jekyll.jpg diff --git a/static/images/theme/thumbnail/stackbit-themes-vanilla-nextjs.jpg b/static/images/theme/thumbnail/stackbit-themes-vanilla-nextjs.jpg new file mode 100644 index 000000000..ab9b6bbca Binary files /dev/null and b/static/images/theme/thumbnail/stackbit-themes-vanilla-nextjs.jpg differ diff --git a/static/images/theme/thumbnail/stackbithq-stackbit-theme-ampersand-master.jpg b/static/images/theme/thumbnail/stackbithq-stackbit-theme-ampersand-master.jpg deleted file mode 100644 index 3ff034909..000000000 Binary files a/static/images/theme/thumbnail/stackbithq-stackbit-theme-ampersand-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbithq-stackbit-theme-azimuth-master.jpg b/static/images/theme/thumbnail/stackbithq-stackbit-theme-azimuth-master.jpg deleted file mode 100644 index af69516ca..000000000 Binary files a/static/images/theme/thumbnail/stackbithq-stackbit-theme-azimuth-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbithq-stackbit-theme-diy-master.jpg b/static/images/theme/thumbnail/stackbithq-stackbit-theme-diy-master.jpg deleted file mode 100644 index 10223d733..000000000 Binary files a/static/images/theme/thumbnail/stackbithq-stackbit-theme-diy-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbithq-stackbit-theme-exto-master.jpg b/static/images/theme/thumbnail/stackbithq-stackbit-theme-exto-master.jpg deleted file mode 100644 index 60f7b7b87..000000000 Binary files a/static/images/theme/thumbnail/stackbithq-stackbit-theme-exto-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbithq-stackbit-theme-fjord-master.jpg b/static/images/theme/thumbnail/stackbithq-stackbit-theme-fjord-master.jpg deleted file mode 100644 index 4c340dea8..000000000 Binary files a/static/images/theme/thumbnail/stackbithq-stackbit-theme-fjord-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbithq-stackbit-theme-fresh-master.jpg b/static/images/theme/thumbnail/stackbithq-stackbit-theme-fresh-master.jpg deleted file mode 100644 index b6a97ab28..000000000 Binary files a/static/images/theme/thumbnail/stackbithq-stackbit-theme-fresh-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbithq-stackbit-theme-libris-master.jpg b/static/images/theme/thumbnail/stackbithq-stackbit-theme-libris-master.jpg deleted file mode 100644 index 33df05ab7..000000000 Binary files a/static/images/theme/thumbnail/stackbithq-stackbit-theme-libris-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbithq-stackbit-theme-starter-master.jpg b/static/images/theme/thumbnail/stackbithq-stackbit-theme-starter-master.jpg deleted file mode 100644 index a8a9435e0..000000000 Binary files a/static/images/theme/thumbnail/stackbithq-stackbit-theme-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackbithq-stackbit-theme-vanilla-master.jpg b/static/images/theme/thumbnail/stackbithq-stackbit-theme-vanilla-master.jpg deleted file mode 100644 index 4d22b02a1..000000000 Binary files a/static/images/theme/thumbnail/stackbithq-stackbit-theme-vanilla-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackrole-gatsby-starter-foundation-master.jpg b/static/images/theme/thumbnail/stackrole-gatsby-starter-foundation-master.jpg deleted file mode 100644 index bc5767181..000000000 Binary files a/static/images/theme/thumbnail/stackrole-gatsby-starter-foundation-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stackrole-gatsby-starter-foundation.jpg b/static/images/theme/thumbnail/stackrole-gatsby-starter-foundation.jpg new file mode 100644 index 000000000..1805cb8bd Binary files /dev/null and b/static/images/theme/thumbnail/stackrole-gatsby-starter-foundation.jpg differ diff --git a/static/images/theme/thumbnail/statichunt-geeky-hugo.jpg b/static/images/theme/thumbnail/statichunt-geeky-hugo.jpg new file mode 100644 index 000000000..a0e01f1de Binary files /dev/null and b/static/images/theme/thumbnail/statichunt-geeky-hugo.jpg differ diff --git a/static/images/theme/thumbnail/staticmania-blogge-hugo-theme.jpg b/static/images/theme/thumbnail/staticmania-blogge-hugo-theme.jpg new file mode 100644 index 000000000..dbb86b840 Binary files /dev/null and b/static/images/theme/thumbnail/staticmania-blogge-hugo-theme.jpg differ diff --git a/static/images/theme/thumbnail/staticmania-hugo-apsho.jpg b/static/images/theme/thumbnail/staticmania-hugo-apsho.jpg new file mode 100644 index 000000000..62d390f45 Binary files /dev/null and b/static/images/theme/thumbnail/staticmania-hugo-apsho.jpg differ diff --git a/static/images/theme/thumbnail/staticmania-hugo-cohub.jpg b/static/images/theme/thumbnail/staticmania-hugo-cohub.jpg new file mode 100644 index 000000000..b00f7615d Binary files /dev/null and b/static/images/theme/thumbnail/staticmania-hugo-cohub.jpg differ diff --git a/static/images/theme/thumbnail/staticmania-portio-hugo.jpg b/static/images/theme/thumbnail/staticmania-portio-hugo.jpg new file mode 100644 index 000000000..53bf7a80c Binary files /dev/null and b/static/images/theme/thumbnail/staticmania-portio-hugo.jpg differ diff --git a/static/images/theme/thumbnail/staticmania-roxo-eleventy.jpg b/static/images/theme/thumbnail/staticmania-roxo-eleventy.jpg new file mode 100644 index 000000000..5ab7732fe Binary files /dev/null and b/static/images/theme/thumbnail/staticmania-roxo-eleventy.jpg differ diff --git a/static/images/theme/thumbnail/staticmania-roxo-hugo-master.jpg b/static/images/theme/thumbnail/staticmania-roxo-hugo-master.jpg deleted file mode 100644 index 26153511f..000000000 Binary files a/static/images/theme/thumbnail/staticmania-roxo-hugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stavrospanakakis-jekyll-cv.jpg b/static/images/theme/thumbnail/stavrospanakakis-jekyll-cv.jpg new file mode 100644 index 000000000..3d6b432d9 Binary files /dev/null and b/static/images/theme/thumbnail/stavrospanakakis-jekyll-cv.jpg differ diff --git a/static/images/theme/thumbnail/stephen-cloud-gatsby-markdown-material-typescript-starter-master.jpg b/static/images/theme/thumbnail/stephen-cloud-gatsby-markdown-material-typescript-starter-master.jpg deleted file mode 100644 index 743647179..000000000 Binary files a/static/images/theme/thumbnail/stephen-cloud-gatsby-markdown-material-typescript-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stephen-cloud-gatsby-markdown-material-typescript-starter.jpg b/static/images/theme/thumbnail/stephen-cloud-gatsby-markdown-material-typescript-starter.jpg new file mode 100644 index 000000000..393233070 Binary files /dev/null and b/static/images/theme/thumbnail/stephen-cloud-gatsby-markdown-material-typescript-starter.jpg differ diff --git a/static/images/theme/thumbnail/stevelane-hugo-icon-master.jpg b/static/images/theme/thumbnail/stevelane-hugo-icon-master.jpg deleted file mode 100644 index 73f718dd4..000000000 Binary files a/static/images/theme/thumbnail/stevelane-hugo-icon-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stijnvc-holo-alfa-master.jpg b/static/images/theme/thumbnail/stijnvc-holo-alfa-master.jpg deleted file mode 100644 index 1b5406d14..000000000 Binary files a/static/images/theme/thumbnail/stijnvc-holo-alfa-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/stijnvc-holo-alfa.jpg b/static/images/theme/thumbnail/stijnvc-holo-alfa.jpg new file mode 100644 index 000000000..a51e6ff12 Binary files /dev/null and b/static/images/theme/thumbnail/stijnvc-holo-alfa.jpg differ diff --git a/static/images/theme/thumbnail/storyblok-storyblok-gridsome-boilerplate-moon-master.jpg b/static/images/theme/thumbnail/storyblok-storyblok-gridsome-boilerplate-moon-master.jpg deleted file mode 100644 index 56f40e85a..000000000 Binary files a/static/images/theme/thumbnail/storyblok-storyblok-gridsome-boilerplate-moon-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/storyblok-storyblok-gridsome-boilerplate-moon.jpg b/static/images/theme/thumbnail/storyblok-storyblok-gridsome-boilerplate-moon.jpg new file mode 100644 index 000000000..ab15e33c2 Binary files /dev/null and b/static/images/theme/thumbnail/storyblok-storyblok-gridsome-boilerplate-moon.jpg differ diff --git a/static/images/theme/thumbnail/streetturtle-jekyll-clean-dark-gh-pages.jpg b/static/images/theme/thumbnail/streetturtle-jekyll-clean-dark-gh-pages.jpg deleted file mode 100644 index 53a5e5497..000000000 Binary files a/static/images/theme/thumbnail/streetturtle-jekyll-clean-dark-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/streetturtle-jekyll-clean-dark.jpg b/static/images/theme/thumbnail/streetturtle-jekyll-clean-dark.jpg new file mode 100644 index 000000000..0ec8e9e5c Binary files /dev/null and b/static/images/theme/thumbnail/streetturtle-jekyll-clean-dark.jpg differ diff --git a/static/images/theme/thumbnail/styxlab-gatsby-starter-try-ghost-master.jpg b/static/images/theme/thumbnail/styxlab-gatsby-starter-try-ghost-master.jpg deleted file mode 100644 index b91fa0667..000000000 Binary files a/static/images/theme/thumbnail/styxlab-gatsby-starter-try-ghost-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/styxlab-gatsby-starter-try-ghost.jpg b/static/images/theme/thumbnail/styxlab-gatsby-starter-try-ghost.jpg new file mode 100644 index 000000000..d6c981f1e Binary files /dev/null and b/static/images/theme/thumbnail/styxlab-gatsby-starter-try-ghost.jpg differ diff --git a/static/images/theme/thumbnail/styxlab-next-cms-ghost-master.jpg b/static/images/theme/thumbnail/styxlab-next-cms-ghost-master.jpg deleted file mode 100644 index 4c0dfa546..000000000 Binary files a/static/images/theme/thumbnail/styxlab-next-cms-ghost-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/styxlab-next-cms-ghost.jpg b/static/images/theme/thumbnail/styxlab-next-cms-ghost.jpg new file mode 100644 index 000000000..ed7f18e97 Binary files /dev/null and b/static/images/theme/thumbnail/styxlab-next-cms-ghost.jpg differ diff --git a/static/images/theme/thumbnail/sudorook-capsule-master.jpg b/static/images/theme/thumbnail/sudorook-capsule-master.jpg deleted file mode 100644 index c6060a39f..000000000 Binary files a/static/images/theme/thumbnail/sudorook-capsule-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/suheb-resume-master.jpg b/static/images/theme/thumbnail/suheb-resume-master.jpg deleted file mode 100644 index b8cb32dc0..000000000 Binary files a/static/images/theme/thumbnail/suheb-resume-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/suheb-resume.jpg b/static/images/theme/thumbnail/suheb-resume.jpg new file mode 100644 index 000000000..df1c42376 Binary files /dev/null and b/static/images/theme/thumbnail/suheb-resume.jpg differ diff --git a/static/images/theme/thumbnail/suits-at-netlifycms-gridsome-master.jpg b/static/images/theme/thumbnail/suits-at-netlifycms-gridsome-master.jpg deleted file mode 100644 index efff9145f..000000000 Binary files a/static/images/theme/thumbnail/suits-at-netlifycms-gridsome-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/suits-at-netlifycms-gridsome.jpg b/static/images/theme/thumbnail/suits-at-netlifycms-gridsome.jpg new file mode 100644 index 000000000..d350c112a Binary files /dev/null and b/static/images/theme/thumbnail/suits-at-netlifycms-gridsome.jpg differ diff --git a/static/images/theme/thumbnail/sujaykundu777-devlopr-jekyll-master.jpg b/static/images/theme/thumbnail/sujaykundu777-devlopr-jekyll-master.jpg deleted file mode 100644 index 5b9c78ea8..000000000 Binary files a/static/images/theme/thumbnail/sujaykundu777-devlopr-jekyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sujaykundu777-devlopr-jekyll.jpg b/static/images/theme/thumbnail/sujaykundu777-devlopr-jekyll.jpg new file mode 100644 index 000000000..e2ba4749c Binary files /dev/null and b/static/images/theme/thumbnail/sujaykundu777-devlopr-jekyll.jpg differ diff --git a/static/images/theme/thumbnail/sumeetmathpati-tiny-blog-master.jpg b/static/images/theme/thumbnail/sumeetmathpati-tiny-blog-master.jpg deleted file mode 100644 index 6d81b4bb6..000000000 Binary files a/static/images/theme/thumbnail/sumeetmathpati-tiny-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sunbliss-photorama-gh-pages.jpg b/static/images/theme/thumbnail/sunbliss-photorama-gh-pages.jpg deleted file mode 100644 index a603a44d2..000000000 Binary files a/static/images/theme/thumbnail/sunbliss-photorama-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sunbliss-photorama.jpg b/static/images/theme/thumbnail/sunbliss-photorama.jpg new file mode 100644 index 000000000..6e0daf726 Binary files /dev/null and b/static/images/theme/thumbnail/sunbliss-photorama.jpg differ diff --git a/static/images/theme/thumbnail/surjithctly-neat-starter-master.jpg b/static/images/theme/thumbnail/surjithctly-neat-starter-master.jpg deleted file mode 100644 index dd1941abc..000000000 Binary files a/static/images/theme/thumbnail/surjithctly-neat-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/surjithctly-neat-starter.jpg b/static/images/theme/thumbnail/surjithctly-neat-starter.jpg new file mode 100644 index 000000000..b715624d7 Binary files /dev/null and b/static/images/theme/thumbnail/surjithctly-neat-starter.jpg differ diff --git a/static/images/theme/thumbnail/svmiller-steve-ngvb-jekyll-template-master.jpg b/static/images/theme/thumbnail/svmiller-steve-ngvb-jekyll-template-master.jpg deleted file mode 100644 index ae8506337..000000000 Binary files a/static/images/theme/thumbnail/svmiller-steve-ngvb-jekyll-template-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sw-yx-jamstack-hackathon-starter-master.jpg b/static/images/theme/thumbnail/sw-yx-jamstack-hackathon-starter-master.jpg deleted file mode 100644 index cf3d92bf9..000000000 Binary files a/static/images/theme/thumbnail/sw-yx-jamstack-hackathon-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sw-yx-jamstack-hackathon-starter.jpg b/static/images/theme/thumbnail/sw-yx-jamstack-hackathon-starter.jpg new file mode 100644 index 000000000..1ab405c54 Binary files /dev/null and b/static/images/theme/thumbnail/sw-yx-jamstack-hackathon-starter.jpg differ diff --git a/static/images/theme/thumbnail/swanson-lagom-master.jpg b/static/images/theme/thumbnail/swanson-lagom-master.jpg deleted file mode 100644 index 766119a73..000000000 Binary files a/static/images/theme/thumbnail/swanson-lagom-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/swanson-lagom.jpg b/static/images/theme/thumbnail/swanson-lagom.jpg new file mode 100644 index 000000000..de5fce199 Binary files /dev/null and b/static/images/theme/thumbnail/swanson-lagom.jpg differ diff --git a/static/images/theme/thumbnail/swcool-landing-page-theme-master.jpg b/static/images/theme/thumbnail/swcool-landing-page-theme-master.jpg deleted file mode 100644 index 8697de2c7..000000000 Binary files a/static/images/theme/thumbnail/swcool-landing-page-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sylhare-type-on-strap-master.jpg b/static/images/theme/thumbnail/sylhare-type-on-strap-master.jpg deleted file mode 100644 index 39eb1ef96..000000000 Binary files a/static/images/theme/thumbnail/sylhare-type-on-strap-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sylhare-type-on-strap.jpg b/static/images/theme/thumbnail/sylhare-type-on-strap.jpg new file mode 100644 index 000000000..cc2d58da7 Binary files /dev/null and b/static/images/theme/thumbnail/sylhare-type-on-strap.jpg differ diff --git a/static/images/theme/thumbnail/syui-hugo-theme-air-master.jpg b/static/images/theme/thumbnail/syui-hugo-theme-air-master.jpg deleted file mode 100644 index 996b721d6..000000000 Binary files a/static/images/theme/thumbnail/syui-hugo-theme-air-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/syui-hugo-theme-wave-master.jpg b/static/images/theme/thumbnail/syui-hugo-theme-wave-master.jpg deleted file mode 100644 index 6275463cf..000000000 Binary files a/static/images/theme/thumbnail/syui-hugo-theme-wave-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/szhielelp-jekylltheme-projectgaia-master.jpg b/static/images/theme/thumbnail/szhielelp-jekylltheme-projectgaia-master.jpg deleted file mode 100644 index 95f2a0678..000000000 Binary files a/static/images/theme/thumbnail/szhielelp-jekylltheme-projectgaia-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/sziv2p-jekyll-theme-scaffold-master.jpg b/static/images/theme/thumbnail/sziv2p-jekyll-theme-scaffold-master.jpg deleted file mode 100644 index e6360e0b2..000000000 Binary files a/static/images/theme/thumbnail/sziv2p-jekyll-theme-scaffold-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/t413-singlepaged-gh-pages.jpg b/static/images/theme/thumbnail/t413-singlepaged-gh-pages.jpg deleted file mode 100644 index 70d2e628a..000000000 Binary files a/static/images/theme/thumbnail/t413-singlepaged-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/taikii-whiteplain-master.jpg b/static/images/theme/thumbnail/taikii-whiteplain-master.jpg deleted file mode 100644 index e89021d1a..000000000 Binary files a/static/images/theme/thumbnail/taikii-whiteplain-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/tajacks-lightspeed.jpg b/static/images/theme/thumbnail/tajacks-lightspeed.jpg new file mode 100644 index 000000000..b559356e2 Binary files /dev/null and b/static/images/theme/thumbnail/tajacks-lightspeed.jpg differ diff --git a/static/images/theme/thumbnail/taylantatli-halve-master.jpg b/static/images/theme/thumbnail/taylantatli-halve-master.jpg deleted file mode 100644 index 1eb29887b..000000000 Binary files a/static/images/theme/thumbnail/taylantatli-halve-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/taylantatli-halve.jpg b/static/images/theme/thumbnail/taylantatli-halve.jpg new file mode 100644 index 000000000..ea41b094c Binary files /dev/null and b/static/images/theme/thumbnail/taylantatli-halve.jpg differ diff --git a/static/images/theme/thumbnail/taylantatli-moon-master.jpg b/static/images/theme/thumbnail/taylantatli-moon-master.jpg deleted file mode 100644 index fd9509584..000000000 Binary files a/static/images/theme/thumbnail/taylantatli-moon-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/taylantatli-moon.jpg b/static/images/theme/thumbnail/taylantatli-moon.jpg new file mode 100644 index 000000000..5a3016d6f Binary files /dev/null and b/static/images/theme/thumbnail/taylantatli-moon.jpg differ diff --git a/static/images/theme/thumbnail/taylantatli-ramme-master.jpg b/static/images/theme/thumbnail/taylantatli-ramme-master.jpg deleted file mode 100644 index 752508491..000000000 Binary files a/static/images/theme/thumbnail/taylantatli-ramme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/taylantatli-ramme.jpg b/static/images/theme/thumbnail/taylantatli-ramme.jpg new file mode 100644 index 000000000..eeae922e4 Binary files /dev/null and b/static/images/theme/thumbnail/taylantatli-ramme.jpg differ diff --git a/static/images/theme/thumbnail/tazeg-hugo-blog-jeffprod-master.jpg b/static/images/theme/thumbnail/tazeg-hugo-blog-jeffprod-master.jpg deleted file mode 100644 index 41a9ad2f3..000000000 Binary files a/static/images/theme/thumbnail/tazeg-hugo-blog-jeffprod-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/tblyler-light-hugo-master.jpg b/static/images/theme/thumbnail/tblyler-light-hugo-master.jpg deleted file mode 100644 index 17a59dd63..000000000 Binary files a/static/images/theme/thumbnail/tblyler-light-hugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/tcbutler320-jek.jpg b/static/images/theme/thumbnail/tcbutler320-jek.jpg new file mode 100644 index 000000000..37e1e33e3 Binary files /dev/null and b/static/images/theme/thumbnail/tcbutler320-jek.jpg differ diff --git a/static/images/theme/thumbnail/tcbutler320-jekyll-theme-dumbarton-master.jpg b/static/images/theme/thumbnail/tcbutler320-jekyll-theme-dumbarton-master.jpg deleted file mode 100644 index 321cc8770..000000000 Binary files a/static/images/theme/thumbnail/tcbutler320-jekyll-theme-dumbarton-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/tcbutler320-jekyll-theme-dumbarton.jpg b/static/images/theme/thumbnail/tcbutler320-jekyll-theme-dumbarton.jpg new file mode 100644 index 000000000..d07e0ec28 Binary files /dev/null and b/static/images/theme/thumbnail/tcbutler320-jekyll-theme-dumbarton.jpg differ diff --git a/static/images/theme/thumbnail/teaware-gatsby-starter-point-master.jpg b/static/images/theme/thumbnail/teaware-gatsby-starter-point-master.jpg deleted file mode 100644 index 7989065f0..000000000 Binary files a/static/images/theme/thumbnail/teaware-gatsby-starter-point-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/teaware-gatsby-starter-point.jpg b/static/images/theme/thumbnail/teaware-gatsby-starter-point.jpg new file mode 100644 index 000000000..afc05dc86 Binary files /dev/null and b/static/images/theme/thumbnail/teaware-gatsby-starter-point.jpg differ diff --git a/static/images/theme/thumbnail/thakkaryash94-gatsby-github-personal-website-master.jpg b/static/images/theme/thumbnail/thakkaryash94-gatsby-github-personal-website-master.jpg deleted file mode 100644 index 62bfd41ef..000000000 Binary files a/static/images/theme/thumbnail/thakkaryash94-gatsby-github-personal-website-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/thakkaryash94-gatsby-github-personal-website.jpg b/static/images/theme/thumbnail/thakkaryash94-gatsby-github-personal-website.jpg new file mode 100644 index 000000000..281574db5 Binary files /dev/null and b/static/images/theme/thumbnail/thakkaryash94-gatsby-github-personal-website.jpg differ diff --git a/static/images/theme/thumbnail/the-development-flex-master.jpg b/static/images/theme/thumbnail/the-development-flex-master.jpg deleted file mode 100644 index c5864930c..000000000 Binary files a/static/images/theme/thumbnail/the-development-flex-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/the-development-flex.jpg b/static/images/theme/thumbnail/the-development-flex.jpg new file mode 100644 index 000000000..36d7fc51b Binary files /dev/null and b/static/images/theme/thumbnail/the-development-flex.jpg differ diff --git a/static/images/theme/thumbnail/the2ne-hugo-frais-master.jpg b/static/images/theme/thumbnail/the2ne-hugo-frais-master.jpg deleted file mode 100644 index 4c1864562..000000000 Binary files a/static/images/theme/thumbnail/the2ne-hugo-frais-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/thebakerdev-gatsby-starter-zenii-master.jpg b/static/images/theme/thumbnail/thebakerdev-gatsby-starter-zenii-master.jpg deleted file mode 100644 index e76626028..000000000 Binary files a/static/images/theme/thumbnail/thebakerdev-gatsby-starter-zenii-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/thebakerdev-gatsby-starter-zenii.jpg b/static/images/theme/thumbnail/thebakerdev-gatsby-starter-zenii.jpg new file mode 100644 index 000000000..c791e0a50 Binary files /dev/null and b/static/images/theme/thumbnail/thebakerdev-gatsby-starter-zenii.jpg differ diff --git a/static/images/theme/thumbnail/thecodemint-gatsby-starter-simple-master.jpg b/static/images/theme/thumbnail/thecodemint-gatsby-starter-simple-master.jpg deleted file mode 100644 index f03e4cd47..000000000 Binary files a/static/images/theme/thumbnail/thecodemint-gatsby-starter-simple-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/thedevslot-whatatheme-master.jpg b/static/images/theme/thumbnail/thedevslot-whatatheme-master.jpg deleted file mode 100644 index 44a4206ad..000000000 Binary files a/static/images/theme/thumbnail/thedevslot-whatatheme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/thedevslot-whatatheme.jpg b/static/images/theme/thumbnail/thedevslot-whatatheme.jpg new file mode 100644 index 000000000..ecb539a51 Binary files /dev/null and b/static/images/theme/thumbnail/thedevslot-whatatheme.jpg differ diff --git a/static/images/theme/thumbnail/themefisher-academia-hugo.jpg b/static/images/theme/thumbnail/themefisher-academia-hugo.jpg new file mode 100644 index 000000000..5d8e79dc2 Binary files /dev/null and b/static/images/theme/thumbnail/themefisher-academia-hugo.jpg differ diff --git a/static/images/theme/thumbnail/themefisher-airspace-hugo-master.jpg b/static/images/theme/thumbnail/themefisher-airspace-hugo-master.jpg deleted file mode 100644 index 4761bbea8..000000000 Binary files a/static/images/theme/thumbnail/themefisher-airspace-hugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/themefisher-airspace-hugo.jpg b/static/images/theme/thumbnail/themefisher-airspace-hugo.jpg new file mode 100644 index 000000000..b343bfadb Binary files /dev/null and b/static/images/theme/thumbnail/themefisher-airspace-hugo.jpg differ diff --git a/static/images/theme/thumbnail/themefisher-bigspring-light.jpg b/static/images/theme/thumbnail/themefisher-bigspring-light.jpg new file mode 100644 index 000000000..e22cffaf2 Binary files /dev/null and b/static/images/theme/thumbnail/themefisher-bigspring-light.jpg differ diff --git a/static/images/theme/thumbnail/themefisher-dot-hugo-documentation-theme-master.jpg b/static/images/theme/thumbnail/themefisher-dot-hugo-documentation-theme-master.jpg deleted file mode 100644 index 888032662..000000000 Binary files a/static/images/theme/thumbnail/themefisher-dot-hugo-documentation-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/themefisher-dot-hugo.jpg b/static/images/theme/thumbnail/themefisher-dot-hugo.jpg new file mode 100644 index 000000000..4e2fbefbb Binary files /dev/null and b/static/images/theme/thumbnail/themefisher-dot-hugo.jpg differ diff --git a/static/images/theme/thumbnail/themefisher-educenter-hugo.jpg b/static/images/theme/thumbnail/themefisher-educenter-hugo.jpg new file mode 100644 index 000000000..9e0db61e4 Binary files /dev/null and b/static/images/theme/thumbnail/themefisher-educenter-hugo.jpg differ diff --git a/static/images/theme/thumbnail/themefisher-hargo-hugo.jpg b/static/images/theme/thumbnail/themefisher-hargo-hugo.jpg new file mode 100644 index 000000000..5d070c73b Binary files /dev/null and b/static/images/theme/thumbnail/themefisher-hargo-hugo.jpg differ diff --git a/static/images/theme/thumbnail/themefisher-infinity-hugo-master.jpg b/static/images/theme/thumbnail/themefisher-infinity-hugo-master.jpg deleted file mode 100644 index d81997c06..000000000 Binary files a/static/images/theme/thumbnail/themefisher-infinity-hugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/themefisher-infinity-hugo.jpg b/static/images/theme/thumbnail/themefisher-infinity-hugo.jpg new file mode 100644 index 000000000..3e44371ee Binary files /dev/null and b/static/images/theme/thumbnail/themefisher-infinity-hugo.jpg differ diff --git a/static/images/theme/thumbnail/themefisher-kross-hugo-portfolio-template-master.jpg b/static/images/theme/thumbnail/themefisher-kross-hugo-portfolio-template-master.jpg deleted file mode 100644 index 5592892cc..000000000 Binary files a/static/images/theme/thumbnail/themefisher-kross-hugo-portfolio-template-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/themefisher-kross-hugo.jpg b/static/images/theme/thumbnail/themefisher-kross-hugo.jpg new file mode 100644 index 000000000..09e847308 Binary files /dev/null and b/static/images/theme/thumbnail/themefisher-kross-hugo.jpg differ diff --git a/static/images/theme/thumbnail/themefisher-meghna-hugo-master.jpg b/static/images/theme/thumbnail/themefisher-meghna-hugo-master.jpg deleted file mode 100644 index 2075b1707..000000000 Binary files a/static/images/theme/thumbnail/themefisher-meghna-hugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/themefisher-navigator-hugo-master.jpg b/static/images/theme/thumbnail/themefisher-navigator-hugo-master.jpg deleted file mode 100644 index 2cf85967c..000000000 Binary files a/static/images/theme/thumbnail/themefisher-navigator-hugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/themefisher-parsa-hugo.jpg b/static/images/theme/thumbnail/themefisher-parsa-hugo.jpg new file mode 100644 index 000000000..74c286e4f Binary files /dev/null and b/static/images/theme/thumbnail/themefisher-parsa-hugo.jpg differ diff --git a/static/images/theme/thumbnail/themefisher-restaurant-hugo-master.jpg b/static/images/theme/thumbnail/themefisher-restaurant-hugo-master.jpg deleted file mode 100644 index 5cf54428e..000000000 Binary files a/static/images/theme/thumbnail/themefisher-restaurant-hugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/themefisher-timer-hugo-master.jpg b/static/images/theme/thumbnail/themefisher-timer-hugo-master.jpg deleted file mode 100644 index dbd7d2045..000000000 Binary files a/static/images/theme/thumbnail/themefisher-timer-hugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/themefisher-timer-hugo.jpg b/static/images/theme/thumbnail/themefisher-timer-hugo.jpg new file mode 100644 index 000000000..399cf9102 Binary files /dev/null and b/static/images/theme/thumbnail/themefisher-timer-hugo.jpg differ diff --git a/static/images/theme/thumbnail/themefisher-twenty-twenty-hugo.jpg b/static/images/theme/thumbnail/themefisher-twenty-twenty-hugo.jpg new file mode 100644 index 000000000..6a7debe94 Binary files /dev/null and b/static/images/theme/thumbnail/themefisher-twenty-twenty-hugo.jpg differ diff --git a/static/images/theme/thumbnail/themefisher-vex-hugo-master.jpg b/static/images/theme/thumbnail/themefisher-vex-hugo-master.jpg deleted file mode 100644 index d62d1dea9..000000000 Binary files a/static/images/theme/thumbnail/themefisher-vex-hugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/themefisher-vex-hugo.jpg b/static/images/theme/thumbnail/themefisher-vex-hugo.jpg new file mode 100644 index 000000000..95d7af5ec Binary files /dev/null and b/static/images/theme/thumbnail/themefisher-vex-hugo.jpg differ diff --git a/static/images/theme/thumbnail/themeselection-materio-mui-react-nextjs-admin-template-free.jpg b/static/images/theme/thumbnail/themeselection-materio-mui-react-nextjs-admin-template-free.jpg new file mode 100644 index 000000000..7bcbaec0b Binary files /dev/null and b/static/images/theme/thumbnail/themeselection-materio-mui-react-nextjs-admin-template-free.jpg differ diff --git a/static/images/theme/thumbnail/thenewdynamic-gohugo-theme-ananke.jpg b/static/images/theme/thumbnail/thenewdynamic-gohugo-theme-ananke.jpg new file mode 100644 index 000000000..44ef05da4 Binary files /dev/null and b/static/images/theme/thumbnail/thenewdynamic-gohugo-theme-ananke.jpg differ diff --git a/static/images/theme/thumbnail/thephuse-strange_case-gh-pages.jpg b/static/images/theme/thumbnail/thephuse-strange_case-gh-pages.jpg deleted file mode 100644 index d891ec7c2..000000000 Binary files a/static/images/theme/thumbnail/thephuse-strange_case-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/thephuse-strange_case.jpg b/static/images/theme/thumbnail/thephuse-strange_case.jpg new file mode 100644 index 000000000..1795e6290 Binary files /dev/null and b/static/images/theme/thumbnail/thephuse-strange_case.jpg differ diff --git a/static/images/theme/thumbnail/thetrevorharmon-gatsby-starter-typescript-sass-master.jpg b/static/images/theme/thumbnail/thetrevorharmon-gatsby-starter-typescript-sass-master.jpg deleted file mode 100644 index 85319fe35..000000000 Binary files a/static/images/theme/thumbnail/thetrevorharmon-gatsby-starter-typescript-sass-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/thetrevorharmon-gatsby-starter-typescript-sass.jpg b/static/images/theme/thumbnail/thetrevorharmon-gatsby-starter-typescript-sass.jpg new file mode 100644 index 000000000..acd292c51 Binary files /dev/null and b/static/images/theme/thumbnail/thetrevorharmon-gatsby-starter-typescript-sass.jpg differ diff --git a/static/images/theme/thumbnail/thiagorossener-jekflix-template-master.jpg b/static/images/theme/thumbnail/thiagorossener-jekflix-template-master.jpg deleted file mode 100644 index 352c4950b..000000000 Binary files a/static/images/theme/thumbnail/thiagorossener-jekflix-template-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/thiagorossener-jekflix-template.jpg b/static/images/theme/thumbnail/thiagorossener-jekflix-template.jpg new file mode 100644 index 000000000..3734c0e4f Binary files /dev/null and b/static/images/theme/thumbnail/thiagorossener-jekflix-template.jpg differ diff --git a/static/images/theme/thumbnail/thingsym-hugo-theme-techdoc-master.jpg b/static/images/theme/thumbnail/thingsym-hugo-theme-techdoc-master.jpg deleted file mode 100644 index ded605f0d..000000000 Binary files a/static/images/theme/thumbnail/thingsym-hugo-theme-techdoc-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/thinker3197-ink-master.jpg b/static/images/theme/thumbnail/thinker3197-ink-master.jpg deleted file mode 100644 index bc99d7b50..000000000 Binary files a/static/images/theme/thumbnail/thinker3197-ink-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/thinker3197-ink.jpg b/static/images/theme/thumbnail/thinker3197-ink.jpg new file mode 100644 index 000000000..80e75afde Binary files /dev/null and b/static/images/theme/thumbnail/thinker3197-ink.jpg differ diff --git a/static/images/theme/thumbnail/thomasheller-crab-master.jpg b/static/images/theme/thumbnail/thomasheller-crab-master.jpg deleted file mode 100644 index 8e6ad5c4f..000000000 Binary files a/static/images/theme/thumbnail/thomasheller-crab-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/thomaswangio-gatsby-personal-starter-blog-master.jpg b/static/images/theme/thumbnail/thomaswangio-gatsby-personal-starter-blog-master.jpg deleted file mode 100644 index dd65405a5..000000000 Binary files a/static/images/theme/thumbnail/thomaswangio-gatsby-personal-starter-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/thomaswangio-gatsby-personal-starter-blog.jpg b/static/images/theme/thumbnail/thomaswangio-gatsby-personal-starter-blog.jpg new file mode 100644 index 000000000..72eaf030a Binary files /dev/null and b/static/images/theme/thumbnail/thomaswangio-gatsby-personal-starter-blog.jpg differ diff --git a/static/images/theme/thumbnail/thomaswangio-gatsby-starter-primer-master.jpg b/static/images/theme/thumbnail/thomaswangio-gatsby-starter-primer-master.jpg deleted file mode 100644 index 2b4063166..000000000 Binary files a/static/images/theme/thumbnail/thomaswangio-gatsby-starter-primer-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/thomaswangio-gatsby-starter-primer.jpg b/static/images/theme/thumbnail/thomaswangio-gatsby-starter-primer.jpg new file mode 100644 index 000000000..a14dfd3d7 Binary files /dev/null and b/static/images/theme/thumbnail/thomaswangio-gatsby-starter-primer.jpg differ diff --git a/static/images/theme/thumbnail/thriveweb-yellowcake-master.jpg b/static/images/theme/thumbnail/thriveweb-yellowcake-master.jpg deleted file mode 100644 index 15595a7ff..000000000 Binary files a/static/images/theme/thumbnail/thriveweb-yellowcake-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/thriveweb-yellowcake.jpg b/static/images/theme/thumbnail/thriveweb-yellowcake.jpg new file mode 100644 index 000000000..8a6774189 Binary files /dev/null and b/static/images/theme/thumbnail/thriveweb-yellowcake.jpg differ diff --git a/static/images/theme/thumbnail/thundermiracle-gatsby-simple-blog-master.jpg b/static/images/theme/thumbnail/thundermiracle-gatsby-simple-blog-master.jpg deleted file mode 100644 index 24dd46ffe..000000000 Binary files a/static/images/theme/thumbnail/thundermiracle-gatsby-simple-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/thundermiracle-gatsby-simple-blog.jpg b/static/images/theme/thumbnail/thundermiracle-gatsby-simple-blog.jpg new file mode 100644 index 000000000..f9bd80c6d Binary files /dev/null and b/static/images/theme/thumbnail/thundermiracle-gatsby-simple-blog.jpg differ diff --git a/static/images/theme/thumbnail/tigefa4u-jekmdl-gh-pages.jpg b/static/images/theme/thumbnail/tigefa4u-jekmdl-gh-pages.jpg deleted file mode 100644 index 3253c9d2b..000000000 Binary files a/static/images/theme/thumbnail/tigefa4u-jekmdl-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/tigefa4u-jekmdl.jpg b/static/images/theme/thumbnail/tigefa4u-jekmdl.jpg new file mode 100644 index 000000000..262055a17 Binary files /dev/null and b/static/images/theme/thumbnail/tigefa4u-jekmdl.jpg differ diff --git a/static/images/theme/thumbnail/timlrx-tailwind-nextjs-starter-blog-master.jpg b/static/images/theme/thumbnail/timlrx-tailwind-nextjs-starter-blog-master.jpg deleted file mode 100644 index 484ed4c0c..000000000 Binary files a/static/images/theme/thumbnail/timlrx-tailwind-nextjs-starter-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/timlrx-tailwind-nextjs-starter-blog.jpg b/static/images/theme/thumbnail/timlrx-tailwind-nextjs-starter-blog.jpg new file mode 100644 index 000000000..ebb2bab9f Binary files /dev/null and b/static/images/theme/thumbnail/timlrx-tailwind-nextjs-starter-blog.jpg differ diff --git a/static/images/theme/thumbnail/tnguyen-blueface-master.jpg b/static/images/theme/thumbnail/tnguyen-blueface-master.jpg deleted file mode 100644 index b08337ab2..000000000 Binary files a/static/images/theme/thumbnail/tnguyen-blueface-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/tnguyen-blueface.jpg b/static/images/theme/thumbnail/tnguyen-blueface.jpg new file mode 100644 index 000000000..6aea27aa4 Binary files /dev/null and b/static/images/theme/thumbnail/tnguyen-blueface.jpg differ diff --git a/static/images/theme/thumbnail/tnwhitwell-hugo-startpage-theme-master.jpg b/static/images/theme/thumbnail/tnwhitwell-hugo-startpage-theme-master.jpg deleted file mode 100644 index 691f5cfff..000000000 Binary files a/static/images/theme/thumbnail/tnwhitwell-hugo-startpage-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/toboko-gatsby-starter-fine-master.jpg b/static/images/theme/thumbnail/toboko-gatsby-starter-fine-master.jpg deleted file mode 100644 index 80f89fc53..000000000 Binary files a/static/images/theme/thumbnail/toboko-gatsby-starter-fine-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/toboko-gatsby-starter-fine.jpg b/static/images/theme/thumbnail/toboko-gatsby-starter-fine.jpg new file mode 100644 index 000000000..831a80c52 Binary files /dev/null and b/static/images/theme/thumbnail/toboko-gatsby-starter-fine.jpg differ diff --git a/static/images/theme/thumbnail/tocttou-hacker-blog-master.jpg b/static/images/theme/thumbnail/tocttou-hacker-blog-master.jpg deleted file mode 100644 index 80c9699f9..000000000 Binary files a/static/images/theme/thumbnail/tocttou-hacker-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/tocttou-hacker-blog.jpg b/static/images/theme/thumbnail/tocttou-hacker-blog.jpg new file mode 100644 index 000000000..66694c2da Binary files /dev/null and b/static/images/theme/thumbnail/tocttou-hacker-blog.jpg differ diff --git a/static/images/theme/thumbnail/tolking-vuepress-theme-ououe-master.jpg b/static/images/theme/thumbnail/tolking-vuepress-theme-ououe-master.jpg deleted file mode 100644 index e08cfdcb4..000000000 Binary files a/static/images/theme/thumbnail/tolking-vuepress-theme-ououe-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/tolking-vuepress-theme-ououe.jpg b/static/images/theme/thumbnail/tolking-vuepress-theme-ououe.jpg new file mode 100644 index 000000000..9abcd6a84 Binary files /dev/null and b/static/images/theme/thumbnail/tolking-vuepress-theme-ououe.jpg differ diff --git a/static/images/theme/thumbnail/tomanistor-osprey-master.jpg b/static/images/theme/thumbnail/tomanistor-osprey-master.jpg deleted file mode 100644 index 100108635..000000000 Binary files a/static/images/theme/thumbnail/tomanistor-osprey-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/tomanistor-osprey.jpg b/static/images/theme/thumbnail/tomanistor-osprey.jpg new file mode 100644 index 000000000..d6c305136 Binary files /dev/null and b/static/images/theme/thumbnail/tomanistor-osprey.jpg differ diff --git a/static/images/theme/thumbnail/tomekskuta-gatsby-starter-intl-master.jpg b/static/images/theme/thumbnail/tomekskuta-gatsby-starter-intl-master.jpg deleted file mode 100644 index ad2bceced..000000000 Binary files a/static/images/theme/thumbnail/tomekskuta-gatsby-starter-intl-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/tomekskuta-gatsby-starter-intl.jpg b/static/images/theme/thumbnail/tomekskuta-gatsby-starter-intl.jpg new file mode 100644 index 000000000..800c67252 Binary files /dev/null and b/static/images/theme/thumbnail/tomekskuta-gatsby-starter-intl.jpg differ diff --git a/static/images/theme/thumbnail/tomjohnson1492-documentation-theme-jekyll-gh-pages.jpg b/static/images/theme/thumbnail/tomjohnson1492-documentation-theme-jekyll-gh-pages.jpg deleted file mode 100644 index 1c2eced52..000000000 Binary files a/static/images/theme/thumbnail/tomjohnson1492-documentation-theme-jekyll-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/tomjohnson1492-documentation-theme-jekyll.jpg b/static/images/theme/thumbnail/tomjohnson1492-documentation-theme-jekyll.jpg new file mode 100644 index 000000000..86823b26b Binary files /dev/null and b/static/images/theme/thumbnail/tomjohnson1492-documentation-theme-jekyll.jpg differ diff --git a/static/images/theme/thumbnail/tomoyukikashiro-gatsby-starter-blog-amp-to-pwa-master.jpg b/static/images/theme/thumbnail/tomoyukikashiro-gatsby-starter-blog-amp-to-pwa-master.jpg deleted file mode 100644 index ee1f08d23..000000000 Binary files a/static/images/theme/thumbnail/tomoyukikashiro-gatsby-starter-blog-amp-to-pwa-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/tomoyukikashiro-gatsby-starter-blog-amp-to-pwa.jpg b/static/images/theme/thumbnail/tomoyukikashiro-gatsby-starter-blog-amp-to-pwa.jpg new file mode 100644 index 000000000..870a2abc4 Binary files /dev/null and b/static/images/theme/thumbnail/tomoyukikashiro-gatsby-starter-blog-amp-to-pwa.jpg differ diff --git a/static/images/theme/thumbnail/tomrutgers-middleman-starter-netlify-cms-master.jpg b/static/images/theme/thumbnail/tomrutgers-middleman-starter-netlify-cms-master.jpg deleted file mode 100644 index 59ac32bd8..000000000 Binary files a/static/images/theme/thumbnail/tomrutgers-middleman-starter-netlify-cms-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/tomrutgers-middleman-starter-netlify-cms.jpg b/static/images/theme/thumbnail/tomrutgers-middleman-starter-netlify-cms.jpg new file mode 100644 index 000000000..c05af2f8e Binary files /dev/null and b/static/images/theme/thumbnail/tomrutgers-middleman-starter-netlify-cms.jpg differ diff --git a/static/images/theme/thumbnail/tosi29-inkblotty-master.jpg b/static/images/theme/thumbnail/tosi29-inkblotty-master.jpg deleted file mode 100644 index 8d96bf280..000000000 Binary files a/static/images/theme/thumbnail/tosi29-inkblotty-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/track3-hermit-master.jpg b/static/images/theme/thumbnail/track3-hermit-master.jpg deleted file mode 100644 index 524bf3394..000000000 Binary files a/static/images/theme/thumbnail/track3-hermit-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/tradly-platform-butterflies.jpg b/static/images/theme/thumbnail/tradly-platform-butterflies.jpg new file mode 100644 index 000000000..f53cba457 Binary files /dev/null and b/static/images/theme/thumbnail/tradly-platform-butterflies.jpg differ diff --git a/static/images/theme/thumbnail/transitive-bullshit-nextjs-notion-starter-kit.jpg b/static/images/theme/thumbnail/transitive-bullshit-nextjs-notion-starter-kit.jpg new file mode 100644 index 000000000..fd799b684 Binary files /dev/null and b/static/images/theme/thumbnail/transitive-bullshit-nextjs-notion-starter-kit.jpg differ diff --git a/static/images/theme/thumbnail/tryghost-eleventy-starter-ghost-master.jpg b/static/images/theme/thumbnail/tryghost-eleventy-starter-ghost-master.jpg deleted file mode 100644 index 361e954fc..000000000 Binary files a/static/images/theme/thumbnail/tryghost-eleventy-starter-ghost-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/tryghost-eleventy-starter-ghost.jpg b/static/images/theme/thumbnail/tryghost-eleventy-starter-ghost.jpg new file mode 100644 index 000000000..a6fdba016 Binary files /dev/null and b/static/images/theme/thumbnail/tryghost-eleventy-starter-ghost.jpg differ diff --git a/static/images/theme/thumbnail/tryghost-gatsby-starter-ghost-master.jpg b/static/images/theme/thumbnail/tryghost-gatsby-starter-ghost-master.jpg deleted file mode 100644 index 08a532b1d..000000000 Binary files a/static/images/theme/thumbnail/tryghost-gatsby-starter-ghost-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/tryghost-gatsby-starter-ghost.jpg b/static/images/theme/thumbnail/tryghost-gatsby-starter-ghost.jpg new file mode 100644 index 000000000..fa445d9d2 Binary files /dev/null and b/static/images/theme/thumbnail/tryghost-gatsby-starter-ghost.jpg differ diff --git a/static/images/theme/thumbnail/ttntm-11ty-landing-page.jpg b/static/images/theme/thumbnail/ttntm-11ty-landing-page.jpg new file mode 100644 index 000000000..5c7dddda3 Binary files /dev/null and b/static/images/theme/thumbnail/ttntm-11ty-landing-page.jpg differ diff --git a/static/images/theme/thumbnail/ttntm-hugo-landing-page.jpg b/static/images/theme/thumbnail/ttntm-hugo-landing-page.jpg new file mode 100644 index 000000000..dd809e4d0 Binary files /dev/null and b/static/images/theme/thumbnail/ttntm-hugo-landing-page.jpg differ diff --git a/static/images/theme/thumbnail/ttskch-jekyll-ttskch-theme-master.jpg b/static/images/theme/thumbnail/ttskch-jekyll-ttskch-theme-master.jpg deleted file mode 100644 index 95d7e05e8..000000000 Binary files a/static/images/theme/thumbnail/ttskch-jekyll-ttskch-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ttskch-jekyll-ttskch-theme.jpg b/static/images/theme/thumbnail/ttskch-jekyll-ttskch-theme.jpg new file mode 100644 index 000000000..22eeba407 Binary files /dev/null and b/static/images/theme/thumbnail/ttskch-jekyll-ttskch-theme.jpg differ diff --git a/static/images/theme/thumbnail/tummychow-lanyon-hugo-master.jpg b/static/images/theme/thumbnail/tummychow-lanyon-hugo-master.jpg deleted file mode 100644 index 3a3eb9beb..000000000 Binary files a/static/images/theme/thumbnail/tummychow-lanyon-hugo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/tummychow-lanyon-hugo.jpg b/static/images/theme/thumbnail/tummychow-lanyon-hugo.jpg new file mode 100644 index 000000000..c5eafaa78 Binary files /dev/null and b/static/images/theme/thumbnail/tummychow-lanyon-hugo.jpg differ diff --git a/static/images/theme/thumbnail/tybenz-exemplar-master.jpg b/static/images/theme/thumbnail/tybenz-exemplar-master.jpg deleted file mode 100644 index db6b204ed..000000000 Binary files a/static/images/theme/thumbnail/tybenz-exemplar-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/tybenz-exemplar.jpg b/static/images/theme/thumbnail/tybenz-exemplar.jpg new file mode 100644 index 000000000..0fbcbd610 Binary files /dev/null and b/static/images/theme/thumbnail/tybenz-exemplar.jpg differ diff --git a/static/images/theme/thumbnail/tybenz-otter-pop-gh-pages.jpg b/static/images/theme/thumbnail/tybenz-otter-pop-gh-pages.jpg deleted file mode 100644 index 643d378c5..000000000 Binary files a/static/images/theme/thumbnail/tybenz-otter-pop-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/tybenz-otter-pop.jpg b/static/images/theme/thumbnail/tybenz-otter-pop.jpg new file mode 100644 index 000000000..fef08647f Binary files /dev/null and b/static/images/theme/thumbnail/tybenz-otter-pop.jpg differ diff --git a/static/images/theme/thumbnail/tylergreulich-gatsby-typescript-mdx-prismjs-starter-master.jpg b/static/images/theme/thumbnail/tylergreulich-gatsby-typescript-mdx-prismjs-starter-master.jpg deleted file mode 100644 index de66b5b4f..000000000 Binary files a/static/images/theme/thumbnail/tylergreulich-gatsby-typescript-mdx-prismjs-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/tylergreulich-gatsby-typescript-mdx-prismjs-starter.jpg b/static/images/theme/thumbnail/tylergreulich-gatsby-typescript-mdx-prismjs-starter.jpg new file mode 100644 index 000000000..52522aebf Binary files /dev/null and b/static/images/theme/thumbnail/tylergreulich-gatsby-typescript-mdx-prismjs-starter.jpg differ diff --git a/static/images/theme/thumbnail/tylermroderick-fernfolio-11ty-template.jpg b/static/images/theme/thumbnail/tylermroderick-fernfolio-11ty-template.jpg new file mode 100644 index 000000000..d9ae49f8c Binary files /dev/null and b/static/images/theme/thumbnail/tylermroderick-fernfolio-11ty-template.jpg differ diff --git a/static/images/theme/thumbnail/tzuehlke-jekyll-uno-timeline-master.jpg b/static/images/theme/thumbnail/tzuehlke-jekyll-uno-timeline-master.jpg deleted file mode 100644 index b3726beed..000000000 Binary files a/static/images/theme/thumbnail/tzuehlke-jekyll-uno-timeline-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ueno-llc-ueno-gatsby-starter-master.jpg b/static/images/theme/thumbnail/ueno-llc-ueno-gatsby-starter-master.jpg deleted file mode 100644 index dcdacbe78..000000000 Binary files a/static/images/theme/thumbnail/ueno-llc-ueno-gatsby-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ueno-llc-ueno-gatsby-starter.jpg b/static/images/theme/thumbnail/ueno-llc-ueno-gatsby-starter.jpg new file mode 100644 index 000000000..47273e955 Binary files /dev/null and b/static/images/theme/thumbnail/ueno-llc-ueno-gatsby-starter.jpg differ diff --git a/static/images/theme/thumbnail/ugglr-gatsby-clean-portfolio-master.jpg b/static/images/theme/thumbnail/ugglr-gatsby-clean-portfolio-master.jpg deleted file mode 100644 index c5409a164..000000000 Binary files a/static/images/theme/thumbnail/ugglr-gatsby-clean-portfolio-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ugglr-gatsby-clean-portfolio.jpg b/static/images/theme/thumbnail/ugglr-gatsby-clean-portfolio.jpg new file mode 100644 index 000000000..810068035 Binary files /dev/null and b/static/images/theme/thumbnail/ugglr-gatsby-clean-portfolio.jpg differ diff --git a/static/images/theme/thumbnail/uicardiodev-hugo-lime-master.jpg b/static/images/theme/thumbnail/uicardiodev-hugo-lime-master.jpg deleted file mode 100644 index 0eef26ece..000000000 Binary files a/static/images/theme/thumbnail/uicardiodev-hugo-lime-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/uicardiodev-hugo-sodium-theme-master.jpg b/static/images/theme/thumbnail/uicardiodev-hugo-sodium-theme-master.jpg deleted file mode 100644 index 2fb041e63..000000000 Binary files a/static/images/theme/thumbnail/uicardiodev-hugo-sodium-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/uicardiodev-hugo-uilite-master.jpg b/static/images/theme/thumbnail/uicardiodev-hugo-uilite-master.jpg deleted file mode 100644 index 499043b96..000000000 Binary files a/static/images/theme/thumbnail/uicardiodev-hugo-uilite-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/unifreak-unifreak.github.io-master.jpg b/static/images/theme/thumbnail/unifreak-unifreak.github.io-master.jpg deleted file mode 100644 index 5c59c501c..000000000 Binary files a/static/images/theme/thumbnail/unifreak-unifreak.github.io-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/unifreak-unifreak.github.io.jpg b/static/images/theme/thumbnail/unifreak-unifreak.github.io.jpg new file mode 100644 index 000000000..284d4fc33 Binary files /dev/null and b/static/images/theme/thumbnail/unifreak-unifreak.github.io.jpg differ diff --git a/static/images/theme/thumbnail/upagge-ublogger-master.jpg b/static/images/theme/thumbnail/upagge-ublogger-master.jpg deleted file mode 100644 index 85757cb76..000000000 Binary files a/static/images/theme/thumbnail/upagge-ublogger-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/upagge-ublogger.jpg b/static/images/theme/thumbnail/upagge-ublogger.jpg new file mode 100644 index 000000000..a87da962c Binary files /dev/null and b/static/images/theme/thumbnail/upagge-ublogger.jpg differ diff --git a/static/images/theme/thumbnail/v4iv-gatsby-starter-business-master.jpg b/static/images/theme/thumbnail/v4iv-gatsby-starter-business-master.jpg deleted file mode 100644 index 39dcb4e48..000000000 Binary files a/static/images/theme/thumbnail/v4iv-gatsby-starter-business-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/v4iv-gatsby-starter-business.jpg b/static/images/theme/thumbnail/v4iv-gatsby-starter-business.jpg new file mode 100644 index 000000000..651a042eb Binary files /dev/null and b/static/images/theme/thumbnail/v4iv-gatsby-starter-business.jpg differ diff --git a/static/images/theme/thumbnail/vaga-hugo-theme-m10c-master.jpg b/static/images/theme/thumbnail/vaga-hugo-theme-m10c-master.jpg deleted file mode 100644 index f60671e6f..000000000 Binary files a/static/images/theme/thumbnail/vaga-hugo-theme-m10c-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/vagr9k-gatsby-advanced-starter-master.jpg b/static/images/theme/thumbnail/vagr9k-gatsby-advanced-starter-master.jpg deleted file mode 100644 index 1eb29887b..000000000 Binary files a/static/images/theme/thumbnail/vagr9k-gatsby-advanced-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/vagr9k-gatsby-advanced-starter.jpg b/static/images/theme/thumbnail/vagr9k-gatsby-advanced-starter.jpg new file mode 100644 index 000000000..694ec02e5 Binary files /dev/null and b/static/images/theme/thumbnail/vagr9k-gatsby-advanced-starter.jpg differ diff --git a/static/images/theme/thumbnail/vagr9k-gatsby-material-starter-master.jpg b/static/images/theme/thumbnail/vagr9k-gatsby-material-starter-master.jpg deleted file mode 100644 index 6dd364bf2..000000000 Binary files a/static/images/theme/thumbnail/vagr9k-gatsby-material-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/vagr9k-gatsby-material-starter.jpg b/static/images/theme/thumbnail/vagr9k-gatsby-material-starter.jpg new file mode 100644 index 000000000..cd7043f51 Binary files /dev/null and b/static/images/theme/thumbnail/vagr9k-gatsby-material-starter.jpg differ diff --git a/static/images/theme/thumbnail/vantagedesign-ace-documentation-master.jpg b/static/images/theme/thumbnail/vantagedesign-ace-documentation-master.jpg deleted file mode 100644 index 15c39cf66..000000000 Binary files a/static/images/theme/thumbnail/vantagedesign-ace-documentation-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/vantagedesign-ace-documentation.jpg b/static/images/theme/thumbnail/vantagedesign-ace-documentation.jpg new file mode 100644 index 000000000..2d26504cc Binary files /dev/null and b/static/images/theme/thumbnail/vantagedesign-ace-documentation.jpg differ diff --git a/static/images/theme/thumbnail/vercel-next.js-master.jpg b/static/images/theme/thumbnail/vercel-next.js-master.jpg deleted file mode 100644 index 803f9d169..000000000 Binary files a/static/images/theme/thumbnail/vercel-next.js-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/vercel-next.js.jpg b/static/images/theme/thumbnail/vercel-next.js.jpg new file mode 100644 index 000000000..6bb373945 Binary files /dev/null and b/static/images/theme/thumbnail/vercel-next.js.jpg differ diff --git a/static/images/theme/thumbnail/vfalanis-taken-master.jpg b/static/images/theme/thumbnail/vfalanis-taken-master.jpg deleted file mode 100644 index 33b937ab0..000000000 Binary files a/static/images/theme/thumbnail/vfalanis-taken-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/vfvong-jekyll-theme-quartz.jpg b/static/images/theme/thumbnail/vfvong-jekyll-theme-quartz.jpg new file mode 100644 index 000000000..94e63eb8b Binary files /dev/null and b/static/images/theme/thumbnail/vfvong-jekyll-theme-quartz.jpg differ diff --git a/static/images/theme/thumbnail/vfvong-jekyll-theme-tao.jpg b/static/images/theme/thumbnail/vfvong-jekyll-theme-tao.jpg new file mode 100644 index 000000000..325be6d3b Binary files /dev/null and b/static/images/theme/thumbnail/vfvong-jekyll-theme-tao.jpg differ diff --git a/static/images/theme/thumbnail/victoriadrake-hugo-theme-introduction-master.jpg b/static/images/theme/thumbnail/victoriadrake-hugo-theme-introduction-master.jpg deleted file mode 100644 index 7c5211aa0..000000000 Binary files a/static/images/theme/thumbnail/victoriadrake-hugo-theme-introduction-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/victoriadrake-hugo-theme-introduction.jpg b/static/images/theme/thumbnail/victoriadrake-hugo-theme-introduction.jpg new file mode 100644 index 000000000..f9019bf5f Binary files /dev/null and b/static/images/theme/thumbnail/victoriadrake-hugo-theme-introduction.jpg differ diff --git a/static/images/theme/thumbnail/victoriadrake-hugo-theme-sam-master.jpg b/static/images/theme/thumbnail/victoriadrake-hugo-theme-sam-master.jpg deleted file mode 100644 index 2167c232c..000000000 Binary files a/static/images/theme/thumbnail/victoriadrake-hugo-theme-sam-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/victorvoid-space-jekyll-template-master.jpg b/static/images/theme/thumbnail/victorvoid-space-jekyll-template-master.jpg deleted file mode 100644 index 5747cd10d..000000000 Binary files a/static/images/theme/thumbnail/victorvoid-space-jekyll-template-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/victorvoid-space-jekyll-template.jpg b/static/images/theme/thumbnail/victorvoid-space-jekyll-template.jpg new file mode 100644 index 000000000..84b84d478 Binary files /dev/null and b/static/images/theme/thumbnail/victorvoid-space-jekyll-template.jpg differ diff --git a/static/images/theme/thumbnail/vietanhdev-benice17-master.jpg b/static/images/theme/thumbnail/vietanhdev-benice17-master.jpg deleted file mode 100644 index ae2c08370..000000000 Binary files a/static/images/theme/thumbnail/vietanhdev-benice17-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/vietanhdev-benice17.jpg b/static/images/theme/thumbnail/vietanhdev-benice17.jpg new file mode 100644 index 000000000..da3dceee0 Binary files /dev/null and b/static/images/theme/thumbnail/vietanhdev-benice17.jpg differ diff --git a/static/images/theme/thumbnail/vietanhdev-hugo-curious.jpg b/static/images/theme/thumbnail/vietanhdev-hugo-curious.jpg new file mode 100644 index 000000000..80db2f456 Binary files /dev/null and b/static/images/theme/thumbnail/vietanhdev-hugo-curious.jpg differ diff --git a/static/images/theme/thumbnail/viko16-vuepress-theme-simple-master.jpg b/static/images/theme/thumbnail/viko16-vuepress-theme-simple-master.jpg deleted file mode 100644 index 0575168de..000000000 Binary files a/static/images/theme/thumbnail/viko16-vuepress-theme-simple-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/viko16-vuepress-theme-simple.jpg b/static/images/theme/thumbnail/viko16-vuepress-theme-simple.jpg new file mode 100644 index 000000000..3e06f0b29 Binary files /dev/null and b/static/images/theme/thumbnail/viko16-vuepress-theme-simple.jpg differ diff --git a/static/images/theme/thumbnail/vimux-binario-master.jpg b/static/images/theme/thumbnail/vimux-binario-master.jpg deleted file mode 100644 index 53406cad6..000000000 Binary files a/static/images/theme/thumbnail/vimux-binario-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/vimux-blank-master.jpg b/static/images/theme/thumbnail/vimux-blank-master.jpg deleted file mode 100644 index 23501d922..000000000 Binary files a/static/images/theme/thumbnail/vimux-blank-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/vimux-mainroad-master.jpg b/static/images/theme/thumbnail/vimux-mainroad-master.jpg deleted file mode 100644 index a05cf0281..000000000 Binary files a/static/images/theme/thumbnail/vimux-mainroad-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/vimux-mainroad.jpg b/static/images/theme/thumbnail/vimux-mainroad.jpg new file mode 100644 index 000000000..fb19a4801 Binary files /dev/null and b/static/images/theme/thumbnail/vimux-mainroad.jpg differ diff --git a/static/images/theme/thumbnail/vincentchan-mickey-master.jpg b/static/images/theme/thumbnail/vincentchan-mickey-master.jpg deleted file mode 100644 index 9fe20c2db..000000000 Binary files a/static/images/theme/thumbnail/vincentchan-mickey-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/vincentchan-mickey.jpg b/static/images/theme/thumbnail/vincentchan-mickey.jpg new file mode 100644 index 000000000..8b2fd228c Binary files /dev/null and b/static/images/theme/thumbnail/vincentchan-mickey.jpg differ diff --git a/static/images/theme/thumbnail/vinitkumar-white-paper-gh-pages.jpg b/static/images/theme/thumbnail/vinitkumar-white-paper-gh-pages.jpg deleted file mode 100644 index 9cd897cae..000000000 Binary files a/static/images/theme/thumbnail/vinitkumar-white-paper-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/vinitkumar-white-paper.jpg b/static/images/theme/thumbnail/vinitkumar-white-paper.jpg new file mode 100644 index 000000000..0068a79a5 Binary files /dev/null and b/static/images/theme/thumbnail/vinitkumar-white-paper.jpg differ diff --git a/static/images/theme/thumbnail/vividvilla-ezhil-master.jpg b/static/images/theme/thumbnail/vividvilla-ezhil-master.jpg deleted file mode 100644 index 4ed479276..000000000 Binary files a/static/images/theme/thumbnail/vividvilla-ezhil-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/vividvilla-ezhil.jpg b/static/images/theme/thumbnail/vividvilla-ezhil.jpg new file mode 100644 index 000000000..ff26675d0 Binary files /dev/null and b/static/images/theme/thumbnail/vividvilla-ezhil.jpg differ diff --git a/static/images/theme/thumbnail/volny-creative-theme-jekyll-master.jpg b/static/images/theme/thumbnail/volny-creative-theme-jekyll-master.jpg deleted file mode 100644 index 5ef50edec..000000000 Binary files a/static/images/theme/thumbnail/volny-creative-theme-jekyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/volny-creative-theme-jekyll.jpg b/static/images/theme/thumbnail/volny-creative-theme-jekyll.jpg new file mode 100644 index 000000000..fe4afcb62 Binary files /dev/null and b/static/images/theme/thumbnail/volny-creative-theme-jekyll.jpg differ diff --git a/static/images/theme/thumbnail/volny-stylish-portfolio-jekyll-master.jpg b/static/images/theme/thumbnail/volny-stylish-portfolio-jekyll-master.jpg deleted file mode 100644 index d6ede8ee6..000000000 Binary files a/static/images/theme/thumbnail/volny-stylish-portfolio-jekyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/volny-stylish-portfolio-jekyll.jpg b/static/images/theme/thumbnail/volny-stylish-portfolio-jekyll.jpg new file mode 100644 index 000000000..10287dfdf Binary files /dev/null and b/static/images/theme/thumbnail/volny-stylish-portfolio-jekyll.jpg differ diff --git a/static/images/theme/thumbnail/vormwald-joon-master.jpg b/static/images/theme/thumbnail/vormwald-joon-master.jpg deleted file mode 100644 index f3578b8b8..000000000 Binary files a/static/images/theme/thumbnail/vormwald-joon-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/vormwald-joon.jpg b/static/images/theme/thumbnail/vormwald-joon.jpg new file mode 100644 index 000000000..a49f2cef1 Binary files /dev/null and b/static/images/theme/thumbnail/vormwald-joon.jpg differ diff --git a/static/images/theme/thumbnail/vszhub-not-pure-poole-master.jpg b/static/images/theme/thumbnail/vszhub-not-pure-poole-master.jpg deleted file mode 100644 index 0573cfec8..000000000 Binary files a/static/images/theme/thumbnail/vszhub-not-pure-poole-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/vszhub-not-pure-poole.jpg b/static/images/theme/thumbnail/vszhub-not-pure-poole.jpg new file mode 100644 index 000000000..5c48359a1 Binary files /dev/null and b/static/images/theme/thumbnail/vszhub-not-pure-poole.jpg differ diff --git a/static/images/theme/thumbnail/vvalchev-creative-theme-jekyll-new-master.jpg b/static/images/theme/thumbnail/vvalchev-creative-theme-jekyll-new-master.jpg deleted file mode 100644 index 86211c93c..000000000 Binary files a/static/images/theme/thumbnail/vvalchev-creative-theme-jekyll-new-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/vvalchev-creative-theme-jekyll-new.jpg b/static/images/theme/thumbnail/vvalchev-creative-theme-jekyll-new.jpg new file mode 100644 index 000000000..253a31878 Binary files /dev/null and b/static/images/theme/thumbnail/vvalchev-creative-theme-jekyll-new.jpg differ diff --git a/static/images/theme/thumbnail/vvelox-hugo-dusky-neon-potato-master.jpg b/static/images/theme/thumbnail/vvelox-hugo-dusky-neon-potato-master.jpg deleted file mode 100644 index ec7b9b900..000000000 Binary files a/static/images/theme/thumbnail/vvelox-hugo-dusky-neon-potato-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/w3layouts-gatsby-starter-delog-master.jpg b/static/images/theme/thumbnail/w3layouts-gatsby-starter-delog-master.jpg deleted file mode 100644 index 3be14c124..000000000 Binary files a/static/images/theme/thumbnail/w3layouts-gatsby-starter-delog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/w3layouts-gatsby-starter-delog.jpg b/static/images/theme/thumbnail/w3layouts-gatsby-starter-delog.jpg new file mode 100644 index 000000000..b63a4645b Binary files /dev/null and b/static/images/theme/thumbnail/w3layouts-gatsby-starter-delog.jpg differ diff --git a/static/images/theme/thumbnail/wangchucheng-hugo-eureka-master.jpg b/static/images/theme/thumbnail/wangchucheng-hugo-eureka-master.jpg deleted file mode 100644 index 40b89dd15..000000000 Binary files a/static/images/theme/thumbnail/wangchucheng-hugo-eureka-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/wangonya-flexible-gatsby-master.jpg b/static/images/theme/thumbnail/wangonya-flexible-gatsby-master.jpg deleted file mode 100644 index b9b32a4f8..000000000 Binary files a/static/images/theme/thumbnail/wangonya-flexible-gatsby-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/wangonya-flexible-gatsby.jpg b/static/images/theme/thumbnail/wangonya-flexible-gatsby.jpg new file mode 100644 index 000000000..2bbd0b430 Binary files /dev/null and b/static/images/theme/thumbnail/wangonya-flexible-gatsby.jpg differ diff --git a/static/images/theme/thumbnail/wangonya-the-plain-gatsby-master.jpg b/static/images/theme/thumbnail/wangonya-the-plain-gatsby-master.jpg deleted file mode 100644 index 250db5950..000000000 Binary files a/static/images/theme/thumbnail/wangonya-the-plain-gatsby-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/wangonya-the-plain-gatsby.jpg b/static/images/theme/thumbnail/wangonya-the-plain-gatsby.jpg new file mode 100644 index 000000000..ec967f04e Binary files /dev/null and b/static/images/theme/thumbnail/wangonya-the-plain-gatsby.jpg differ diff --git a/static/images/theme/thumbnail/wannaxiao-vuepress-theme-resume-master.jpg b/static/images/theme/thumbnail/wannaxiao-vuepress-theme-resume-master.jpg deleted file mode 100644 index 94b286764..000000000 Binary files a/static/images/theme/thumbnail/wannaxiao-vuepress-theme-resume-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/wd-hugo-fabric-master.jpg b/static/images/theme/thumbnail/wd-hugo-fabric-master.jpg deleted file mode 100644 index f8c47e7f1..000000000 Binary files a/static/images/theme/thumbnail/wd-hugo-fabric-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/webcu-gatsby-material-kit-react-master.jpg b/static/images/theme/thumbnail/webcu-gatsby-material-kit-react-master.jpg deleted file mode 100644 index 8090304c4..000000000 Binary files a/static/images/theme/thumbnail/webcu-gatsby-material-kit-react-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/webcu-gatsby-material-kit-react.jpg b/static/images/theme/thumbnail/webcu-gatsby-material-kit-react.jpg new file mode 100644 index 000000000..adc2a878f Binary files /dev/null and b/static/images/theme/thumbnail/webcu-gatsby-material-kit-react.jpg differ diff --git a/static/images/theme/thumbnail/wemake-services-jekyll-theme-hackcss-gh-pages.jpg b/static/images/theme/thumbnail/wemake-services-jekyll-theme-hackcss-gh-pages.jpg deleted file mode 100644 index 7397e269e..000000000 Binary files a/static/images/theme/thumbnail/wemake-services-jekyll-theme-hackcss-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/wemake-services-jekyll-theme-hackcss.jpg b/static/images/theme/thumbnail/wemake-services-jekyll-theme-hackcss.jpg new file mode 100644 index 000000000..59e9e36b0 Binary files /dev/null and b/static/images/theme/thumbnail/wemake-services-jekyll-theme-hackcss.jpg differ diff --git a/static/images/theme/thumbnail/wgao19-docusaurus-theme-no-style-master.jpg b/static/images/theme/thumbnail/wgao19-docusaurus-theme-no-style-master.jpg deleted file mode 100644 index 89c7af1fb..000000000 Binary files a/static/images/theme/thumbnail/wgao19-docusaurus-theme-no-style-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/wgao19-docusaurus-theme-no-style.jpg b/static/images/theme/thumbnail/wgao19-docusaurus-theme-no-style.jpg new file mode 100644 index 000000000..90d66689b Binary files /dev/null and b/static/images/theme/thumbnail/wgao19-docusaurus-theme-no-style.jpg differ diff --git a/static/images/theme/thumbnail/whoan-vuepress-theme-canvas-master.jpg b/static/images/theme/thumbnail/whoan-vuepress-theme-canvas-master.jpg deleted file mode 100644 index 29076d2d0..000000000 Binary files a/static/images/theme/thumbnail/whoan-vuepress-theme-canvas-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/whoan-vuepress-theme-canvas.jpg b/static/images/theme/thumbnail/whoan-vuepress-theme-canvas.jpg new file mode 100644 index 000000000..c8e6afd6a Binary files /dev/null and b/static/images/theme/thumbnail/whoan-vuepress-theme-canvas.jpg differ diff --git a/static/images/theme/thumbnail/whoisryosuke-gatsby-documentation-starter-master.jpg b/static/images/theme/thumbnail/whoisryosuke-gatsby-documentation-starter-master.jpg deleted file mode 100644 index be34f163a..000000000 Binary files a/static/images/theme/thumbnail/whoisryosuke-gatsby-documentation-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/whoisryosuke-gatsby-documentation-starter.jpg b/static/images/theme/thumbnail/whoisryosuke-gatsby-documentation-starter.jpg new file mode 100644 index 000000000..d669400fa Binary files /dev/null and b/static/images/theme/thumbnail/whoisryosuke-gatsby-documentation-starter.jpg differ diff --git a/static/images/theme/thumbnail/wild-flame-jekyll-simple-master.jpg b/static/images/theme/thumbnail/wild-flame-jekyll-simple-master.jpg deleted file mode 100644 index 7f18f760d..000000000 Binary files a/static/images/theme/thumbnail/wild-flame-jekyll-simple-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/wild-flame-jekyll-simple.jpg b/static/images/theme/thumbnail/wild-flame-jekyll-simple.jpg new file mode 100644 index 000000000..689395f31 Binary files /dev/null and b/static/images/theme/thumbnail/wild-flame-jekyll-simple.jpg differ diff --git a/static/images/theme/thumbnail/wildhaber-gohugo-amp-develop.jpg b/static/images/theme/thumbnail/wildhaber-gohugo-amp-develop.jpg deleted file mode 100644 index dc94afc3e..000000000 Binary files a/static/images/theme/thumbnail/wildhaber-gohugo-amp-develop.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/wildhaber-gohugo-amp.jpg b/static/images/theme/thumbnail/wildhaber-gohugo-amp.jpg new file mode 100644 index 000000000..2d2a4e883 Binary files /dev/null and b/static/images/theme/thumbnail/wildhaber-gohugo-amp.jpg differ diff --git a/static/images/theme/thumbnail/wileybaba-hugo-theme-robotico-master.jpg b/static/images/theme/thumbnail/wileybaba-hugo-theme-robotico-master.jpg deleted file mode 100644 index 4db155b20..000000000 Binary files a/static/images/theme/thumbnail/wileybaba-hugo-theme-robotico-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/willcode4food-gatsby-starter-paperbase-master.jpg b/static/images/theme/thumbnail/willcode4food-gatsby-starter-paperbase-master.jpg deleted file mode 100644 index 83b84e88b..000000000 Binary files a/static/images/theme/thumbnail/willcode4food-gatsby-starter-paperbase-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/willcode4food-gatsby-starter-paperbase.jpg b/static/images/theme/thumbnail/willcode4food-gatsby-starter-paperbase.jpg new file mode 100644 index 000000000..94eb8d5d2 Binary files /dev/null and b/static/images/theme/thumbnail/willcode4food-gatsby-starter-paperbase.jpg differ diff --git a/static/images/theme/thumbnail/williamcanin-typing-jekyll-template-master.jpg b/static/images/theme/thumbnail/williamcanin-typing-jekyll-template-master.jpg deleted file mode 100644 index 741115d47..000000000 Binary files a/static/images/theme/thumbnail/williamcanin-typing-jekyll-template-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/williamcanin-typing-jekyll-template.jpg b/static/images/theme/thumbnail/williamcanin-typing-jekyll-template.jpg new file mode 100644 index 000000000..86a8679d0 Binary files /dev/null and b/static/images/theme/thumbnail/williamcanin-typing-jekyll-template.jpg differ diff --git a/static/images/theme/thumbnail/willianjusten-cards-jekyll-template-gh-pages.jpg b/static/images/theme/thumbnail/willianjusten-cards-jekyll-template-gh-pages.jpg deleted file mode 100644 index 6949993e8..000000000 Binary files a/static/images/theme/thumbnail/willianjusten-cards-jekyll-template-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/willianjusten-cards-jekyll-template.jpg b/static/images/theme/thumbnail/willianjusten-cards-jekyll-template.jpg new file mode 100644 index 000000000..29f8794a3 Binary files /dev/null and b/static/images/theme/thumbnail/willianjusten-cards-jekyll-template.jpg differ diff --git a/static/images/theme/thumbnail/willianjusten-will-jekyll-template-gh-pages.jpg b/static/images/theme/thumbnail/willianjusten-will-jekyll-template-gh-pages.jpg deleted file mode 100644 index 50b6ec69b..000000000 Binary files a/static/images/theme/thumbnail/willianjusten-will-jekyll-template-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/willianjusten-will-jekyll-template.jpg b/static/images/theme/thumbnail/willianjusten-will-jekyll-template.jpg new file mode 100644 index 000000000..0e22e48e3 Binary files /dev/null and b/static/images/theme/thumbnail/willianjusten-will-jekyll-template.jpg differ diff --git a/static/images/theme/thumbnail/willjw3-gatsby-starter-developer-diary-master.jpg b/static/images/theme/thumbnail/willjw3-gatsby-starter-developer-diary-master.jpg deleted file mode 100644 index 04664f987..000000000 Binary files a/static/images/theme/thumbnail/willjw3-gatsby-starter-developer-diary-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/willjw3-gatsby-starter-developer-diary.jpg b/static/images/theme/thumbnail/willjw3-gatsby-starter-developer-diary.jpg new file mode 100644 index 000000000..5639e68ba Binary files /dev/null and b/static/images/theme/thumbnail/willjw3-gatsby-starter-developer-diary.jpg differ diff --git a/static/images/theme/thumbnail/windedge-gatsby-tailwind-serif-master.jpg b/static/images/theme/thumbnail/windedge-gatsby-tailwind-serif-master.jpg deleted file mode 100644 index 6f175f083..000000000 Binary files a/static/images/theme/thumbnail/windedge-gatsby-tailwind-serif-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/windedge-gatsby-tailwind-serif.jpg b/static/images/theme/thumbnail/windedge-gatsby-tailwind-serif.jpg new file mode 100644 index 000000000..428bd27cd Binary files /dev/null and b/static/images/theme/thumbnail/windedge-gatsby-tailwind-serif.jpg differ diff --git a/static/images/theme/thumbnail/wiredcraft-carte-gh-pages.jpg b/static/images/theme/thumbnail/wiredcraft-carte-gh-pages.jpg deleted file mode 100644 index 2eefbebc2..000000000 Binary files a/static/images/theme/thumbnail/wiredcraft-carte-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/wiredcraft-carte.jpg b/static/images/theme/thumbnail/wiredcraft-carte.jpg new file mode 100644 index 000000000..7a2e62a27 Binary files /dev/null and b/static/images/theme/thumbnail/wiredcraft-carte.jpg differ diff --git a/static/images/theme/thumbnail/wkocjan-gatsby-airtable-listing-master.jpg b/static/images/theme/thumbnail/wkocjan-gatsby-airtable-listing-master.jpg deleted file mode 100644 index ed19f919e..000000000 Binary files a/static/images/theme/thumbnail/wkocjan-gatsby-airtable-listing-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/wkocjan-gatsby-airtable-listing.jpg b/static/images/theme/thumbnail/wkocjan-gatsby-airtable-listing.jpg new file mode 100644 index 000000000..cd1a9b913 Binary files /dev/null and b/static/images/theme/thumbnail/wkocjan-gatsby-airtable-listing.jpg differ diff --git a/static/images/theme/thumbnail/wkocjan-gatsby-contentful-portfolio-master.jpg b/static/images/theme/thumbnail/wkocjan-gatsby-contentful-portfolio-master.jpg deleted file mode 100644 index 0fa0a5008..000000000 Binary files a/static/images/theme/thumbnail/wkocjan-gatsby-contentful-portfolio-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/wkocjan-gatsby-contentful-portfolio.jpg b/static/images/theme/thumbnail/wkocjan-gatsby-contentful-portfolio.jpg new file mode 100644 index 000000000..2d68964c3 Binary files /dev/null and b/static/images/theme/thumbnail/wkocjan-gatsby-contentful-portfolio.jpg differ diff --git a/static/images/theme/thumbnail/wkocjan-gatsby-theme-intro-master.jpg b/static/images/theme/thumbnail/wkocjan-gatsby-theme-intro-master.jpg deleted file mode 100644 index 8465b5906..000000000 Binary files a/static/images/theme/thumbnail/wkocjan-gatsby-theme-intro-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/wkocjan-gatsby-theme-intro.jpg b/static/images/theme/thumbnail/wkocjan-gatsby-theme-intro.jpg new file mode 100644 index 000000000..f4e326564 Binary files /dev/null and b/static/images/theme/thumbnail/wkocjan-gatsby-theme-intro.jpg differ diff --git a/static/images/theme/thumbnail/wowthemesnet-affiliates-jekyll-theme-master.jpg b/static/images/theme/thumbnail/wowthemesnet-affiliates-jekyll-theme-master.jpg deleted file mode 100644 index ff39b80ea..000000000 Binary files a/static/images/theme/thumbnail/wowthemesnet-affiliates-jekyll-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/wowthemesnet-affiliates-jekyll-theme.jpg b/static/images/theme/thumbnail/wowthemesnet-affiliates-jekyll-theme.jpg new file mode 100644 index 000000000..a45624f05 Binary files /dev/null and b/static/images/theme/thumbnail/wowthemesnet-affiliates-jekyll-theme.jpg differ diff --git a/static/images/theme/thumbnail/wowthemesnet-jekyll-theme-memoirs-master.jpg b/static/images/theme/thumbnail/wowthemesnet-jekyll-theme-memoirs-master.jpg deleted file mode 100644 index a3ae7af34..000000000 Binary files a/static/images/theme/thumbnail/wowthemesnet-jekyll-theme-memoirs-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/wowthemesnet-jekyll-theme-memoirs.jpg b/static/images/theme/thumbnail/wowthemesnet-jekyll-theme-memoirs.jpg new file mode 100644 index 000000000..ef1bf49de Binary files /dev/null and b/static/images/theme/thumbnail/wowthemesnet-jekyll-theme-memoirs.jpg differ diff --git a/static/images/theme/thumbnail/wowthemesnet-mediumish-theme-jekyll-master.jpg b/static/images/theme/thumbnail/wowthemesnet-mediumish-theme-jekyll-master.jpg deleted file mode 100644 index 92db02ddf..000000000 Binary files a/static/images/theme/thumbnail/wowthemesnet-mediumish-theme-jekyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/wowthemesnet-mediumish-theme-jekyll.jpg b/static/images/theme/thumbnail/wowthemesnet-mediumish-theme-jekyll.jpg new file mode 100644 index 000000000..0d292e01c Binary files /dev/null and b/static/images/theme/thumbnail/wowthemesnet-mediumish-theme-jekyll.jpg differ diff --git a/static/images/theme/thumbnail/wowthemesnet-mediumish-vuepress-blog-theme-master.jpg b/static/images/theme/thumbnail/wowthemesnet-mediumish-vuepress-blog-theme-master.jpg deleted file mode 100644 index c6abdac2d..000000000 Binary files a/static/images/theme/thumbnail/wowthemesnet-mediumish-vuepress-blog-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/wowthemesnet-mediumish-vuepress-blog-theme.jpg b/static/images/theme/thumbnail/wowthemesnet-mediumish-vuepress-blog-theme.jpg new file mode 100644 index 000000000..1d3060d48 Binary files /dev/null and b/static/images/theme/thumbnail/wowthemesnet-mediumish-vuepress-blog-theme.jpg differ diff --git a/static/images/theme/thumbnail/wowthemesnet-mundana-theme-jekyll-master.jpg b/static/images/theme/thumbnail/wowthemesnet-mundana-theme-jekyll-master.jpg deleted file mode 100644 index 474cac78f..000000000 Binary files a/static/images/theme/thumbnail/wowthemesnet-mundana-theme-jekyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/wowthemesnet-mundana-theme-jekyll.jpg b/static/images/theme/thumbnail/wowthemesnet-mundana-theme-jekyll.jpg new file mode 100644 index 000000000..5b28fd189 Binary files /dev/null and b/static/images/theme/thumbnail/wowthemesnet-mundana-theme-jekyll.jpg differ diff --git a/static/images/theme/thumbnail/wrappixel-flexy-admin-nextjs-free.jpg b/static/images/theme/thumbnail/wrappixel-flexy-admin-nextjs-free.jpg new file mode 100644 index 000000000..93160afad Binary files /dev/null and b/static/images/theme/thumbnail/wrappixel-flexy-admin-nextjs-free.jpg differ diff --git a/static/images/theme/thumbnail/wrappixel-materialpro-nuxtjs-free.jpg b/static/images/theme/thumbnail/wrappixel-materialpro-nuxtjs-free.jpg new file mode 100644 index 000000000..4a74eeb42 Binary files /dev/null and b/static/images/theme/thumbnail/wrappixel-materialpro-nuxtjs-free.jpg differ diff --git a/static/images/theme/thumbnail/wrappixel-xtreme-admin-nextjs-free.jpg b/static/images/theme/thumbnail/wrappixel-xtreme-admin-nextjs-free.jpg new file mode 100644 index 000000000..e26cf8298 Binary files /dev/null and b/static/images/theme/thumbnail/wrappixel-xtreme-admin-nextjs-free.jpg differ diff --git a/static/images/theme/thumbnail/wu-kan-wu-kan.github.io-master.jpg b/static/images/theme/thumbnail/wu-kan-wu-kan.github.io-master.jpg deleted file mode 100644 index feaa4e33b..000000000 Binary files a/static/images/theme/thumbnail/wu-kan-wu-kan.github.io-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/wu-kan-wu-kan.github.io.jpg b/static/images/theme/thumbnail/wu-kan-wu-kan.github.io.jpg new file mode 100644 index 000000000..fecbeea0a Binary files /dev/null and b/static/images/theme/thumbnail/wu-kan-wu-kan.github.io.jpg differ diff --git a/static/images/theme/thumbnail/xaprb-story-master.jpg b/static/images/theme/thumbnail/xaprb-story-master.jpg deleted file mode 100644 index 6112474fa..000000000 Binary files a/static/images/theme/thumbnail/xaprb-story-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/xaprb-story.jpg b/static/images/theme/thumbnail/xaprb-story.jpg new file mode 100644 index 000000000..d83e80380 Binary files /dev/null and b/static/images/theme/thumbnail/xaprb-story.jpg differ diff --git a/static/images/theme/thumbnail/xaviablaza-hugo-lodi-theme-master.jpg b/static/images/theme/thumbnail/xaviablaza-hugo-lodi-theme-master.jpg deleted file mode 100644 index 8082b3615..000000000 Binary files a/static/images/theme/thumbnail/xaviablaza-hugo-lodi-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/xdesro-nuxt-netlify-cms-starter-master.jpg b/static/images/theme/thumbnail/xdesro-nuxt-netlify-cms-starter-master.jpg deleted file mode 100644 index f244619dc..000000000 Binary files a/static/images/theme/thumbnail/xdesro-nuxt-netlify-cms-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/xdesro-nuxt-netlify-cms-starter.jpg b/static/images/theme/thumbnail/xdesro-nuxt-netlify-cms-starter.jpg new file mode 100644 index 000000000..57e486705 Binary files /dev/null and b/static/images/theme/thumbnail/xdesro-nuxt-netlify-cms-starter.jpg differ diff --git a/static/images/theme/thumbnail/xianmin-hugo-theme-jane-master.jpg b/static/images/theme/thumbnail/xianmin-hugo-theme-jane-master.jpg deleted file mode 100644 index 06e726dcb..000000000 Binary files a/static/images/theme/thumbnail/xianmin-hugo-theme-jane-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/xianmin-hugo-theme-jane.jpg b/static/images/theme/thumbnail/xianmin-hugo-theme-jane.jpg new file mode 100644 index 000000000..b6aa472fa Binary files /dev/null and b/static/images/theme/thumbnail/xianmin-hugo-theme-jane.jpg differ diff --git a/static/images/theme/thumbnail/xukimseven-hardcandy-jekyll-master.jpg b/static/images/theme/thumbnail/xukimseven-hardcandy-jekyll-master.jpg deleted file mode 100644 index 76db44fe5..000000000 Binary files a/static/images/theme/thumbnail/xukimseven-hardcandy-jekyll-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/xydac-xylo-gatsby-bulma-starter-master.jpg b/static/images/theme/thumbnail/xydac-xylo-gatsby-bulma-starter-master.jpg deleted file mode 100644 index ec1707fac..000000000 Binary files a/static/images/theme/thumbnail/xydac-xylo-gatsby-bulma-starter-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/xydac-xylo-gatsby-bulma-starter.jpg b/static/images/theme/thumbnail/xydac-xylo-gatsby-bulma-starter.jpg new file mode 100644 index 000000000..fafddcc3b Binary files /dev/null and b/static/images/theme/thumbnail/xydac-xylo-gatsby-bulma-starter.jpg differ diff --git a/static/images/theme/thumbnail/xzya-hugo-material-blog-master.jpg b/static/images/theme/thumbnail/xzya-hugo-material-blog-master.jpg deleted file mode 100644 index 29eec7bfd..000000000 Binary files a/static/images/theme/thumbnail/xzya-hugo-material-blog-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/y7kim-agency-jekyll-theme-gh-pages.jpg b/static/images/theme/thumbnail/y7kim-agency-jekyll-theme-gh-pages.jpg deleted file mode 100644 index 9320e9d4c..000000000 Binary files a/static/images/theme/thumbnail/y7kim-agency-jekyll-theme-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/y7kim-agency-jekyll-theme.jpg b/static/images/theme/thumbnail/y7kim-agency-jekyll-theme.jpg new file mode 100644 index 000000000..461e64fb7 Binary files /dev/null and b/static/images/theme/thumbnail/y7kim-agency-jekyll-theme.jpg differ diff --git a/static/images/theme/thumbnail/yelog-hexo-theme-3-hexo-master.jpg b/static/images/theme/thumbnail/yelog-hexo-theme-3-hexo-master.jpg deleted file mode 100644 index 877f2e2ea..000000000 Binary files a/static/images/theme/thumbnail/yelog-hexo-theme-3-hexo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/yelog-hexo-theme-3-hexo.jpg b/static/images/theme/thumbnail/yelog-hexo-theme-3-hexo.jpg new file mode 100644 index 000000000..06f152899 Binary files /dev/null and b/static/images/theme/thumbnail/yelog-hexo-theme-3-hexo.jpg differ diff --git a/static/images/theme/thumbnail/yenyuhsuan-hexo-theme-beantech-master.jpg b/static/images/theme/thumbnail/yenyuhsuan-hexo-theme-beantech-master.jpg deleted file mode 100644 index 643d9ece2..000000000 Binary files a/static/images/theme/thumbnail/yenyuhsuan-hexo-theme-beantech-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/ygoex-yetty.jpg b/static/images/theme/thumbnail/ygoex-yetty.jpg new file mode 100644 index 000000000..f96f98e67 Binary files /dev/null and b/static/images/theme/thumbnail/ygoex-yetty.jpg differ diff --git a/static/images/theme/thumbnail/yihui-hugo-xmag-master.jpg b/static/images/theme/thumbnail/yihui-hugo-xmag-master.jpg deleted file mode 100644 index e52a1762c..000000000 Binary files a/static/images/theme/thumbnail/yihui-hugo-xmag-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/yihui-hugo-xmag.jpg b/static/images/theme/thumbnail/yihui-hugo-xmag.jpg new file mode 100644 index 000000000..1429603f9 Binary files /dev/null and b/static/images/theme/thumbnail/yihui-hugo-xmag.jpg differ diff --git a/static/images/theme/thumbnail/yihui-hugo-xmin-master.jpg b/static/images/theme/thumbnail/yihui-hugo-xmin-master.jpg deleted file mode 100644 index 365962872..000000000 Binary files a/static/images/theme/thumbnail/yihui-hugo-xmin-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/yihui-hugo-xmin.jpg b/static/images/theme/thumbnail/yihui-hugo-xmin.jpg new file mode 100644 index 000000000..fde75b091 Binary files /dev/null and b/static/images/theme/thumbnail/yihui-hugo-xmin.jpg differ diff --git a/static/images/theme/thumbnail/yiluyanxia-hexo-theme-antiquity-master.jpg b/static/images/theme/thumbnail/yiluyanxia-hexo-theme-antiquity-master.jpg deleted file mode 100644 index a2b8d6cd3..000000000 Binary files a/static/images/theme/thumbnail/yiluyanxia-hexo-theme-antiquity-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/yinkakun-eleventy-duo-master.jpg b/static/images/theme/thumbnail/yinkakun-eleventy-duo-master.jpg deleted file mode 100644 index ab099b8d6..000000000 Binary files a/static/images/theme/thumbnail/yinkakun-eleventy-duo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/yinkakun-eleventy-duo.jpg b/static/images/theme/thumbnail/yinkakun-eleventy-duo.jpg new file mode 100644 index 000000000..fadc3e889 Binary files /dev/null and b/static/images/theme/thumbnail/yinkakun-eleventy-duo.jpg differ diff --git a/static/images/theme/thumbnail/yinkakun-gatsby-starter-glass.jpg b/static/images/theme/thumbnail/yinkakun-gatsby-starter-glass.jpg new file mode 100644 index 000000000..81787140d Binary files /dev/null and b/static/images/theme/thumbnail/yinkakun-gatsby-starter-glass.jpg differ diff --git a/static/images/theme/thumbnail/yizeng-jekyll-theme-simple-texture-master.jpg b/static/images/theme/thumbnail/yizeng-jekyll-theme-simple-texture-master.jpg deleted file mode 100644 index 80c842614..000000000 Binary files a/static/images/theme/thumbnail/yizeng-jekyll-theme-simple-texture-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/yizeng-jekyll-theme-simple-texture.jpg b/static/images/theme/thumbnail/yizeng-jekyll-theme-simple-texture.jpg new file mode 100644 index 000000000..76056e0f7 Binary files /dev/null and b/static/images/theme/thumbnail/yizeng-jekyll-theme-simple-texture.jpg differ diff --git a/static/images/theme/thumbnail/yjpl-supply.jpg b/static/images/theme/thumbnail/yjpl-supply.jpg new file mode 100644 index 000000000..cc56ad600 Binary files /dev/null and b/static/images/theme/thumbnail/yjpl-supply.jpg differ diff --git a/static/images/theme/thumbnail/yonojoy-yax-coming-soon-jekyll-template-master.jpg b/static/images/theme/thumbnail/yonojoy-yax-coming-soon-jekyll-template-master.jpg deleted file mode 100644 index 057cbc8b6..000000000 Binary files a/static/images/theme/thumbnail/yonojoy-yax-coming-soon-jekyll-template-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/yonojoy-yax-coming-soon-jekyll-template.jpg b/static/images/theme/thumbnail/yonojoy-yax-coming-soon-jekyll-template.jpg new file mode 100644 index 000000000..6fa7b195f Binary files /dev/null and b/static/images/theme/thumbnail/yonojoy-yax-coming-soon-jekyll-template.jpg differ diff --git a/static/images/theme/thumbnail/yous-whiteglass-master.jpg b/static/images/theme/thumbnail/yous-whiteglass-master.jpg deleted file mode 100644 index 13a0bf995..000000000 Binary files a/static/images/theme/thumbnail/yous-whiteglass-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/yous-whiteglass.jpg b/static/images/theme/thumbnail/yous-whiteglass.jpg new file mode 100644 index 000000000..f1f9c1a81 Binary files /dev/null and b/static/images/theme/thumbnail/yous-whiteglass.jpg differ diff --git a/static/images/theme/thumbnail/youssefraafatnasry-portfolyou-master.jpg b/static/images/theme/thumbnail/youssefraafatnasry-portfolyou-master.jpg deleted file mode 100644 index f8a4df563..000000000 Binary files a/static/images/theme/thumbnail/youssefraafatnasry-portfolyou-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/youssefraafatnasry-portfolyou.jpg b/static/images/theme/thumbnail/youssefraafatnasry-portfolyou.jpg new file mode 100644 index 000000000..5d6bdeeeb Binary files /dev/null and b/static/images/theme/thumbnail/youssefraafatnasry-portfolyou.jpg differ diff --git a/static/images/theme/thumbnail/yscoder-vuepress-theme-indigo-master.jpg b/static/images/theme/thumbnail/yscoder-vuepress-theme-indigo-master.jpg deleted file mode 100644 index 5110a7182..000000000 Binary files a/static/images/theme/thumbnail/yscoder-vuepress-theme-indigo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/yscoder-vuepress-theme-indigo.jpg b/static/images/theme/thumbnail/yscoder-vuepress-theme-indigo.jpg new file mode 100644 index 000000000..a676be888 Binary files /dev/null and b/static/images/theme/thumbnail/yscoder-vuepress-theme-indigo.jpg differ diff --git a/static/images/theme/thumbnail/yubisaki-vuepress-theme-yubisaki-master.jpg b/static/images/theme/thumbnail/yubisaki-vuepress-theme-yubisaki-master.jpg deleted file mode 100644 index f39569737..000000000 Binary files a/static/images/theme/thumbnail/yubisaki-vuepress-theme-yubisaki-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/yulijia-freshman21-master.jpg b/static/images/theme/thumbnail/yulijia-freshman21-master.jpg deleted file mode 100644 index 5219ce11f..000000000 Binary files a/static/images/theme/thumbnail/yulijia-freshman21-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/yulijia-freshman21.jpg b/static/images/theme/thumbnail/yulijia-freshman21.jpg new file mode 100644 index 000000000..3de51e091 Binary files /dev/null and b/static/images/theme/thumbnail/yulijia-freshman21.jpg differ diff --git a/static/images/theme/thumbnail/yursan9-manis-hugo-theme-master.jpg b/static/images/theme/thumbnail/yursan9-manis-hugo-theme-master.jpg deleted file mode 100644 index 90e522172..000000000 Binary files a/static/images/theme/thumbnail/yursan9-manis-hugo-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/yvesespinosa-jekyll-html5up-fractal-master.jpg b/static/images/theme/thumbnail/yvesespinosa-jekyll-html5up-fractal-master.jpg deleted file mode 100644 index 1eb29887b..000000000 Binary files a/static/images/theme/thumbnail/yvesespinosa-jekyll-html5up-fractal-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/zeespire-one-free.jpg b/static/images/theme/thumbnail/zeespire-one-free.jpg new file mode 100644 index 000000000..ca0c879a5 Binary files /dev/null and b/static/images/theme/thumbnail/zeespire-one-free.jpg differ diff --git a/static/images/theme/thumbnail/zerostaticthemes-hugo-atlantic-theme.jpg b/static/images/theme/thumbnail/zerostaticthemes-hugo-atlantic-theme.jpg new file mode 100644 index 000000000..4eaec0ae4 Binary files /dev/null and b/static/images/theme/thumbnail/zerostaticthemes-hugo-atlantic-theme.jpg differ diff --git a/static/images/theme/thumbnail/zerostaticthemes-hugo-serif-theme-master.jpg b/static/images/theme/thumbnail/zerostaticthemes-hugo-serif-theme-master.jpg deleted file mode 100644 index c907825ae..000000000 Binary files a/static/images/theme/thumbnail/zerostaticthemes-hugo-serif-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/zerostaticthemes-hugo-serif-theme.jpg b/static/images/theme/thumbnail/zerostaticthemes-hugo-serif-theme.jpg new file mode 100644 index 000000000..4250ff3bc Binary files /dev/null and b/static/images/theme/thumbnail/zerostaticthemes-hugo-serif-theme.jpg differ diff --git a/static/images/theme/thumbnail/zerostaticthemes-hugo-winston-theme.jpg b/static/images/theme/thumbnail/zerostaticthemes-hugo-winston-theme.jpg new file mode 100644 index 000000000..4f4d73706 Binary files /dev/null and b/static/images/theme/thumbnail/zerostaticthemes-hugo-winston-theme.jpg differ diff --git a/static/images/theme/thumbnail/zerostaticthemes-jekyll-atlantic-theme.jpg b/static/images/theme/thumbnail/zerostaticthemes-jekyll-atlantic-theme.jpg new file mode 100644 index 000000000..5ea193ccb Binary files /dev/null and b/static/images/theme/thumbnail/zerostaticthemes-jekyll-atlantic-theme.jpg differ diff --git a/static/images/theme/thumbnail/zerostaticthemes-jekyll-serif-theme-master.jpg b/static/images/theme/thumbnail/zerostaticthemes-jekyll-serif-theme-master.jpg deleted file mode 100644 index 5cc5526d6..000000000 Binary files a/static/images/theme/thumbnail/zerostaticthemes-jekyll-serif-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/zerostaticthemes-jekyll-serif-theme.jpg b/static/images/theme/thumbnail/zerostaticthemes-jekyll-serif-theme.jpg new file mode 100644 index 000000000..665c9c136 Binary files /dev/null and b/static/images/theme/thumbnail/zerostaticthemes-jekyll-serif-theme.jpg differ diff --git a/static/images/theme/thumbnail/zhaohuabing-hugo-theme-cleanwhite-master.jpg b/static/images/theme/thumbnail/zhaohuabing-hugo-theme-cleanwhite-master.jpg deleted file mode 100644 index dedfd7cbd..000000000 Binary files a/static/images/theme/thumbnail/zhaohuabing-hugo-theme-cleanwhite-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/zhaohuabing-hugo-theme-cleanwhite.jpg b/static/images/theme/thumbnail/zhaohuabing-hugo-theme-cleanwhite.jpg new file mode 100644 index 000000000..384804813 Binary files /dev/null and b/static/images/theme/thumbnail/zhaohuabing-hugo-theme-cleanwhite.jpg differ diff --git a/static/images/theme/thumbnail/zhe-hugo-theme-slim-master.jpg b/static/images/theme/thumbnail/zhe-hugo-theme-slim-master.jpg deleted file mode 100644 index 333bb4943..000000000 Binary files a/static/images/theme/thumbnail/zhe-hugo-theme-slim-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/zhonger-jekyll-theme-h2o-ac.jpg b/static/images/theme/thumbnail/zhonger-jekyll-theme-h2o-ac.jpg new file mode 100644 index 000000000..a6408e997 Binary files /dev/null and b/static/images/theme/thumbnail/zhonger-jekyll-theme-h2o-ac.jpg differ diff --git a/static/images/theme/thumbnail/zivong-jekyll-theme-hydure.jpg b/static/images/theme/thumbnail/zivong-jekyll-theme-hydure.jpg new file mode 100644 index 000000000..fb9bb7730 Binary files /dev/null and b/static/images/theme/thumbnail/zivong-jekyll-theme-hydure.jpg differ diff --git a/static/images/theme/thumbnail/zwbetz-gh-cayman-hugo-theme-master.jpg b/static/images/theme/thumbnail/zwbetz-gh-cayman-hugo-theme-master.jpg deleted file mode 100644 index edf27fa31..000000000 Binary files a/static/images/theme/thumbnail/zwbetz-gh-cayman-hugo-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/zwbetz-gh-cayman-hugo-theme.jpg b/static/images/theme/thumbnail/zwbetz-gh-cayman-hugo-theme.jpg new file mode 100644 index 000000000..cd4718cdd Binary files /dev/null and b/static/images/theme/thumbnail/zwbetz-gh-cayman-hugo-theme.jpg differ diff --git a/static/images/theme/thumbnail/zwbetz-gh-cupper-hugo-theme-master.jpg b/static/images/theme/thumbnail/zwbetz-gh-cupper-hugo-theme-master.jpg deleted file mode 100644 index db6e95c0a..000000000 Binary files a/static/images/theme/thumbnail/zwbetz-gh-cupper-hugo-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/zwbetz-gh-cupper-hugo-theme.jpg b/static/images/theme/thumbnail/zwbetz-gh-cupper-hugo-theme.jpg new file mode 100644 index 000000000..6cf87757b Binary files /dev/null and b/static/images/theme/thumbnail/zwbetz-gh-cupper-hugo-theme.jpg differ diff --git a/static/images/theme/thumbnail/zwbetz-gh-minimal-bootstrap-hugo-theme-master.jpg b/static/images/theme/thumbnail/zwbetz-gh-minimal-bootstrap-hugo-theme-master.jpg deleted file mode 100644 index d95548165..000000000 Binary files a/static/images/theme/thumbnail/zwbetz-gh-minimal-bootstrap-hugo-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/zwbetz-gh-minimal-bootstrap-hugo-theme.jpg b/static/images/theme/thumbnail/zwbetz-gh-minimal-bootstrap-hugo-theme.jpg new file mode 100644 index 000000000..3e0c427e0 Binary files /dev/null and b/static/images/theme/thumbnail/zwbetz-gh-minimal-bootstrap-hugo-theme.jpg differ diff --git a/static/images/theme/thumbnail/zwbetz-gh-papercss-hugo-theme-master.jpg b/static/images/theme/thumbnail/zwbetz-gh-papercss-hugo-theme-master.jpg deleted file mode 100644 index 187e1246b..000000000 Binary files a/static/images/theme/thumbnail/zwbetz-gh-papercss-hugo-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/zwbetz-gh-papercss-hugo-theme.jpg b/static/images/theme/thumbnail/zwbetz-gh-papercss-hugo-theme.jpg new file mode 100644 index 000000000..8f785ae66 Binary files /dev/null and b/static/images/theme/thumbnail/zwbetz-gh-papercss-hugo-theme.jpg differ diff --git a/static/images/theme/thumbnail/zwbetz-gh-vanilla-bootstrap-hugo-theme-master.jpg b/static/images/theme/thumbnail/zwbetz-gh-vanilla-bootstrap-hugo-theme-master.jpg deleted file mode 100644 index 9f9291a27..000000000 Binary files a/static/images/theme/thumbnail/zwbetz-gh-vanilla-bootstrap-hugo-theme-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/zwbetz-gh-vanilla-bootstrap-hugo-theme.jpg b/static/images/theme/thumbnail/zwbetz-gh-vanilla-bootstrap-hugo-theme.jpg new file mode 100644 index 000000000..334fc473f Binary files /dev/null and b/static/images/theme/thumbnail/zwbetz-gh-vanilla-bootstrap-hugo-theme.jpg differ diff --git a/static/images/theme/thumbnail/zxixia-jekyll-xixia-gh-pages.jpg b/static/images/theme/thumbnail/zxixia-jekyll-xixia-gh-pages.jpg deleted file mode 100644 index c3a5f4c0d..000000000 Binary files a/static/images/theme/thumbnail/zxixia-jekyll-xixia-gh-pages.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/zzossig-hugo-theme-zdoc-master.jpg b/static/images/theme/thumbnail/zzossig-hugo-theme-zdoc-master.jpg deleted file mode 100644 index 9926228da..000000000 Binary files a/static/images/theme/thumbnail/zzossig-hugo-theme-zdoc-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/zzossig-hugo-theme-zzo-master.jpg b/static/images/theme/thumbnail/zzossig-hugo-theme-zzo-master.jpg deleted file mode 100644 index 6000603da..000000000 Binary files a/static/images/theme/thumbnail/zzossig-hugo-theme-zzo-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/zzzmisa-hugo-theme-doors-master.jpg b/static/images/theme/thumbnail/zzzmisa-hugo-theme-doors-master.jpg deleted file mode 100644 index 7360713b3..000000000 Binary files a/static/images/theme/thumbnail/zzzmisa-hugo-theme-doors-master.jpg and /dev/null differ diff --git a/static/images/theme/thumbnail/zzzmisa-hugo-theme-doors.jpg b/static/images/theme/thumbnail/zzzmisa-hugo-theme-doors.jpg new file mode 100644 index 000000000..246389f81 Binary files /dev/null and b/static/images/theme/thumbnail/zzzmisa-hugo-theme-doors.jpg differ diff --git a/static/images/ui/droplet.svg b/static/images/ui/droplet.svg deleted file mode 100644 index d966db27f..000000000 --- a/static/images/ui/droplet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/static/images/ui/pulse.svg b/static/images/ui/pulse.svg deleted file mode 100644 index 86849ca31..000000000 --- a/static/images/ui/pulse.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/themes/jamstackthemes/assets/js/branches.js b/themes/jamstackthemes/assets/js/branches.js deleted file mode 100644 index 642524033..000000000 --- a/themes/jamstackthemes/assets/js/branches.js +++ /dev/null @@ -1,26 +0,0 @@ -document.querySelectorAll(".action-button").forEach((button) => { - const themeName = button.getAttribute('data-name'); - const context = button.getAttribute('data-context'); - const action = button.getAttribute('data-action'); - let branch = null; - - button.addEventListener('click', (e) => { - if (action) { - const event = { - theme: themeName, - action: action, - category: 'Themes', - label: themeName - }; - - if (context) { - event.context = context; - } - if (branch) { - event.branch = branch; - } - - analytics.track("Theme Clicked", event); - } - }); -}); diff --git a/themes/jamstackthemes/assets/js/filter/filter-groups.js b/themes/jamstackthemes/assets/js/filter/filter-groups.js index 049cbc956..f1e0e6919 100644 --- a/themes/jamstackthemes/assets/js/filter/filter-groups.js +++ b/themes/jamstackthemes/assets/js/filter/filter-groups.js @@ -1,6 +1,46 @@ const groups = { - ssg: ["brunch", "eleventy", "gatsby", "gridsome", "hexo", "hugo", "jekyll", "middleman", "mkdocs", "next", "nuxt", "pelican", "statiq", "vuepress", "platframe", "jigsaw", 'sapper', 'scully'], - cms: ["airtable", "contentful", "datocms", "firebase", "forestry", "ghost", "kontent", "netlifycms", "no-cms", "prismic", "sanity", "wordpress"], - css: ["bootstrap", "scss", "tailwind", "bulma", "postcss"], - archetype: ["blog", "portfolio", "business", "multi-purpose", "single-page", "ecommerce","documentation", "personal"], + ssg: [ + "eleventy", + "gatsby", + "gridsome", + "hexo", + "hugo", + "jekyll", + "next", + "vuepress", + "brunch", + "docusaurus", + "jigsaw", + "metalsmith", + "middleman", + "mkdocs", + "nuxt", + "pelican", + "platframe", + "sapper", + "scully", + "statiq", + "unibit" + ], + cms: [ + "contentful", + "cosmic", + "datocms", + "forestry", + "ghost", + "kontent", + "decapcms", + "no-cms", + "airtable", + "directus", + "firebase", + 'graphcms', + "prismic", + "sanity", + "storyblok", + "wordpress", + "notion" + ], + css: ["bootstrap", "scss", "tailwind", "bulma", "postcss", "styled-components"], + archetype: ["blog", "portfolio", "business", "single-page", "ecommerce", "documentation", "personal"], }; diff --git a/themes/jamstackthemes/assets/js/filter/filter.js b/themes/jamstackthemes/assets/js/filter/filter.js index dc7e03f10..9a8f01e6e 100644 --- a/themes/jamstackthemes/assets/js/filter/filter.js +++ b/themes/jamstackthemes/assets/js/filter/filter.js @@ -89,7 +89,10 @@ function updateCount(group, matches) { let count = matches.filter(match => { return match.includes(term); }) - document.querySelector(`#filter-count-${term}`).innerText = count.length + const termDom = document.querySelector(`#filter-count-${term}`) + if (termDom) { + termDom.innerText = count.length + } }) } @@ -98,7 +101,10 @@ function resetCount(group, matches) { let count = matches.filter(match => { return match.includes(term); }) - document.querySelector(`#filter-count-${term}`).innerText = count.length + const termDom = document.querySelector(`#filter-count-${term}`) + if (termDom) { + termDom.innerText = count.length + } }) } diff --git a/themes/jamstackthemes/assets/scss/_buttons.scss b/themes/jamstackthemes/assets/scss/_buttons.scss index 99c38644a..f2fc0913f 100644 --- a/themes/jamstackthemes/assets/scss/_buttons.scss +++ b/themes/jamstackthemes/assets/scss/_buttons.scss @@ -1,9 +1,9 @@ .button { - border-radius: 3px; + border-radius: 5px; color: $primary; outline: none; text-decoration: none; - padding: 5px 10px; + padding: 5px 6px; margin-right: 5px; cursor: pointer; background: none; @@ -29,8 +29,8 @@ align-items: flex-start; flex-wrap: wrap; @include media-breakpoint-up(sm) { - margin-bottom: 15px; - margin-top: 15px; + margin-bottom: 0; + margin-top: 23px; } .sort-by { display: none; @@ -45,6 +45,7 @@ flex-grow: 1; @include media-breakpoint-up(sm) { font-size: 16px; + margin-bottom: 0; } @include media-breakpoint-up(lg) { flex-grow: 0; diff --git a/themes/jamstackthemes/assets/scss/_demo.scss b/themes/jamstackthemes/assets/scss/_demo.scss index fb3e48296..fbabeeb35 100644 --- a/themes/jamstackthemes/assets/scss/_demo.scss +++ b/themes/jamstackthemes/assets/scss/_demo.scss @@ -3,7 +3,8 @@ border: none; width: 100%; height: calc(100% - 60px); - margin-top: 60px; } + margin-top: 60px; +} .iframe-preview--mobile { width: 375px; @@ -13,8 +14,7 @@ .demo { background-color: white; - border-bottom: 1px solid $grey; - box-shadow: 0px 0px 9px 3px rgba(41,41,41,.25); + box-shadow: 0px 0px 4px 3px rgba(41,41,41,.2); position: fixed; width: 100%; z-index: 10; @@ -37,7 +37,7 @@ justify-content: space-between; } h1.demo-title { - font-size: 20px; + font-size: 18px; font-family: $font_family_heading; margin: 0; margin-left: 10px; diff --git a/themes/jamstackthemes/assets/scss/_github-metrics.scss b/themes/jamstackthemes/assets/scss/_github-metrics.scss index fe2794f07..569326254 100644 --- a/themes/jamstackthemes/assets/scss/_github-metrics.scss +++ b/themes/jamstackthemes/assets/scss/_github-metrics.scss @@ -24,6 +24,7 @@ } span { margin: 0; + font-size: 14px; line-height: 16px; } } diff --git a/themes/jamstackthemes/assets/scss/_intro.scss b/themes/jamstackthemes/assets/scss/_intro.scss index 021afcdbc..3b148fa48 100644 --- a/themes/jamstackthemes/assets/scss/_intro.scss +++ b/themes/jamstackthemes/assets/scss/_intro.scss @@ -25,7 +25,7 @@ display: inline-block; vertical-align: middle; font-weight: 600; - font-size: 24px; + font-size: 22px; margin: 0; @include media-breakpoint-up(sm) { font-size: 28px; @@ -34,7 +34,7 @@ font-size: 36px; } @include media-breakpoint-up(xl) { - font-size: 46px; + font-size: 42px; } } .intro-description { @@ -42,7 +42,7 @@ font-size: 18px; } @include media-breakpoint-up(lg) { - font-size: 20px; + font-size: 18px; width: 85%; } } @@ -77,15 +77,14 @@ display: flex; justify-content: space-between; align-items: center; - p { margin: 0;} + p { + margin: 0; + } .button { color: #647f96; border-color: #647f96; margin: 0; } - strong { - - } } .count { color: lighten($steel, 20%); @@ -94,4 +93,62 @@ .page-number { font-weight: 400; } + + .compose-banner img { + height: auto; + margin-bottom: 32px; + max-width: 100%; + } + + .stackbit-banner { + display: flex; + flex-direction: column; + justify-content: center; + align-items: flex-start; + padding: 40px 24px; + gap: 16px; + border-radius: 4px; + margin-bottom: 32px; + + .banner-title-row { + display: flex; + flex-direction: row; + align-items: center; + padding: 0px; + gap: 17px; + font-size: 32px; + font-weight: 600; + color: white; + line-height: 1; + } + + .banner-subtitle-row { + font-size: 18px; + color: white; + max-width: 70ch; + } + + .banner-primary-button { + padding: 8px 16px; + background: #32e6e2; + border-style: none; + border-radius: 3px; + outline: none; + font-weight: 600; + font-size: 16px; + line-height: 20px; + color: #014847; + text-decoration: none; + a { + color: #014847; + } + a:hover { + text-decoration: none; + } + a:visited { + color: inherit; + } + } + } } + diff --git a/themes/jamstackthemes/assets/scss/_label.scss b/themes/jamstackthemes/assets/scss/_label.scss index 007e1ce99..2c3be0c7f 100644 --- a/themes/jamstackthemes/assets/scss/_label.scss +++ b/themes/jamstackthemes/assets/scss/_label.scss @@ -1,5 +1,4 @@ .label { - text-transform: uppercase; margin: 3px 0 3px 0; display: flex; align-items: center; diff --git a/themes/jamstackthemes/assets/scss/_layout.scss b/themes/jamstackthemes/assets/scss/_layout.scss index 515b5018e..f57235141 100644 --- a/themes/jamstackthemes/assets/scss/_layout.scss +++ b/themes/jamstackthemes/assets/scss/_layout.scss @@ -80,7 +80,6 @@ $layout-padding: 15px; padding-top: $layout-padding * 4; padding-bottom: $layout-padding * 4; } - } .sidebar { position: sticky; @@ -111,7 +110,17 @@ $layout-padding: 15px; flex-direction: column; justify-content: space-between; height: 100%; - + .stackbit { + padding: 6px 0; + display: flex; + gap: 4px; + align-items: center; + font-size: 14px; + a { + color: inherit; + text-decoration: underline; + } + } } } } @@ -160,4 +169,4 @@ $layout-padding: 15px; .strip-title { font-size: 38px; font-weight: 400; -} \ No newline at end of file +} diff --git a/themes/jamstackthemes/assets/scss/_pricing.scss b/themes/jamstackthemes/assets/scss/_pricing.scss deleted file mode 100644 index ae9a22da5..000000000 --- a/themes/jamstackthemes/assets/scss/_pricing.scss +++ /dev/null @@ -1,62 +0,0 @@ -.pricing { - .pricing-card { - display: flex; - flex-direction: column; - justify-content: space-between; - border: 2px solid $grey; - background-color: white; - position: relative; - z-index: 1; - height: 100%; - padding: 20px; - .pricing-header { - display: flex; - justify-content: space-between; - } - .pricing-cost { - .pricing-cost-price { - font-size: 22px; - } - - .pricing-cost-period { - font-size: 14px; - } - } - .pricing-body { - background: white; - flex: 1; - display: flex; - flex-direction: column; - - h2 { - font-size: 20px; - font-weight: 500; - margin-bottom: 10px; - @include media-breakpoint-up(xl) { - font-size: 26px; - } - } - - p { - font-size: 18px; - } - - ul { - margin: 0; - padding: 0; - - li { - margin-left: 20px; - } - } - - } - - .pricing-footer { - .action-buttons { - margin: 0; - margin-top: 20px; - } - } - } -} \ No newline at end of file diff --git a/themes/jamstackthemes/assets/scss/_theme-buttons.scss b/themes/jamstackthemes/assets/scss/_theme-buttons.scss index 0d43cccd3..672f4adae 100644 --- a/themes/jamstackthemes/assets/scss/_theme-buttons.scss +++ b/themes/jamstackthemes/assets/scss/_theme-buttons.scss @@ -56,4 +56,12 @@ text-decoration: underline; } } +} + +.tag-button { + color: $steel; + font-size: 14px; + padding: 5px 8px; + border: 1px solid $steel; + border-radius: 4px; } \ No newline at end of file diff --git a/themes/jamstackthemes/assets/scss/_theme-card.scss b/themes/jamstackthemes/assets/scss/_theme-card.scss index 050b8b580..74df4e9ea 100644 --- a/themes/jamstackthemes/assets/scss/_theme-card.scss +++ b/themes/jamstackthemes/assets/scss/_theme-card.scss @@ -4,12 +4,11 @@ flex-direction: column; justify-content: space-between; border: 1px solid $grey; - border-radius: 8px; + border-radius: 4px; background-color: white; position: relative; z-index: 1; height: 100%; - box-shadow: 0 25px 20px -25px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 0, 0, 0.05); .theme-header { border-bottom: 1px solid $grey; max-height: 260px; @@ -33,18 +32,15 @@ display: flex; flex-direction: column; h2 { - font-size: 20px; - font-weight: 500; + font-size: 16px; + font-weight: 600; margin-bottom: 10px; @include media-breakpoint-up(xl) { - font-size: 26px; + font-size: 20px; } } p { font-size: 14px; - @include media-breakpoint-up(xl) { - font-size: 16px; - } &.description { padding: 20px 0 20px 0; padding: 0; @@ -57,10 +53,18 @@ .action-buttons { margin-top: auto; } + .featured { + border-radius: 4px; + color: #8b8b8b; + font-size: 14px; + border: solid 1px $grey; + padding: 2px 4px; + align-self: start; + margin-bottom: 0.5rem; + } } .theme-footer { - //border-top: 1px solid $grey; - background: $bone; + border-top: 1px solid $grey; padding: 8px 13px 8px 13px; display: flex; justify-content: flex-start; diff --git a/themes/jamstackthemes/assets/scss/style.scss b/themes/jamstackthemes/assets/scss/style.scss index f770d2cdb..3e31a8b82 100755 --- a/themes/jamstackthemes/assets/scss/style.scss +++ b/themes/jamstackthemes/assets/scss/style.scss @@ -4,8 +4,8 @@ $grey: #e9e9e9; $steel: #585858; $carbon: #2a2a2a; -$font-family-base: 'Source Sans Pro', Helvetica, Arial, sans-serif; -$font-family-heading: 'Source Sans Pro', Helvetica, Arial, sans-serif; +$font-family-base: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; +$font-family-heading: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; $font-family-mono: monospace; $font-family-serif: serif; @@ -65,7 +65,6 @@ $spacers: map-merge( @import 'github-metrics'; @import 'content'; @import 'label'; -@import 'pricing'; @import 'bootstrap/utilities'; //@import 'pygments/github'; diff --git a/themes/jamstackthemes/layouts/404.html b/themes/jamstackthemes/layouts/404.html index 36b819f58..8aaf18273 100644 --- a/themes/jamstackthemes/layouts/404.html +++ b/themes/jamstackthemes/layouts/404.html @@ -1,7 +1,3 @@ -{{ define "header_css" }}{{ end }} -{{ define "body_classes" }}{{ end }} -{{ define "header_classes" }}{{ end }} - {{ define "main" }}

404 Page Not Found

diff --git a/themes/jamstackthemes/layouts/_default/baseof.html b/themes/jamstackthemes/layouts/_default/baseof.html index dda7c3089..a79760f89 100644 --- a/themes/jamstackthemes/layouts/_default/baseof.html +++ b/themes/jamstackthemes/layouts/_default/baseof.html @@ -4,7 +4,7 @@ - {{ block "title" . }}{{ .Title }} - {{ .Site.Title }}{{ end }} + {{ if .IsHome }}Themes & Templates - {{ else }}{{ if .Page.Title }}{{ .Page.Title }} - {{ end }}{{ end }}{{ .Site.Title }} @@ -19,18 +19,14 @@ {{end}} - {{ block "meta_description" . }} - {{ end }} - - - + {{ block "meta_description" . }}{{ end }} {{ if .Site.IsServer }} - {{ $style := resources.Get "scss/style.scss" | resources.ExecuteAsTemplate "style.scss" . | toCSS (dict "targetPath" "css/style.css" "enableSourceMap" true) }} - + {{ $style := resources.Get "scss/style.scss" | resources.ExecuteAsTemplate "style.scss" . | toCSS (dict "targetPath" "css/style.css" "enableSourceMap" true) }} + {{ else }} - {{ $style := resources.Get "scss/style.scss" | resources.ExecuteAsTemplate "style.scss" . | toCSS (dict "targetPath" "css/style.css" "enableSourceMap" false) }} - + {{ $style := resources.Get "scss/style.scss" | resources.ExecuteAsTemplate "style.scss" . | toCSS (dict "targetPath" "css/style.css" "enableSourceMap" false) }} + {{ end }} {{ block "header_css" . }}{{ end }} @@ -39,9 +35,12 @@ {{ with .OutputFormats.Get "rss" }} - {{ printf `` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }} + {{ printf `` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }} {{ end }} + {{ partial "metrics/segment.html" . }} + {{ partial "metrics/ga.html" . }} + @@ -57,14 +56,11 @@ {{ partial "footer.html" . }} {{ end }} - {{ partial "segment.html" . }} - {{ block "footer_js" . }}{{ end }} - {{ $branches := resources.Get "js/branches.js" }} {{ $scripts := resources.Get "js/scripts.js" }} - {{ $scriptsBundle := slice $branches $scripts | resources.Concat "js/scriptsBundle.js" }} + {{ $scriptsBundle := slice $scripts | resources.Concat "js/scriptsBundle.js" }} {{ if .Site.IsServer }} diff --git a/themes/jamstackthemes/layouts/_default/list.html b/themes/jamstackthemes/layouts/_default/list.html index 48fa0765a..b4e0c9840 100644 --- a/themes/jamstackthemes/layouts/_default/list.html +++ b/themes/jamstackthemes/layouts/_default/list.html @@ -2,9 +2,9 @@ {{ define "body_classes" }}page-default-list{{ end }} {{ define "main" }} -{{ .Title }} -{{ .Content }} -{{ range.Pages }} - {{.Content}} -{{ end }} + {{ .Title }} + {{ .Content }} + {{ range.Pages }} + {{.Content}} + {{ end }} {{ end }} \ No newline at end of file diff --git a/themes/jamstackthemes/layouts/_default/single.html b/themes/jamstackthemes/layouts/_default/single.html index 187f95762..cd09391bb 100644 --- a/themes/jamstackthemes/layouts/_default/single.html +++ b/themes/jamstackthemes/layouts/_default/single.html @@ -2,6 +2,6 @@ {{ define "body_classes" }}page-default-single{{ end }} {{ define "main" }} -{{ .Title }} -{{ .Content }} + {{ .Title }} + {{ .Content }} {{ end }} diff --git a/themes/jamstackthemes/layouts/_default/taxonomy.html b/themes/jamstackthemes/layouts/_default/taxonomy.html index 32a68a22d..23917c69a 100644 --- a/themes/jamstackthemes/layouts/_default/taxonomy.html +++ b/themes/jamstackthemes/layouts/_default/taxonomy.html @@ -1,22 +1,10 @@ {{ define "title" }}{{ $themes := .RegularPages }}{{ $themes := (where $themes ".Params.draft" "!=" true) }}{{ $themes := (where $themes ".Params.disabled" "!=" true) }}{{ $paginatorTitle := .Paginate $themes }}{{ .Title }} Themes {{ if eq $paginatorTitle.PageNumber 1 }}({{ $paginatorTitle.TotalNumberOfElements }}){{ end }}{{ if gt $paginatorTitle.PageNumber 1 }} | Page {{ $paginatorTitle.PageNumber }}{{ end }}{{ end }} -{{ define "header_css" }}{{ end }} -{{ define "body_classes" }}page-taxonomy{{ end }} +{{ define "body_classes" }}page-default-taxonomy{{ end }} {{ define "meta_description" }} - + {{ end }} -{{ define "ogmeta" }} - - - - - - - - -{{end}} - {{ define "main" }} {{ $themes := .RegularPages }} {{ $themes := (where $themes ".Params.draft" "!=" true) }} @@ -31,7 +19,6 @@
-
{{.Title}} Logo

{{ .Title }} Themes {{ if gt $paginator.PageNumber 1 }} - Page {{ $paginator.PageNumber }}{{ end }} {{ if eq $paginator.PageNumber 1 }}({{ $themeCount }}){{ end }} @@ -45,13 +32,12 @@

{{ .Title }} Themes

- - {{ range $paginator.Pages.ByDate.Reverse }} - {{ $repoName := printf "%s-%s" (substr (replace .Params.github "/" "-") 19 | urlize) .Params.github_branch }} - {{ $repo := index .Site.Data.themes $repoName }} - {{ $stackbit := index .Site.Data.stackbit $repoName }} - {{ partial "theme-card.html" (dict "theme" . "repo" $repo "stackbit" $stackbit "site" $.Site) }} - {{ end }} + {{ range $paginator.Pages.ByDate.Reverse }} + {{ $repoName := printf "%s" (substr (replace .Params.github "/" "-") 19 | urlize) }} + {{ $repo := index .Site.Data.themes $repoName }} + {{ $stackbit := index .Site.Data.stackbit $repoName }} + {{ partial "theme-card.html" (dict "theme" . "repo" $repo "stackbit" $stackbit "site" $.Site) }} + {{ end }}
{{ partial "pagination.html" . }} diff --git a/themes/jamstackthemes/layouts/_default/terms.html b/themes/jamstackthemes/layouts/_default/terms.html index e07c0dca5..796164796 100644 --- a/themes/jamstackthemes/layouts/_default/terms.html +++ b/themes/jamstackthemes/layouts/_default/terms.html @@ -1,6 +1,4 @@ -{{ define "meta_description" }} - -{{ end }} +{{ define "body_classes" }}page-default-terms{{ end }} {{ define "main" }} {{ $themeCount := len .Pages }} diff --git a/themes/jamstackthemes/layouts/index-pagination.html b/themes/jamstackthemes/layouts/index-pagination.html deleted file mode 100644 index 60fd6317c..000000000 --- a/themes/jamstackthemes/layouts/index-pagination.html +++ /dev/null @@ -1,57 +0,0 @@ -{{ define "title" }}{{ $themes := (where .Site.RegularPages "Type" "theme") }}{{ $themes := (where $themes ".Params.draft" "!=" true) }}{{ $themes := (where $themes ".Params.stale" "!=" true) }}{{ $themes := (where $themes ".Params.disabled" "!=" "true") }}{{ $paginatorTitle := .Paginate $themes }}Jamstack Themes{{ if gt $paginatorTitle.PageNumber 1 }} | Page {{ $paginatorTitle.PageNumber }}{{ end }}{{ end }} -{{ define "header_classes" }}{{ end }} -{{ define "body_classes" }}page-home{{ end }} - -{{ define "meta_description" }} -{{ $themes := (where .Site.RegularPages "Type" "theme") }} -{{ $themes := (where $themes ".Params.draft" "!=" true) }} -{{ $themes := (where $themes ".Params.stale" "!=" true) }} -{{ $themes := (where $themes ".Params.disabled" "!=" true) }} -{{ $themeCount := len $themes}} - -{{ end }} - -{{ define "main" }} -{{ $themes := (where .Site.RegularPages "Type" "theme") }} -{{ $themes := (where $themes ".Params.draft" "!=" true) }} -{{ $themes := (where $themes ".Params.stale" "!=" true) }} -{{ $themes := (where $themes ".Params.disabled" "!=" "true") }} -{{ $themeCount := len $themes}} - -{{ $paginator := .Paginate $themes }} - -
-
-
- -
-
-

New Themes {{ if gt $paginator.PageNumber 1 }} - Page {{ $paginator.PageNumber }}{{ end }} ({{ $themeCount }})

-
- {{ if eq $paginator.PageNumber 1 }} -
-

A list of themes and starters for Jamstack sites. We're the largest gallery of user submitted, open source themes for static site generators 🦖. This site is maintained by the community and with the kind support of Stackbit

-
-

New themes are sorted by submission date with commits in the last 6 months.

- View All Themes -
-
-

A list of themes and starters for Jamstack sites. Want to filter and search? View all themes

- {{ end }} -
- -
- {{ range $paginator.Pages }} - {{ $repoName := printf "%s-%s" (substr (replace .Params.github "/" "-") 19 | urlize) .Params.github_branch }} - {{ $repo := index .Site.Data.themes $repoName }} - {{ $stackbit := index .Site.Data.stackbit $repoName }} - {{ partial "theme-card.html" (dict "theme" . "repo" $repo "stackbit" $stackbit "site" $.Site) }} - {{ end }} -
- - {{ partial "pagination.html" . }} - -
-
-
-{{ end }} \ No newline at end of file diff --git a/themes/jamstackthemes/layouts/index.html b/themes/jamstackthemes/layouts/index.html index 70ad38dd2..b99f5407a 100644 --- a/themes/jamstackthemes/layouts/index.html +++ b/themes/jamstackthemes/layouts/index.html @@ -1,77 +1,82 @@ -{{ define "title" }}Jamstack Themes{{ end }} -{{ define "header_classes" }}{{ end }} + {{ define "body_classes" }}page-home has-sidebar{{ end }} {{ define "meta_description" }} -{{ $themes := (where .Site.RegularPages "Type" "theme") }} -{{ $themes := (where $themes ".Params.draft" "!=" true) }} -{{ $themes := (where $themes ".Params.stale" "!=" true) }} -{{ $themes := (where $themes ".Params.disabled" "!=" true) }} -{{ $themeCount := len $themes}} - + {{ $themes := (where .Site.RegularPages "Type" "theme") }} + {{ $themes := (where $themes ".Params.draft" "!=" true) }} + {{ $themes := (where $themes ".Params.stale" "!=" true) }} + {{ $themes := (where $themes ".Params.disabled" "!=" true) }} + {{ $themeCount := len $themes}} + {{ end }} {{ define "main" }} -{{ $themes := (where .Site.RegularPages "Type" "theme") }} -{{ $themes := (where $themes ".Params.draft" "!=" true) }} -{{ $themes := (where $themes ".Params.stale" "!=" true) }} -{{ $themes := (where $themes ".Params.disabled" "!=" true) }} -{{ $themeCount := len $themes}} - -
- - -
-
- -
-
-

New Themes ({{ $themeCount }})

+ {{ $themes := (where .Site.RegularPages "Type" "theme") }} + {{ $themes := (where $themes ".Params.draft" "!=" true) }} + {{ $themes := (where $themes ".Params.stale" "!=" true) }} + {{ $themes := (where $themes ".Params.disabled" "!=" true) }} + {{ $themeCount := len $themes}} + +
+ -

A list of themes, templates and starters for Jamstack sites. We're the largest theme gallery of user submitted, open source themes for static site generators 🦖. This site is maintained by the community and with the kind support of Stackbit.

-

A list of themes and starters for Jamstack sites.

-
- - {{ partial "sort-buttons.html" . }} - -
- - {{ range (($themes.ByParam "date").Reverse).ByParam "weight" }} - {{ $repoName := printf "%s-%s" (substr (replace .Params.github "/" "-") 19 | urlize) .Params.github_branch }} - {{ $repo := index .Site.Data.themes $repoName }} - {{ $stackbit := index .Site.Data.stackbit $repoName }} - {{ partial "theme-card.html" (dict "theme" . "repo" $repo "stackbit" $stackbit "site" $.Site) }} - {{ end }} -
+
+
+
+
+

New Themes ({{ $themeCount }})

+
+
+

A list of open-source themes, templates and starters for Jamstack sites. + Supported by Netlify. +

+
+
+

A list of themes and starters for Jamstack sites.

+
+
+ + {{ partial "sort-buttons.html" . }} +
+ {{ $featuredThemes := (where ($themes.ByParam "date").Reverse "Params.featured" "==" true) }} + {{ range $featuredThemes }} + {{ $repoName := printf "%s" (substr (replace .Params.github "/" "-") 19 | urlize) }} + {{ $repo := index .Site.Data.themes $repoName }} + {{ $stackbit := index .Site.Data.stackbit $repoName }} + {{ partial "theme-card.html" (dict "theme" . "repo" $repo "stackbit" $stackbit "site" $.Site) }} + {{ end }} + + {{ $nonFeaturedThemes := (where ($themes.ByParam "date").Reverse "Params.featured" "!=" true) }} + {{ range $nonFeaturedThemes }} + {{ $repoName := printf "%s" (substr (replace .Params.github "/" "-") 19 | urlize) }} + {{ $repo := index .Site.Data.themes $repoName }} + {{ $stackbit := index .Site.Data.stackbit $repoName }} + {{ partial "theme-card.html" (dict "theme" . "repo" $repo "stackbit" $stackbit "site" $.Site) }} + {{ end }} +
+ +
+
-
-
- -{{ partial "footer.html" . }} - {{ end }} {{ define "footer_js" }} + {{ $mixitup := resources.Get "js/libs/mixitup.js" }} + {{ $mixitupMultiFilter := resources.Get "js/libs/mixitup-multifilter.js" }} + {{ $filterGroups := resources.Get "js/filter/filter-groups.js" }} + {{ $filterHash := resources.Get "js/filter/filter-hash.js" }} + {{ $filter := resources.Get "js/filter/filter.js" }} + {{ $filterToggle := resources.Get "js/filter/filter-toggle.js" }} - {{ $mixitup := resources.Get "js/libs/mixitup.js" }} - {{ $mixitupMultiFilter := resources.Get "js/libs/mixitup-multifilter.js" }} - {{ $filterGroups := resources.Get "js/filter/filter-groups.js" }} - {{ $filterHash := resources.Get "js/filter/filter-hash.js" }} - {{ $filter := resources.Get "js/filter/filter.js" }} - {{ $filterToggle := resources.Get "js/filter/filter-toggle.js" }} - - {{ $homeBundle := slice $mixitup $mixitupMultiFilter $filterGroups $filterHash $filter $filterToggle | resources.Concat "js/homeBundle.js" }} + {{ $homeBundle := slice $mixitup $mixitupMultiFilter $filterGroups $filterHash $filter $filterToggle | resources.Concat "js/homeBundle.js" }} - {{ if .Site.IsServer }} - + {{ if .Site.IsServer }} + {{ else }} - - {{ end }} - + + {{ end }} {{ end }} diff --git a/themes/jamstackthemes/layouts/index.json b/themes/jamstackthemes/layouts/index.json index f0eb4ddd4..ba6d86e51 100644 --- a/themes/jamstackthemes/layouts/index.json +++ b/themes/jamstackthemes/layouts/index.json @@ -1,26 +1,7 @@ -[{{ range $index, $theme := (where .Site.RegularPages "Type" "theme") }}{{ $repoName := printf "%s-%s" (substr (replace .Params.github "/" "-") 19 | urlize) .Params.github_branch }}{{ $repo := index .Site.Data.themes $repoName }}{{ if $index }},{{ end }} +[{{ range $index, $theme := (where .Site.RegularPages "Type" "theme") }} {{ $repoName := printf "%s" (substr (replace .Params.github "/" "-") 19 | urlize) }}{{ $repo := index .Site.Data.themes $repoName }}{{ if $index }},{{ end }} { "title": "{{ .Params.title }}", - "description": {{ if .Params.description }}"{{ .Params.description }}"{{ else }}""{{ end }}, - "theme_key": "{{ $repo.theme_key }}", "github": "{{ .Params.github }}", - "demo": "{{ .Params.demo }}", - "author": "{{ .Params.author }}", - "ssg": [{{ range $index, $category := .Params.ssg }}{{ if $index }},{{ end }}"{{.}}"{{ end }}], - "cms": [{{ range $index, $category := .Params.cms }}{{ if $index }},{{ end }}"{{.}}"{{ end }}], - "css": [{{ range $index, $category := .Params.css }}{{ if $index }},{{ end }}"{{.}}"{{ end }}], - "archetype": [{{ range $index, $category := .Params.archetype }}{{ if $index }},{{ end }}"{{.}}"{{ end }}], - "repo_name": "{{ $repo.name }}", - "branch": "{{ $repo.branch }}", - "repo": "{{ $repo.repo }}", - "stars": "{{ $repo.stars }}", - "forks": "{{ $repo.forks }}", - "open_issues": "{{ $repo.open_issues }}", - "last_commit": "{{ $repo.last_commit }}", - "images": { - "hires": {{ if $repo.images.hires }}"{{ $repo.images.hires }}"{{ else }}null{{ end }}, - "thumbnail": {{ if $repo.images.thumbnail }}"{{ $repo.images.thumbnail }}"{{ else }}null{{ end }}, - "screenshot": {{ if $repo.images.screenshot }}"{{ $repo.images.screenshot }}"{{ else }}null{{ end }} - } + "image": {{ if $repo.images.screenshot }}"{{ $repo.images.screenshot }}"{{ else }}null{{ end }} }{{ end }} ] diff --git a/themes/jamstackthemes/layouts/index.rss.xml b/themes/jamstackthemes/layouts/index.rss.xml index 9e3acd08e..86b93d01d 100644 --- a/themes/jamstackthemes/layouts/index.rss.xml +++ b/themes/jamstackthemes/layouts/index.rss.xml @@ -25,7 +25,7 @@ {{ with .Site.Author.email }}{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}} {{ .Permalink }} - {{ $repoName := printf "%s-%s" (substr (replace .Params.github "/" "-") 19 | urlize) .Params.github_branch }} + {{ $repoName := printf "%s" (substr (replace .Params.github "/" "-") 19 | urlize) }} {{ $repo := index .Site.Data.themes $repoName }} {{ $imageUrl := "https://jamstackthemes.dev/images/default.png" }} diff --git a/themes/jamstackthemes/layouts/partials/branches.html b/themes/jamstackthemes/layouts/partials/branches.html deleted file mode 100644 index 9b902a045..000000000 --- a/themes/jamstackthemes/layouts/partials/branches.html +++ /dev/null @@ -1,44 +0,0 @@ -{{ $branch := (getenv "BRANCH") }} - diff --git a/themes/jamstackthemes/layouts/partials/demo.html b/themes/jamstackthemes/layouts/partials/demo.html deleted file mode 100644 index d5d57b4b9..000000000 --- a/themes/jamstackthemes/layouts/partials/demo.html +++ /dev/null @@ -1,66 +0,0 @@ -
-
- - -
- -
- -
- {{ if .theme.Params.ssg }} - {{- range .theme.Params.ssg }} - {{- with .site.GetPage "taxonomyTerm" (printf "ssg/%s" (urlize .)) }} - {{ partial "icons/icon-link-card.html" (dict "name" .Page.Title "icon" .Page.theme.Params.icon "link" .Page.Permalink) }} - {{ end }} - {{ end }} - {{ end }} - - {{ if .theme.Params.cms }} - {{- range .Params.cms }} - {{- with $.Site.GetPage "taxonomyTerm" (printf "cms/%s" (urlize .)) }} - {{ if eq .Page.Title "No CMS" }} - {{ else }} - {{ partial "icons/icon-link-card.html" (dict "name" .Page.Title "icon" .Page.Params.icon "link" .Page.Permalink) }} - {{ end }} - {{ end }} - {{ end }} - {{ end }} - - {{ if .Params.css }} - {{- range .Params.css }} - {{- with $.Site.GetPage "taxonomyTerm" (printf "css/%s" (urlize .)) }} - {{ if eq .Page.Title "No css" }} - {{ else }} - {{ partial "icons/icon-link-card.html" (dict "name" .Page.Title "icon" .Page.Params.icon "link" .Page.Permalink) }} - {{ end }} - {{ end }} - {{ end }} - {{ end }} - - {{ if .Params.archetype }} - {{- range .Params.archetype }} - {{- with $.Site.GetPage "taxonomyTerm" (printf "archetype/%s" (urlize .)) }} - {{ if eq .Page.Title "No archetype" }} - {{ else }} - {{ partial "icons/icon-link-card.html" (dict "name" .Page.Title "icon" .Page.Params.icon "link" .Page.Permalink) }} - {{ end }} - {{ end }} - {{ end }} - {{ end }} -
- -
- Theme Info - Github - {{ if .site.Params.stackbit_button }} - {{ if .stackbit }} - {{ if .stackbit.createUrl }} - Create Site - {{ end }} - {{ end }} - {{ end }} -
-
-
\ No newline at end of file diff --git a/themes/jamstackthemes/layouts/partials/filters.html b/themes/jamstackthemes/layouts/partials/filters.html index 6c9a3c7c6..d1b50f0e5 100644 --- a/themes/jamstackthemes/layouts/partials/filters.html +++ b/themes/jamstackthemes/layouts/partials/filters.html @@ -20,7 +20,7 @@

SSG

{{ end }} {{ end }} {{ end }} - {{ if ge $count 5 }} + {{ if ge $count 7 }}
  • {{ .Page.Title }} @@ -46,7 +46,7 @@

    SSG

    {{ end }} {{ end }} {{ end }} - {{ if lt $count 5 }} + {{ if lt $count 10 }}
  • {{ .Page.Title }} @@ -122,54 +122,113 @@

    CMS

    CSS

    {{ partial "toggle-icon.html" . }}
  • -
      - {{ range .context.Site.Taxonomies.css }} - {{ if .Page.Params.icon }} -
    • - {{ .Page.Title }} - - {{ .Page.Title }} - {{ $count := 0 }} - {{ if $countAll }} + + {{ $cssTaxonomies := slice }} + {{ range .context.Site.Taxonomies.css }} + {{ $count := 0 }} + {{ if $countAll }} {{ $count = .Count }} - {{ else }} + {{ else }} {{ range .Pages }} - {{ if not .Params.stale }} - {{ $count = add $count 1 }} - {{ end }} + {{ if not .Params.stale }} + {{ if not .Params.disabled }} + {{ $count = add $count 1 }} + {{ end }} + {{ end }} {{ end }} + {{ end }} + {{ $cssTaxonomies = $cssTaxonomies | append (dict "taxonomy" . "count" $count) }} + {{ end }} + + {{ $sortedCssTaxonomies := sort $cssTaxonomies "count" "desc" }} + +
        + {{ range $sortedCssTaxonomies }} + {{ $taxonomy := .taxonomy }} + {{ $count := .count }} + {{ if ge $count 5 }} +
      • + {{ $taxonomy.Page.Title }} + + {{ $taxonomy.Page.Title }} + {{ $count }} +
      • {{ end }} - {{ $count }} - {{ end }} +
      + +
        + {{ partial "toggle-more.html" . }} + {{ range $sortedCssTaxonomies }} + {{ $taxonomy := .taxonomy }} + {{ $count := .count }} + {{ if lt $count 5 }} +
      • + {{ $taxonomy.Page.Title }} + + {{ $taxonomy.Page.Title }} + {{ $count }} +
      • + {{ end }} {{ end }}
      +
    -
    +

    Archetype

    {{ partial "toggle-icon.html" . }}
      {{ range .context.Site.Taxonomies.archetype }} -
    • - - {{ .Page.Title }} {{ $count := 0 }} {{ if $countAll }} - {{ $count = .Count }} + {{ $count = .Count }} {{ else }} - {{ range .Pages }} - {{ if not .Params.stale }} - {{ $count = add $count 1 }} + {{ range .Pages }} + {{ if not .Params.stale }} + {{ if not .Params.disabled }} + {{ $count = add $count 1 }} + {{ end }} + {{ end }} + {{ end }} {{ end }} + {{ if ge $count 5 }} +
    • + + {{ .Page.Title }} + {{ $count }} +
    • {{ end }} + {{ end }} +
    + +
      + {{ partial "toggle-more.html" . }} + {{ range .context.Site.Taxonomies.archetype }} + {{ $count := 0 }} + {{ if $countAll }} + {{ $count = .Count }} + {{ else }} + {{ range .Pages }} + {{ if not .Params.stale }} + {{ if not .Params.disabled }} + {{ $count = add $count 1 }} + {{ end }} + {{ end }} + {{ end }} + {{ end }} + {{ if lt $count 5 }} +
    • + + {{ .Page.Title }} + {{ $count }} +
    • {{ end }} - {{ $count }} - {{ end }}
    +
    diff --git a/themes/jamstackthemes/layouts/partials/footer.html b/themes/jamstackthemes/layouts/partials/footer.html index 49022499d..c4f2ece6a 100644 --- a/themes/jamstackthemes/layouts/partials/footer.html +++ b/themes/jamstackthemes/layouts/partials/footer.html @@ -14,8 +14,8 @@

    Themes

    {{ range .Site.Menus.main }} {{ .Name }} {{ end }} - - Create A Site + + Create a Site
    diff --git a/themes/jamstackthemes/layouts/partials/github-metrics.html b/themes/jamstackthemes/layouts/partials/github-metrics.html deleted file mode 100644 index 47da1e14d..000000000 --- a/themes/jamstackthemes/layouts/partials/github-metrics.html +++ /dev/null @@ -1,10 +0,0 @@ -
    -
    - Github Stars - {{ .stars }} -
    -
    - Last Commit - {{ dateFormat "Jan 2, 2006" .last_commit }} -
    -
    diff --git a/themes/jamstackthemes/layouts/partials/main-menu.html b/themes/jamstackthemes/layouts/partials/main-menu.html index 3d042b39d..a99e04123 100644 --- a/themes/jamstackthemes/layouts/partials/main-menu.html +++ b/themes/jamstackthemes/layouts/partials/main-menu.html @@ -7,11 +7,6 @@ {{ .Name }} - {{end}} -
  • - - Create A Site - -
  • + {{end}}
    diff --git a/themes/jamstackthemes/layouts/partials/metrics/ga.html b/themes/jamstackthemes/layouts/partials/metrics/ga.html new file mode 100644 index 000000000..03113e871 --- /dev/null +++ b/themes/jamstackthemes/layouts/partials/metrics/ga.html @@ -0,0 +1,11 @@ +{{ $gid := (getenv "HUGO_GA_ID") }} +{{ if $gid }} + + +{{ end }} \ No newline at end of file diff --git a/themes/jamstackthemes/layouts/partials/metrics/segment.html b/themes/jamstackthemes/layouts/partials/metrics/segment.html new file mode 100644 index 000000000..018fd037d --- /dev/null +++ b/themes/jamstackthemes/layouts/partials/metrics/segment.html @@ -0,0 +1,12 @@ +{{ $gid := (getenv "HUGO_SEGMENT_ID") }} +{{ if $gid }} + +{{ end }} \ No newline at end of file diff --git a/themes/jamstackthemes/layouts/partials/segment.html b/themes/jamstackthemes/layouts/partials/segment.html deleted file mode 100644 index 7035030ed..000000000 --- a/themes/jamstackthemes/layouts/partials/segment.html +++ /dev/null @@ -1,11 +0,0 @@ -{{ $gid := (getenv "HUGO_SEGMENT_ID") }} -{{ if $gid }} - -{{ else }} - -{{ end}} diff --git a/themes/jamstackthemes/layouts/partials/stackbit.html b/themes/jamstackthemes/layouts/partials/stackbit.html deleted file mode 100644 index 087ffc1ec..000000000 --- a/themes/jamstackthemes/layouts/partials/stackbit.html +++ /dev/null @@ -1,6 +0,0 @@ -
    - Maintained by - Stackbit - Stackbit Logo -
    - diff --git a/themes/jamstackthemes/layouts/partials/star-large.html b/themes/jamstackthemes/layouts/partials/star-large.html deleted file mode 100644 index a75f0b152..000000000 --- a/themes/jamstackthemes/layouts/partials/star-large.html +++ /dev/null @@ -1,3 +0,0 @@ -
    - {{ .stars }} -
    diff --git a/themes/jamstackthemes/layouts/partials/star.html b/themes/jamstackthemes/layouts/partials/star.html deleted file mode 100644 index c4359ca12..000000000 --- a/themes/jamstackthemes/layouts/partials/star.html +++ /dev/null @@ -1,3 +0,0 @@ -
    - {{ .stars }} -
    diff --git a/themes/jamstackthemes/layouts/partials/theme-card.html b/themes/jamstackthemes/layouts/partials/theme-card.html index 3a30625bf..e6ac446ab 100644 --- a/themes/jamstackthemes/layouts/partials/theme-card.html +++ b/themes/jamstackthemes/layouts/partials/theme-card.html @@ -1,146 +1,152 @@ -
    - {{ $githubLink := .theme.Params.github }} - {{ if ne .theme.Params.github_branch "master" }} - {{ $githubLink = (printf "%s/%s/%s" $githubLink "tree" .theme.Params.github_branch)}} - {{ end }} -
    - - {{ if .theme.Params.thumbnail }} - {{ .theme.Params.title }} screenshot - {{ else if .repo }} - {{ $staticPath := (printf "%s/%s%s" "static/images/theme/thumbnail" .repo.theme_key ".jpg") }} - {{ $filePath := (printf "%s/%s%s" "images/theme/thumbnail" .repo.theme_key ".jpg") }} - {{ $filePathHiRes := (printf "%s/%s%s" "images/theme/thumbnail/2x" .repo.theme_key "-2x.jpg") }} - - {{ if .featured }} - {{ $filePath = (printf "%s/%s%s" "capture" .repo.theme_key ".png") }} - {{ if (fileExists $staticPath) }} - {{ .theme.Params.title }} screenshot - {{ else }} - {{ .theme.Params.title }} screenshot - {{ end }} - {{ else }} - {{ if (fileExists $staticPath) }} - {{ .theme.Params.title }} screenshot - {{ else }} - {{ .theme.Params.title }} screenshot - {{ end }} - {{ end }} - - {{ else }} - {{ .theme.Params.title }} screenshot - {{ end }} - - -
    -

    {{ .theme.Params.title }}

    - - {{ if .repo }} - {{ partial "github-metrics.html" (dict "last_commit" .repo.last_commit "stars" .repo.stars )}} + {{ $githubLink := .theme.Params.github }} + {{ if ne .theme.Params.github_branch "master" }} + {{ $githubLink = (printf "%s/%s/%s" $githubLink "tree" .theme.Params.github_branch)}} {{ end }} -
    - {{ if .theme.Params.description }} -

    {{ .theme.Params.description | truncate 70 }}

    - {{ else }} -

    {{ .theme.Summary | truncate 70 }}

    - {{ end }} -
    - + - - + {{ end }} +
    +
    diff --git a/themes/jamstackthemes/layouts/theme/list.html b/themes/jamstackthemes/layouts/theme/list.html index 304169ed6..18023ae57 100644 --- a/themes/jamstackthemes/layouts/theme/list.html +++ b/themes/jamstackthemes/layouts/theme/list.html @@ -1,6 +1,4 @@ {{ define "title" }}{{ $themes := (where .Site.RegularPages "Type" "theme") }}{{ $themes := (where $themes ".Params.draft" "!=" true) }}{{ $themes := (where $themes ".Params.disabled" "!=" true) }}{{ $themeCount := len $themes}}All Themes ({{ $themeCount }}){{ end }} - -{{ define "header_classes" }}{{ end }} {{ define "body_classes" }}page-all-themes has-sidebar{{ end }} {{ define "body_id" }}page-all-themes{{ end }} @@ -18,7 +16,6 @@
    @@ -33,10 +30,10 @@

    All Themes ( {{ range (($themes.ByParam "date").Reverse).ByParam "weight" }} - {{ $repoName := printf "%s-%s" (substr (replace .Params.github "/" "-") 19 | urlize) .Params.github_branch }} - {{ $repo := index .Site.Data.themes $repoName }} - {{ $stackbit := index .Site.Data.stackbit $repoName }} - {{ partial "theme-card.html" (dict "theme" . "repo" $repo "stackbit" $stackbit "site" $.Site) }} + {{ $repoName := printf "%s" (substr (replace .Params.github "/" "-") 19 | urlize) }} + {{ $repo := index .Site.Data.themes $repoName }} + {{ $stackbit := index .Site.Data.stackbit $repoName }} + {{ partial "theme-card.html" (dict "theme" . "repo" $repo "stackbit" $stackbit "site" $.Site) }} {{ end }}

    diff --git a/themes/jamstackthemes/layouts/theme/single-pricing.html b/themes/jamstackthemes/layouts/theme/single-pricing.html deleted file mode 100644 index 6ddcfcad2..000000000 --- a/themes/jamstackthemes/layouts/theme/single-pricing.html +++ /dev/null @@ -1,231 +0,0 @@ -{{ define "title" }}{{ .Title }} - Theme Info{{ end }} -{{ define "header_css" }}{{ end }} -{{ define "body_classes" }}page-default-single{{ end }} - -{{ define "ogmeta" }} - - - - - {{ $repoName := printf "%s-%s" (substr (replace .Params.github "/" "-") 19 | urlize) .Params.github_branch }} - {{ $repo := index .Site.Data.themes $repoName }} - {{ if $repo }} - {{ $staticPath := (printf "%s/%s%s" "static/capture" $repo.theme_key ".png") }} - {{ $filePath := (printf "%s/%s%s" "capture" $repo.theme_key ".png") }} - {{ if (fileExists $staticPath) }} - - {{ end }} - {{ end }} - - - -{{end}} - -{{ define "meta_description" }} -{{ $themes := (where .Site.RegularPages "Type" "theme") }} -{{ $themes := (where $themes ".Params.draft" "!=" true) }} -{{ $themes := (where $themes ".Params.stale" "!=" true) }} -{{ $themes := (where $themes ".Params.disabled" "!=" true) }} -{{ $themeCount := len $themes}} - -{{ end }} - -{{ define "main" }} -{{ $repoName := printf "%s-%s" (substr (replace .Params.github "/" "-") 19 | urlize) .Params.github_branch }} -{{ $repo := index .Site.Data.themes $repoName }} -{{ $stackbit := index .Site.Data.stackbit $repoName }} - -
    -
    -
    -
    -
    -
    - -
    -
    -

    {{ .Title }}

    -
    -

    {{ .Params.description }}

    -
    - -
    - {{ if .Params.ssg }} - {{- range .Params.ssg }} - {{- with $.Site.GetPage "taxonomyTerm" (printf "ssg/%s" (urlize .)) }} - {{ partial "icons/icon-link-card.html" (dict "name" .Page.Title "icon" .Page.Params.icon "link" .Page.Permalink) }} - {{ end }} - {{ end }} - {{ end }} - - {{ if .Params.cms }} - {{- range .Params.cms }} - {{- with $.Site.GetPage "taxonomyTerm" (printf "cms/%s" (urlize .)) }} - {{ if eq .Page.Title "No CMS" }} - {{ else }} - {{ partial "icons/icon-link-card.html" (dict "name" .Page.Title "icon" .Page.Params.icon "link" .Page.Permalink) }} - {{ end }} - {{ end }} - {{ end }} - {{ end }} - - {{ if .Params.css }} - {{- range .Params.css }} - {{- with $.Site.GetPage "taxonomyTerm" (printf "css/%s" (urlize .)) }} - {{ if eq .Page.Title "No css" }} - {{ else }} - {{ partial "icons/icon-link-card.html" (dict "name" .Page.Title "icon" .Page.Params.icon "link" .Page.Permalink) }} - {{ end }} - {{ end }} - {{ end }} - {{ end }} - - {{ if .Params.archetype }} - {{- range .Params.archetype }} - {{- with $.Site.GetPage "taxonomyTerm" (printf "archetype/%s" (urlize .)) }} - {{ if eq .Page.Title "No archetype" }} - {{ else }} - {{ partial "icons/icon-link-card.html" (dict "name" .Page.Title "icon" .Page.Params.icon "link" .Page.Permalink) }} - {{ end }} - {{ end }} - {{ end }} - {{ end }} -
    - - {{ partial "labels/label-author.html" (dict "author" .Params.author) }} - {{ if $repo }}{{ partial "labels/label-stars.html" (dict "stars" $repo.stars) }}{{ end }} - {{ if $repo }}{{ partial "labels/label-last-commit.html" (dict "last_commit" $repo.last_commit) }}{{ end }} - -
    - {{ if .Site.Params.iframe_demo }} - Live Demo - {{ else }} - Live Demo - {{ end }} -
    - -
    -
    -
    - {{ if $repo }} - {{ $staticPath := (printf "%s/%s%s" "static/capture" $repo.theme_key ".png") }} - {{ $filePath := (printf "%s/%s%s" "capture" $repo.theme_key ".png") }} - {{ if (fileExists $staticPath) }} - {{ .Title }} screenshot - {{ end }} - {{ end }} -
    -
    -
    -
    -
    -
    -
    -
    -
    -

    Download Options

    -
    -
    -
    -
    -
    -
    -

    Theme

    -
    - $0 -
    -
    -
    -

    Download the theme as a .zip file

    -
      -
    • NextJS version of theme
    • -
    • No CMS, Markdown files only
    • -
    • Setup, provision and deploy yourself
    • -
    -
    - -
    -
    -
    -
    -
    -

    Starter

    -
    - $49/ - Once off -
    -
    -
    -

    Instantly deploy a full website, with the tech stack of your choice

    -
      -
    • Pick from NextJS, Gatsby, Hugo or Jekyll versions of the theme
    • -
    • Select a headless CMS from Sanity, Contentful, DatoCMS or Forestry. Or use the Markdown files only.
    • -
    • Use Git or Markdown
    • -
    • Deployed to Netlify immediately.
    • -
    - {{ if $stackbit }} - -
    - -
    -
    -
    -
    -
    -

    Website

    -
    - $29/ - Month (1 Year) -
    -
    -
    -

    Everything in Starter + Stackbit Live Editor

    -
      -
    • Live preview, inline editing
    • -
    • Collaborators, roles and permissions
    • -
    • A/B testing
    • -
    -
    - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - {{ .Content }} -
    -
    -
    -
    -
    -
    -
    -{{ end }} diff --git a/themes/jamstackthemes/layouts/theme/single.demo.html b/themes/jamstackthemes/layouts/theme/single.demo.html index 199fa740a..fb26dbc13 100644 --- a/themes/jamstackthemes/layouts/theme/single.demo.html +++ b/themes/jamstackthemes/layouts/theme/single.demo.html @@ -1,93 +1,93 @@ {{ define "title" }}{{ .Title }} - Demo{{ end }} -{{ define "header_css" }}{{ end }} {{ define "body_classes" }}page-theme-single-demo{{ end }} {{ define "ogmeta" }} - - - - - {{ $repoName := printf "%s-%s" (substr (replace .Params.github "/" "-") 19 | urlize) .Params.github_branch }} + + + + + {{ $repoName := printf "%s" (substr (replace .Params.github "/" "-") 19 | urlize) }} {{ $repo := index .Site.Data.themes $repoName }} {{ if $repo }} - {{ $staticPath := (printf "%s/%s%s" "static/capture" $repo.theme_key ".png") }} - {{ $filePath := (printf "%s/%s%s" "capture" $repo.theme_key ".png") }} - {{ if (fileExists $staticPath) }} - + {{ $staticPath := (printf "%s/%s%s" "static/capture" $repo.theme_key ".png") }} + {{ $filePath := (printf "%s/%s%s" "capture" $repo.theme_key ".png") }} + {{ if (fileExists $staticPath) }} + + {{ end }} {{ end }} - {{ end }} - - - + + + {{end}} {{ define "header" }} - -{{ end }} +{{ $repoName := printf "%s" (substr (replace .Params.github "/" "-") 19 | urlize) }} +{{ $repo := index .Site.Data.themes $repoName }} +{{ $stackbit := index .Site.Data.stackbit $repoName }} +
    +
    + -{{ define "main" }} - {{ $repoName := printf "%s-%s" (substr (replace .Params.github "/" "-") 19 | urlize) .Params.github_branch }} - {{ $repo := index .Site.Data.themes $repoName }} - {{ $stackbit := index .Site.Data.stackbit $repoName }} -
    -
    - +
    +

    {{ .Title }}

    +
    + + {{ if .Params.ssg }} + {{- range .Params.ssg }} + {{- with $.Site.GetPage "taxonomyTerm" (printf "ssg/%s" (urlize .)) }} + {{ partial "icons/icon-link.html" (dict "name" .Page.Title "icon" .Page.Params.icon "link" .Page.Permalink) }} + {{ end }} + {{ end }} + {{ end }} -
    -

    {{ .Title }}

    -
    - {{ if .Params.ssg }} - {{- range .Params.ssg }} - {{- with $.Site.GetPage "taxonomyTerm" (printf "ssg/%s" (urlize .)) }} - {{ partial "icons/icon-link.html" (dict "name" .Page.Title "icon" .Page.Params.icon "link" .Page.Permalink) }} - {{ end }} - {{ end }} - {{ end }} + {{ if .Params.cms }} + {{- range .Params.cms }} + {{- with $.Site.GetPage "taxonomyTerm" (printf "cms/%s" (urlize .)) }} + {{ if eq .Page.Title "No CMS" }} + {{ else }} + {{ partial "icons/icon-link.html" (dict "name" .Page.Title "icon" .Page.Params.icon "link" .Page.Permalink) }} + {{ end }} + {{ end }} + {{ end }} + {{ end }} - {{ if .Params.cms }} - {{- range .Params.cms }} - {{- with $.Site.GetPage "taxonomyTerm" (printf "cms/%s" (urlize .)) }} - {{ if eq .Page.Title "No CMS" }} - {{ else }} - {{ partial "icons/icon-link.html" (dict "name" .Page.Title "icon" .Page.Params.icon "link" .Page.Permalink) }} - {{ end }} - {{ end }} - {{ end }} - {{ end }} + {{ if .Params.css }} + {{- range .Params.css }} + {{- with $.Site.GetPage "taxonomyTerm" (printf "css/%s" (urlize .)) }} + {{ if eq .Page.Title "No css" }} + {{ else }} + {{ partial "icons/icon-link.html" (dict "name" .Page.Title "icon" .Page.Params.icon "link" .Page.Permalink) }} + {{ end }} + {{ end }} + {{ end }} + {{ end }} - {{ if .Params.css }} - {{- range .Params.css }} - {{- with $.Site.GetPage "taxonomyTerm" (printf "css/%s" (urlize .)) }} - {{ if eq .Page.Title "No css" }} - {{ else }} - {{ partial "icons/icon-link.html" (dict "name" .Page.Title "icon" .Page.Params.icon "link" .Page.Permalink) }} - {{ end }} - {{ end }} - {{ end }} - {{ end }} +
    +
    +
    + {{ with .OutputFormats.Get "html" -}} + Theme Info + {{- end }} + Github + {{ if .Params.featured }} + Deploy to Netlify Button + + {{ end }} +
    +
    +
    +{{ end }} -
    -
    -
    - Theme Info - Github - {{ if .Site.Params.stackbit_button }} - {{ if .Params.stackbit }} - Create Site - {{ else if $stackbit }} - {{ if $stackbit.createUrl }} - Create Site - {{ end }} - {{ end }} - {{ end }} -
    -
    -
    - +{{ define "main" }} + {{ end }} {{ define "footer" }} - -{{ end }} + +{{ end }} \ No newline at end of file diff --git a/themes/jamstackthemes/layouts/theme/single.html b/themes/jamstackthemes/layouts/theme/single.html index 1c51f6293..226d56938 100644 --- a/themes/jamstackthemes/layouts/theme/single.html +++ b/themes/jamstackthemes/layouts/theme/single.html @@ -3,140 +3,136 @@ {{ define "body_classes" }}page-default-single{{ end }} {{ define "ogmeta" }} - - - - - {{ $repoName := printf "%s-%s" (substr (replace .Params.github "/" "-") 19 | urlize) .Params.github_branch }} + + + + + {{ $repoName := printf "%s" (substr (replace .Params.github "/" "-") 19 | urlize) }} {{ $repo := index .Site.Data.themes $repoName }} {{ if $repo }} - {{ $staticPath := (printf "%s/%s%s" "static/capture" $repo.theme_key ".png") }} - {{ $filePath := (printf "%s/%s%s" "capture" $repo.theme_key ".png") }} - {{ if (fileExists $staticPath) }} - + {{ $staticPath := (printf "%s/%s%s" "static/capture" $repo.theme_key ".png") }} + {{ $filePath := (printf "%s/%s%s" "capture" $repo.theme_key ".png") }} + {{ if (fileExists $staticPath) }} + + {{ end }} {{ end }} - {{ end }} - - - + + + {{end}} {{ define "meta_description" }} -{{ $themes := (where .Site.RegularPages "Type" "theme") }} -{{ $themes := (where $themes ".Params.draft" "!=" true) }} -{{ $themes := (where $themes ".Params.stale" "!=" true) }} -{{ $themes := (where $themes ".Params.disabled" "!=" true) }} -{{ $themeCount := len $themes}} - + {{ $themes := (where .Site.RegularPages "Type" "theme") }} + {{ $themes := (where $themes ".Params.draft" "!=" true) }} + {{ $themes := (where $themes ".Params.stale" "!=" true) }} + {{ $themes := (where $themes ".Params.disabled" "!=" true) }} + {{ $themeCount := len $themes}} + {{ end }} {{ define "main" }} -{{ $repoName := printf "%s-%s" (substr (replace .Params.github "/" "-") 19 | urlize) .Params.github_branch }} -{{ $repo := index .Site.Data.themes $repoName }} -{{ $stackbit := index .Site.Data.stackbit $repoName }} + {{ $repoName := printf "%s" (substr (replace .Params.github "/" "-") 19 | urlize) }} + + {{ $repo := index .Site.Data.themes $repoName }} + {{ $stackbit := index .Site.Data.stackbit $repoName }} -
    -
    -
    -
    -
    -
    +
    +
    +
    +
    +
    +
    -
    -
    -

    {{ .Title }}

    +
    +
    +

    {{ .Title }}

    +
    +

    {{ .Params.description }}

    -

    {{ .Params.description }}

    -
    -
    - {{ if .Params.ssg }} - {{- range .Params.ssg }} - {{- with $.Site.GetPage "taxonomyTerm" (printf "ssg/%s" (urlize .)) }} - {{ partial "icons/icon-link-card.html" (dict "name" .Page.Title "icon" .Page.Params.icon "link" .Page.Permalink) }} - {{ end }} - {{ end }} - {{ end }} +
    + {{ if .Params.ssg }} + {{- range .Params.ssg }} + {{- with $.Site.GetPage "taxonomyTerm" (printf "ssg/%s" (urlize .)) }} + {{ partial "icons/icon-link-card.html" (dict "name" .Page.Title "icon" .Page.Params.icon "link" .Page.Permalink) }} + {{ end }} + {{ end }} + {{ end }} - {{ if .Params.cms }} - {{- range .Params.cms }} - {{- with $.Site.GetPage "taxonomyTerm" (printf "cms/%s" (urlize .)) }} - {{ if eq .Page.Title "No CMS" }} - {{ else }} - {{ partial "icons/icon-link-card.html" (dict "name" .Page.Title "icon" .Page.Params.icon "link" .Page.Permalink) }} - {{ end }} - {{ end }} - {{ end }} - {{ end }} + {{ if .Params.cms }} + {{- range .Params.cms }} + {{- with $.Site.GetPage "taxonomyTerm" (printf "cms/%s" (urlize .)) }} + {{ if eq .Page.Title "No CMS" }} + {{ else }} + {{ partial "icons/icon-link-card.html" (dict "name" .Page.Title "icon" .Page.Params.icon "link" .Page.Permalink) }} + {{ end }} + {{ end }} + {{ end }} + {{ end }} - {{ if .Params.css }} - {{- range .Params.css }} - {{- with $.Site.GetPage "taxonomyTerm" (printf "css/%s" (urlize .)) }} - {{ if eq .Page.Title "No css" }} - {{ else }} - {{ partial "icons/icon-link-card.html" (dict "name" .Page.Title "icon" .Page.Params.icon "link" .Page.Permalink) }} - {{ end }} - {{ end }} - {{ end }} - {{ end }} + {{ if .Params.css }} + {{- range .Params.css }} + {{- with $.Site.GetPage "taxonomyTerm" (printf "css/%s" (urlize .)) }} + {{ if eq .Page.Title "No css" }} + {{ else }} + {{ partial "icons/icon-link-card.html" (dict "name" .Page.Title "icon" .Page.Params.icon "link" .Page.Permalink) }} + {{ end }} + {{ end }} + {{ end }} + {{ end }} - {{ if .Params.archetype }} - {{- range .Params.archetype }} - {{- with $.Site.GetPage "taxonomyTerm" (printf "archetype/%s" (urlize .)) }} - {{ if eq .Page.Title "No archetype" }} - {{ else }} - {{ partial "icons/icon-link-card.html" (dict "name" .Page.Title "icon" .Page.Params.icon "link" .Page.Permalink) }} - {{ end }} - {{ end }} - {{ end }} - {{ end }} -
    + {{ if .Params.archetype }} + {{- range .Params.archetype }} + {{- with $.Site.GetPage "taxonomyTerm" (printf "archetype/%s" (urlize .)) }} + {{ if eq .Page.Title "No archetype" }} + {{ else }} + {{ .Page.Title }} + {{ end }} + {{ end }} + {{ end }} + {{ end }} +
    - {{ partial "labels/label-author.html" (dict "author" .Params.author) }} - {{ if $repo }}{{ partial "labels/label-stars.html" (dict "stars" $repo.stars) }}{{ end }} - {{ if $repo }}{{ partial "labels/label-last-commit.html" (dict "last_commit" $repo.last_commit) }}{{ end }} + {{ partial "labels/label-author.html" (dict "author" .Params.author) }} + {{ if $repo }}{{ partial "labels/label-stars.html" (dict "stars" $repo.stars) }}{{ end }} + {{ if $repo }}{{ partial "labels/label-last-commit.html" (dict "last_commit" $repo.last_commit) }}{{ end }} -
    - Github - {{ if .Site.Params.iframe_demo }} - Live Demo - {{ else }} - Live Demo - {{ end }} +
    + Github + Demo + {{ if .Params.featured }} + Deploy to Netlify Button + + {{ end }} +
    - {{ if .Site.Params.stackbit_button }} - {{ if .Params.stackbit }} - Create Site - {{ else if $stackbit }} - {{ if $stackbit.createUrl }} - Create Site +
    +
    +
    + {{ if $repo }} + {{ $staticPath := (printf "%s/%s%s" "static/capture" $repo.theme_key ".png") }} + {{ $filePath := (printf "%s/%s%s" "capture" $repo.theme_key ".png") }} + {{ if (fileExists $staticPath) }} + {{ .Title }} screenshot {{ end }} {{ end }} - {{ end }} -
    - -
    -
    -
    - {{ if $repo }} - {{ $staticPath := (printf "%s/%s%s" "static/capture" $repo.theme_key ".png") }} - {{ $filePath := (printf "%s/%s%s" "capture" $repo.theme_key ".png") }} - {{ if (fileExists $staticPath) }} - {{ .Title }} screenshot - {{ end }} - {{ end }} +
    -
    -
    -
    -
    - {{ .Content }} +
    +
    +
    + {{ .Content }} +
    -
    {{ end }}