fix: missing field
This commit is contained in:
parent
cbc500b0af
commit
804b2d89fe
|
@ -30,7 +30,7 @@ permalink: "resume/{{ resume.locale }}/index.html"
|
|||
<span class="blink" style="display:inline;">_</span>
|
||||
|
||||
{% for pageKey in pagination.pages %}
|
||||
{% if page.url != pagination.hrefs[loop.index-1] %}
|
||||
{% if page.url != pagination.hrefs[loop.index - 1] %}
|
||||
<a style="right: 0px; position: absolute;" href="{{ pagination.hrefs[loop.index-1] | url }}">{{ pageKey[0].username }}
|
||||
<span class="{{ resumes[loop.index-1].flag_icon }}"></span><span style="text-transform:uppercase;">{{ resumes[loop.index-1].locale }}</span>
|
||||
</a>
|
||||
|
@ -75,9 +75,7 @@ permalink: "resume/{{ resume.locale }}/index.html"
|
|||
<ul>
|
||||
{% for read in resume.reading %}
|
||||
<li>
|
||||
{% if read.type == 'website' %}
|
||||
<a href="{{ read.url }}">{{ read.title | safe }}</a>
|
||||
{% endif %}
|
||||
<a href="{{ read.url }}">{{ read.title | safe }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
@ -136,6 +134,7 @@ permalink: "resume/{{ resume.locale }}/index.html"
|
|||
<li class="event">
|
||||
{{ edu.title }}<br>
|
||||
<a href="{{ edu.url }}">{{ edu.institution }}</a>
|
||||
<br>{{ edu.eqv }}
|
||||
</li>
|
||||
<li class="year">{{ edu.start }}</li>
|
||||
{% endfor %}
|
||||
|
|
Reference in a new issue