Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CV for GitHub #97

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
8fb8268
added forking ribbon using css
elipapa May 7, 2013
8a7986e
shrinking ribbon
elipapa May 7, 2013
02f133a
changed logic so that i have multiple versions depending on the job I…
elipapa May 7, 2013
1b1fff9
changed to github buttons, more discrete
elipapa May 7, 2013
042e870
no need for extra forking style anymore
elipapa May 7, 2013
ae9a0a3
i am a doctor now
elipapa May 7, 2013
44553f8
slimmed down resume, added seres stuff
elipapa May 7, 2013
dbc1ad9
page title will always be there
elipapa May 12, 2013
fa18534
button should not show in printout
elipapa May 12, 2013
6523105
resume, not cv in the title
elipapa May 12, 2013
f8e3040
reorder headings
elipapa May 13, 2013
e5e1d2e
print resume to pdf
elipapa May 13, 2013
73746fd
Create gh-pages branch via GitHub
elipapa Aug 2, 2014
2d5a709
deleted my old gh-pages branch.
elipapa Aug 2, 2014
fba1031
Create gh-pages branch via GitHub
elipapa Aug 2, 2014
d3bfd10
out with the default, in with solo
elipapa Jan 16, 2017
aef2045
more details
elipapa Jan 16, 2017
5398e17
images make it clearer
elipapa Jan 19, 2017
2547165
Delete sass-cache
aloupfor Mar 14, 2017
9540ead
Merge pull request #7 from aloupfor/delete-sass-cache
elipapa Jun 8, 2017
fa85d89
make sure we are catching all caches
elipapa Jun 8, 2017
c781c3e
add styles documentation
elipapa Jun 14, 2018
10e7607
attribution
elipapa Jun 14, 2018
d11cc71
Update index.md
GeoffreyMHughes Feb 21, 2023
0d71e25
Update index.md
GeoffreyMHughes Feb 21, 2023
af7cbd5
Update index.md
GeoffreyMHughes Feb 21, 2023
392432f
Update index.md
GeoffreyMHughes Feb 21, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
_site/
_site/
.sass-cache/
.sass-cache/*
5 changes: 5 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
layout: default
---

Page Not Found.
Binary file removed Eliseo Papa's CV _ CV.pdf
Binary file not shown.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2015 Eliseo Papa

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
5 changes: 2 additions & 3 deletions README.md
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
markdown-cv
===========
Front page to showcase [markdown-cv](http://elipapa.github.io/markdown-cv/) functionality.

eliseopapa's curriculum vitae maintained in plain text and rendered to html and pdf using CSS
The theme for this page is [Solo](http://chibicode.github.io/solo)
11 changes: 10 additions & 1 deletion _config.yml
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
markdown: kramdown
# Site settings
title: Markdown-cv, style your markdown resume
tag_text: markdown-cv
description: markdown-cv is a simple template to list all your accomplishments in a readable Markdown file. It uses CSS to style your text into a web page and a beautiful looking PDF.

# Build settings
markdown: kramdown
exclude: ["README.md"]
sass:
style: compressed
Empty file added _includes/head.html
Empty file.
Empty file added _includes/scripts.html
Empty file.
16 changes: 0 additions & 16 deletions _layouts/cv.html

This file was deleted.

19 changes: 19 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="{{ site.description }}">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ site.title }}</title>
<link rel="stylesheet" href="css/main.css">
{% include head.html %}
</head>
<body>
<div class="container">
<h1><a href="./">{{ site.tag_text }}</a></h1>
{{ content }}
</div>
{% include scripts.html %}
</body>
</html>
Loading