{"id":13689291,"url":"https://github.com/jakewies/hugo-theme-codex","last_synced_at":"2025-04-13T07:50:07.480Z","repository":{"id":40341425,"uuid":"269444058","full_name":"jakewies/hugo-theme-codex","owner":"jakewies","description":"A minimal blog theme for Hugo  🍜","archived":false,"fork":false,"pushed_at":"2024-06-29T22:52:38.000Z","size":616,"stargazers_count":333,"open_issues_count":31,"forks_count":189,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-04-13T07:50:02.759Z","etag":null,"topics":["blog","go","hugo","theme"],"latest_commit_sha":null,"homepage":"https://themes.gohugo.io/themes/hugo-theme-codex/","language":"SCSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jakewies.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-06-04T19:13:28.000Z","updated_at":"2025-02-03T21:22:06.000Z","dependencies_parsed_at":"2024-01-14T17:08:40.472Z","dependency_job_id":"a20ded76-acf4-4363-a0c4-1dd7c1c24764","html_url":"https://github.com/jakewies/hugo-theme-codex","commit_stats":{"total_commits":209,"total_committers":26,"mean_commits":8.038461538461538,"dds":0.6602870813397129,"last_synced_commit":"9e911e331c90fcd56ae5d01ae5ecb2fa06ba55da"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakewies%2Fhugo-theme-codex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakewies%2Fhugo-theme-codex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakewies%2Fhugo-theme-codex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakewies%2Fhugo-theme-codex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jakewies","download_url":"https://codeload.github.com/jakewies/hugo-theme-codex/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248681494,"owners_count":21144700,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["blog","go","hugo","theme"],"created_at":"2024-08-02T15:01:41.581Z","updated_at":"2025-04-13T07:50:07.440Z","avatar_url":"https://github.com/jakewies.png","language":"SCSS","funding_links":[],"categories":["go"],"sub_categories":[],"readme":"## Codex\n\nA minimal blog theme built for [Hugo](https://gohugo.io/) 🍜\n\n![Hugo desktop screenshot](/images/screenshot.png)\n\n- An about page 👋🏻 and a blog 📝\n- Blog posts can be tagged 🏷\n- Mathematical notations are supported with KaTex 📐\n- Sass/SCSS for styling ✨\n- Support for Google Analytics 📈 and Disqus 💬\n- i18n support\n\n### Prerequisites\n\nHugo **extended version** (for Sass/SCSS support).\n\nFor macOS users, the extended version is installed by default if you use `homebrew`.\n\nFor Windows users, you can install with `choco`:\n```\nchoco install hugo-extended -confirm\n```\n\nNote that this theme only supports Hugo version 82 and above.\n\n### Getting started\n\nAt the root of your Hugo project, run:\n\n```bash\ngit submodule add https://github.com/jakewies/hugo-theme-codex.git themes/hugo-theme-codex\n```\n\nNext, copy the contents of the [`exampleSite/config.toml`](https://github.com/jakewies/hugo-theme-codex/blob/master/exampleSite/config.toml) to your site's `config.toml`. Make sure to read all the comments, as there a few nuances with Hugo themes that require some changes to that file.\n\nThe most important change you will need to make to the `config.toml` is removing [this line](https://github.com/jakewies/hugo-theme-codex/blob/master/exampleSite/config.toml#L2):\n\n```\nthemesDir = \"../../\" \n```\n\nIt only exists in the example site so that the demo can function properly.\n\nFinally, run:\n\n```\nhugo server -D \n```\n\n**Note: If you are seeing a blank page it is probably because you have nothing in your `content/` directory. Read on to fix that.**\n\n### Configuring the Home Page\n\nThe site's home page can be configured by creating a `content/_index.md` file. This file can use the following frontmatter:\n\n```md\n---\nheading: \"Hi, I'm Codex\"\nsubheading: \"A minimal blog theme for hugo.\"\nhandle: \"hugo-theme-codex\"\n---\n```\n\nIf you would rather override the about page's layout with your own, you can do so by creating a `layouts/index.html`. You can find the `index.html` file that `hugo-theme-codex` uses [here](https://github.com/jakewies/hugo-theme-codex/blob/master/layouts/index.html).\n\n### Configuring Social Icons\n\nSocial Icons are optional. To show any of these icons, just provide the value in the `[params]` section of `config.toml`.\n\n```toml\n# config.toml\n\n[params]\n  twitter = \"https://twitter.com/GoHugoIO\"\n  github = \"https://github.com/jakewies/hugo-theme-codex\"\n  # ...\n\n  iconOrder = [\"Twitter\", \"GitHub\"]\n```\n\nIf any of these options are given, `hugo-theme-codex` will render the social icon in the footer, using the order specified in `iconOrder`.\n\nSee the contents of the [example site](https://github.com/jakewies/hugo-theme-codex/tree/master/exampleSite) for more details.\n\nYou can also create additional social icons by:\n1. Adding your own SVGs in `static/svg/`, for example `static/svg/reddit.svg`.\n2. Modifying your site's config as follows:\n   ```toml\n   [params]\n      # ...\n      reddit = \"\u003curl to your reddit\u003e\"\n   \n      iconOrder = [\"Reddit\"]\n   ```\n\nMake sure that the icon title must match the icon's file name. If the title contains more than one word, say \"My Awesome Site\",\nyou can use dash \"-\" for the icon name: `my-awesome-site.svg`. \n\n### Creating a blog post\n\nYou can create a new blog post page by going to the root of your project and typing:\n\n```\nhugo new blog/:blog-post.md\n```\n\nWhere `:blog-post.md` is the name of the file of your new post. \n\nThis will execute the theme's `blog` archetype to create a new markdown file in `contents/blog/:blog-post.md` with the following frontmatter:\n\n```md\n# Default post frontmatter:\n\n# The title of your post. Default value is generated\n# From the markdown filename\ntitle: \"{{ replace .TranslationBaseName \"-\" \" \" | title }}\"\n# The date the post was created\ndate: {{ .Date }}\n# The post filename\nslug: \"\"\n# Post description used for seo\ndescription: \"\"\n# Post keywords used for seo\nkeywords: []\n# If true, the blog post will not be included in static build\ndraft: true\n# Categorize your post with tags\ntags: []\n# Uses math typesetting\nmath: false\n# Includes a table of contents on screens \u003e1024px\ntoc: false\n```\n\nThe frontmatter above is the default for a new post, but all values can be changed.\n\n### Configuring Table of Contents in blog posts\n\nTo display post title in Table of Contents in blog posts, set `showPageTitleInTOC`\nto `true` in the `[params]` section of `config.toml`.\n\n```toml\n# config.toml\n\n[params]\n  # ...\n  showPageTitleInTOC = true\n```\n\n### Adding a new section menu\n\nIn your site's `config.toml`, add a new menu definition for say, \"photos\":\n```toml\n# config.toml\n\n[[menu.main]]\n    identifier = \"photos\"\n    name = \"photos\"\n    title = \"Photos\"\n    url = \"/photos\"\n```\n\nThen, put your posts under \"content/photos\". \n\n### Custom styling\n\nYou have two options for custom styling. The first is to create an `assets/scss/custom.scss` in your project and put your custom styling there. For example, the snippet below changes the dot's color on your About page to blue:\n\n```scss\n// custom.scss\n.fancy {\n  color: #1e88e5;\n}\n```\n\nYou can even use Hugo variables/params in your custom styles too!\n\n```scss\n// custom.scss\n.fancy {\n  color: {{ .Site.Params.colors.fancy | default \"#1e88e5\" }}\n}\n```\n\n```toml\n# config.toml\n[params.colors]\n    fancy = \"#f06292\"\n```\n\nThe second option is to use the supported scss overrides. You can do this by creating an `assets/scss/overrides/scss` file in your project. The following overrides are supported:\n\n```scss\n// overrides.scss\n\n// The primary accent color used throughout the site\n$primary: ''\n```\n\n### Tags\n\nRight now `hugo-theme-codex` uses the `tags` taxonomy for blog posts. You can view all the blog posts of a given tag by going to `/tags/:tag-name`, where `:tag-name` is the name of your tag.\n\n### i18n\n\nSupport for [`i18n`](https://gohugo.io/functions/i18n/#readout) is currently available for the following languages:\n\n- English\n- German\n\nIf you would like to have another language supported, create a post in the [Discussions](https://github.com/jakewies/hugo-theme-codex/discussions) section of the repository. You may also support your language of choice by creating a `i18n/` directory in your project with a `.toml` file named after the language you are supporting. \n\nThere are not many UI-related strings to override in this theme. If you are looking to support a language of your own, refer to [the `i18n/en.toml` file](https://github.com/jakewies/hugo-theme-codex/blob/a7800567242b6c7d3b4bd8b36dd329c3232faf5a/i18n/en.toml) to see which strings can be overridden.\n\n### Favicon\n\nTo update favicon of the site, replace the one in `static/favicon.ico` with your own.\n\n## Contributing\n\nCheck out the [CONTRIBUTORS.md file](https://github.com/jakewies/hugo-theme-codex/blob/master/CONTRIBUTING.md) for more info on how you can contribute!\n\n## Contributors ✨\n\n\u003c!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section --\u003e\n[![All Contributors](https://img.shields.io/badge/all_contributors-23-orange.svg?style=flat-square)](#contributors-)\n\u003c!-- ALL-CONTRIBUTORS-BADGE:END --\u003e\n\nThanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --\u003e\n\u003c!-- prettier-ignore-start --\u003e\n\u003c!-- markdownlint-disable --\u003e\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://www.jakewiesler.com\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/12075916?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJake Wiesler\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=jakewies\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"#design-jakewies\" title=\"Design\"\u003e🎨\u003c/a\u003e \u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=jakewies\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://www.chuxinhuang.com/\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/30974572?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eChuxin Huang\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=chuxinh\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=chuxinh\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"#design-chuxinh\" title=\"Design\"\u003e🎨\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://kentnek.com\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/7024160?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eKent\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=kentnek\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=kentnek\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"#design-kentnek\" title=\"Design\"\u003e🎨\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/somaniarushi\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/54224195?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eArushi Somani\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=somaniarushi\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/xvallspl\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/867299?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eXavier Valls\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=xvallspl\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=xvallspl\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"#design-xvallspl\" title=\"Design\"\u003e🎨\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/pyvain\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/2924494?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003ePyvain\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=pyvain\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=pyvain\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"http://jlebar.com\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/150663?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJustin Lebar\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=jlebar\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://www.aareet.com\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/33654?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eAareet Shermon\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#design-aareet\" title=\"Design\"\u003e🎨\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/dgnicholson\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/6208288?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003edgnicholson\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#design-dgnicholson\" title=\"Design\"\u003e🎨\u003c/a\u003e \u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=dgnicholson\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://msfjarvis.dev\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/13348378?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eHarsh Shandilya\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=msfjarvis\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://twitter.com/ProfessorLogout\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/13572444?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eMarco Kamner\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=ProfessorLogout\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://ewen.io/\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/10872821?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eewen\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=ewenme\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/SanchithHegde\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/22217505?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eSanchith Hegde\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=SanchithHegde\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=SanchithHegde\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://soeren.codes\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/5760400?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eSören Johanson\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=CER10TY\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/jdl031\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/1720477?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJames Lloyd\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=jdl031\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"http://wilsonehusin.com\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/14004487?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eWilson E. Husin\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=wilsonehusin\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://tommorris.org/\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/175?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eTom Morris\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=tommorris\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"http://twitter.com/sdil\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/461537?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eMohamad Fadhil\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=sdil\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/skvale\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/5314713?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eSam Kvale\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=skvale\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/macxcool\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/2531654?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eMark C\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=macxcool\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://rbn.is\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/5955614?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eRobin\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=rbnis\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/gprst\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/32643653?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003egprst\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=gprst\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"#design-gprst\" title=\"Design\"\u003e🎨\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"http://michaelwatts.me\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/811806?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eMichael Watts\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/jakewies/hugo-theme-codex/commits?author=altescape\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\n\u003c!-- markdownlint-restore --\u003e\n\u003c!-- prettier-ignore-end --\u003e\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:END --\u003e\n\nThis project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjakewies%2Fhugo-theme-codex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjakewies%2Fhugo-theme-codex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjakewies%2Fhugo-theme-codex/lists"}