Removed hardcoded URLs from Associations section in resume layout. Added optional URLs to Projects section. Added supporting comments to Associations and Projects.

This commit is contained in:
Ciaran Lyons
2017-08-10 12:52:46 -04:00
parent 69a0fccd50
commit e412be7cbd
3 changed files with 11 additions and 3 deletions
+2 -2
View File
@@ -94,7 +94,7 @@
{% for project in site.data.projects %}
<div class="resume-item" itemscope itemprop="worksFor" itemtype="http://schema.org/Organization">
<h3 class="resume-item-title" itemprop="name">{{ project.project }}</h3>
<h3 class="resume-item-title" itemprop="name">{% if project.url %}<a href="{{ project.url }}">{{ project.project }}</a>% else %}{{ project.project }}{% endif %}</h3>
<h4 class="resume-item-details" itemprop="description">{{ project.role }} &bull; {{ project.duration }}</h4>
<p class="resume-item-copy">{{ project.description }}</p>
</div>
@@ -152,7 +152,7 @@
{% for association in site.data.associations %}
<div class="resume-item">
<h3 class="resume-item-title"><a href="http://beerfortheworld.com">{{ association.organization }}</a></h3>
<h3 class="resume-item-title">{% if association.url %}<a href="{{ association.url }}">{{ association.organization }}</a>{% else %}{{ association.organization }}{% endif %}</h3>
<h4 class="resume-item-details">{{ association.role }} &bull; {{ association.year }}</h4>
<p class="resume-item-copy">{{ association.summary }}</p>
</div>