mirror of
https://github.com/JuanCanham/fresh-themes.git
synced 2024-11-14 20:50:11 +00:00
20 lines
499 B
Handlebars
20 lines
499 B
Handlebars
|
{{#section 'projects'}}
|
||
|
## {{{sectionTitle "PROJECTS"}}}
|
||
|
|
||
|
{{#each r.projects }}
|
||
|
{{#if url }}
|
||
|
### *{{{camelCase role }}}*, [{{{ title }}}]({{{ url }}}) ({{formatDate safe.start 'YYYY-MM' }} — {{formatDate safe.end 'YYYY-MM' }})
|
||
|
{{else}}
|
||
|
### *{{{camelCase role }}}*, {{{ title }}} ({{formatDate safe.start 'YYYY-MM' }} — {{formatDate safe.end 'YYYY-MM' }})
|
||
|
{{/if}}
|
||
|
{{{ description }}}
|
||
|
{{{ summary }}}
|
||
|
{{#if highlights}}
|
||
|
{{#each highlights}}
|
||
|
- {{{ . }}}
|
||
|
|
||
|
{{/each}}
|
||
|
{{/if}}
|
||
|
{{/each}}
|
||
|
{{/section}}
|