1
0
mirror of https://github.com/JuanCanham/fresh-theme-bootstrap.git synced 2025-04-11 10:39:58 +01:00

init gh-pages

This commit is contained in:
Antonio Ruberto 2016-01-10 17:47:21 -05:00
parent 5499f67ece
commit 3e7bf4d251
20 changed files with 0 additions and 420 deletions

27
.gitignore vendored

@ -1,27 +0,0 @@
# Logs
logs
*.log
# Runtime data
pids
*.pid
*.seed
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# node-waf configuration
.lock-wscript
# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release
# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules

21
LICENSE

@ -1,21 +0,0 @@
The MIT License (MIT)
Copyright (c) 2016 Antonio Ruberto
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.

@ -1,21 +0,0 @@
# fresh-theme-bootstrap
Responsive resume theme for [HackMyResume](https://github.com/hacksalot/HackMyResume) using [Bootstrap](http://getbootstrap.com) and [Bootswatch](https://bootswatch.com).
## Install
Install the latest version with NPM:
```bash
npm install fresh-theme-bootstrap
```
Then specify the theme and css attribute when running HackMyResume:
```bash
hackmyresume BUILD resume.json TO out/resume.all --theme node_modules/fresh-theme-bootstrap --css <swatch name>
```
The swatch name can be either 'bootstrap' for default Bootstrap look and feel or name of any Bootswatch theme (lumen, darkly, readable ...)
## Examples

@ -1,21 +0,0 @@
{
"name": "fresh-theme-bootstrap",
"version": "0.1.0",
"description": "Responsive resume theme using Bootstrap and Bootswatch.",
"repository": {
"type": "git",
"url": "git+https://github.com/aruberto/fresh-theme-bootstrap.git"
},
"keywords": [
"fresh-themes",
"hackmyresume",
"fresh",
"fresca"
],
"author": "aruberto (https://github.com/aruberto)",
"license": "MIT",
"bugs": {
"url": "https://github.com/aruberto/fresh-theme-bootstrap/issues"
},
"homepage": "https://github.com/aruberto/fresh-theme-bootstrap#readme"
}

@ -1,7 +0,0 @@
{{#if r.info.brief}}
<hr>
<section class="row">
<h3 class="{{headerClass}}"><span class="fa fa-fw fa-user"></span>&nbsp;{{{sectionTitle "info" "About"}}}</h3>
<div class="{{contentClass}}">{{{r.info.brief}}}</div>
</section>
{{/if}}

@ -1,12 +0,0 @@
<div class="container">
{{> contact}}
{{> about}}
{{> skills}}
{{> employment}}
{{> projects}}
{{> samples}}
{{> education}}
{{> service}}
{{> writing}}
{{> recognition}}
</div>

@ -1,7 +0,0 @@
<header>
<h1>{{{r.name}}}</h1>
{{#if r.location.city}}<h4><span class="fa fa-fw fa-map-marker"></span>&nbsp;{{r.location.city}}{{#if r.location.region}}, {{r.location.region}}{{/if}}{{#if r.location.country}}, {{r.location.country}}{{/if}}</h4>{{/if}}
{{#if r.contact.email}}<h4><span class="fa fa-fw fa-envelope"></span>&nbsp;<a href="mailto:{{r.contact.email}}">{{r.contact.email}}</a></h4>{{/if}}
{{#if r.contact.phone}}<h4><span class="fa fa-fw fa-phone"></span>&nbsp;{{r.contact.phone}}</h4>{{/if}}
{{#if r.contact.website}}<h4><span class="fa fa-fw fa-link"></span>&nbsp;<a href="{{RAW.contact.website}}">{{RAW.contact.website}}</a></h4>{{/if}}
</header>

@ -1,21 +0,0 @@
{{#section 'education'}}
<hr>
<section class="row">
<h3 class="{{headerClass}}"><span class="fa fa-fw fa-mortar-board"></span>&nbsp;{{{sectionTitle "Education"}}}</h3>
<div class="{{contentClass}}">
{{#each r.education.history}}
<h4><strong>{{studyType}}</strong>, {{#if url}}<a href="{{{url}}}">{{institution}}</a>{{else}}{{institution}}{{/if}}</h4>
{{#if area}}<h5>{{area}}</h5>{{/if}}
{{formatDate safe.start 'YYYY-MM'}}&mdash;{{formatDate safe.end 'YYYY-MM'}}
{{#if curriculum}}
<ul>
{{#each curriculum}}
<li>{{{this}}}</li>
{{/each}}
</ul>
{{/if}}
{{#unless @last}}<div>&nbsp;</div>{{/unless}}
{{/each}}
</div>
</section>
{{/section}}

@ -1,25 +0,0 @@
{{#section 'employment'}}
<hr>
<section class="row">
<h3 class="{{headerClass}}"><span class="fa fa-fw fa-building"></span>&nbsp;{{{sectionTitle "Employment"}}}</h3>
<div class="{{contentClass}}">
{{#each r.employment.history}}
{{#if url}}
<h4><strong>{{position}}</strong>, <a href="{{{url}}}">{{employer}}</a></h4>
{{else}}
<h4><strong>{{position}}</strong>, {{employer}}</h4>
{{/if}}
{{formatDate safe.start 'YYYY-MM'}}&mdash;{{#if current}}Present{{else}}{{formatDate safe.end 'YYYY-MM'}}{{/if}}
{{{summary}}}
{{#if highlights}}
<ul>
{{#each highlights}}
<li>{{{this}}}</li>
{{/each}}
</ul>
{{/if}}
{{#unless @last}}<div>&nbsp;</div>{{/unless}}
{{/each}}
</div>
</section>
{{/section}}

@ -1,11 +0,0 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{r.name}}</title>
{{#compare opts.css "bootstrap" operator="=="}}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"></link>
{{/compare}}
{{#compare opts.css "bootstrap" operator="!="}}
<link href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.6/{{opts.css}}/bootstrap.min.css" rel="stylesheet"></link>
{{/compare}}
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet"></link>

@ -1,98 +0,0 @@
<style>
/* vietnamese */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 300;
src: url(https://github.com/google/fonts/raw/master/ofl/sourcesanspro/SourceSansPro-Light.ttf) format("truetype");
unicode-range: U+0102-0103, U+1EA0-1EF1, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 300;
src: url(https://github.com/google/fonts/raw/master/ofl/sourcesanspro/SourceSansPro-Light.ttf) format("truetype");
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 300;
src: url(https://github.com/google/fonts/raw/master/ofl/sourcesanspro/SourceSansPro-Light.ttf) format("truetype");
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
/* vietnamese */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 400;
src: url(https://github.com/google/fonts/raw/master/ofl/sourcesanspro/SourceSansPro-Regular.ttf) format("truetype");
unicode-range: U+0102-0103, U+1EA0-1EF1, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 400;
src: url(https://github.com/google/fonts/raw/master/ofl/sourcesanspro/SourceSansPro-Regular.ttf) format("truetype");
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 400;
src: url(https://github.com/google/fonts/raw/master/ofl/sourcesanspro/SourceSansPro-Regular.ttf) format("truetype");
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
/* vietnamese */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 700;
src: url(https://github.com/google/fonts/raw/master/ofl/sourcesanspro/SourceSansPro-Bold.ttf) format("truetype");
unicode-range: U+0102-0103, U+1EA0-1EF1, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 700;
src: url(https://github.com/google/fonts/raw/master/ofl/sourcesanspro/SourceSansPro-Bold.ttf) format("truetype");
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 700;
src: url(https://github.com/google/fonts/raw/master/ofl/sourcesanspro/SourceSansPro-Bold.ttf) format("truetype");
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
/* vietnamese */
@font-face {
font-family: 'Source Sans Pro';
font-style: italic;
font-weight: 400;
src: url(https://github.com/google/fonts/raw/master/ofl/sourcesanspro/SourceSansPro-Italic.ttf) format("truetype");
unicode-range: U+0102-0103, U+1EA0-1EF1, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Source Sans Pro';
font-style: italic;
font-weight: 400;
src: url(https://github.com/google/fonts/raw/master/ofl/sourcesanspro/SourceSansPro-Italic.ttf) format("truetype");
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Source Sans Pro';
font-style: italic;
font-weight: 400;
src: url(https://github.com/google/fonts/raw/master/ofl/sourcesanspro/SourceSansPro-Italic.ttf) format("truetype");
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
</style>

@ -1,25 +0,0 @@
{{#section 'projects'}}
<hr>
<section class="row">
<h3 class="{{headerClass}}"><span class="fa fa-fw fa-star"></span>&nbsp;{{{sectionTitle "Projects"}}}</h3>
<div class="{{contentClass}}">
{{#each r.projects}}
{{#if url}}
<h4><strong>{{role}}</strong>, <a href="{{{url}}}">{{title}}</a></h4>
{{else}}
<h4><strong>{{role}}</strong>, {{title}}</h4>
{{/if}}
{{formatDate safe.start 'YYYY-MM'}}&mdash;{{#if current}}Present{{else}}{{formatDate safe.end 'YYYY-MM'}}{{/if}}
{{{summary}}}
{{#if highlights}}
<ul>
{{#each highlights}}
<li>{{{this}}}</li>
{{/each}}
</ul>
{{/if}}
{{#unless @last}}<div>&nbsp;</div>{{/unless}}
{{/each}}
</div>
</section>
{{/section}}

@ -1,14 +0,0 @@
{{#section 'recognition'}}
<hr>
<section class="row">
<h3 class="{{headerClass}}"><span class="fa fa-fw fa-trophy"></span>&nbsp;{{{sectionTitle "recognition" "Awards"}}}</h3>
<div class="{{contentClass}}">
{{#each r.recognition}}
<h4><strong>{{title}}</strong>, {{from}}</h4>
{{{date}}}
{{{summary}}}
{{#unless @last}}<div>&nbsp;</div>{{/unless}}
{{/each}}
</div>
</section>
{{/section}}

@ -1,25 +0,0 @@
{{#section 'samples'}}
<hr>
<section class="row">
<h3 class="{{headerClass}}"><span class="fa fa-fw fa-pencil"></span>&nbsp;{{{sectionTitle "Samples"}}}</h3>
<div class="{{contentClass}}">
{{#each r.samples}}
{{#if url}}
<h4><strong>{{role}}</strong>, <a href="{{{url}}}">{{title}}</a></h4>
{{else}}
<h4><strong>{{role}}</strong>, {{title}}</h4>
{{/if}}
{{formatDate safe.start 'YYYY-MM'}}&mdash;{{#if current}}Present{{else}}{{formatDate safe.end 'YYYY-MM'}}{{/if}}
{{{summary}}}
{{#if highlights}}
<ul>
{{#each highlights}}
<li>{{{this}}}</li>
{{/each}}
</ul>
{{/if}}
{{#unless @last}}<div>&nbsp;</div>{{/unless}}
{{/each}}
</div>
</section>
{{/section}}

@ -1,25 +0,0 @@
{{#section 'service'}}
<hr>
<section class="row">
<h3 class="{{headerClass}}"><span class="fa fa-fw fa-child"></span>&nbsp;{{{sectionTitle "Service"}}}</h3>
<div class="{{contentClass}}">
{{#each r.service.history}}
{{#if url}}
<h4><strong>{{position}}</strong>, <a href="{{{url}}}">{{organization}}</a></h4>
{{else}}
<h4><strong>{{position}}</strong>, {{organization}}</h4>
{{/if}}
{{formatDate safe.start 'YYYY-MM'}}&mdash;{{formatDate safe.end 'YYYY-MM'}}
{{{summary}}}
{{#if highlights}}
<ul>
{{#each highlights}}
<li>{{{this}}}</li>
{{/each}}
</ul>
{{/if}}
{{#unless @last}}<div>&nbsp;</div>{{/unless}}
{{/each}}
</div>
</section>
{{/section}}

@ -1,20 +0,0 @@
{{#section 'skills'}}
<hr>
<section class="row">
<h3 class="{{headerClass}}"><span class="fa fa-fw fa-code"></span>&nbsp;{{{sectionTitle "Skills"}}}</h3>
<div class="{{contentClass}}">
{{#each r.skills.sets}}
<h4 class="row">
<div class="col-md-3"><strong>{{name}}</strong></div>
<div class="col-md-9">
{{#if skills}}
{{#each skills}}
<span class="label label-primary">{{this}}</span>
{{/each}}
{{/if}}
</div>
</h4>
{{/each}}
</div>
</section>
{{/section}}

@ -1,17 +0,0 @@
{{#section 'writing'}}
<hr>
<section class="row">
<h3 class="{{headerClass}}"><span class="fa fa-fw fa-pencil"></span>&nbsp;{{{sectionTitle "writing" "Publications"}}}</h3>
<div class="{{contentClass}}">
{{#each r.writing}}
{{#if url}}
<h4><a href="{{{url}}}"><strong>{{title}}</strong></a>, {{publisher.name}}</h4>
{{else}}
<h4><strong>{{title}}</strong>, {{publisher.name}}</h4>
{{/if}}
Published on: {{formatDate safe.date 'YYYY-MM'}}
{{#unless @last}}<div>&nbsp;</div>{{/unless}}
{{/each}}
</div>
</section>
{{/section}}

@ -1,9 +0,0 @@
<!DOCTYPE html>
<html>
<head>
{{> head}}
</head>
<body>
{{> body headerClass='col-md-3' contentClass='col-md-9'}}
</body>
</html>

@ -1,10 +0,0 @@
<!DOCTYPE html>
<html>
<head>
{{> head}}
{{> pdf-font-hack}}
</head>
<body>
{{> body headerClass='col-xs-3' contentClass='col-xs-9'}}
</body>
</html>

@ -1,4 +0,0 @@
{
"title": "fresh-theme-bootstrap",
"engine": "handlebars"
}