2015-12-06 21:28:54 +00:00
|
|
|
Theme: Modern
|
|
|
|
===============
|
2015-12-30 23:02:06 +00:00
|
|
|
A contemporary technical résumé theme. Features colored progress bars
|
2015-12-24 13:58:07 +00:00
|
|
|
representing skill levels and Font Awesome icons for section headers.
|
|
|
|
|
2015-12-29 19:30:46 +00:00
|
|
|
![](modern.png)
|
|
|
|
|
|
|
|
## Use
|
|
|
|
|
2015-12-24 13:58:07 +00:00
|
|
|
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.
|
2015-12-18 21:46:30 +00:00
|
|
|
|
2015-12-29 19:30:46 +00:00
|
|
|
## License
|
|
|
|
|
|
|
|
MIT. See [LICENSE.md][lic] for details.
|
|
|
|
|
|
|
|
[lic]: https://github.com/fluentdesk/fluent-themes/blob/master/LICENSE.md
|