fresh-themes/README.md

112 lines
3.9 KiB
Markdown
Raw Normal View History

2015-12-30 23:02:06 +00:00
fresh-themes
============
2015-12-19 13:56:15 +00:00
2016-01-06 10:44:05 +00:00
*Stylized templates for your résumé and/or CV, compatible with [FRESH][f] and
(through conversion) [JSON Resume][jrs] formats.*
2015-10-10 22:45:29 +01:00
2015-12-19 13:56:15 +00:00
- [positive][t-positive]: A visually dense/compact theme.
- [modern][t-modern]: A middle of the road theme with a modern look 'n feel.
- [compact][t-compact]: A visually dense/compact theme.
- [awesome][t-awesome]: A technical resume theme based on [Awesome-CV][awe].
2016-01-11 17:55:55 +00:00
- [underscore][t-underscore]: An unstyled barebones theme.
2015-12-19 13:56:15 +00:00
- [hello-world][t-hello]: A simple-as-possible example theme.
2015-12-09 14:09:20 +00:00
- New themes weekly.
2015-10-10 22:45:29 +01:00
2016-01-06 10:44:05 +00:00
## Use
1. Install [HackMyResume][hmr] or a similar tool.
2. Create a [FRESH][f] or [JRS][jrs] résumé.
3. Run `hackmyresume build <your-resume.json> to <final-resume>.all -t
<theme-name>` to generate all formats for a particular theme. For example:
```bash
hackmyresume BUILD resume.json TO out/resume.all -t positive
```
2015-12-09 14:09:20 +00:00
## Install
2015-10-10 22:45:29 +01:00
2016-01-06 10:44:05 +00:00
The **fresh-themes** repo is automatically installed when you install
HackMyResume. For development or testing purposes, you can install the
standalone version via NPM:
`[sudo] npm install fresh-themes [--save]`
...or fork and clone it from GitHub as usual.
## How It Works
FRESH themes are powered by the same templates you're familiar with from Jekyll,
Handlebars, MS Word, or your server-side web language of choice. You create a
FRESH theme the same way you would any other template: by intermixing markup
(HTML, XML, plain text, whatever) with special tags or placeholders:
```html
<h3>{{ job.title }}</h3>
<p>{{ job.summary }}</p>
```
Run it through a tool, and you get finished markup suitable for display or
saving as a document:
```html
<h3>Ninja</h3>
<p>Performed covert ops in feudal Japan.</p>
```
The only difference between a FRESH theme and your Jekyll blog or MS Word
template is that FRESH themes are:
2015-10-10 22:45:29 +01:00
2016-01-06 10:44:05 +00:00
- **Multiformat**. Each FRESH theme can declare multiple formats: HTML, Word,
PDF, Markdown, or other future formats.
- **Markdown-friendly**. All FRESH themes support inline Markdown/HTML
formatting.
- **Inheritable**. FRESH themes can inherit or "borrow" formats from other
themes.
- **Agnostic**. FRESH themes don't mandate that you use a particular templating
engine or style: you can use Handlebars, Underscore, or other engines in the
future.
2015-10-10 22:45:29 +01:00
2016-01-06 10:44:05 +00:00
If you can do `{{ r.name }}` or `{% highlight html %}` in a template file you can work with FRESH themes.
2015-10-10 22:45:29 +01:00
2015-12-09 14:09:20 +00:00
## Structure
2015-10-10 22:45:29 +01:00
2015-12-09 14:09:20 +00:00
FRESH themes are structured to allow for flexible generation of documents in
multiple formats. Each theme lives in a separate folder and consists of:
- A JSON description file.
- One or more template files in Handlebars or Underscore format.
- Any necessary support files (CSS, LaTeX partials, etc.).
- A dedicated README.
2015-12-19 13:56:15 +00:00
Within its containing folder, a theme can have an arbitrary structure provided
you either a) follow a standard naming convention or b) specify your theme files
2016-01-06 10:44:05 +00:00
in your theme's JSON file.
2015-12-09 14:09:20 +00:00
## Contribute
Contributions are welcome.
1. Fork, branch, and clone this repository.
2. Add or edit a theme or make other changes.
3. Submit a PR.
2015-10-06 19:20:47 +01:00
## License
2015-10-10 22:45:29 +01:00
MIT. See [LICENSE.md][1] for details.
2015-10-06 19:20:47 +01:00
[1]: http://fluentcv.com
2015-10-28 03:46:36 +00:00
[2]: https://github.com/fluentdesk/fluentcv
2015-12-30 23:35:11 +00:00
[3]: https://github.com/fluentdesk/fresh-themes/blob/master/LICENSE.md
2015-12-09 14:09:20 +00:00
[f]: https://github.com/fluentdesk/FRESCA
[jrs]: http://jsonresume.org
2015-12-11 08:52:12 +00:00
[awe]: https://github.com/posquit0/Awesome-CV
2015-12-30 23:35:11 +00:00
[t-awesome]: https://github.com/fluentdesk/fresh-themes/tree/master/themes/awesome
2016-01-11 17:55:55 +00:00
[t-underscore]: https://github.com/fluentdesk/fresh-themes/tree/master/themes/minimist
2015-12-30 23:35:11 +00:00
[t-modern]: https://github.com/fluentdesk/fresh-themes/tree/master/themes/modern
[t-hello]: https://github.com/fluentdesk/fresh-themes/tree/master/themes/hello-world
[t-compact]: https://github.com/fluentdesk/fresh-themes/tree/master/themes/compact
[t-positive]: https://github.com/fluentdesk/fresh-themes/tree/master/themes/positive
2016-01-06 10:44:05 +00:00
[hmr]: https://github.com/hacksalot/hackmyresume