├── .gitignore ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── README.md ├── Rakefile ├── src └── name-surname-cv.md └── templates ├── base.css ├── base.slim └── normalize.css /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.iml 3 | build/ 4 | .DS_Store 5 | releases/ 6 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitlyfied/markdown-cv/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitlyfied/markdown-cv/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- 1 | guard 'rake', :task => 'build' do 2 | watch(%r{^src/.+\.md}) 3 | end 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitlyfied/markdown-cv/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitlyfied/markdown-cv/HEAD/Rakefile -------------------------------------------------------------------------------- /src/name-surname-cv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitlyfied/markdown-cv/HEAD/src/name-surname-cv.md -------------------------------------------------------------------------------- /templates/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitlyfied/markdown-cv/HEAD/templates/base.css -------------------------------------------------------------------------------- /templates/base.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitlyfied/markdown-cv/HEAD/templates/base.slim -------------------------------------------------------------------------------- /templates/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitlyfied/markdown-cv/HEAD/templates/normalize.css --------------------------------------------------------------------------------