{"id":21100511,"url":"https://github.com/antonioalmeida/texugo-theme","last_synced_at":"2026-04-02T01:35:51.750Z","repository":{"id":40972166,"uuid":"317034771","full_name":"antonioalmeida/texugo-theme","owner":"antonioalmeida","description":"🦡   Minimalistic website theme for Hugo based on Tex's typography.","archived":false,"fork":false,"pushed_at":"2026-02-06T23:57:08.000Z","size":3551,"stargazers_count":9,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-02-07T08:30:00.665Z","etag":null,"topics":["hacktoberfest","hugo","hugo-theme","minimal","tex"],"latest_commit_sha":null,"homepage":"","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/antonioalmeida.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-11-29T20:14:16.000Z","updated_at":"2026-02-06T23:57:11.000Z","dependencies_parsed_at":"2022-09-17T03:51:37.152Z","dependency_job_id":null,"html_url":"https://github.com/antonioalmeida/texugo-theme","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/antonioalmeida/texugo-theme","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antonioalmeida%2Ftexugo-theme","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antonioalmeida%2Ftexugo-theme/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antonioalmeida%2Ftexugo-theme/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antonioalmeida%2Ftexugo-theme/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/antonioalmeida","download_url":"https://codeload.github.com/antonioalmeida/texugo-theme/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antonioalmeida%2Ftexugo-theme/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31293965,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T01:05:07.454Z","status":"ssl_error","status_checked_at":"2026-04-02T00:56:46.496Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["hacktoberfest","hugo","hugo-theme","minimal","tex"],"created_at":"2024-11-19T23:13:19.248Z","updated_at":"2026-04-02T01:35:51.745Z","avatar_url":"https://github.com/antonioalmeida.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Tex(h)ugo 🦡\n\nMinimalistic website theme for [Hugo](https://gohugo.io/) based on [Tex](https://en.wikipedia.org/wiki/TeX)'s typography. Live preview available [here](https://antonioalmeida.github.io)\n \n\n![](https://raw.githubusercontent.com/antonioalmeida/texugo-theme/master/images/screenshot.png)\n\n| Home             |  Post |\n:-------------------------:|:-------------------------:\n![](https://raw.githubusercontent.com/antonioalmeida/texugo-theme/master/images/home.png)  |  ![](https://raw.githubusercontent.com/antonioalmeida/texugo-theme/master/images/post.png)\n\n## Getting Started\n\nClone this repository inside your Hugo project theme directory.\n\n```shell\n$ mkdir themes\n$ cd themes\n$ git clone https://github.com/antonioalmeida/texugo-theme.git\n```\n\n## Configuration\n\nTake a look at the [/exampleSite](https://github.com/antonioalmeida/antonioalmeida.github.io) directory.\n\nCopy the `config.toml` to the root directory of your website and overwrite the existing information as needed:\n\n__[config.toml](https://github.com/antonioalmeida/texugo-theme/blob/master/exampleSite/config.toml)__:\n\n```toml\nbaseurl = \"https://example.com\"\nlanguageCode = \"en\"\ntitle = \"Texugo\"\ntheme = \"texugo-theme\"\ncopyright = \"\u0026copy; John Doe 2020\"\n\n[params]\n    nickname = \"johndoe\"\n    # Displayed as the main heading in the sidebar\n    name = \"John Doe\"\n    # Displayed in the sidebar below the name. Each entry is rendered as a separate line.\n    bio = [\"Software Engineer,\", \"Open Source enthusiast,\", \"Coffee lover.\"]\n\n[[params.social]]\n  name = \"Github\"\n  url = \"https://example.com\"\n\n[[params.social]]\n  name = \"Twitter\"\n  url = \"https://example.com\"\n\n[[params.social]]\n  name = \"LinkedIn\"\n  url = \"https://example.com\"\n\n[markup]\n  [markup.highlight]\n    codeFences = true\n    guessSyntax = false\n    hl_Lines = \"\"\n    lineNoStart = 1\n    lineNos = false\n    lineNumbersInTable = true\n    noClasses = true\n    style = \"github\"\n    tabWidth = 4\n```\n\n## Development\n\n```shell\n# run local server (localhost:1313)\n$ hugo server\n\n# make production build (/public)\n$ hugo --minified\n```\n\n## Deployment \n\n- Check [this repository](https://github.com/antonioalmeida/antonioalmeida.github.io/blob/master/.github/workflows/gh-pages.yml) as an example on how to deploy via Github Actions.\n\n## Inspired by\n- [Tex](https://en.wikipedia.org/wiki/TeX)\n- [WiTex](https://github.com/AndrewBelt/WiTeX)\n- [Charaka](https://github.com/natarajmb/charaka-hugo-theme)\n\n## Tweaking the theme\n- Set up and activate as your website's theme\n- Inside the theme directory install dependencies: `$ npm install`\n- Make required changes to `style.scss` and run `$ npm run css-build \u0026\u0026 npm run css-watch` to live update your changes\n\n## License\n\n`tex-hugo-theme` is licensed under the [MIT License](LICENSE.md).\n\n## Author\n\n[António Almeida](https://github.com/antonioalmeida)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fantonioalmeida%2Ftexugo-theme","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fantonioalmeida%2Ftexugo-theme","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fantonioalmeida%2Ftexugo-theme/lists"}