{"id":13594088,"url":"https://github.com/kaushikgopal/henry-hugo","last_synced_at":"2025-03-17T14:17:36.771Z","repository":{"id":38054605,"uuid":"384638080","full_name":"kaushikgopal/henry-hugo","owner":"kaushikgopal","description":"Henry: Hugo theme meant for a gorgeous reading experience and packed with features","archived":false,"fork":false,"pushed_at":"2024-10-23T16:43:17.000Z","size":3760,"stargazers_count":59,"open_issues_count":3,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-10-23T23:26:39.198Z","etag":null,"topics":["blog","font","github-pages","golang","gorgeous-responsive-theme","hugo","hugo-blog-theme","hugo-theme","hugo-themes","ibm-plex","personal-site","recursive","responsive","static-site-generator","theme-site","themes-jekyll"],"latest_commit_sha":null,"homepage":"https://kau.sh/henry/","language":"JavaScript","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/kaushikgopal.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2021-07-10T07:28:24.000Z","updated_at":"2024-10-23T16:43:21.000Z","dependencies_parsed_at":"2024-01-15T22:24:38.148Z","dependency_job_id":"d887354a-15ac-4d04-a0f7-b58345938c09","html_url":"https://github.com/kaushikgopal/henry-hugo","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaushikgopal%2Fhenry-hugo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaushikgopal%2Fhenry-hugo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaushikgopal%2Fhenry-hugo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaushikgopal%2Fhenry-hugo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kaushikgopal","download_url":"https://codeload.github.com/kaushikgopal/henry-hugo/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244047646,"owners_count":20389206,"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","font","github-pages","golang","gorgeous-responsive-theme","hugo","hugo-blog-theme","hugo-theme","hugo-themes","ibm-plex","personal-site","recursive","responsive","static-site-generator","theme-site","themes-jekyll"],"created_at":"2024-08-01T16:01:28.560Z","updated_at":"2025-03-17T14:17:36.722Z","avatar_url":"https://github.com/kaushikgopal.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"# Henry\n\n\u003cp align=\"center\"\u003e\u003cimg src=\"images/henry.png\"\u003e\u003c/p\u003e\n\nHenry is a [Hugo](https://gohugo.io/) theme with a gorgeous reading experience, chock-full of features. To find out more about all the features check out this [blog post](https://kau.sh/blog/henry-hugo-theme/).\n\n\u003cp align=\"center\"\u003e\u003cimg src=\"images/screenshot.png\"\u003e\u003c/p\u003e\n\n# Getting Started\n\nThese are the instructions for setting up a hugo blog with the Henry theme.\n\n```shell\n# 1. Install Hugo\n#    https://gohugo.io/getting-started/installing/\nbrew install hugo\n\nhugo new site blog-henry\ncd blog-henry\n\n# 2. clone Henry\ngit clone https://github.com/kaushikgopal/henry-hugo.git themes/henry\ntouch assets/css/{output,override,override-fonts}.css\n# brew install node # if you don't have npm installed\ncp themes/henry/tailwind.config.henry.js ./tailwind.config.js\nnpm install -D tailwindcss\nnpx tailwindcss -i themes/henry/assets/css/input.css -o ./assets/css/output.css\n\n# 3. configure blog\n## add these lines to your hugo.toml config file\ntheme = \"henry\"\n\n# 4. run Hugo!\n\n# Option: use a single dev script\n# See my blog post on this https://kau.sh/blog/tailwind-hugo#bonus-tip\n\n./bin/dev\n\n# open http://0.0.0.0:1313/\n\n# sample posts are in henry's content folder : themes/henry/content\n# if you want to see some samples, just mark them from draft true → false\n```\n\nYou're good to go. Happy blogging!\n\nNow, whenever you need to get your hugo blog up and running again, just run `./bin/dev`.\n\n## Optional configurations\n\nHere are some recommended customizations to make in your `hugo.toml` config file in addition to what was mentioned above.\n\n### RSS/JSON feed customizations\n\n```toml\n## hugo.toml\n\n# enable .json RSS feeds\n[outputFormats]\n# output formats\n# https://gohugo.io/templates/output-formats/#output-format-definitions\n[outputFormats.rss]\n    mediatype = \"application/rss\"\n    # change RSS path for default XML feed to /feed.xml (default index.xml)\n    baseName = \"feed\"\n[outputFormats.json]\n    # change RSS path for JSON feed to /feed.json\n    baseName = \"feed\"\n\n# configure RSS feeds for specific pages\n[outputs]\n# output format for pages\n# https://gohugo.io/templates/output-formats/#output-formats-for-pages\n    page = [\"html\"]\n    home = [\"html\", \"rss\",\"json\"]\n    # sections = directories e.g. blog, letters, ppt\n    section = [\"html\",\"rss\",\"json\"]\n    # taxonomies = virtual tags/directories e.g. categories, tags (built-in)\n    # no rss for these as they're mostly \"list\" pages\n    taxonomy = [\"html\"]\n    # terms = values of taxonomies e.g. categories/programming\n    term = [\"html\", \"rss\",\"json\"]\n```\n\n### Related posts customization\n\n```toml\n## hugo.toml\n[related]\n    includeNewer = true\n    threshold = 80\n    toLower = true\n\n# weight index distribution tags \u003e categories \u003e title\n[[related.indices]]\n    name = \"tags\"\n    weight = 80\n\n[[related.indices]]\n    name = \"categories\"\n    weight = 20\n\n[[related.indices]]\n    name = \"title\"\n    weight = 10\n```\n\n# Henry in the Wild\n\nHere are a couple of blogs that use Henry:\n\n1. [Karthick Gopal's blog](https://karthickg.com/blog)\n2. [Kaushik Gopal's blog](https://kau.sh/blog)\n\n# License\n\nThe theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).\n\n\n_Bug reports and pull requests are welcome on [GitHub](https://github.com/kaushikgopal/henry-hugo). 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._\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkaushikgopal%2Fhenry-hugo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkaushikgopal%2Fhenry-hugo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkaushikgopal%2Fhenry-hugo/lists"}