forked from alshedivat/al-folio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
980449b
commit 8bde7da
Showing
7 changed files
with
185 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<ul class="card-text font-weight-light list-group list-group-flush"> | ||
{% for content in entry[1] %} | ||
<li class="list-group-item"> | ||
<div class="row"> | ||
<div class="col-xs-2 cl-sm-2 col-md-2 text-center date-column"> | ||
{% if content.date %} {% assign date = content.date | split: '-' | join: '.' %} {% else %} {% assign date = '' %} {% endif %} | ||
<span class="badge font-weight-bold danger-color-dark text-uppercase align-middle" style="min-width: 75px"> {{ date }} </span> | ||
</div> | ||
<div class="col-xs-10 cl-sm-10 col-md-10 mt-2 mt-md-0"> | ||
<h6 class="title font-weight-bold ml-1 ml-md-4"> | ||
<a href="{{ content.url }}">{{ content.label }}</a> | ||
</h6> | ||
<h6 class="ml-1 ml-md-4" style="font-size: 0.95rem">{{ content.awarder }}</h6> | ||
<h6 class="ml-1 ml-md-4" style="font-size: 0.95rem; font-style: italic">{{ content.details }}</h6> | ||
</div> | ||
</div> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<ul class="card-text font-weight-light list-group list-group-flush"> | ||
{% for content in entry[1] %} | ||
<li class="list-group-item"> | ||
<div class="row"> | ||
<div class="col-xs-2 cl-sm-2 col-md-2 text-center date-column"> | ||
{% if content.date %} | ||
{% assign date = content.date | split: '-' | slice: 0, 2 | join: '.' %} | ||
{% else %} | ||
{% assign date = '' %} | ||
{% endif %} | ||
<span class="badge font-weight-bold danger-color-dark text-uppercase align-middle" style="min-width: 75px"> {{ date }} </span> | ||
</div> | ||
<div class="col-xs-10 cl-sm-10 col-md-10 mt-2 mt-md-0"> | ||
<h6 class="title font-weight-bold ml-1 ml-md-4"> | ||
{{ content.name }} | ||
</h6> | ||
<h6 class="ml-1 ml-md-4" style="font-size: 0.95rem; font-style: italic">{{ content.summary }}</h6> | ||
<ul class="items"> | ||
{% for item in content.highlights %} | ||
<li> | ||
<span class="item">{{ item }}</span> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
</div> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<ul class="card-text font-weight-light list-group list-group-flush"> | ||
{% assign publications = entry[1] | sort: 'entry.date' | reverse %} | ||
{% for content in publications %} | ||
<li class="list-group-item"> | ||
<div class="row"> | ||
<div class="col-xs-2 cl-sm-2 col-md-2 text-center date-column"> | ||
{% if content.date %} {% assign date = content.date | split: '-' | join: '.' %} {% else %} {% assign date = '' %} {% endif %} | ||
<table class="table-cv"> | ||
<tbody> | ||
<tr> | ||
<td> | ||
<span class="badge font-weight-bold danger-color-dark text-uppercase align-middle" style="min-width: 75px">{{ date }}</span> | ||
</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</div> | ||
<div class="col-xs-10 cl-sm-10 col-md-10 mt-2 mt-md-0"> | ||
<h6 class="title font-weight-bold ml-1 ml-md-4"> | ||
<a href="{{ content.url }}">{{ content.title }}</a> | ||
</h6> | ||
<h6 class="ml-1 ml-md-4" style="font-size: 0.95rem; font-style: italic">{{ content.authors[] | join: ", " }}</h6> | ||
</div> | ||
</div> | ||
</li> | ||
{% endfor %} | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<div class="list-groups"> | ||
{% for content in entry[1] %} | ||
<div class="list-group col-md-6" title="{{ content.label }}"> | ||
<table class="table-cv list-group-table"> | ||
<tbody> | ||
<tr> | ||
{% if content.icon %} | ||
<td class="list-group-category-icon"> | ||
<i class="{{ content.icon }}"></i> | ||
</td> | ||
{% else %} | ||
<td class="list-group-category-icon"></td> | ||
{% endif %} | ||
<!-- Calculate colspan number for category title --> | ||
{% assign i = 1 %} | ||
{% for item in content.items %} | ||
{% assign i = i | plus: 1 %} | ||
{% endfor %} | ||
<td colspan="{{ i }}" class="list-group-category">{{ content.label }}</td> | ||
</tr> | ||
{% for item in content.details %} | ||
<tr> | ||
<td></td> | ||
<td class="list-group-name"> | ||
<b>{{ item }}</b> | ||
</td> | ||
</tr> | ||
{% endfor %} | ||
</tbody> | ||
</table> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<ul class="card-text font-weight-light list-group list-group-flush"> | ||
{% assign work = entry[1] | sort: 'entry.start_date' | reverse %} | ||
{% for content in work %} | ||
<li class="list-group-item"> | ||
<div class="row"> | ||
<div class="col-xs-2 cl-sm-2 col-md-2 text-center date-column"> | ||
{% if content.start_date %} | ||
{% assign startDate = content.start_date | split: '-' | slice: 0, 2 | join: '.' %} | ||
{% assign endDate = content.end_date | split: '-' | slice: 0, 2 | join: '.' | default: 'Present' %} | ||
{% assign date = startDate | append: ' - ' %} | ||
{% assign date = date | append: endDate %} | ||
{% else %} | ||
{% assign date = '' %} | ||
{% endif %} | ||
<table class="table-cv"> | ||
<tbody> | ||
<tr> | ||
<td> | ||
<span class="badge font-weight-bold danger-color-dark text-uppercase align-middle" style="min-width: 75px"> {{ date }} </span> | ||
</td> | ||
</tr> | ||
{% if content.location %} | ||
<tr> | ||
<td> | ||
<p class="location"> | ||
<i class="fa-solid fa-location-dot iconlocation"></i> | ||
{{ content.location }} | ||
</p> | ||
</td> | ||
</tr> | ||
{% endif %} | ||
</tbody> | ||
</table> | ||
</div> | ||
<div class="col-xs-10 cl-sm-10 col-md-10 mt-2 mt-md-0"> | ||
<h6 class="title font-weight-bold ml-1 ml-md-4"> | ||
{{ content.position }} | ||
</h6> | ||
<h6 class="ml-1 ml-md-4" style="font-size: 0.95rem">{{ content.company }}</h6> | ||
<h6 class="ml-1 ml-md-4" style="font-size: 0.95rem; font-style: italic">{{ content.summary }}</h6> | ||
<ul class="items"> | ||
{% for item in content.highlights %} | ||
<li> | ||
<span class="item">{{ item }}</span> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
</div> | ||
</li> | ||
{% endfor %} | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters