mirror of
https://github.com/JuanCanham/fresh-themes.git
synced 2024-11-22 08:10:10 +00:00
Modern: Support keywords in education section.
This commit is contained in:
parent
23c2b72e6a
commit
961af74305
@ -7,10 +7,11 @@
|
|||||||
{{#each r.education.history}}
|
{{#each r.education.history}}
|
||||||
{{#> body-education }}
|
{{#> body-education }}
|
||||||
<div>
|
<div>
|
||||||
<h3>{{#if title}}<em>{{{ title }}}</em>, {{/if}}{{{ institution }}}</h3>
|
<h3>{{#if title}}<em>{{{ title }}}</em>, {{/if}}{{{ institution }}}</h3>
|
||||||
<span class="tenure">{{dateRange .}}</span>
|
<span class="tenure">{{dateRange .}}</span>
|
||||||
{{{ summary }}}
|
{{{ summary }}}
|
||||||
{{> highlights }}
|
{{> highlights }}
|
||||||
|
{{#if curriculum}}<span class="keywords">{{#each curriculum}}{{{ . }}} {{/each}}</span>{{/if}}
|
||||||
</div>
|
</div>
|
||||||
{{/body-education}}
|
{{/body-education}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
@ -276,13 +276,40 @@ also doesn't render any content.
|
|||||||
|
|
||||||
{{> section/projects _icon="icon-projects"}}
|
{{> section/projects _icon="icon-projects"}}
|
||||||
|
|
||||||
|
{{! <!--
|
||||||
|
Move on to the EDUCATION section, giving it the same treatment we gave the
|
||||||
|
EMPLOYMENT section.
|
||||||
|
--> }}
|
||||||
|
|
||||||
|
|
||||||
|
{{#*inline "body-education" }}
|
||||||
|
<div>
|
||||||
|
<h3>{{#if title}}<em>{{ title }}</em>,{{/if}}
|
||||||
|
{{#if url}}
|
||||||
|
<a href="{{{ url }}}">{{ institution }}</a>
|
||||||
|
{{else}}
|
||||||
|
{{ institution }}
|
||||||
|
{{/if}}
|
||||||
|
</h3>
|
||||||
|
{{#if start}}<span class="tenure">{{dateRange .}}</span>{{/if}}
|
||||||
|
{{#if curriculum}}
|
||||||
|
{{#if start}}| {{/if}}<span class="keywords">{{#each curriculum}}{{{ . }}} {{/each}}</span>
|
||||||
|
{{/if}}
|
||||||
|
{{{ summary }}}
|
||||||
|
{{> highlights }}
|
||||||
|
</div>
|
||||||
|
{{/inline}}
|
||||||
|
|
||||||
|
{{#*inline "icon-education"}}<span class="fa fa-lg fa-mortar-board"></span>{{/inline}}
|
||||||
|
|
||||||
|
{{> section/education _icon="icon-education"}}
|
||||||
|
|
||||||
|
|
||||||
{{! <!--
|
{{! <!--
|
||||||
We'll override all section heading icons the same way, for the rest of the
|
We'll override all section heading icons the same way, for the rest of the
|
||||||
resume, using the same inline template technique.
|
resume, using the same inline template technique.
|
||||||
--> }}
|
--> }}
|
||||||
|
|
||||||
{{#*inline "icon-education"}}<span class="fa fa-lg fa-mortar-board"></span>{{/inline}}
|
|
||||||
{{#*inline "icon-service"}}<span class="fa fa-lg fa-child"></span>{{/inline}}
|
{{#*inline "icon-service"}}<span class="fa fa-lg fa-child"></span>{{/inline}}
|
||||||
{{#*inline "icon-affiliation"}}<span class="fa fa-lg fa-share-alt"></span>{{/inline}}
|
{{#*inline "icon-affiliation"}}<span class="fa fa-lg fa-share-alt"></span>{{/inline}}
|
||||||
{{#*inline "icon-samples"}}<span class="fa fa-lg fa-share"></span>{{/inline}}
|
{{#*inline "icon-samples"}}<span class="fa fa-lg fa-share"></span>{{/inline}}
|
||||||
@ -298,7 +325,6 @@ also doesn't render any content.
|
|||||||
use the default section partials and style them with whatever CSS we like.
|
use the default section partials and style them with whatever CSS we like.
|
||||||
--> }}
|
--> }}
|
||||||
|
|
||||||
{{> section/education _icon="icon-education"}}
|
|
||||||
{{> section/service _icon="icon-service"}}
|
{{> section/service _icon="icon-service"}}
|
||||||
{{> section/affiliation _icon="icon-affiliation"}}
|
{{> section/affiliation _icon="icon-affiliation"}}
|
||||||
{{> section/samples _icon="icon-samples"}}
|
{{> section/samples _icon="icon-samples"}}
|
||||||
|
Loading…
Reference in New Issue
Block a user