forked from robert/robertjohnson.work
Add title support for Education, Experiences, Interests, and Languages (#310)
This commit is contained in:
committed by
GitHub
parent
cb92af866a
commit
6d8c11193c
@ -4,10 +4,10 @@
|
||||
<div class="education-container container-block">
|
||||
|
||||
<h2 class="container-block-title">
|
||||
Education
|
||||
{{ education.title }}
|
||||
</h2>
|
||||
|
||||
{% for graduation in education %}
|
||||
{% for graduation in education.info %}
|
||||
<div class="item">
|
||||
<h4 class="degree">{{ graduation.degree }}</h4>
|
||||
<h5 class="meta">{{ graduation.university }}</h5>
|
||||
@ -24,10 +24,10 @@
|
||||
<i class="fas fa-circle fa-stack-2x"></i>
|
||||
<i class="fas fa-graduation-cap fa-stack-1x fa-inverse"></i>
|
||||
</span>
|
||||
Education
|
||||
{{ education.title }}
|
||||
</h2>
|
||||
|
||||
{% for graduation in education %}
|
||||
{% for graduation in education.info %}
|
||||
<div class="item">
|
||||
|
||||
<div class="meta">
|
||||
|
@ -6,10 +6,10 @@
|
||||
<i class="fas fa-circle fa-stack-2x"></i>
|
||||
<i class="fas fa-briefcase fa-stack-1x fa-inverse"></i>
|
||||
</span>
|
||||
Experiences
|
||||
{{ experiences.title }}
|
||||
</h2>
|
||||
|
||||
{% for experience in experiences %}
|
||||
{% for experience in experiences.info %}
|
||||
<div class="item">
|
||||
|
||||
<div class="meta">
|
||||
|
@ -3,11 +3,11 @@
|
||||
<div class="interests-container container-block">
|
||||
|
||||
<h2 class="container-block-title">
|
||||
Interests
|
||||
{{ interests.title }}
|
||||
</h2>
|
||||
|
||||
<ul class="list-unstyled interests-list">
|
||||
{% for interest in interests %}
|
||||
{% for interest in interests.info %}
|
||||
|
||||
{% if interest.link %}
|
||||
<li><a href="{{ interest.link }}">{{ interest.item }}</a></li>
|
||||
|
@ -3,11 +3,11 @@
|
||||
<div class="languages-container container-block">
|
||||
|
||||
<h2 class="container-block-title">
|
||||
Languages
|
||||
{{ languages.title }}
|
||||
</h2>
|
||||
|
||||
<ul class="list-unstyled interests-list">
|
||||
{%for language in languages %}
|
||||
{% for language in languages.info %}
|
||||
<li>
|
||||
{{ language.idiom }}
|
||||
<span class="lang-desc">({{ language.level }})</span>
|
||||
|
Reference in New Issue
Block a user