Skip to content

Commit

Permalink
Added title field for education to sections
Browse files Browse the repository at this point in the history
  • Loading branch information
Descent098 committed Aug 2, 2021
1 parent 8db0bc2 commit 267d27d
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions cv/sections/education.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
{% for experience in education %}
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">{{ experience[0]["institution"] }}</h3>
<div class="subheading mb-3">{{ experience[0]["title"] }}</div>
<h3 class="mb-0">{{ experience[0]["institution"] }} </h3>
<div class="subheading mb-3">{% if experience[0]["title"] %} {{ experience[0]["title"] }}{% endif %}</div>
<div>{{ experience[1] | safe}}</div>
</div>
<div class="flex-shrink-0"><span class="text-primary">{{experience[0]["month_started"] | pretty_datetime(experience[0]["year_started"], experience[0]["month_ended"], experience[0]["year_ended"], experience[0]["current"])}}</span></div>
Expand Down
2 changes: 1 addition & 1 deletion ethereal/sections/education.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<section class="panel color4">
<div class="intro joined">
{% for experience in education %}
<h4 class="major">{{ experience[0]["institution"] }}</h4>
<h4 class="major">{{ experience[0]["institution"] }} {% if experience[0]["title"] %} | {{ experience[0]["title"] }}{% endif %}</h4>
<em>{{ experience[0]["year_started"] }} {% if experience[0]["current"] %}- Present{% endif %}{% if experience[0]["year_ended"] %}- {{ experience[0]["year_ended"] }}{%endif%}</em>
<p>{{ experience[1] | safe }}</p>
{% endfor %}
Expand Down
2 changes: 1 addition & 1 deletion freelancer/sections/education.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
{% for experience in education %}
<div class="col-md-12">
<h6 class="text-center text-uppercase text-white">
{{ experience[0]["institution"] }} | {{ experience[0]["year_started"] }} {% if experience[0]["current"] %}- Present{% endif %}{% if experience[0]["year_ended"] %}- {{ experience[0]["year_ended"] }}{%endif%}
{{ experience[0]["institution"] }} | {{ experience[0]["year_started"] }} {% if experience[0]["current"] %}- Present{% endif %}{% if experience[0]["year_ended"] %}- {{ experience[0]["year_ended"] }}{%endif%} {% if experience[0]["title"] %} | {{ experience[0]["title"] }}{% endif %}
</h6>
<p class="lead">{{ experience[1] |safe}}</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion grayscale/sections/education.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<div class="bg-black text-center h-100 project">
<div class="d-flex h-100">
<div class="project-text w-100 my-auto text-center ">
<h4 class="text-white">{{ experience[0]["institution"] }} | {{ experience[0]["title"] }}</h4>
<h4 class="text-white">{{ experience[0]["institution"] }} {% if experience[0]["title"] %} | {{ experience[0]["title"] }}{% endif %}</h4>
<h6 class="text-white">{{experience[0]["month_started"] | pretty_datetime(experience[0]["year_started"], experience[0]["month_ended"], experience[0]["year_ended"], experience[0]["current"])}}</h6>
{{ experience[1] | safe }}
<hr class="d-none d-lg-block mb-0 ms-0" />
Expand Down
2 changes: 1 addition & 1 deletion paradigm_shift/sections/education.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
</header>
<div class="content">
{% for experience in education %}
<h3>{{ experience[0]["institution"] }} | {{ experience[0]["title"] }}</h3>
<h3>{{ experience[0]["institution"] }} {% if experience[0]["title"] %}| {{ experience[0]["title"] }}{% endif %}</h3>
<!-- Metadata -->
<p> {{experience[0]["month_started"] | pretty_datetime(experience[0]["year_started"], experience[0]["month_ended"], experience[0]["year_ended"], experience[0]["current"])}}</p>
{{ experience[1] | safe }}
Expand Down
2 changes: 1 addition & 1 deletion read_only/sections/education.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="row">
{% for experience in education %}
<div class="col-6 col-12-xsmall">
<h5>{{ experience[0]["institution"] }}</h5>
<h5>{{ experience[0]["institution"] }} {% if experience[0]["title"] %} | {{ experience[0]["title"] }}{% endif %}</h5>
<em>{{ experience[0]["year_started"] }} {% if experience[0]["current"] %}- Present{% endif %}{% if experience[0]["year_ended"] %}- {{ experience[0]["year_ended"] }}{%endif%}</em>
{{ experience[1] | safe }}
</div>
Expand Down
2 changes: 1 addition & 1 deletion strata/sections/education.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="row">
{% for experience in education %}
<article class="col-6 col-12-xsmall work-item">
<h3>{{ experience[0]["institution"] }}</h3>
<h3>{{ experience[0]["institution"] }} {% if experience[0]["title"] %}| {{ experience[0]["title"] }}{% endif %}</h3>
<em>{{ experience[0]["year_started"] }} {% if experience[0]["current"] %}- Present{% endif %}{% if experience[0]["year_ended"] %}- {{ experience[0]["year_ended"] }}{%endif%}</em>
{{ experience[1] | safe }}
</article>
Expand Down

0 comments on commit 267d27d

Please sign in to comment.