1
0
mirror of https://github.com/JuanCanham/fresh-themes.git synced 2025-07-06 18:21:06 +01:00

Compare commits

...

13 Commits

Author SHA1 Message Date
87421e1988 Merge pull request #19 from fluentdesk/v0.8.0-beta
v0.8.0 beta
2015-12-29 14:33:49 -05:00
3fe6419626 Update README theme links. 2015-12-29 14:31:07 -05:00
637affccb7 Update per-theme READMEs with license info. 2015-12-29 14:30:46 -05:00
85976ec9c6 Merge pull request #18 from bhardin/patch-1
Bugfix: TypeError: Cannot read property 'history' of undefined
2015-12-29 14:29:22 -05:00
2df7422e90 Merge pull request #16 from zhuangya/patch-1
remove extra header closing tag.
2015-12-29 14:28:37 -05:00
d56f8b0e60 Add message tips to Awesome and Modern themes. 2015-12-29 14:21:09 -05:00
a08df5792b Merge remote-tracking branch 'refs/remotes/origin/master' into v0.8.0-beta 2015-12-29 14:17:57 -05:00
a526cb5703 Bugfix: TypeError: Cannot read property 'history' of undefined
Previously broke when a resume didn't have a service section
2015-12-29 11:11:36 -08:00
d2b0a852d8 Merge pull request #17 from zhuangya/png-link
add: png html template link
2015-12-29 00:13:31 -05:00
cb61881411 add: png html template link 2015-12-29 03:32:01 +08:00
122172fdd7 remove extra header closing tag. 2015-12-29 03:00:14 +08:00
962c61baba Bump version to 0.8.0.
For real this time.
2015-12-24 09:00:27 -05:00
fc2c2fa732 Add instructions to Modern theme.
That all may experience the joy of colored skill progress bars.
2015-12-24 08:58:07 -05:00
13 changed files with 77 additions and 18 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "fluent-themes", "name": "fluent-themes",
"version": "0.7.1-beta", "version": "0.8.0-beta",
"description": "Multiformat résumé themes and templates for FluentCV and JSON Resume.", "description": "Multiformat résumé themes and templates for FluentCV and JSON Resume.",
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -2,12 +2,8 @@
======== ========
FluentCV themes live here, one per folder. FluentCV themes live here, one per folder.
- [`minimist`][min]: A no-frills theme. - [`minimist`](minimist): A no-frills theme.
- [`modern`][mod]: A middle of the road theme with a modern look 'n feel. - [`modern`](modern): A middle of the road theme with a modern look 'n feel.
- [`hello-world`][hw]: A simple-as-possible example theme. - [`hello-world`](hello-world): A simple-as-possible example theme.
- [`compact`][com]: A compact theme. - [`compact`](compact): A compact theme.
- [`positive`](positive): A theme that partakes of that which is positive.
[min]: minimist
[mod]: modern
[hw]: hello-world
[com]: compact

View File

@ -1,6 +1,6 @@
Theme: Awesome Theme: Awesome
============== ==============
An experimental FluentCV theme based on [Byungjin Park's][author] An experimental resume theme based on [Byungjin Park's][author] awesome
[Awesome-CV][acv] résumé template for LaTeX. [Awesome-CV][acv] résumé template for LaTeX.
## Use ## Use
@ -28,7 +28,7 @@ and `mklink /J` for the last.
## License ## License
Themes are licensed under MIT. See [LICENSE.md][lic]. MIT. See [LICENSE.md][lic].
[acv]: https://github.com/posquit0/Awesome-CV [acv]: https://github.com/posquit0/Awesome-CV

View File

@ -37,5 +37,6 @@
"src/latex/examples/fonts": "../fonts" "src/latex/examples/fonts": "../fonts"
} }
} }
} },
"message": "Don't forget to run 'xelatex <myresume.tex>' in the generated latex/examples folder to complete your resume build! For more info, see the theme README at https://github.com/fluentdesk/fluent-themes/blob/master/themes/awesome/README.md."
} }

