{"id":24793260,"url":"https://github.com/project-polymorph/gender-library","last_synced_at":"2026-02-17T13:03:19.271Z","repository":{"id":270981082,"uuid":"912031441","full_name":"project-polymorph/gender-library","owner":"project-polymorph","description":"Gender-diversity library website","archived":false,"fork":false,"pushed_at":"2025-02-28T10:26:43.000Z","size":8660,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-10T20:07:11.497Z","etag":null,"topics":["gender","library"],"latest_commit_sha":null,"homepage":"https://www.genderlibs.org","language":"Dockerfile","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/project-polymorph.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,"zenodo":null},"funding":{"github":"razonyang","custom":["https://paypal.me/razonyang"]}},"created_at":"2025-01-04T14:00:11.000Z","updated_at":"2025-02-28T10:26:22.000Z","dependencies_parsed_at":"2025-01-29T21:56:37.037Z","dependency_job_id":"b131ca4a-1091-4503-ab0b-46a3091cfb8a","html_url":"https://github.com/project-polymorph/gender-library","commit_stats":null,"previous_names":["project-polymorph/gender-library"],"tags_count":0,"template":false,"template_full_name":"yunwei37/hugo-template-starter","purl":"pkg:github/project-polymorph/gender-library","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/project-polymorph%2Fgender-library","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/project-polymorph%2Fgender-library/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/project-polymorph%2Fgender-library/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/project-polymorph%2Fgender-library/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/project-polymorph","download_url":"https://codeload.github.com/project-polymorph/gender-library/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/project-polymorph%2Fgender-library/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29545295,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T13:00:00.370Z","status":"ssl_error","status_checked_at":"2026-02-17T12:57:14.072Z","response_time":100,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["gender","library"],"created_at":"2025-01-29T21:56:32.145Z","updated_at":"2026-02-17T13:03:19.229Z","avatar_url":"https://github.com/project-polymorph.png","language":"Dockerfile","funding_links":["https://github.com/sponsors/razonyang","https://paypal.me/razonyang"],"categories":[],"sub_categories":[],"readme":"# Hugo Theme Bootstrap Skeleton\n\nThe starter template for [Hugo Bootstrap Theme](https://github.com/razonyang/hugo-theme-bootstrap) that install the theme as a Hugo module.\n\n## Demo\n\n| Platform | URL |\n|---|---|\n| Netlify | https://hbs-skeleton.netlify.app/ |\n| GitHub Pages | https://projects.razonyang.com/hugo-theme-bootstrap-skeleton/ |\n| Cloudflare Pages | https://hbs-skeleton.pages.dev/ |\n| Docker image | See also [Dockerfile](Dockerfile) |\n\n## Usage\n\nPlease make sure you have install the [build tools](https://hbs.razonyang.com/v1/en/docs/getting-started/prerequisites/#build-tools) prior to using this template if you're not using Docker to preview site.\n\n**1. Clone this repository**\n\nIt's recommending cloning the repo by clicking the `Use this template` button, if you're hosting your code on GitHub.\n\nYou can also clone it manually.\n\n```shell\n$ git clone https://github.com/razonyang/hugo-theme-bootstrap-skeleton.git blog\n$ cd blog\n$ rm -rf .git\n$ git init -b main\n```\n\n\u003e The `rm -rf .git` is a dangerous action, please make sure that you enter the right folder.\n\n**2. Modify the `go.mod`**\n\nReplace the following line to yours, such as `module github.com/user/repo`.\n\n```text\nmodule github.com/razonyang/hugo-theme-bootstrap-skeleton\n```\n\n**3. Commit and push changes to your repository**\n\n```shell\n$ git add -A\n$ git commit -m 'First commit'\n$ git remote set-url origin github.com/user/repo\n$ git push origin main\n```\n\n## Go Proxy(Optional)\n\nIf you're located at China mainland without VPN, the Hugo module download may fail.\n\nThere are two proxies for this: [GOPROXY.CN](https://goproxy.cn) and [GOPROXY.IO](https://goproxy.io).\n\n```bash\n$ export HUGO_MODULE_PROXY=https://goproxy.cn\n```\n\n\u003e Please note that, Hugo doesn't respect the `GOPROXY` env var, please use `HUGO_MODULE_PROXY` instead.\n\nYou can also set the `module.proxy` instead of using env var.\n\n```yaml\nmodule:\n  proxy: https://goproxy.cn\n```\n\n## Local Development\n\n### Develop via Docker Compose\n\n**1.Install Dependencies**\n\n```sh\n$ docker compose run server npm ci\n```\n\n\u003e This step is one-time task per machine, unless you deleted the __node_modules__ folder or introduce new dependencies.\n\n**2. Start server**\n\n```sh\n$ docker compose up\n```\n\n### Develop with Native Tools\n\n**1. Install dependencies**\n\n```shell\n$ npm ci\n```\n\nGenerally, this step only needs to be performed once for each local project.\n\n**2. Start server**\n\n```shell\n$ hugo server\n```\n\n## Upgrade theme\n\n```shell\n$ hugo mod get github.com/razonyang/hugo-theme-bootstrap@master\n$ hugo mod npm pack\n$ npm update\n$ git add go.mod go.sum package.json package-lock.json\n$ git commit -m 'Update the theme'\n```\n\nYou can also replace the `master` with stable [releases](https://github.com/razonyang/hugo-theme-bootstrap/releases).\n\n## Deployment\n\n\u003e The `baseURL` is very important, the CSS, JS and Sitemap require it to be set.\n\n**Please make sure you've change the `baseURL` on `config/_default/config.yaml` before deploying your site.**\n\n**Please also remove the `-b {url}` from the following files if you're using this template.**\n\n- `.github/workflows/gh-pages.yml`\n\nThis template supports GitHub Pages, Docker image, Netlify out-of-box. See also [Deployment](https://hbs.razonyang.com/v1/en/docs/deployment/) for getting more detail.\n\nThe following parameters also need to be tweaked.\n\n- Replace the `utterances.*` or `giscus.*` with your own to get notified when someone comments.\n- Modify the `repo` to your own, or delete it if it's unused.\n- `contact.endpoint`.\n\nThere are some hooks under the `layouts/partials/hooks` folder for showing how to use them, please feel free to delete them.\n\n## Documentations\n\n- [English](https://hbs.razonyang.com/v1/en/)\n- [简体中文](https://hbs.razonyang.com/v1/zh-hans/)\n- [繁體中文](https://hbs.razonyang.com/v1/zh-hant/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproject-polymorph%2Fgender-library","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fproject-polymorph%2Fgender-library","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproject-polymorph%2Fgender-library/lists"}