feat(semantic): prioritize positions in sections

This commit is contained in:
Rafael Bardini 2021-07-03 14:08:04 +02:00
parent e796cd75db
commit 9341e84ed5
4 changed files with 15 additions and 15 deletions

View File

@ -6,16 +6,16 @@
<article>
<header>
<div class="spaced-list">
<h4>{{institution}}</h4>
<h4>{{area}}</h4>
<span>
<time datetime="{{startDate}}">{{formatDate startDate}}</time>
{{#if endDate}}<time datetime="{{endDate}}">{{formatDate endDate}}</time>{{else}}Present{{/if}}
</span>
</div>
<div class="spaced-list">
{{#area}}
{{#institution}}
<strong>{{.}}</strong>
{{/area}}
{{/institution}}
{{#url}}
<a href="{{.}}">{{formatURL .}}</a>
{{/url}}

View File

@ -6,16 +6,16 @@
<article>
<header>
<div class="spaced-list">
<h4>{{organization}}</h4>
<h4>{{position}}</h4>
<span>
<time datetime="{{startDate}}">{{formatDate startDate}}</time>
{{#if endDate}}<time datetime="{{endDate}}">{{formatDate endDate}}</time>{{else}}Present{{/if}}
</span>
</div>
<div class="spaced-list">
{{#position}}
{{#organization}}
<strong>{{.}}</strong>
{{/position}}
{{/organization}}
{{#url}}
<a href="{{.}}">{{formatURL .}}</a>
{{/url}}

View File

@ -6,16 +6,16 @@
<article>
<header>
<div class="spaced-list">
<h4>{{name}}</h4>
<h4>{{position}}</h4>
<span>
<time datetime="{{startDate}}">{{formatDate startDate}}</time>
{{#if endDate}}<time datetime="{{endDate}}">{{formatDate endDate}}</time>{{else}}Present{{/if}}
</span>
</div>
<div class="spaced-list">
{{#position}}
{{#name}}
<strong>{{.}}</strong>
{{/position}}
{{/name}}
{{#url}}
<a href="{{.}}">{{formatURL .}}</a>
{{/url}}

View File

@ -315,14 +315,14 @@ blockquote > * + * {
<article>
<header>
<div class="spaced-list">
<h4>Pied Piper</h4>
<h4>CEO/President</h4>
<span>
<time datetime="2013-12-01">Dec 2013</time>
<time datetime="2014-12-01">Dec 2014</time>
</span>
</div>
<div class="spaced-list">
<strong>CEO/President</strong>
<strong>Pied Piper</strong>
<a href="http://piedpiper.example.com">piedpiper.example.com</a>
</div>
</header>
@ -341,14 +341,14 @@ blockquote > * + * {
<article>
<header>
<div class="spaced-list">
<h4>CoderDojo</h4>
<h4>Teacher</h4>
<span>
<time datetime="2012-01-01">Jan 2012</time>
<time datetime="2013-01-01">Jan 2013</time>
</span>
</div>
<div class="spaced-list">
<strong>Teacher</strong>
<strong>CoderDojo</strong>
<a href="http://coderdojo.example.com/">coderdojo.example.com</a>
</div>
</header>
@ -365,14 +365,14 @@ blockquote > * + * {
<article>
<header>
<div class="spaced-list">
<h4>University of Oklahoma</h4>
<h4>Information Technology</h4>
<span>
<time datetime="2011-06-01">Jun 2011</time>
<time datetime="2014-01-01">Jan 2014</time>
</span>
</div>
<div class="spaced-list">
<strong>Information Technology</strong>
<strong>University of Oklahoma</strong>
<a href="https://www.ou.edu/">www.ou.edu</a>
</div>
</header>