date
This commit is contained in:
@@ -63,7 +63,7 @@
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<h2 class="h2 fw-light mb-4">{{ "about-me" | translate(lang=lang) }} </h2>
|
||||
<p>{{ cv.person.about | lang_entity }}</p>
|
||||
<p>{{ cv.person.about | lang_entity(lang=lang) }}</p>
|
||||
</div>
|
||||
<div class="col-md-5 offset-lg-1">
|
||||
<div class="row mt-2">
|
||||
@@ -147,8 +147,12 @@
|
||||
<div class="h5">{{ job.title }} <span class="text-muted h6">at {{ job.company }}</span></div>
|
||||
</div>
|
||||
<div class="timeline-body px-4 pb-4">
|
||||
<div class="text-muted text-small mb-3">May, 2015 - Present</div>
|
||||
<div>{{ job.description | lang_entity }} </div>
|
||||
{% if job.from | format_date(type="job") != job.from | format_date(type="job") %}
|
||||
<div class="text-muted text-small mb-3">{{ job.from | format_date(type="job") }} - {{ job.to | format_date(type="job") }}</div>
|
||||
{% else %}
|
||||
<div class="text-muted text-small mb-3">{{ job.from | format_date(type="job") }}</div>
|
||||
{% endif %}
|
||||
<div>{{ job.description | lang_entity(lang=lang) }} </div>
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
@@ -163,7 +167,7 @@
|
||||
<div class="timeline-card timeline-card-success" data-aos="fade-in" data-aos-delay="0">
|
||||
<div class="timeline-head px-4 pt-3">
|
||||
{% if education.degree %}
|
||||
<div class="h5">{{ education.degree | lang_entity }} <span class="text-muted h6">{{ education.school }}</span> </div>
|
||||
<div class="h5">{{ education.degree | lang_entity(lang=lang) }} <span class="text-muted h6">{{ education.school }}</span> </div>
|
||||
{% else %}
|
||||
<div class="h5">{{ education.school }}</div>
|
||||
{% endif %}
|
||||
@@ -171,8 +175,8 @@
|
||||
<div class="timeline-body px-4 pb-4">
|
||||
|
||||
{% if education.description %}
|
||||
<div class="text-muted text-small mb-3">2011 - 2013</div>
|
||||
<div>{{ education.description | lang_entity }}</div>
|
||||
<div class="text-muted text-small mb-3">{{ education.from | format_date(type="job") }} - {{ education.to | format_date(type="job") }}</div>
|
||||
<div>{{ education.description | lang_entity(lang=lang) }}</div>
|
||||
{% else %}
|
||||
2011 - 2013
|
||||
{% endif %}
|
||||
|
||||
Reference in New Issue
Block a user