View File

@ -3,3 +3,15 @@ Theme: Compact
A compact, no-frills résumé theme for FluentCV. A compact, no-frills résumé theme for FluentCV.
![](compact.png) ![](compact.png)
## Use
The Compact theme folds the candidates last several jobs into a single entry
in order to conserve vertical space. Your resume should have at least 7 or 8
job entries in order for this theme to make sense.
## License
MIT. See [LICENSE.md][lic] for details.
[lic]: https://github.com/fluentdesk/fluent-themes/blob/master/LICENSE.md

View File

@ -1,3 +1,9 @@
Theme: Hello-World Theme: Hello-World
================== ==================
The simplest possible résumé theme for FluentCV. For example purposes. A simple résumé theme for example purposes.
## License
MIT. See [LICENSE.md][lic] for details.
[lic]: https://github.com/fluentdesk/fluent-themes/blob/master/LICENSE.md

View File

@ -1,3 +1,9 @@
Theme: Minimist Theme: Minimist
=============== ===============
An unstyled résumé theme for FluentCV. An unstyled résumé theme for FluentCV.
## License
MIT. See [LICENSE.md][lic] for details.
[lic]: https://github.com/fluentdesk/fluent-themes/blob/master/LICENSE.md

View File

@ -162,7 +162,7 @@ engine: Underscore
</section> </section>
{% } %} {% } %}
{% if ( r.service.history && r.service.history.length ) { %} {% if ( r.service && r.service.history && r.service.history.length ) { %}
<hr> <hr>
<section id="volunteer"> <section id="volunteer">
<header> <header>

View File

@ -1,5 +1,36 @@
Theme: Modern Theme: Modern
=============== ===============
A contemporary technical résumé theme for FluentCV. A contemporary technical résumé theme for FluentCV with colored progress bars
representing skill levels and Font Awesome icons for section headers.
![](modern.png) ![](modern.png)
## Use
Note: In order to display colored progress bars as in the below image, your resume should include a `level` annotation for each skill:
```json
{
"name": "JavaScript",
"level": "master",
"skills": [
"Node.js", "Angular.js", "jQuery", "Bootstrap", "React.js", "Backbone.js"
]
},
{
"name": "Database",
"level": "intermediate",
"skills": [
"MySQL", "PostgreSQL", "NoSQL", "ORM", "Hibernate"
]
}
```
Valid values for `level` are `master`, `advanced`, `intermediate`, `beginner`,
or a number between 1 and 10.
## License
MIT. See [LICENSE.md][lic] for details.
[lic]: https://github.com/fluentdesk/fluent-themes/blob/master/LICENSE.md

View File

@ -5,5 +5,6 @@
"engine": "handlebars", "engine": "handlebars",
"palette": { "palette": {
"skillLevels": [ "#FFFFFF", "#5CB85C", "#F1C40F", "#428BCA", "#C00000" ] "skillLevels": [ "#FFFFFF", "#5CB85C", "#F1C40F", "#428BCA", "#C00000" ]
} },
"message": "To get colored skill progress bars, make sure your resume includes a `level` element for each skill!"
} }

View File

@ -18,7 +18,6 @@
{{#if r.contact.website}}<div class="website"><a href="{{{ RAW.contact.website }}}">{{ RAW.contact.website }}</a></div>{{/if}} {{#if r.contact.website}}<div class="website"><a href="{{{ RAW.contact.website }}}">{{ RAW.contact.website }}</a></div>{{/if}}
</div> </div>
</header> </header>
</header>
{{#if r.info.brief}} {{#if r.info.brief}}

View File

@ -0,0 +1 @@
modern-pdf.html

View File

@ -3,3 +3,9 @@ Theme: Positive
A dynamic technical résumé theme for FluentCV. A dynamic technical résumé theme for FluentCV.
![](positive.png) ![](positive.png)
## License
MIT. See [LICENSE.md][lic] for details.
[lic]: https://github.com/fluentdesk/fluent-themes/blob/master/LICENSE.md