Skip to content

bruhtus/resume

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Markdown Resume

This project was a fork from elipapa's markdown-cv project and based on blmoore's CV with a slight tweak, the usage is essentially the same. I use this as my personal Resume but you can use the styling theme for your own Resume.

See live demo here.

How to use

To build, clone the repo and run jekyll:

git clone https://github.com/bruhtus/resume.git
cd resume
jekyll s --config _config.yml

(You may need to install jekyll)

HTML version

The HTML version is generated by Jekyll under _site using media/cv-screen.css. Most changes from the original repo are artificial:

  • changed the year and the layout (simplify the layout).
  • messed with colours.
  • now imports font-awesome icons and Open sans
  • moved ul into 3-col layout (iirc following another markdown cv I tried)

PDF version

Note the separate CSS for print and screen media (see media/cv-print.css), my approach was to build a somewhat "jazzy" html version and a toned-down print version (for PDF). My changes introduce CSS3 columns in some sections which currently don't print to PDF under the blink/webkit engines (as of March 2015), so to print properly I suggest firefox.

Another problem with the PDF is pagebreaks, they're often not handled gracefully so I've added one in explicitly. Say you want a pagebreak before the section titled "education" (h2 text is set to id so use unique section headers!), the print media CSS would be:

#technical-skills {
	page-break-before: always;
}

References