Experience data filled from YAML markdown

This commit is contained in:
Krishna Kumar
2016-06-28 11:57:57 +01:00
parent a4582549aa
commit ab39248b7a
2 changed files with 25 additions and 27 deletions
+6 -27
View File
@@ -47,36 +47,15 @@
<h2>Experience</h2>
</header>
{% for job in site.data.experience %}
<!-- Duplicate these resume-item elements and edit accordingly for each job you want to add here -->
<div class="resume-item" itemscope itemprop="worksFor" itemtype="http://schema.org/Organization">
<h3 class="resume-item-title" itemprop="name">Springfield Nuclear Power Plant</h3>
<h4 class="resume-item-details" itemprop="description">Safety Inspector &bull; Nov, 1980 &mdash; Present</h4>
<p class="resume-item-copy">Write about your core competencies in one or two sentences describing your position. If you held the position for a long time, it could be a longer section, including a couple bullet points:</p>
<ul class="resume-item-list">
<li>Ate lots of donuts</li>
<li>Fell asleep rarely</li>
<li>Left promptly at end of day (sometimes earlier)</li>
</ul>
<p class="resume-item-copy">If you're going to copy paste markup, or edit it, just be sure to keep the appropriate classnames on your new elements for styling purposes.</p>
<h3 class="resume-item-title" itemprop="name">{{ job.position }}</h3>
<h4 class="resume-item-details" itemprop="description"><span style="display: block; float:left;">{{ job.company }}</span><span style="display: block; float:right;">{{ job.duration }}</span></h4><br/>
<p class="resume-item-copy" style="clear: both;">{{ job.summary }}</p>
</div><!-- end of resume-item -->
<!-- another resume item -->
<div class="resume-item" itemscope itemprop="worksFor" itemtype="http://schema.org/Organization">
<h3 class="resume-item-title" itemprop="name">Sir Putt-A-Lot's Merrie Olde Fun Centre</h3>
<h4 class="resume-item-details" itemprop="description">Windmill Crank Operator &bull; Jun, 1978 &mdash; Sept, 1979</h4>
<p class="resume-item-copy">If your stint was shorter, feel free to be brief and just call out the most meaningful points of your role. Be concise, and be meaninful. The person reading just needs enough to want to talk to you more about your experience.</p>
</div><!-- end of resume-item -->
<!-- by now you're getting the picture... -->
<div class="resume-item" itemscope itemprop="worksFor" itemtype="http://schema.org/Organization">
<h3 class="resume-item-title" itemprop="name">Simpson Lazer Tag</h3>
<h4 class="resume-item-details" itemprop="description">Front Desk Attendant &bull; Jun, 1975 &mdash; May, 1978</h4>
<p class="resume-item-copy">Boy, when Marge first told me she was going to the Police Academy, I thought it would be fun and exciting, you know, like the movie... Spaceballs. But instead, it's been painful and disturbing, like the movie Police Academy.</p>
</div><!-- end of resume-item -->
{% endfor %}
</section>
<!-- end Experience -->
{% endif %}