https://github.com/agherzan/cv
ceevee
https://github.com/agherzan/cv
Last synced: about 2 months ago
JSON representation
ceevee
- Host: GitHub
- URL: https://github.com/agherzan/cv
- Owner: agherzan
- License: mit
- Created: 2019-07-01T15:07:35.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-07-01T15:08:14.000Z (almost 6 years ago)
- Last Synced: 2025-01-13T13:28:44.597Z (3 months ago)
- Language: CSS
- Size: 12.4 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
markdown-cv
===========A curriculum vitae maintained in plain text and rendered to html and pdf using CSS.
For more details see the [project page](http://elipapa.github.io/markdown-cv) or the blog post on [why I switched to markdown for my CV](http://elipapa.github.io/blog/why-i-switched-to-markdown-for-my-cv.html).
***
## Usage
To start, simply [fork the markdown-cv repo](https://github.com/elipapa/markdown-cv)

and then [edit directly in github](https://help.github.com/articles/editing-files-in-your-repository/) the `index.md` file

adding your skills, jobs and education.

To transform your plain text CV into a beautiful looking HTML page and share it you then have two options:
## 1) Using Github Pages to publish it online
1. Delete the existing `gh-pages` branch from your fork. It will only contain this webpage. You can either use git or [the github web interface](https://help.github.com/articles/creating-and-deleting-branches-within-your-repository/#deleting-a-branch)
2. Create a new branch called `gh-pages` (which will then be a copy of master)
3. Head to *yourusername*.github.io/markdown-cv to see your CV live.Any change you want to make to your CV from then on would have to be done on the `gh-pages` branch and will be immediately rendered by Github Pages.
## 2) Build it locally and print a PDF
1. [install jekyll](https://jekyllrb.com/docs/installation/) on your computer. `gem install jekyll` will do for most users.
2. Clone your fork on your computer
3. Type `jekyll serve` and you'll be able to see your CV on your local host (the default address is http://localhost:4000).
4. You can edit the `index.md` file and see changes live in your browser.
5. To print a PDF, just press *Print*. Print and web CSS media queries should take care of the styling.### Change the style
The included CSS renders CV in different styles:
- `kjhealy` the original default, inspired by [kjhealy's vita
template](https://github.com/kjhealy/kjh-vita)
- `davewhipp` is a tweaked version of `kjhealy`, with bigger fonts and dates
right alignedTo change the default style, one needs to simply change the variable in the
`_config.yml` file.Any other styling is possible. More CSS style contributions and forks are welcome!
### Author
Eliseo Papa ([Twitter](http://twitter.com/elipapa)/[GitHub](http://github.com/elipapa)/[website](https://elipapa.github.io)).

### License
[MIT License](https://github.com/elipapa/markdown-cv/blob/master/LICENSE)