Skip to content

Commit 365ac19

Browse files
authored
Update work.liquid to show the location of work experience under cv page (#2298)
adding "location" element when location object is added to work experience. Location icon and the entered value will appear on the CV page under the work experience section. This feature already exists for education section, but not for work. The change is made to make the experiece more consistent. ![image](https://github.com/alshedivat/al-folio/assets/158527033/9b55e139-1078-4655-8a18-56ac43da4d74)
1 parent 5f634e8 commit 365ac19

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

_includes/resume/work.liquid

+19-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,25 @@
1212
{% else %}
1313
{% assign date = '' %}
1414
{% endif %}
15-
<span class="badge font-weight-bold danger-color-dark text-uppercase align-middle" style="min-width: 75px"> {{ date }} </span>
15+
<table class="table-cv">
16+
<tbody>
17+
<tr>
18+
<td>
19+
<span class="badge font-weight-bold danger-color-dark text-uppercase align-middle" style="min-width: 75px"> {{ date }} </span>
20+
</td>
21+
</tr>
22+
{% if content.location %}
23+
<tr>
24+
<td>
25+
<p class="location">
26+
<i class="fa-solid fa-location-dot iconlocation"></i>
27+
{{ content.location }}
28+
</p>
29+
</td>
30+
</tr>
31+
{% endif %}
32+
</tbody>
33+
</table>
1634
</div>
1735
<div class="col-xs-10 cl-sm-10 col-md-10 mt-2 mt-md-0">
1836
<h6 class="title font-weight-bold ml-1 ml-md-4">

0 commit comments

Comments
 (0)