mirror of
https://github.com/JuanCanham/fresh-themes.git
synced 2024-11-22 08:10:10 +00:00
commit
87421e1988
@ -1,6 +1,6 @@
|
||||
{
|
||||
"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.",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -2,12 +2,8 @@
|
||||
========
|
||||
FluentCV themes live here, one per folder.
|
||||
|
||||
- [`minimist`][min]: A no-frills theme.
|
||||
- [`modern`][mod]: A middle of the road theme with a modern look 'n feel.
|
||||
- [`hello-world`][hw]: A simple-as-possible example theme.
|
||||
- [`compact`][com]: A compact theme.
|
||||
|
||||
[min]: minimist
|
||||
[mod]: modern
|
||||
[hw]: hello-world
|
||||
[com]: compact
|
||||
- [`minimist`](minimist): A no-frills theme.
|
||||
- [`modern`](modern): A middle of the road theme with a modern look 'n feel.
|
||||
- [`hello-world`](hello-world): A simple-as-possible example theme.
|
||||
- [`compact`](compact): A compact theme.
|
||||
- [`positive`](positive): A theme that partakes of that which is positive.
|
||||
|
@ -1,6 +1,6 @@
|
||||
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.
|
||||
|
||||
## Use
|
||||
@ -28,7 +28,7 @@ and `mklink /J` for the last.
|
||||
|
||||
## License
|
||||
|
||||
Themes are licensed under MIT. See [LICENSE.md][lic].
|
||||
MIT. See [LICENSE.md][lic].
|
||||
|
||||
|
||||
[acv]: https://github.com/posquit0/Awesome-CV
|
||||
|
@ -37,5 +37,6 @@
|
||||
"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."
|
||||
}
|
||||
|
@ -3,3 +3,15 @@ Theme: Compact
|
||||
A compact, no-frills résumé theme for FluentCV.
|
||||
|
||||
![](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
|
||||
|
@ -1,3 +1,9 @@
|
||||
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
|
||||
|
@ -1,3 +1,9 @@
|
||||
Theme: Minimist
|
||||
===============
|
||||
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
|
||||
|
@ -1,5 +1,36 @@
|
||||
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)
|
||||
|
||||
## 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
|
||||
|
@ -5,5 +5,6 @@
|
||||
"engine": "handlebars",
|
||||
"palette": {
|
||||
"skillLevels": [ "#FFFFFF", "#5CB85C", "#F1C40F", "#428BCA", "#C00000" ]
|
||||
}
|
||||
},
|
||||
"message": "To get colored skill progress bars, make sure your resume includes a `level` element for each skill!"
|
||||
}
|
||||
|
@ -3,3 +3,9 @@ Theme: Positive
|
||||
A dynamic technical résumé theme for FluentCV.
|
||||
|
||||
![](positive.png)
|
||||
|
||||
## License
|
||||
|
||||
MIT. See [LICENSE.md][lic] for details.
|
||||
|
||||
[lic]: https://github.com/fluentdesk/fluent-themes/blob/master/LICENSE.md
|
||||
|
Loading…
Reference in New Issue
Block a user