mirror of
https://github.com/JuanCanham/fresh-themes.git
synced 2024-11-14 12:40:11 +00:00
01cfdb00e0
Make sure partials use either the {{date}} or {{dateRange}} helpers.
22 lines
381 B
Handlebars
22 lines
381 B
Handlebars
{{#section 'projects'}}
|
|
## {{{sectionTitle "PROJECTS"}}}
|
|
|
|
{{#each r.projects }}
|
|
{{#if url }}
|
|
### *{{{camelCase role }}}*, [{{{ title }}}]({{{ url }}}) ({{dateRange .}})
|
|
{{else}}
|
|
### *{{{camelCase role }}}*, {{{ title }}} ({{dateRange .}})
|
|
{{/if}}
|
|
|
|
{{{ description }}}
|
|
{{{ summary }}}
|
|
{{#if highlights}}
|
|
{{#each highlights}}
|
|
- {{{ . }}}
|
|
|
|
{{/each}}
|
|
{{/if}}
|
|
|
|
{{/each}}
|
|
{{/section}}
|