forked from robert/robertjohnson.work
.github
_data
_includes
about.html
analytics.html
career-profile.html
certifications.html
contact.html
education.html
experiences.html
footer.html
head.html
interests.html
language.html
oss-contributions.html
projects.html
publications.html
scripts.html
sidebar.html
skills.html
_layouts
_sass
assets
.gitignore
CNAME
Gemfile
Gemfile.lock
Jenkinsfile
README.md
_config.yml
deploy.sh
docker-compose.yml
favicon.ico
index.html
print.html
20 lines
454 B
HTML
20 lines
454 B
HTML
{% assign languages = site.data.data.sidebar.languages %}
|
|
{% if languages %}
|
|
<div class="languages-container container-block">
|
|
|
|
<h2 class="container-block-title">
|
|
{{ languages.title }}
|
|
</h2>
|
|
|
|
<ul class="list-unstyled interests-list">
|
|
{% for language in languages.info %}
|
|
<li>
|
|
{{ language.idiom }}
|
|
<span class="lang-desc">({{ language.level }})</span>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
</div><!--//interests-->
|
|
{% endif %}
|