1
0
mirror of https://github.com/JuanCanham/fresh-themes.git synced 2025-05-04 12:57:07 +01: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
10 changed files with 75 additions and 16 deletions

View File

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

View File

@ -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!"
}