1
0
mirror of https://github.com/JuanCanham/fresh-themes.git synced 2024-11-22 08:10:10 +00:00

Merge pull request #19 from fluentdesk/v0.8.0-beta

v0.8.0 beta
This commit is contained in:
hacksalot 2015-12-29 14:33:49 -05:00
commit 87421e1988
10 changed files with 75 additions and 16 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

@ -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

@ -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