{"id":19102654,"url":"https://github.com/talal/pesha","last_synced_at":"2026-03-19T08:06:54.406Z","repository":{"id":229290103,"uuid":"774186199","full_name":"talal/pesha","owner":"talal","description":"A clean and minimal template for your CV or résumé.","archived":false,"fork":false,"pushed_at":"2024-04-11T18:04:34.000Z","size":622,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-04-11T21:59:07.212Z","etag":null,"topics":["curriculum-vitae","cv","package","resume","template","typst","typst-package","typst-template"],"latest_commit_sha":null,"homepage":"","language":"Typst","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit-0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/talal.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2024-03-19T05:08:01.000Z","updated_at":"2024-04-15T05:46:42.071Z","dependencies_parsed_at":"2024-04-15T05:46:39.222Z","dependency_job_id":null,"html_url":"https://github.com/talal/pesha","commit_stats":null,"previous_names":["talal/pesha"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/talal/pesha","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talal%2Fpesha","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talal%2Fpesha/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talal%2Fpesha/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talal%2Fpesha/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/talal","download_url":"https://codeload.github.com/talal/pesha/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talal%2Fpesha/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29960430,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T01:47:18.291Z","status":"online","status_checked_at":"2026-03-01T02:00:07.437Z","response_time":124,"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":["curriculum-vitae","cv","package","resume","template","typst","typst-package","typst-template"],"created_at":"2024-11-09T03:56:32.254Z","updated_at":"2026-03-01T05:34:26.130Z","avatar_url":"https://github.com/talal.png","language":"Typst","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Pesha\n\n\u003e Pesha (Urdu: پیشہ) is the Urdu term for occupation/profession. It is pronounced as pay-sha.\n\nA clean and minimal template for your CV or résumé.\n\nThis template is inspired by Matthew Butterick's excellent\n[_Practical Typography_](https://practicaltypography.com) book.\n\nSee [example.pdf](https://github.com/talal/pesha/blob/main/example.pdf) or [example-profile-picture.pdf](https://github.com/talal/pesha/blob/main/example-profile-picture.pdf) file to see\nhow it looks.\n\n## Usage\n\nYou can use this template in the Typst web app by clicking \"Start from template\" on the\ndashboard and searching for `pesha`.\n\nAlternatively, you can use the CLI to kick this project off using the command\n\n```sh\ntypst init @preview/pesha\n```\n\nTypst will create a new directory with all the files needed to get you started.\n\n## Configuration\n\nThis template exports the `pesha` function with the following named arguments:\n\n| Argument | Type | Description |\n| --- | --- | --- |\n| `name` | [string] | A string to specify the author's name.  |\n| `address` | [string] | A string to specify the author's address. |\n| `contacts` | [array] | An array of content to specify your contact information. E.g., phone number, email, LinkedIn, etc. |\n| `profile-picture` | [content] | The result of a call to the [image function] or `none`. For best result, make sure that your image has an 1:1 aspect ratio. |\n| `paper-size` | [string] | Specify a [paper size string] to change the page size (default is `a4`). |\n| `footer-text` | [content] | Content that will be prepended to the page numbering in the footer. |\n| `page-numbering-format` | [string] | [Pattern](https://typst.app/docs/reference/model/numbering/#parameters-numbering) that will be used for displaying page numbering in the footer (default is `1 of 1`). |\n\nThe function also accepts a single, positional argument for the body.\n\nThe template will initialize your package with a sample call to the `pesha` function in a\nshow rule. If you, however, want to change an existing project to use this template, you\ncan add a show rule like this at the top of your file:\n\n```typ\n#import \"@preview/pesha:0.4.0\": *\n\n#show: pesha.with(\n  name: \"Max Mustermann\",\n  address: \"5419 Hollywood Blvd Ste c731, Los Angeles, CA 90027\",\n  contacts: (\n    [(323) 555 1435],\n    [#link(\"mailto:max@mustermann.com\")],\n  ),\n  paper-size: \"us-letter\",\n  footer-text: [Mustermann Résumé ---]\n)\n\n// Your content goes below.\n```\n\n[array]: https://typst.app/docs/reference/foundations/array/\n[content]: https://typst.app/docs/reference/foundations/content/\n[string]: https://typst.app/docs/reference/foundations/str/\n[paper size string]: https://typst.app/docs/reference/layout/page#parameters-paper\n[image function]: https://typst.app/docs/reference/visualize/image/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftalal%2Fpesha","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftalal%2Fpesha","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftalal%2Fpesha/lists"}