diff --git a/themes/compact/src/compact-html.html b/themes/compact/src/compact-html.html
index 3968fb5..74df505 100644
--- a/themes/compact/src/compact-html.html
+++ b/themes/compact/src/compact-html.html
@@ -4,7 +4,7 @@
{{ RAW.name }}
- {{{styleSheet "compact-html.css"}}}
+ {{{styleSheet "compact-html.css"}}}
@@ -28,7 +28,7 @@
{{#if r.skills}}
- Skills
+ {{{sectionTitle "Skills"}}}
@@ -54,7 +54,7 @@
{{#if r.employment}}
- Employment
+ {{{sectionTitle "Employment"}}}
{{#each r.employment.history}}
@@ -97,7 +97,7 @@
{{# if r.education}}
- Education
+ {{{sectionTitle "Education"}}}
{{#each r.education.history}}
{{{ institution }}} {{formatDate safe.start 'YYYY' }} — {{formatDate safe.end 'YYYY' }}
@@ -109,7 +109,7 @@
{{#if r.service}}
- Service
+ {{{sectionTitle "Service"}}}
{{#each r.service.history}}
{{ position }},
@@ -135,7 +135,7 @@
{{#if r.writing}}
- Writing
+ {{{sectionTitle "Writing"}}}
{{#each r.writing }}
{{#if url}}{{{ title }}}{{else}}{{{ title }}}{{/if}},
@@ -148,7 +148,7 @@
{{# if r.recognition}}
- Awards
+ {{{sectionTitle "recognition" "Awards"}}}
{{#each r.recognition}}
{{ title }}, {{ from }} {{formatDate safe.date 'YYYY' }}
diff --git a/themes/compact/src/compact-md.txt b/themes/compact/src/compact-md.txt
index 6c5bba0..981435c 100644
--- a/themes/compact/src/compact-md.txt
+++ b/themes/compact/src/compact-md.txt
@@ -15,7 +15,7 @@
{{/if}}
{{#if r.employment}}
-## EMPLOYMENT
+## {{{sectionTitle "EMPLOYMENT"}}}
{{#each r.employment.history }}
{{#compare @index 4 operator="<"}}
@@ -39,7 +39,7 @@ Prior to {{{ employer }}}, I worked on a range of projects for companies large a
{{/if}}
{{#if r.education}}
-## EDUCATION
+## {{{sectionTitle "EDUCATION"}}}
{{#each r.education.history}}
### {{{ institution }}} ({{formatDate safe.start 'YYYY-MM' }} — {{formatDate safe.end 'YYYY-MM' }})
@@ -61,7 +61,7 @@ Prior to {{{ employer }}}, I worked on a range of projects for companies large a
{{/if}}
{{#if r.service }}
-## SERVICE
+## {{{sectionTitle "SERVICE"}}}
{{#each r.service.history}}
### {{{ organization }}} ({{formatDate safe.start 'YYYY-MM' }} — {{formatDate safe.end 'YYYY-MM' }})
@@ -75,7 +75,7 @@ Prior to {{{ employer }}}, I worked on a range of projects for companies large a
{{/each}}
{{/if}}
{{#if r.recognition}}
-## RECOGNITION
+## {{{sectionTitle "RECOGNITION"}}}
{{#each r.recognition}}
### {{{ title }}}, {{{ from }}} ({{formatDate safe.date 'MMM YYYY' }})
diff --git a/themes/compact/src/compact-pdf.html b/themes/compact/src/compact-pdf.html
index ee8c031..9e63464 100644
--- a/themes/compact/src/compact-pdf.html
+++ b/themes/compact/src/compact-pdf.html
@@ -29,7 +29,7 @@
{{#if r.skills}}
- Skills
+ {{{sectionTitle "Skills"}}}
@@ -55,7 +55,7 @@
{{#if r.employment}}
- Employment
+ {{{sectionTitle "Employment"}}}
{{#each r.employment.history}}
@@ -98,7 +98,7 @@
{{# if r.education}}
- Education
+ {{{sectionTitle "Education"}}}
{{#each r.education.history}}
{{{ institution }}} {{formatDate safe.start 'YYYY' }} — {{formatDate safe.end 'YYYY' }}
@@ -110,7 +110,7 @@
{{#if r.service}}
- Service
+ {{{sectionTitle "Service"}}}
{{#each r.service.history}}
{{ position }},
@@ -136,7 +136,7 @@
{{#if r.writing}}
- Writing
+ {{{sectionTitle "Writing"}}}
{{#each r.writing }}
{{#if url}}{{{ title }}}{{else}}{{{ title }}}{{/if}},
@@ -149,7 +149,7 @@
{{# if r.recognition}}
- Awards
+ {{{sectionTitle "recognition" "Awards"}}}
{{#each r.recognition}}
{{ title }}, {{ from }} {{formatDate safe.date 'YYYY' }}
diff --git a/themes/compact/src/partials/education.xml b/themes/compact/src/partials/education.xml
index c3d3cb0..e918812 100644
--- a/themes/compact/src/partials/education.xml
+++ b/themes/compact/src/partials/education.xml
@@ -4,7 +4,7 @@
- EDUCATION
+ {{{sectionTitle "EDUCATION"}}}
diff --git a/themes/compact/src/partials/employment.xml b/themes/compact/src/partials/employment.xml
index 38005da..adda01d 100644
--- a/themes/compact/src/partials/employment.xml
+++ b/themes/compact/src/partials/employment.xml
@@ -4,7 +4,7 @@
- EMPLOYMENT
+ {{{sectionTitle "EMPLOYMENT"}}}
diff --git a/themes/compact/src/partials/skills.xml b/themes/compact/src/partials/skills.xml
index 0008df5..e003a9e 100644
--- a/themes/compact/src/partials/skills.xml
+++ b/themes/compact/src/partials/skills.xml
@@ -5,7 +5,7 @@
- SKILLS
+ {{{sectionTitle "SKILLS"}}}
diff --git a/themes/minimist/src/doc.xml b/themes/minimist/src/doc.xml
index ac518ed..6715eb5 100644
--- a/themes/minimist/src/doc.xml
+++ b/themes/minimist/src/doc.xml
@@ -740,7 +740,7 @@ engine: Underscore
- Skills
+ {{{sectionTitle "Skills"}}}
@@ -792,7 +792,7 @@ engine: Underscore
- Employment
+ {{{sectionTitle "Employment"}}}
@@ -917,7 +917,7 @@ engine: Underscore
- Education
+ {{{sectionTitle "Education"}}}
diff --git a/themes/minimist/src/html.html b/themes/minimist/src/html.html
index 5c63b56..c3443e6 100644
--- a/themes/minimist/src/html.html
+++ b/themes/minimist/src/html.html
@@ -30,7 +30,7 @@ engine: Underscore
{% if ( r.info.brief && r.info.brief.length ) { %}
- About
+ {{{sectionTitle "info" "About"}}}
{{ r.info.brief }}
@@ -41,7 +41,7 @@ engine: Underscore
- Skills
+ {{{sectionTitle "Skills"}}}
@@ -75,7 +75,7 @@ engine: Underscore
- Employment
+ {{{sectionTitle "Employment"}}}
{% r.employment.history.forEach( function( proj, idx, ar) { %}
@@ -104,7 +104,7 @@ engine: Underscore
- Education
+ {{{sectionTitle "Education"}}}
{% r.education.history.forEach( function( edu, idx, ar) { %}
@@ -126,7 +126,7 @@ engine: Underscore
- Awards
+ {{{sectionTitle "recognition" "Awards"}}}
{% r.recognition.forEach( function( award, idx, ar) { %}
@@ -141,7 +141,7 @@ engine: Underscore
- Publications
+ {{{sectionTitle "writing" "Publications"}}}
{% r.writing.forEach( function( pub, idx, ar) { %}
@@ -160,7 +160,7 @@ engine: Underscore
- Volunteer Work
+ {{{sectionTitle "service" "Volunteer Work"}}}
{% r.service.history.forEach( function( vol, idx, ar) { %}
diff --git a/themes/minimist/src/md.txt b/themes/minimist/src/md.txt
index c22301b..eabbb84 100644
--- a/themes/minimist/src/md.txt
+++ b/themes/minimist/src/md.txt
@@ -1,54 +1,84 @@
-# {{ r.name }}
+{{ r.name }}
+============
+{{#if r.contact.email }}Email: {{{ r.contact.email }}}{{/if}}
+{{#if r.contact.phone }}Tel: {{{ r.contact.phone }}}{{/if}}
+{{#if r.contact.website }}Web: {{{ r.contact.website }}}{{/if}}
-{% if (r.contact.email) { %}Email: {{ r.contact.email }}{% } %}
-{% if (r.contact.phone) { %}Tel: {{ r.contact.phone }}{% } %}
-{% if (r.contact.website) { %}Web: {{ r.contact.website }}{% } %}
+{{#if r.info.brief }}{{{ r.info.brief }}}{{/if}}
-{% if ( r.info.brief && r.info.brief.length ) { %}{{ r.info.brief }}{% } %}
+{{#if r.skills}}
+## {{{sectionTitle "SKILLS"}}}
-{% if ( r.skills && r.skills.sets ) { %}
-## Skills
-{% r.skills.sets.forEach( function( set, idx, ar) { %}
-- **{{ set.name }}**: {{ set.skills.join(', ') }}
-{% }); } %}
+{{#each r.skills.sets}}
+ - {{{ name }}}: {{#each this.skills}}{{{ this }}} {{/each}}
+{{/each}}
+{{/if}}
-{% if ( r.employment.history && r.employment.history.length ) { %}
-## Employment
-{% r.employment.history.forEach( function( proj, idx, ar) { %}
-### *{{ proj.position }}*, {{ proj.employer }}
-{{ proj.safe.start.format('MMM YYYY') }} — {{ proj.safe.end.format('MMM YYYY') }}
-{{ proj.summary }}
-{% if( proj.highlights ) { %}{% proj.highlights.forEach( function( high, idx, ar) { %}
-- {{ high }}
-{% }); } }); } %}
+{{#if r.employment}}
+## {{{sectionTitle "EMPLOYMENT"}}}
-{% if ( r.education.history && r.education.history.length ) { %}
-## Education
-{% r.education.history.forEach( function( edu, idx, ar) { %}
-### {{ edu.institution }} ({{ edu.safe.start.format('MMM YYYY') }} — {{ edu.safe.end.format('MMM YYYY') }})
-{{ edu.area }}
-{% if( edu.curriculum ) { %}{% edu.curriculum.forEach( function( course, idx, ar) { %}
-- {{ course }}
-{% }); } }); } %}
+{{#each r.employment.history }}
+ {{#compare @index 4 operator="<"}}
+### {{{ position }}}, {{{ employer }}} ({{formatDate safe.start 'YYYY-MM' }} -- {{formatDate safe.end 'YYYY-MM' }})
+{{{ summary }}}
+{{#if highlights}}
+{{#each highlights}}
+ - {{{ this }}}
+{{/each}}
+{{/if}}
-{% if ( r.writing && r.writing.length ) { %}
-## Publications
-{% r.writing.forEach( function( pub, idx, ar) { %}
-### {{ pub.title }} ({{ pub.safe.date.format('MMM YYYY') }})
-{{ pub.publisher }}
-{{ pub.summary }}
-{% }); } %}
+ {{/compare}}
+ {{#compare @index 4 operator=">="}}
+ {{#compare @index 4 operator="=="}}
+### Previously...
+Prior to {{{ employer }}}, I worked on a range of projects for companies large and small.
+ {{/compare}}
+ - {{{ position }}}, {{{ employer }}}
+ {{/compare}}
+{{/each}}
+{{/if}}
-{% if ( r.service.history && r.service.history.length ) { %}
-## Volunteer
-{% r.service.history.forEach( function( vol, idx, ar) { %}
-### {{ vol.organization }} ({{ vol.safe.start.format('MMM YYYY') }} — {{ vol.safe.end.format('MMM YYYY') }})
-{{ vol.summary }}
-{% }); } %}
+{{#if r.education}}
+## {{{sectionTitle "EDUCATION"}}}
-{% if ( r.recognition && r.recognition.length ) { %}
-## Recognition
-{% r.recognition.forEach( function( awd, idx, ar) { %}
-### *{{ awd.title }}*, {{ awd.from }} ({{ awd.safe.date.format('MMM YYYY') }})
-{{ awd.summary }}
-{% }); } %}
+{{#each r.education.history}}
+### {{{ institution }}} ({{formatDate safe.start 'YYYY-MM' }} — {{formatDate safe.end 'YYYY-MM' }})
+{{#if summary }}
+{{{ summary }}}
+{{/if}}
+{{#if courses}}
+{{#each courses}}
+ - {{{ this }}}{{/each}}{{/if}}
+{{/each}}
+{{/if}}
+{{#if r.writing}}
+## WRITING
+
+{{#each r.writing}}
+### {{{ title }}} ({{formatDate safe.date 'YYYY-MM' }})
+{{{ summary }}}
+{{/each}}
+{{/if}}
+
+{{#if r.service }}
+## {{{sectionTitle "SERVICE"}}}
+
+{{#each r.service.history}}
+### {{{ organization }}} ({{formatDate safe.start 'YYYY-MM' }} — {{formatDate safe.end 'YYYY-MM' }})
+{{{ summary }}}
+{{#if highlights}}
+{{#each highlights}}
+ - {{{ this }}}
+{{/each}}
+{{/if}}
+
+{{/each}}
+{{/if}}
+{{#if r.recognition}}
+## {{{sectionTitle "RECOGNITION"}}}
+
+{{#each r.recognition}}
+### {{{ title }}}, {{{ from }}} ({{formatDate safe.date 'MMM YYYY' }})
+{{{ summary }}}
+{{/each}}
+{{/if}}
diff --git a/themes/minimist/src/pdf.html b/themes/minimist/src/pdf.html
index d7c1a32..01f233a 100644
--- a/themes/minimist/src/pdf.html
+++ b/themes/minimist/src/pdf.html
@@ -32,7 +32,7 @@ engine: Underscore
{% if ( r.info.brief && r.info.brief.length ) { %}
- About
+ {{{sectionTitle "info" "About"}}}
{{ r.info.brief }}
@@ -43,7 +43,7 @@ engine: Underscore
- Skills
+ {{{sectionTitle "Skills"}}}
@@ -77,7 +77,7 @@ engine: Underscore
- Employment
+ {{{sectionTitle "Employment"}}}
{% r.employment.history.forEach( function( proj, idx, ar) { %}
@@ -106,7 +106,7 @@ engine: Underscore
- Education
+ {{{sectionTitle "Education"}}}
{% r.education.history.forEach( function( edu, idx, ar) { %}
@@ -128,7 +128,7 @@ engine: Underscore
- Awards
+ {{{sectionTitle "recognition" "Awards"}}}
{% r.recognition.forEach( function( award, idx, ar) { %}
@@ -143,7 +143,7 @@ engine: Underscore
- Publications
+ {{{sectionTitle "writing" "Publications"}}}
{% r.writing.forEach( function( pub, idx, ar) { %}
@@ -158,11 +158,11 @@ engine: Underscore
{% } %}
-{% if ( r.service.history && r.service.history.length ) { %}
+{% if ( r.service && r.service.history && r.service.history.length ) { %}
- Volunteer Work
+ {{{sectionTitle "service" "Volunteer Work"}}}
{% r.service.history.forEach( function( vol, idx, ar) { %}
diff --git a/themes/minimist/src/txt.txt b/themes/minimist/src/txt.txt
index cac2da1..505f8b8 100644
--- a/themes/minimist/src/txt.txt
+++ b/themes/minimist/src/txt.txt
@@ -1,54 +1,84 @@
-{#
-
- minimist/txt.txt
- A plain text resume template for FluentCV's "minimist" theme.
-
-#}
{{ r.name }}
-{% if (r.contact.email) { %}Email: {{ r.contact.email }}{% } %}
-{% if (r.contact.phone) { %}Tel: {{ r.contact.phone }}{% } %}
-{% if (r.contact.website) { %}Web: {{ r.contact.website }}{% } %}
+{{#if r.contact.email }}Email: {{{ r.contact.email }}}{{/if}}
+{{#if r.contact.phone }}Tel: {{{ r.contact.phone }}}{{/if}}
+{{#if r.contact.website }}Web: {{{ r.contact.website }}}{{/if}}
+================================================================================
-***
+{{#if r.info.brief }}{{{ r.info.brief }}}{{/if}}
-{% if ( r.info.brief && r.info.brief.length ) { %}{{ r.info.brief }}{% } %}
+{{#if r.skills}}
+{{{sectionTitle "SKILLS"}}} -------------------------------------------------------------------------
+{{#each r.skills.sets}}
+ - {{{ name }}}: {{#each this.skills}}{{{ this }}} {{/each}}
+{{/each}}
+{{/if}}
-{% if ( r.skills && r.skills.sets && r.skills.sets.length ) { %}SKILLS
-{% r.skills.sets.forEach( function( set ) { %}
- - {{ set.name }}: {% set.skills.forEach(function(sk){ %}{{ sk }}, {% }); %}
- {{ set.level }}
-{% }); %}
-{% } else if( r.skills && r.skills.list && r.skills.list.length ) { %}
+{{#if r.employment}}
+{{{sectionTitle "EMPLOYMENT"}}} ---------------------------------------------------------------------
-{% } %}
+{{#each r.employment.history }}
+ {{#compare @index 4 operator="<"}}
+{{{ position }}}, {{{ employer }}} ({{formatDate safe.start 'YYYY-MM' }} -- {{formatDate safe.end 'YYYY-MM' }})
+{{{ summary }}}
+{{#if highlights}}
+{{#each highlights}}
+ - {{{ this }}}
+{{/each}}
+{{/if}}
-{% if ( r.employment && r.employment.history ) { %}EMPLOYMENT
-{% r.employment.history.forEach( function( proj, idx, ar) { %}
-{{ proj.employer }} ({{ proj.safe.start.format('YYYY-MM') }} — {{ proj.safe.end.format('YYYY-MM') }})
-{{ proj.summary }}
-{% if( proj.highlights ) { %}{% proj.highlights.forEach( function( high ) { %}
- - {{ high }}
-{% }); } }); } %}
+ {{/compare}}
+ {{#compare @index 4 operator=">="}}
+ {{#compare @index 4 operator="=="}}
+Previously...
+Prior to {{{ employer }}}, I worked on a range of projects for companies large and small.
+ {{/compare}}
+ - {{{ position }}}, {{{ employer }}}
+ {{/compare}}
+{{/each}}
+{{/if}}
-{% if ( r.education && r.education.history ) { %}EDUCATION
-{% r.education.history.forEach( function( edu, idx, ar) { %}
-{{ edu.institution }} ({{ edu.safe.start.format('YYYY-MM') }} — {{ edu.safe.end.format('YYYY-MM') }})
-{{ edu.summary }}
-{% if( edu.courses ) { %}{% edu.courses.forEach( function( course ) { %}
- - {{ course }}
-{% }); } }); } %}
+{{#if r.education}}
+{{{sectionTitle "EDUCATION"}}} ----------------------------------------------------------------------
-{% if ( r.service && r.service.history ) { %}VOLUNTEER
-{% r.service.history.forEach( function( srv, idx, ar) { %}
-{{ srv.organization }} ({{ srv.safe.start.format('YYYY-MM') }} — {{ srv.safe.end.format('YYYY-MM') }})
-{{ srv.summary }}
-{% if( srv.highlights ) { %}{% srv.highlights.forEach( function( high ) { %}
- - {{ high }}
-{% }); } }); } %}
+{{#each r.education.history}}
+{{{ institution }}} ({{formatDate safe.start 'YYYY-MM' }} — {{formatDate safe.end 'YYYY-MM' }})
+{{#if summary }}
+{{{ summary }}}
+{{/if}}
+{{#if courses}}
+{{#each courses}}
+ - {{{ this }}}{{/each}}{{/if}}
+{{/each}}
+{{/if}}
+{{#if r.writing}}
+{{{sectionTitle "WRITING"}}} ------------------------------------------------------------------------
-{% if ( r.writing && r.writing.length ) { %}WRITING
-{% r.writing.forEach( function( wri, idx, ar) { %}
-{{ wri.title }} ({{ wri.safe.date.format('YYYY-MM') }})
-{{ wri.summary }}
-{% }); } %}
+{{#each r.writing}}
+{{{ title }}} ({{formatDate safe.date 'YYYY-MM' }})
+{{{ summary }}}
+{{/each}}
+{{/if}}
+
+{{#if r.service }}
+{{{sectionTitle "SERVICE"}}} ------------------------------------------------------------------------
+
+{{#each r.service.history}}
+{{{ organization }}} ({{formatDate safe.start 'YYYY-MM' }} — {{formatDate safe.end 'YYYY-MM' }})
+{{{ summary }}}
+{{#if highlights}}
+{{#each highlights}}
+ - {{{ this }}}
+{{/each}}
+{{/if}}
+
+{{/each}}
+{{/if}}
+{{#if r.recognition}}
+{{{sectionTitle "RECOGNITION"}}} --------------------------------------------------------------------
+
+{{#each r.recognition}}
+{{{ title }}}, {{{ from }}} ({{formatDate safe.date 'MMM YYYY' }})
+{{{ summary }}}
+{{/each}}
+{{/if}}
diff --git a/themes/modern/src/modern-html.html b/themes/modern/src/modern-html.html
index d9e6e35..bbe1625 100644
--- a/themes/modern/src/modern-html.html
+++ b/themes/modern/src/modern-html.html
@@ -23,7 +23,7 @@
{{#if r.info.brief}}
- About
+ {{{sectionTitle "info" "About"}}}
{{{ r.info.brief }}}
@@ -34,7 +34,7 @@
- Skills
+ {{{sectionTitle "Skills"}}}
@@ -68,7 +68,7 @@
- Employment
+ {{{sectionTitle "Employment"}}}
{{#each r.employment.history}}
@@ -95,7 +95,7 @@
- Education
+ {{{sectionTitle "Education"}}}
{{#each r.education.history}}
@@ -117,7 +117,7 @@
- Service
+ {{{sectionTitle "Service"}}}
{{#each r.service.history}}
@@ -144,7 +144,7 @@
- Publications
+ {{{sectionTitle "writing" "Publications"}}}
{{#each r.writing}}
@@ -162,7 +162,7 @@
- Awards
+ {{{sectionTitle "recognition" "Awards"}}}
{{#each r.recognition}}
diff --git a/themes/modern/src/modern-md.txt b/themes/modern/src/modern-md.txt
index 6c5bba0..eabbb84 100644
--- a/themes/modern/src/modern-md.txt
+++ b/themes/modern/src/modern-md.txt
@@ -7,7 +7,7 @@
{{#if r.info.brief }}{{{ r.info.brief }}}{{/if}}
{{#if r.skills}}
-## SKILLS
+## {{{sectionTitle "SKILLS"}}}
{{#each r.skills.sets}}
- {{{ name }}}: {{#each this.skills}}{{{ this }}} {{/each}}
@@ -15,7 +15,7 @@
{{/if}}
{{#if r.employment}}
-## EMPLOYMENT
+## {{{sectionTitle "EMPLOYMENT"}}}
{{#each r.employment.history }}
{{#compare @index 4 operator="<"}}
@@ -39,7 +39,7 @@ Prior to {{{ employer }}}, I worked on a range of projects for companies large a
{{/if}}
{{#if r.education}}
-## EDUCATION
+## {{{sectionTitle "EDUCATION"}}}
{{#each r.education.history}}
### {{{ institution }}} ({{formatDate safe.start 'YYYY-MM' }} — {{formatDate safe.end 'YYYY-MM' }})
@@ -61,7 +61,7 @@ Prior to {{{ employer }}}, I worked on a range of projects for companies large a
{{/if}}
{{#if r.service }}
-## SERVICE
+## {{{sectionTitle "SERVICE"}}}
{{#each r.service.history}}
### {{{ organization }}} ({{formatDate safe.start 'YYYY-MM' }} — {{formatDate safe.end 'YYYY-MM' }})
@@ -75,7 +75,7 @@ Prior to {{{ employer }}}, I worked on a range of projects for companies large a
{{/each}}
{{/if}}
{{#if r.recognition}}
-## RECOGNITION
+## {{{sectionTitle "RECOGNITION"}}}
{{#each r.recognition}}
### {{{ title }}}, {{{ from }}} ({{formatDate safe.date 'MMM YYYY' }})
diff --git a/themes/modern/src/modern-pdf.html b/themes/modern/src/modern-pdf.html
index 7649ab9..116bfa7 100644
--- a/themes/modern/src/modern-pdf.html
+++ b/themes/modern/src/modern-pdf.html
@@ -28,7 +28,7 @@
{{#if r.info.brief}}
- About
+ {{{sectionTitle "info" "About"}}}
{{{ r.info.brief }}}
@@ -39,7 +39,7 @@
- Skills
+ {{{sectionTitle "Skills"}}}
@@ -73,7 +73,7 @@
- Employment
+ {{{sectionTitle "Employment"}}}
{{#each r.employment.history}}
@@ -100,7 +100,7 @@
- Education
+ {{{sectionTitle "Education"}}}
{{#each r.education.history}}
@@ -122,7 +122,7 @@
- Service
+ {{{sectionTitle "Service"}}}
{{#each r.service.history}}
@@ -149,7 +149,7 @@
- Publications
+ {{{sectionTitle "writing" "Publications"}}}
{{#each r.writing}}
@@ -167,7 +167,7 @@
- Awards
+ {{{sectionTitle "recognition" "Awards"}}}
{{#each r.recognition}}
diff --git a/themes/modern/src/modern-txt.txt b/themes/modern/src/modern-txt.txt
index 3aabe00..505f8b8 100644
--- a/themes/modern/src/modern-txt.txt
+++ b/themes/modern/src/modern-txt.txt
@@ -7,7 +7,7 @@
{{#if r.info.brief }}{{{ r.info.brief }}}{{/if}}
{{#if r.skills}}
-SKILLS -------------------------------------------------------------------------
+{{{sectionTitle "SKILLS"}}} -------------------------------------------------------------------------
{{#each r.skills.sets}}
- {{{ name }}}: {{#each this.skills}}{{{ this }}} {{/each}}
@@ -15,7 +15,7 @@ SKILLS -------------------------------------------------------------------------
{{/if}}
{{#if r.employment}}
-EMPLOYMENT ---------------------------------------------------------------------
+{{{sectionTitle "EMPLOYMENT"}}} ---------------------------------------------------------------------
{{#each r.employment.history }}
{{#compare @index 4 operator="<"}}
@@ -39,7 +39,7 @@ Prior to {{{ employer }}}, I worked on a range of projects for companies large a
{{/if}}
{{#if r.education}}
-EDUCATION ----------------------------------------------------------------------
+{{{sectionTitle "EDUCATION"}}} ----------------------------------------------------------------------
{{#each r.education.history}}
{{{ institution }}} ({{formatDate safe.start 'YYYY-MM' }} — {{formatDate safe.end 'YYYY-MM' }})
@@ -52,7 +52,7 @@ EDUCATION ----------------------------------------------------------------------
{{/each}}
{{/if}}
{{#if r.writing}}
-WRITING ------------------------------------------------------------------------
+{{{sectionTitle "WRITING"}}} ------------------------------------------------------------------------
{{#each r.writing}}
{{{ title }}} ({{formatDate safe.date 'YYYY-MM' }})
@@ -61,7 +61,7 @@ WRITING ------------------------------------------------------------------------
{{/if}}
{{#if r.service }}
-SERVICE ------------------------------------------------------------------------
+{{{sectionTitle "SERVICE"}}} ------------------------------------------------------------------------
{{#each r.service.history}}
{{{ organization }}} ({{formatDate safe.start 'YYYY-MM' }} — {{formatDate safe.end 'YYYY-MM' }})
@@ -75,7 +75,7 @@ SERVICE ------------------------------------------------------------------------
{{/each}}
{{/if}}
{{#if r.recognition}}
-RECOGNITION --------------------------------------------------------------------
+{{{sectionTitle "RECOGNITION"}}} --------------------------------------------------------------------
{{#each r.recognition}}
{{{ title }}}, {{{ from }}} ({{formatDate safe.date 'MMM YYYY' }})
diff --git a/themes/modern/src/partials/education.xml b/themes/modern/src/partials/education.xml
index d54556d..c37e526 100644
--- a/themes/modern/src/partials/education.xml
+++ b/themes/modern/src/partials/education.xml
@@ -16,7 +16,7 @@
- EDUCATION
+ {{{sectionTitle "EDUCATION"}}}
diff --git a/themes/modern/src/partials/employment.xml b/themes/modern/src/partials/employment.xml
index 264794b..edb75c8 100644
--- a/themes/modern/src/partials/employment.xml
+++ b/themes/modern/src/partials/employment.xml
@@ -16,7 +16,7 @@
- EMPLOYMENT
+ {{{sectionTitle "EMPLOYMENT"}}}
diff --git a/themes/modern/src/partials/info.xml b/themes/modern/src/partials/info.xml
index 731fb93..9886096 100644
--- a/themes/modern/src/partials/info.xml
+++ b/themes/modern/src/partials/info.xml
@@ -36,7 +36,7 @@
- ABOUT
+ {{{sectionTitle "info" "ABOUT"}}}
diff --git a/themes/modern/src/partials/recognition.xml b/themes/modern/src/partials/recognition.xml
index 0c3cc05..64e89de 100644
--- a/themes/modern/src/partials/recognition.xml
+++ b/themes/modern/src/partials/recognition.xml
@@ -17,7 +17,7 @@
- RECOGNITION
+ {{{sectionTitle "RECOGNITION"}}}
diff --git a/themes/modern/src/partials/service.xml b/themes/modern/src/partials/service.xml
index 159c7b8..f26c889 100644
--- a/themes/modern/src/partials/service.xml
+++ b/themes/modern/src/partials/service.xml
@@ -17,7 +17,7 @@
- SERVICE
+ {{{sectionTitle "SERVICE"}}}
diff --git a/themes/modern/src/partials/skills.xml b/themes/modern/src/partials/skills.xml
index 7b3600f..e8ed4dd 100644
--- a/themes/modern/src/partials/skills.xml
+++ b/themes/modern/src/partials/skills.xml
@@ -37,7 +37,7 @@
- SKILLS
+ {{{sectionTitle "SKILLS"}}}
diff --git a/themes/modern/src/partials/writing.xml b/themes/modern/src/partials/writing.xml
index be11e01..fc581ba 100644
--- a/themes/modern/src/partials/writing.xml
+++ b/themes/modern/src/partials/writing.xml
@@ -17,7 +17,7 @@
- WRITING
+ {{{sectionTitle "WRITING"}}}
diff --git a/themes/positive/src/partials/education.xml b/themes/positive/src/partials/education.xml
index 867c306..7a8847f 100644
--- a/themes/positive/src/partials/education.xml
+++ b/themes/positive/src/partials/education.xml
@@ -4,7 +4,7 @@
- EDUCATION
+ {{{sectionTitle "EDUCATION"}}}
diff --git a/themes/positive/src/partials/employment.xml b/themes/positive/src/partials/employment.xml
index 9204942..a07c4ae 100644
--- a/themes/positive/src/partials/employment.xml
+++ b/themes/positive/src/partials/employment.xml
@@ -4,7 +4,7 @@
- EMPLOYMENT
+ {{{sectionTitle "EMPLOYMENT"}}}
diff --git a/themes/positive/src/partials/recognition.xml b/themes/positive/src/partials/recognition.xml
index d0e16a3..e99898d 100644
--- a/themes/positive/src/partials/recognition.xml
+++ b/themes/positive/src/partials/recognition.xml
@@ -5,7 +5,7 @@
- RECOGNITION
+ {{{sectionTitle "RECOGNITION"}}}
diff --git a/themes/positive/src/partials/service.xml b/themes/positive/src/partials/service.xml
index 8ef5ab7..f74ea8c 100644
--- a/themes/positive/src/partials/service.xml
+++ b/themes/positive/src/partials/service.xml
@@ -5,7 +5,7 @@
- SERVICE
+ {{{sectionTitle "SERVICE"}}}
diff --git a/themes/positive/src/partials/skills.xml b/themes/positive/src/partials/skills.xml
index e6c37f2..a4d32b6 100644
--- a/themes/positive/src/partials/skills.xml
+++ b/themes/positive/src/partials/skills.xml
@@ -5,7 +5,7 @@
- SKILLS
+ {{{sectionTitle "SKILLS"}}}
diff --git a/themes/positive/src/partials/writing.xml b/themes/positive/src/partials/writing.xml
index 2f52b94..904c789 100644
--- a/themes/positive/src/partials/writing.xml
+++ b/themes/positive/src/partials/writing.xml
@@ -5,7 +5,7 @@
- WRITING
+ {{{sectionTitle "WRITING"}}}
diff --git a/themes/positive/src/positive-html.html b/themes/positive/src/positive-html.html
index 70a80a3..206af72 100644
--- a/themes/positive/src/positive-html.html
+++ b/themes/positive/src/positive-html.html
@@ -35,7 +35,7 @@
- Skill |
+ {{{sectionTitle "Skills"}}} |
Keywords |
@@ -56,7 +56,7 @@
{{#if r.employment}}
- Employment
+ {{{sectionTitle "Employment"}}}
{{#each r.employment.history }}
@@ -99,7 +99,7 @@
{{# if r.education}}
- Education
+ {{{sectionTitle "Education"}}}
{{#each r.education.history}}
{{{ institution }}} {{formatDate safe.start 'YYYY' }} — {{formatDate safe.end 'YYYY' }}
@@ -111,7 +111,7 @@
{{#if r.service}}
- Service
+ {{{sectionTitle "Service"}}}
{{#each r.service.history}}
{{{ position }}},
@@ -137,7 +137,7 @@
{{#if r.writing}}
- Writing
+ {{{sectionTitle "Writing"}}}
{{#each r.writing }}
{{#if url}}{{{ title }}}{{else}}{{{ title }}}{{/if}},
@@ -150,7 +150,7 @@
{{# if r.recognition}}
- Awards
+ {{{"sectionTitle" "recognition" "Awards"}}}
{{#each r.recognition}}
{{{ title }}}, {{{ from }}} {{formatDate safe.date 'YYYY' }}
diff --git a/themes/positive/src/positive-pdf.html b/themes/positive/src/positive-pdf.html
index 0b5f5e4..684b1f6 100644
--- a/themes/positive/src/positive-pdf.html
+++ b/themes/positive/src/positive-pdf.html
@@ -11,7 +11,7 @@