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.
# Added sections to the CV # Personalized the CV
- Loading branch information
Showing
11 changed files
with
348 additions
and
167 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
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,47 @@ | ||
<ul class="card-text font-weight-light list-group list-group-flush"> | ||
{% assign reviewer = data[1] | sort: 'date' | reverse %} | ||
{% for content in reviewer %} | ||
<li class="list-group-item"> | ||
<div class="row"> | ||
<div class="col-xs-2 cl-sm-2 col-md-2 text-center date-column"> | ||
<table class="table-cv"> | ||
<tbody> | ||
<tr> | ||
<td> | ||
<span class="badge font-weight-bold danger-color-dark text-uppercase align-middle" style="min-width: 75px">{{ content.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"> | ||
{% if content.url %} | ||
<a href="{{ content.url }}" target="_blank">{{ content.organization }}</a> | ||
{% else %} | ||
{{ content.organization }} | ||
{% endif %} | ||
</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
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
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
Oops, something went wrong.