Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions resume.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,18 @@ <h1 class="display-6 text-start m-0">Interests</h1>
</div>
<div class="col-lg-9">
<p class="m-0">
<!-- See https://shopify.github.io/liquid/basics/whitespace/ for whitespace stripping. -->
{% for entry in site.data.bio.interests %}
{{ entry.name }}
<!-- Unfortunately the following must all be on a single line so that there are no spaces before the commas. -->
{% if entry.keywords and entry.keywords.size > 0 %}({% for keyword in entry.keywords %}{{ keyword }}{% if forloop.last != true %},{% endif %}{% endfor %}){% endif %}{% if forloop.last != true %}, {% endif %}
{{ entry.name -}}
{% if entry.keywords and entry.keywords.size > 0 %} (
{%- for keyword in entry.keywords -%}
{{ keyword }}
{%- if forloop.last != true -%},
{% endif %}
{%- endfor -%}
) {%- endif %}
{%- if forloop.last != true -%},
{% endif %}
{% endfor %}
</p>
</div>
Expand Down