forked from sharu725/online-cv
-
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.
Fixed bug with education being shown both in sidebar and in main-content
- Loading branch information
1 parent
a9c67f9
commit 412b5e4
Showing
2 changed files
with
42 additions
and
42 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,51 @@ | ||
{% assign education = site.data.data.education %} | ||
{% if education %} | ||
{% if site.data.sidebar.education %} | ||
<section class="section educations-section"> | ||
|
||
<h2 class="section-title"> | ||
<span class="fa-stack fa-xs"> | ||
<i class="fas fa-circle fa-stack-2x"></i> | ||
<i class="fas fa-graduation-cap fa-stack-1x fa-inverse"></i> | ||
</span> | ||
Education | ||
</h2> | ||
|
||
{% for graduation in education %} | ||
<div class="item"> | ||
|
||
<div class="meta"> | ||
|
||
<div class="upper-row"> | ||
<h3 class="degree">{{ graduation.degree }}</h3> | ||
<div class="time">{{ graduation.time }}</div> | ||
</div><!--//upper-row--> | ||
|
||
<div class="university">{{ graduation.university }}</div> | ||
</div><!--//meta--> | ||
|
||
{% if graduation.details %} | ||
<div class="details"> | ||
{{ graduation.details | markdownify }} | ||
</div><!--//details--> | ||
{% endif %} | ||
</div><!--//item--> | ||
{% endfor %} | ||
|
||
</section><!--//section--> | ||
{% if site.data.data.sidebar.education %} | ||
<div class="education-container container-block"> | ||
|
||
<h2 class="container-block-title">Education</h2> | ||
|
||
{% for graduation in education %} | ||
<div class="item"> | ||
<h4 class="degree">{{ graduation.degree }}</h4> | ||
<h5 class="meta">{{ graduation.university }}</h5> | ||
<div class="time">{{ graduation.time }}</div> | ||
</div><!--//item--> | ||
{% endfor %} | ||
|
||
</div><!--//education-container--> | ||
{% else %} | ||
<div class="education-container container-block"> | ||
<section class="section educations-section"> | ||
|
||
<h2 class="container-block-title">Education</h2> | ||
<h2 class="section-title"> | ||
<span class="fa-stack fa-xs"> | ||
<i class="fas fa-circle fa-stack-2x"></i> | ||
<i class="fas fa-graduation-cap fa-stack-1x fa-inverse"></i> | ||
</span> | ||
Education | ||
</h2> | ||
|
||
{% for graduation in education %} | ||
{% for graduation in education %} | ||
<div class="item"> | ||
<h4 class="degree">{{ graduation.degree }}</h4> | ||
<h5 class="meta">{{ graduation.university }}</h5> | ||
<div class="time">{{ graduation.time }}</div> | ||
|
||
<div class="meta"> | ||
|
||
<div class="upper-row"> | ||
<h3 class="degree">{{ graduation.degree }} sdfsdfsdf</h3> | ||
<div class="time">{{ graduation.time }}</div> | ||
</div><!--//upper-row--> | ||
|
||
<div class="university">{{ graduation.university }}</div> | ||
</div><!--//meta--> | ||
|
||
{% if graduation.details %} | ||
<div class="details"> | ||
{{ graduation.details | markdownify }} | ||
</div><!--//details--> | ||
{% endif %} | ||
</div><!--//item--> | ||
{% endfor %} | ||
{% endfor %} | ||
|
||
</div><!--//education-container--> | ||
</section><!--//section--> | ||
{% endif %} | ||
{% endif %} |
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