-
Notifications
You must be signed in to change notification settings - Fork 2
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
0 parents
commit a21d7ac
Showing
15 changed files
with
975 additions
and
0 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,22 @@ | ||
The MIT License | ||
=============== | ||
|
||
Copyright (c) 2016-18 FRESH Standard (https://freshstandard.org) | ||
|
||
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. |
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 @@ | ||
fresh-theme-positive | ||
=== | ||
*A dynamic two-color [FRESH][f] résumé theme for technical professionals.* | ||
|
||
## Instructions | ||
|
||
1. Install [HackMyResume][hmr]. | ||
|
||
2. This theme currently comes pre-installed with HackMyResume as part of the | ||
[fresh-themes repository][ftr], so you don't need to install it explicitly. But | ||
you could, with `npm i fresh-theme-positive`. | ||
|
||
3. Run `hackmyresume build my-resume.json out/output.all -t positive`. | ||
|
||
## Screenshot | ||
|
||
![](theme.png) | ||
|
||
## License | ||
|
||
MIT. See [LICENSE.md][lic] for details. | ||
|
||
[hmr]: https://github.com/hacksalot/HackMyResume | ||
[ftr]: https://github.com/fresh-standard/fresh-themes | ||
[lic]: LICENSE.md | ||
[f]: https://resume.freshstandard.org |
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,30 @@ | ||
{ | ||
"name": "fresh-theme-positive", | ||
"version": "0.1.0", | ||
"description": "A dynamic two-color FRESH resume theme for technical professionals.", | ||
"main": "theme.json", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/fresh-standard/fresh-theme-positive.git" | ||
}, | ||
"keywords": [ | ||
"resume", | ||
"CV", | ||
"FRESH", | ||
"HackMyResume", | ||
"FluentCV", | ||
"employment", | ||
"FRESH Resume Schema", | ||
"FRESCA", | ||
"career" | ||
], | ||
"author": "Mackey James <[email protected]> (https://indevious.com)", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/fresh-standard/fresh-theme-positive/issues" | ||
}, | ||
"homepage": "https://github.com/fresh-standard/fresh-theme-positive#readme" | ||
} |
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 @@ | ||
{{#section "education"}} | ||
<hr> | ||
<section id="education"> | ||
{{#> header-education }} | ||
{{> header-icon _title="EDUCATION" _section="education" _hdricon=(lookup . '_icon') }} | ||
{{/header-education}} | ||
{{#each r.education.history}} | ||
{{#> body-education }} | ||
<div> | ||
<h3>{{#if title}}<em>{{{ title }}}</em>, {{/if}}{{{ institution }}}</h3> | ||
<span class="tenure">{{dateRange .}}</span> | ||
{{#if location}}<span class="location">{{location}}</span>{{/if}} | ||
{{{ summary }}} | ||
{{> highlights }} | ||
{{#if curriculum}}<span class="keywords">{{#each curriculum}}{{{ . }}} {{/each}}</span>{{/if}} | ||
</div> | ||
{{/body-education}} | ||
{{/each}} | ||
</section> | ||
{{/section}} |
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 @@ | ||
{{#section "employment"}} | ||
<hr> | ||
<section id="employment"> | ||
{{#> header-employment }} | ||
{{> header-icon _title="EMPLOYMENT" _section="employment" _hdricon=(lookup . '_icon') }} | ||
{{/header-employment}} | ||
{{#each r.employment.history}} | ||
{{#> body-employment }} | ||
<div> | ||
<h3><em>{{ position }}</em>, | ||
{{#if url }} | ||
<a href="{{{ url }}}">{{ employer }}</a> | ||
{{else}} | ||
{{ employer }} | ||
{{/if}} | ||
</h3> | ||
<span class="tenure">{{dateRange .}}</span> | ||
{{#if location}}<span class="location">{{location}}</span>{{/if}} | ||
<p>{{{ summary }}}</p> | ||
{{> highlights }} | ||
{{#if keywords}}<span class="keywords">{{#each keywords}}{{{ . }}} {{/each}}</span>{{/if}} | ||
</div> | ||
{{/body-employment}} | ||
{{/each}} | ||
</section> | ||
{{/section}} |
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,25 @@ | ||
{{#section "service"}} | ||
<hr> | ||
<section id="service"> | ||
{{#> header-samples }} | ||
{{> header-icon _title="SERVICE" _section="service" _hdricon=(lookup . '_icon') }} | ||
{{/header-samples}} | ||
{{#each r.service.history}} | ||
{{#> body-service }} | ||
<div> | ||
<h3><em>{{ position }}</em>, | ||
{{#if url}} | ||
<a href="{{{ url }}}">{{ organization }}</a> | ||
{{else}} | ||
{{ organization }} | ||
{{/if}} | ||
</h3> | ||
<span class="tenure">{{dateRange .}}</span> | ||
{{#if location}}<span class="location">{{location}}</span>{{/if}} | ||
<p>{{{ summary }}}</p> | ||
{{> highlights }} | ||
</div> | ||
{{/body-service }} | ||
{{/each}} | ||
</section> | ||
{{/section}} |
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,61 @@ | ||
<wx:sub-section> | ||
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA" wsp:rsidRDefault="00C146CA" wsp:rsidP="00C146CA"> | ||
<w:pPr> | ||
<w:pStyle w:val="Heading1"/> | ||
</w:pPr> | ||
<w:r wsp:rsidRPr="00C146CA"> | ||
<w:t>{{{sectionTitle "SKILLS"}}}</w:t> | ||
</w:r> | ||
</w:p> | ||
<w:tbl> | ||
<w:tblPr> | ||
<w:tblW w:w="0" w:type="auto"/> | ||
<w:tblLook w:val="04A0"/> | ||
</w:tblPr> | ||
<w:tblGrid> | ||
<w:gridCol w:w="3000"/> | ||
<w:gridCol w:w="8000"/> | ||
</w:tblGrid> | ||
|
||
{{#each r.skills.sets}} | ||
|
||
<w:tr wsp:rsidR="00427ECC" wsp:rsidTr="00FD3B33"> | ||
<w:tc> | ||
<w:tcPr> | ||
<w:tcW w:w="3000" w:type="dxa"/> | ||
<w:shd w:val="clear" w:color="auto" w:fill="auto"/> | ||
</w:tcPr> | ||
<w:p wsp:rsidR="00427ECC" wsp:rsidRDefault="00427ECC" wsp:rsidP="00427ECC"> | ||
<w:pPr> | ||
<w:jc w:val="right"/> | ||
</w:pPr> | ||
<w:r> | ||
<w:rPr> | ||
<w:caps/> | ||
<w:color w:val="989898"/> | ||
</w:rPr> | ||
<w:t>{{ name }}</w:t> | ||
</w:r> | ||
</w:p> | ||
</w:tc> | ||
<w:tc> | ||
<w:tcPr> | ||
<w:tcW w:w="8000" w:type="dxa"/> | ||
<w:shd w:val="clear" w:color="auto" w:fill="auto"/> | ||
</w:tcPr> | ||
<w:p wsp:rsidR="00427ECC" wsp:rsidRDefault="00427ECC" wsp:rsidP="00427ECC"> | ||
<w:r> | ||
<w:rPr> | ||
<w:caps/> | ||
<w:spacing w:val="22"/> | ||
</w:rPr> | ||
<w:t>{{#each skills }}{{ this }}{{#unless @last}} {{/unless}}{{/each}}</w:t> | ||
</w:r> | ||
</w:p> | ||
</w:tc> | ||
</w:tr> | ||
|
||
{{/each}} | ||
|
||
</w:tbl> | ||
</wx:sub-section> |
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 @@ | ||
{{#section "testimonials"}} | ||
<hr> | ||
<section id="testimonials"> | ||
{{#> header-testimonials }} | ||
{{> header-icon _title="TESTIMONIALS" _section="testimonials" _hdricon=(lookup . '_icon') }} | ||
{{/header-testimonials}} | ||
{{#each r.testimonials}} | ||
{{#> body-testimonials }} | ||
<div> | ||
<h3><em>{{ name }}</em>{{#if organization}}, {{ organization }}{{/if}}</h3> | ||
<p>{{{ quote }}}</p> | ||
</div> | ||
{{/body-testimonials}} | ||
{{/each}} | ||
</section> | ||
{{/section}} |
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,160 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<?mso-application progid="Word.Document"?> | ||
<w:wordDocument xmlns:aml="http://schemas.microsoft.com/aml/2001/core" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.microsoft.com/office/word/2003/wordml" xmlns:wx="http://schemas.microsoft.com/office/word/2003/auxHint" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wsp="http://schemas.microsoft.com/office/word/2003/wordml/sp2" xmlns:sl="http://schemas.microsoft.com/schemaLibrary/2003/core" w:macrosPresent="no" w:embeddedObjPresent="no" w:ocxPresent="no" xml:space="preserve"> | ||
<w:ignoreSubtree w:val="http://schemas.microsoft.com/office/word/2003/wordml/sp2"/> | ||
{{> doc-properties }} | ||
{{> doc-fonts }} | ||
{{> doc-lists }} | ||
{{> doc-styles }} | ||
{{> doc-pr }} | ||
<w:body> | ||
<wx:sect> | ||
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA" wsp:rsidRDefault="007D096C" wsp:rsidP="00C146CA"> | ||
<w:pPr> | ||
<w:pStyle w:val="Title"/> | ||
<w:tabs> | ||
<w:tab w:val="right" w:pos="9360"/> | ||
</w:tabs> | ||
</w:pPr> | ||
<w:r> | ||
<w:t>{{initialWords r.name }} </w:t> | ||
</w:r> | ||
<w:r> | ||
<w:rPr> | ||
<w:color w:val="C00000"/> | ||
</w:rPr> | ||
<w:t>{{lastWord r.name }}</w:t> | ||
</w:r> | ||
<w:r> | ||
<w:tab/> | ||
</w:r> | ||
<w:r> | ||
<w:rPr> | ||
<w:color w:val="DADADA"/> | ||
</w:rPr> | ||
<w:t>{{ r.info.label }}</w:t> | ||
</w:r> | ||
</w:p> | ||
<w:p wsp:rsidR="00C146CA" wsp:rsidRDefault="00505903" wsp:rsidP="00C146CA"> | ||
<w:pPr> | ||
<w:rPr> | ||
<w:sz-cs w:val="20"/> | ||
</w:rPr> | ||
<w:jc w:val="right"/> | ||
</w:pPr> | ||
<w:hlink w:dest="mailto:{{ r.contact.email }}"> | ||
<w:r wsp:rsidRPr="003876BF"> | ||
<w:rPr> | ||
<w:rStyle w:val="Hyperlink"/> | ||
<w:sz w:val="16"/> | ||
</w:rPr> | ||
<w:t>{{ r.contact.email }}</w:t> | ||
</w:r> | ||
</w:hlink> | ||
<w:r> | ||
<w:rPr> | ||
<w:sz w:val="16"/> | ||
</w:rPr> | ||
<w:t> - </w:t> | ||
</w:r> | ||
<w:r wsp:rsidR="00C146CA" wsp:rsidRPr="000A3AF0"> | ||
<w:rPr> | ||
<w:sz w:val="16"/> | ||
</w:rPr> | ||
<w:t>{{ r.contact.phone }}</w:t> | ||
</w:r> | ||
<w:r> | ||
<w:rPr> | ||
<w:sz w:val="16"/> | ||
</w:rPr> | ||
<w:t> - </w:t> | ||
</w:r> | ||
<w:hlink w:dest="{{ r.contact.website }}"> | ||
<w:r wsp:rsidRPr="003876BF"> | ||
<w:rPr> | ||
<w:rStyle w:val="Hyperlink"/> | ||
<w:sz w:val="16"/> | ||
</w:rPr> | ||
<w:t>{{ r.contact.website }}</w:t> | ||
</w:r> | ||
</w:hlink> | ||
</w:p> | ||
{{#has "info.brief"}} | ||
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="000A3AF0" wsp:rsidRDefault="00C146CA" wsp:rsidP="00A210E1"> | ||
<w:pPr> | ||
<w:pStyle w:val="Summary"/> | ||
</w:pPr> | ||
{{{wpml r.info.brief true }}} | ||
</w:p> | ||
{{/has}} | ||
{{#section "skills"}}{{> skills }}{{/section}} | ||
|
||
{{#*inline "header-employment"}} | ||
{{> header-icon _title="EMPLOYMENT" _section="employment" _icon="pict/emp" }} | ||
{{/inline}} | ||
{{#section "employment"}}{{> section/employment }}{{/section}} | ||
|
||
{{#*inline "header-projects"}} | ||
{{> header-icon _title="PROJECTS" _section="projects" _icon="pict/star" }} | ||
{{/inline}} | ||
{{#section "projects"}}{{> section/projects }}{{/section}} | ||
|
||
{{#*inline "header-governance"}} | ||
{{> header-icon _title="GOVERNANCE" _section="governance" _icon="pict/justice-scales" }} | ||
{{/inline}} | ||
{{#section "governance"}}{{> section/governance }}{{/section}} | ||
|
||
{{#*inline "header-affiliation"}} | ||
{{> header-icon _title="AFFILIATION" _section="affiliation" _icon="pict/share-alt" }} | ||
{{/inline}} | ||
{{#section "affiliation"}}{{> section/affiliation }}{{/section}} | ||
|
||
{{#*inline "header-education"}} | ||
{{> header-icon _title="EDUCATION" _section="education" _icon="pict/edu" }} | ||
{{/inline}} | ||
{{#section "education"}}{{> section/education }}{{/section}} | ||
|
||
{{#*inline "header-service"}} | ||
{{> header-icon _title="SERVICE" _section="service" _icon="pict/srv" }} | ||
{{/inline}} | ||
{{#section "service"}}{{> section/service }}{{/section}} | ||
|
||
{{#*inline "header-writing"}} | ||
{{> header-icon _title="WRITING" _section="writing" _icon="pict/wri" }} | ||
{{/inline}} | ||
{{#section "writing"}}{{> section/writing }}{{/section}} | ||
|
||
{{#*inline "header-reading"}} | ||
{{> header-icon _title="READING" _section="reading" _icon="pict/book" }} | ||
{{/inline}} | ||
{{#section "reading"}}{{> section/reading }}{{/section}} | ||
|
||
{{#*inline "header-recognition"}} | ||
{{> header-icon _title="RECOGNITION" _section="recognition" _icon="pict/rec" }} | ||
{{/inline}} | ||
{{#section "recognition"}}{{> section/recognition }}{{/section}} | ||
|
||
{{#*inline "header-speaking"}} | ||
{{> header-icon _title="SPEAKING" _section="speaking" _icon="pict/group" }} | ||
{{/inline}} | ||
{{#section "speaking"}}{{> section/speaking }}{{/section}} | ||
|
||
{{#*inline "header-references"}} | ||
{{> header-icon _title="REFERENCES" _section="references" _icon="pict/thumbs-up" }} | ||
{{/inline}} | ||
{{#section "references"}}{{> section/references }}{{/section}} | ||
|
||
{{#*inline "header-interests"}} | ||
{{> header-icon _title="INTERESTS" _section="interests" _icon="pict/bicycle" }} | ||
{{/inline}} | ||
{{#section "interests"}}{{> section/interests }}{{/section}} | ||
|
||
<w:sectPr wsp:rsidR="00B43FDC" wsp:rsidRPr="000A3AF0" wsp:rsidSect="001B7422"> | ||
<w:pgSz w:w="12240" w:h="15840"/> | ||
<w:pgMar w:top="1440" w:right="1440" w:bottom="1440" w:left="1440" w:header="720" w:footer="720" w:gutter="0"/> | ||
<w:cols w:space="720"/> | ||
<w:docGrid w:line-pitch="360"/> | ||
</w:sectPr> | ||
</wx:sect> | ||
</w:body> | ||
</w:wordDocument> |
Oops, something went wrong.