{"id":22589397,"url":"https://github.com/pavelzw/moderner-cv","last_synced_at":"2026-02-24T02:32:31.081Z","repository":{"id":265664740,"uuid":"823366082","full_name":"pavelzw/moderner-cv","owner":"pavelzw","description":"moderncv in typst","archived":false,"fork":false,"pushed_at":"2026-02-01T17:36:06.000Z","size":2080,"stargazers_count":22,"open_issues_count":2,"forks_count":9,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-02-01T18:18:44.364Z","etag":null,"topics":["cv","typst","typst-cv","typst-package","typst-template"],"latest_commit_sha":null,"homepage":"https://typst.app/universe/package/moderner-cv","language":"Typst","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/pavelzw.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":".github/CODEOWNERS","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":"2024-07-02T22:45:16.000Z","updated_at":"2026-02-01T17:36:08.000Z","dependencies_parsed_at":"2024-11-30T12:19:55.141Z","dependency_job_id":"57d04fd4-8ce1-4d65-87de-5a2c8145bbb3","html_url":"https://github.com/pavelzw/moderner-cv","commit_stats":null,"previous_names":["pavelzw/moderner-cv"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/pavelzw/moderner-cv","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pavelzw%2Fmoderner-cv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pavelzw%2Fmoderner-cv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pavelzw%2Fmoderner-cv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pavelzw%2Fmoderner-cv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pavelzw","download_url":"https://codeload.github.com/pavelzw/moderner-cv/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pavelzw%2Fmoderner-cv/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29769176,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-24T01:40:24.820Z","status":"online","status_checked_at":"2026-02-24T02:00:07.497Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["cv","typst","typst-cv","typst-package","typst-template"],"created_at":"2024-12-08T08:13:23.924Z","updated_at":"2026-02-24T02:32:31.047Z","avatar_url":"https://github.com/pavelzw.png","language":"Typst","funding_links":[],"categories":[],"sub_categories":[],"readme":"# moderner-cv\n\n[![License][license-badge]][license]\n[![CI][ci-badge]][ci]\n[![Latest release][latest-release-badge]][typst-universe]\n\n[license-badge]: https://img.shields.io/github/license/pavelzw/moderner-cv?style=flat-square\n[license]: ./LICENSE\n[ci-badge]: https://img.shields.io/github/actions/workflow/status/pavelzw/moderner-cv/ci.yml?style=flat-square\n[ci]: https://github.com/pavelzw/moderner-cv/actions/\n[latest-release-badge]: https://img.shields.io/github/v/tag/pavelzw/moderner-cv?style=flat-square\u0026label=latest\u0026sort=semver\n[typst-universe]: https://typst.app/universe/package/moderner-cv\n\nThis is a typst adaptation of LaTeX's [moderncv](https://github.com/moderncv/moderncv), a modern curriculum vitae class.\n\n## Requirements\n\nThis template uses FontAwesome icons via the [fontawesome typst package](https://typst.app/universe/package/fontawesome).\nIn order to properly use it, you need to have fontawesome installed on your system or have typst configured (via `--font-path`) to use the fontawesome font files.\nYou can download fontawesome [here](https://fontawesome.com/download).\n\n\u003e [!TIP]\n\u003e You can use typst in combination with [pixi](https://pixi.sh) to easily add fontawesome to your project and run it reproducibly anywhere.\n\u003e\n\u003e ```toml\n\u003e [dependencies]\n\u003e typst = \"\u003e=0.12.0\"\n\u003e typstyle = \"\u003e=0.12\"\n\u003e font-otf-fontawesome = \"*\"\n\u003e ```\n\n## Usage\n\n```typst\n#import \"@preview/moderner-cv:0.2.0\": *\n\n#show: moderner-cv.with(\n  name: \"Jane Doe\",\n  lang: \"en\",\n  social: (\n    email: \"jane.doe@example.com\",\n    github: \"jane-doe\",\n    linkedin: \"jane-doe\",\n    // custom socials: (icon, link, body)\n    // any fontawesome icon can be used: https://fontawesome.com/search\n    website: (\"link\", \"https://example.me\", \"example.me\"),\n  ),\n  image: image(\"my-image.png\", height: 8em),\n)\n\n// ...\n```\n\n### Image\n\nTo add an image to your curriculum vitae, you can pass an [image](https://typst.app/docs/reference/visualize/image/) to the `image` parameter. Here are the additional parameters:\n\n- `image-frame-stroke`: stroke of the frame. By default is 1pt + the main of the file. Can be any stroke value. Set to `none` to remove the frame.\n\n## Examples\n\n![Jane Doe's CV](assets/thumbnail.png)\n\n## Building and Testing Locally\n\nTo build and test the template locally, you can run `pixi run watch` in the root of this repository.\nPlease ensure to use the version of moderner-cv that is in this repository instead of the one on the typst universe by temporarily changing the import in [`cv.typ`](./template/cv.typ) to `#import \"../lib.typ\": *`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpavelzw%2Fmoderner-cv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpavelzw%2Fmoderner-cv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpavelzw%2Fmoderner-cv/lists"}