-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
479 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
git: | ||
error: | ||
url: https://github.com/getgrav/grav-plugin-error | ||
path: user/plugins/error | ||
branch: develop | ||
problems: | ||
url: https://github.com/getgrav/grav-plugin-problems | ||
path: user/plugins/problems | ||
branch: develop | ||
resume: | ||
url: https://github.com/getgrav/grav-theme-resume | ||
path: user/themes/resume | ||
branch: develop | ||
links: | ||
error: | ||
src: grav-plugin-error | ||
path: user/plugins/error | ||
scm: github | ||
problems: | ||
src: grav-plugin-problems | ||
path: user/plugins/problems | ||
scm: github | ||
resume: | ||
src: grav-theme-resume | ||
path: user/themes/resume | ||
scm: github |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Sass | ||
.sass-cache | ||
|
||
# Grav Specific | ||
data/* | ||
!data/.* | ||
plugins/* | ||
!plugins/.* | ||
themes/* | ||
!themes/.* | ||
|
||
# OS Generated | ||
.DS_Store* | ||
ehthumbs.db | ||
Icon? | ||
Thumbs.db | ||
*.swp | ||
|
||
# phpstorm | ||
.idea/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# v1.0.0 | ||
## 10/05/2015 | ||
|
||
1. [](#new) | ||
* ChangeLog started... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,156 @@ | ||
# grav-skeleton-resume-site | ||
Free resume grav theme. | ||
# Resume Skeleton for Grav | ||
|
||
![Resume](assets/readme_1.png) | ||
|
||
Resume by [Fernando Báez](https://www.behance.net/gallery/FREE-Resume-Template/15677411) is a Grav implementation of free PSD resume theme. | ||
|
||
# Features | ||
|
||
* Extraordinary resume theme, designed by [Fernando Báez](https://www.behance.net/gallery/FREE-Resume-Template/15677411) | ||
* Based on Foundation framework | ||
* Two-Column approach | ||
* Specialities layout with custom icons and descriptions | ||
* Design Skills layout with percentage grid | ||
* Language Skills layout with automatic pie charts | ||
* Education history special layout | ||
* Experience layout | ||
* Recognitions layout with SVG ribbon | ||
* Hobbies & Interests layout with custom icons and descriptions | ||
* Foundation Icon Fonts 3 (around 283 icons included) | ||
* Animate.css support in layouts. You can animate each separate element. | ||
* Fully responsive. Designed with mobile first approach. | ||
|
||
## Basic Setup for a new Grav site | ||
|
||
The simplest way to install Resume theme for Grav is to download and install the Resume Skeleton package: | ||
|
||
1. [Download Resume Skeleton](http://getgrav.org/downloads/skeletons#extras) | ||
2. Simply unzip the package into your web root folder. | ||
3. Point your browser at the folder, job done! | ||
|
||
**TIP:** Check out the [general Grav installation instructions](http://learn.getgrav.org/basics/installation) for more details on this process. | ||
|
||
--- | ||
|
||
## Existing Grav site | ||
|
||
It is possible to install just the theme, but page content will need to reference the [Resume theme](https://github.com/getgrav/grav-theme-resume)'s supported templates. It is strongly advised to at least install the Resume Skeleton package to see the theme's capabilities in action. | ||
|
||
To install **just** the theme: | ||
|
||
``` | ||
$ bin/gpm install resume | ||
``` | ||
|
||
# Layouts Configuration | ||
|
||
Resume theme includes few creative layout templates. This layouts will help you to create perfect resume and to find a dream job :) Below, is a brief description of most important layouts, it's options and values. | ||
|
||
## Header | ||
|
||
Header settings are located inside your [skeleton](https://github.com/getgrav/grav-skeleton-resume-site) in **config/site.yaml**. This file contains your basic contact informations. This content will be displayed in theme header. | ||
|
||
## Specialities | ||
|
||
Specialities layout is designed to showcase your most important talents. It contains large icon inside ellipse and description. Example of specialities layout is located inside your [skeleton](https://github.com/getgrav/grav-skeleton-resume-site) in **pages/left/my-specialities/special.md**. | ||
|
||
```markdown | ||
- icon: lightbulb | ||
text: Logo Design | ||
animation: fadeInDown | ||
``` | ||
|
||
* **icon** - select icon from around 300 included font icons. Icon list is available [here](http://zurb.com/playground/foundation-icon-fonts-3). | ||
* **text** - description of your speciality. | ||
* **animation** - you can animate each element. Check available animations [here](https://daneden.github.io/animate.css/). | ||
|
||
## Skills | ||
|
||
Skills layout is designed to showcase your most important skills. To check example page, go to [skeleton](https://github.com/getgrav/grav-skeleton-resume-site) and open: **pages/left/design-skills/skills.md**. | ||
|
||
```markdown | ||
- name: Adobe Photoshop | ||
level: 8 | ||
``` | ||
* **name** - your skill name | ||
* **level** - skill level from 1-8. For example if you specify **5** that means theme will display 5 dark circles and 3 circles will be greyed out. | ||
|
||
|
||
## Language skills - pie charts | ||
Language skills layout was made to easily display percentage data like language skills and other. | ||
Example language skills page is located in [skeleton](https://github.com/getgrav/grav-skeleton-resume-site), in: **pages/left/language-skills/langskills.md**. | ||
|
||
```markdown | ||
- name: Spanish | ||
level_name: Mother Language | ||
level: 100 | ||
``` | ||
* **name** - your pie chart name | ||
* **level_name** - pie chart description | ||
* **level** - percentage to display, ie: if you set that field to 50 then half of pie chart will be dark and half greyed out. | ||
* **animation** - you can animate each element. Check available animations [here](https://daneden.github.io/animate.css/). | ||
|
||
## Education | ||
This layout is designed to present your education history. Example page is located in [skeleton](https://github.com/getgrav/grav-skeleton-resume-site), in: **pages/right/education/education.md** | ||
|
||
```markdown | ||
- date: From September 2010 to September 2013. | ||
topic: Industrial Design. | ||
school: Universidad Antonio de Nebrija. Madrid. | ||
``` | ||
|
||
* **date** - describe time when you were studying | ||
* **topic** - provide description of your education | ||
* **school** - provide place of your education | ||
|
||
## Experience | ||
|
||
Experience layout is designed to showcase your work experience. It's created with two columns approach. One for year, one for description. Example page is located in [skeleton](https://github.com/getgrav/grav-skeleton-resume-site), in: **pages/right/experience/experience.md** | ||
|
||
```markdown | ||
- date: From 2013 to 2014 | ||
role: Art Director. | ||
company: Distrito 01 (d01 .es) | ||
years: 2 | ||
animation: fadeIn | ||
``` | ||
* **date** - provide date | ||
* **role** - your role in company | ||
* **company** - company | ||
* **years** - years to showcase in first column with enlarged font | ||
* **animation** - you can animate each element. Check available animations [here](https://daneden.github.io/animate.css/). | ||
|
||
## Recognitions | ||
|
||
Recognitions layout is designed to showcase your awards and recognitions. On left there is SVG ribbon with achieved place and amount of finalists. On the right, informations about contest. Example page is located in [skeleton](https://github.com/getgrav/grav-skeleton-resume-site), in: **pages/right/recognitions/recognitions.md** | ||
|
||
```markdown | ||
- title: Remus Logo Design. | ||
desc: Internal contest. One of the three finalists. | ||
place: Universidad Antonio de Nebrija. Madrid | ||
position: 1-3 | ||
animation: fadeIn | ||
``` | ||
* **title** - contest title | ||
* **desc** - contest description | ||
* **place** - place where contest took place | ||
* **position** - achieved position | ||
* **animation** - you can animate each element. Check available animations [here](https://daneden.github.io/animate.css/). | ||
|
||
## Hobbies and Interests | ||
|
||
Interests layout is designed to show your hobbies and interests. It's approach is simple. Circle with icon and description. Example page is located in [skeleton](https://github.com/getgrav/grav-skeleton-resume-site), in: **pages/right/hobbies-and-interests/interests.md** | ||
|
||
```markdown | ||
- icon: camera | ||
activity: Photography | ||
animation: fadeIn | ||
``` | ||
|
||
* **icon** - select icon from around 300 bundled font icons. List is available [here](http://zurb.com/playground/foundation-icon-fonts-3). | ||
* **activity** - icon description | ||
* **animation** - you can animate each element. Check available animations [here](https://daneden.github.io/animate.css/). | ||
|
||
## Footer | ||
Footer and it's content is located inside **partials** directory. File name is **footer.html.twig**. | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Resume Site | ||
version: 1.0.0 | ||
description: "Resume is a Grav adaptation of Fernando Báez resume PSD theme." | ||
icon: group | ||
author: | ||
name: Team Grav | ||
email: [email protected] | ||
url: http://getgrav.org | ||
homepage: https://github.com/getgrav/grav-skeleton-resume-site | ||
demo: http://demo.getgrav.org/resume-skeleton | ||
keywords: resume, skeleton, blog, resume | ||
bugs: https://github.com/getgrav/grav-skeleton-resume-site/issues | ||
license: MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
title: Leo C. Wilhoit | ||
description: Graphic & Web Designer | ||
author: | ||
name: Team Grav | ||
email: '[email protected]' | ||
metadata: | ||
description: 'Resume is a free and responsive theme for **Grav**. Its a port of Resume template by HTML5UP.' | ||
|
||
website: "getgrav.org" | ||
|
||
address: | ||
- line: "811 Margaret Street" | ||
- line: "28015," | ||
- line: "Sugar Land, TX 77478" | ||
contact: | ||
- line: "[email protected]" | ||
- line: "+34 713-902-8117" | ||
- line: "@LeoCWilhoit" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
home: | ||
alias: '/left' | ||
|
||
pages: | ||
theme: resume | ||
process: | ||
markdown: true | ||
twig: false | ||
markdown: | ||
extra: true | ||
|
||
cache: | ||
enabled: false | ||
check: | ||
method: file | ||
driver: auto | ||
prefix: 'g' | ||
|
||
twig: | ||
cache: true | ||
debug: true | ||
auto_reload: true | ||
autoescape: false | ||
|
||
assets: | ||
css_pipeline: false | ||
css_minify: true | ||
css_rewrite: true | ||
js_pipeline: false | ||
js_minify: true | ||
|
||
debugger: | ||
enabled: false | ||
twig: true | ||
shutdown: | ||
close_connection: true |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
title: DESIGN SKILLS | ||
date: 13:34 04/21/2014 | ||
|
||
column1_name: 01 Computer | ||
column1_animation: fadeIn | ||
column2_name: 02 Knowledge | ||
column2_animation: fadeIn | ||
|
||
column1: | ||
- name: Adobe Photoshop | ||
level: 8 | ||
- name: Adobe Illustrator | ||
level: 8 | ||
- name: Adobe Indesign | ||
level: 6 | ||
- name: Adobe Flash | ||
level: 7 | ||
- name: "HTML & CSS" | ||
level: 8 | ||
- name: "Javascript & Jquery" | ||
level: 3 | ||
- name: AutoCad | ||
level: 8 | ||
- name: CATIA | ||
level: 8 | ||
- name: 3ds Max | ||
level: 3 | ||
- name: Cinema 4D | ||
level: 4 | ||
|
||
column2: | ||
- name: Grid & Layout. | ||
- name: Good sense for typography. | ||
- name: Color theory knowledge. | ||
- name: Web usability. | ||
- name: Interface Design. | ||
- name: Google Analytics & SEO. | ||
|
||
taxonomy: | ||
category: left | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
title: LANGUAGE SKILLS | ||
date: 13:34 02/21/2014 | ||
|
||
languages: | ||
- name: Spanish | ||
level_name: Mother Language | ||
level: 100 | ||
animation: bounceIn | ||
- name: English | ||
level_name: Advanced Level | ||
level: 75 | ||
animation: bounceIn | ||
- name: French | ||
level_name: Basic Level | ||
level: 25 | ||
animation: bounceIn | ||
|
||
taxonomy: | ||
category: left | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
title: MY SPECIALITIES | ||
date: 13:34 05/21/2014 | ||
specialities: | ||
- icon: lightbulb | ||
text: Logo Design | ||
animation: fadeInDown | ||
- icon: page-multiple | ||
text: Branding | ||
animation: fadeInUp | ||
- icon: results | ||
text: Minimal Web Design | ||
animation: fadeInLeft | ||
taxonomy: | ||
category: left | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
title: PERSONAL STATEMENT | ||
date: 13:34 07/21/2014 | ||
taxonomy: | ||
category: left | ||
--- | ||
|
||
Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Aenean lacinia bibendum nulla sed consectetur.Donec id elit non mi porta gravida at eget metus.. | ||
|
||
Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Cras mattis consectetur purus sit amet fermentum. | ||
|
||
Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. |
Oops, something went wrong.