{"id":16549853,"url":"https://github.com/shaftoe/curriculum-vitae","last_synced_at":"2026-05-08T11:39:19.214Z","repository":{"id":43529768,"uuid":"234500198","full_name":"shaftoe/curriculum-vitae","owner":"shaftoe","description":"Alexander Fortin's curriculum vitæ","archived":false,"fork":false,"pushed_at":"2022-02-28T14:11:32.000Z","size":360,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-14T19:12:45.574Z","etag":null,"topics":["css-grid","curriculum-vitae","hugo","hugo-partials","insights","jamstack","netlify"],"latest_commit_sha":null,"homepage":"https://cv.l3x.in/","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shaftoe.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}},"created_at":"2020-01-17T08:00:41.000Z","updated_at":"2022-02-27T00:45:02.000Z","dependencies_parsed_at":"2022-08-23T10:41:20.157Z","dependency_job_id":null,"html_url":"https://github.com/shaftoe/curriculum-vitae","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shaftoe%2Fcurriculum-vitae","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shaftoe%2Fcurriculum-vitae/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shaftoe%2Fcurriculum-vitae/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shaftoe%2Fcurriculum-vitae/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shaftoe","download_url":"https://codeload.github.com/shaftoe/curriculum-vitae/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241869737,"owners_count":20034134,"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":["css-grid","curriculum-vitae","hugo","hugo-partials","insights","jamstack","netlify"],"created_at":"2024-10-11T19:31:43.532Z","updated_at":"2026-05-08T11:39:19.206Z","avatar_url":"https://github.com/shaftoe.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Curriculum Vitae\n\nA modern, data-driven curriculum vitae built with [Eleventy](https://www.11ty.dev/) that generates both a responsive web version and a PDF document.\n\n## Features\n\n### 🎨 **Modern Web CV**\n\n- **Responsive Design**: Mobile-friendly layout that adapts to different screen sizes\n- **Clean UI**: Built with [Pico CSS](https://picocss.com/) framework with custom styling\n- **Font Awesome Icons**: Visual icons for navigation links (contact, GitHub, website, PDF)\n- **Print-Optimized**: Special print styles for generating PDF-friendly output\n\n### 📄 **Dual Output Format**\n\n- **HTML Version**: Fully responsive web page hosted on Netlify\n- **PDF Generation**: Automatically generates a PDF version using PDFKit during build\n- **SEO Optimized**: Includes meta tags, keywords, and structured data\n\n### 🗂️ **Data-Driven Architecture**\n\n- **JSON Configuration**: Main CV data stored in `_data/main.json` (personal info, skills, languages, links)\n- **Markdown Job Entries**: Each work experience is a separate markdown file in `_jobs/` directory\n- **Numbered Sorting**: Jobs are automatically sorted by filename prefix (e.g., `1_company.md`, `2_company.md`)\n- **Frontmatter Support**: Each job includes metadata (title, company, location, period, tech stack)\n\n### 🛠️ **Tech Stack Display**\n\n- **Collapsible Details**: Tech stack for each job is shown in expandable `\u003cdetails\u003e` elements\n- **Comma-Separated Lists**: Clean, inline display of technologies\n- **Dynamic Keywords**: Automatically generates SEO keywords from job technologies and skills\n\n### 📋 **Structured Sections**\n\n- **Professional Experience**: Chronologically ordered work history\n- **Technical Skills**: Comprehensive list of technical competencies\n- **Soft Skills**: Professional and interpersonal skills\n- **Languages**: Language proficiencies\n- **Open Source Projects**: Links to personal projects\n\n### ⚡ **Build \u0026 Performance**\n\n- **HTML Minification**: Output HTML is automatically minified\n- **Static Generation**: Fast, pre-rendered static site\n- **Asset Optimization**: CSS and assets are optimized for production\n\n### 🚀 **Deployment**\n\n- **Netlify Integration**: Configured for automatic deployment via Netlify\n- **Build Automation**: PDF generation happens automatically during build process\n- **Version Control**: Full Git history for tracking CV updates\n\n## Project Structure\n\n```\n.\n├── _data/\n│   └── main.json          # Main CV data (personal info, skills, links)\n├── _includes/\n│   ├── base.njk           # Base HTML template\n│   └── index.njk         # Main CV content template\n├── _jobs/\n│   ├── 1_company.md       # Job entries (numbered for sorting)\n│   ├── 2_company.md\n│   └── ...\n├── lib/\n│   └── pdf-generator.js   # PDF generation logic\n├── _site/                 # Build output directory\n├── .eleventy.js          # Eleventy configuration\n├── bundle.css            # Custom styles\n├── index.md              # Entry point\n└── netlify.toml          # Netlify deployment config\n```\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js (v14 or higher)\n- npm\n\n### Installation\n\n```bash\nnpm install\n```\n\n### Development\n\nStart the development server with live reload:\n\n```bash\nnpm run serve\n```\n\nThe site will be available at `http://localhost:8080`\n\n### Build\n\nGenerate the static site and PDF:\n\n```bash\nnpm run build\n```\n\nOutput will be in the `_site/` directory.\n\n### Other Commands\n\n- `npm run format` - Format code with Prettier\n- `npm run lint` - Run ESLint\n- `npm run lint:fix` - Fix ESLint issues automatically\n- `npm run clean` - Remove build output directory\n\n## Customization\n\n### Updating Personal Information\n\nEdit `_data/main.json` to update:\n\n- Name, role, title\n- Skills (tech skills, soft skills, languages)\n- Navigation links (contact, GitHub, website)\n- Open source projects\n\n### Adding/Editing Jobs\n\n1. Create or edit a markdown file in `_jobs/` directory\n2. Use numbered prefix for ordering (e.g., `11_newjob.md`)\n3. Include frontmatter with:\n\n   ```yaml\n   ---\n   title: Job Title\n   company: Company Name\n   location: City, Country\n   period: 2020 - 2023\n   tech:\n     - Technology 1\n     - Technology 2\n   ---\n   ```\n\n4. Write job description in markdown below the frontmatter\n\n### Styling\n\n- Main styles: `bundle.css`\n- Framework: Pico CSS (loaded via CDN)\n- Print styles: Included in `bundle.css` for PDF generation\n\n## Technologies Used\n\n- **Eleventy (11ty)**: Static site generator\n- **Nunjucks**: Template engine\n- **Pico CSS**: Minimal CSS framework\n- **PDFKit**: PDF generation library\n- **Font Awesome**: Icon library\n- **html-minifier-terser**: HTML minification\n\n## License\n\nISC\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshaftoe%2Fcurriculum-vitae","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshaftoe%2Fcurriculum-vitae","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshaftoe%2Fcurriculum-vitae/lists"}