Skip to content

Commit

Permalink
show 5 columns on team page
Browse files Browse the repository at this point in the history
  • Loading branch information
bast committed Feb 2, 2024
1 parent 0c3f620 commit 8252508
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/team.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{% set data = load_data(path="content/team/team.yaml") %}
<div class="uk-child-width-expand@s uk-text-center uk-margin-xlarge-top" uk-grid>
{% for person in data.team %}
<div class="uk-width-1-3@m">
<div class="uk-width-1-5@m">
{% set image = resize_image(path="team/" ~ person.picture, width=140, height=140, op="fill") %}
<img src="{{ image.url }}">
<p>
Expand All @@ -20,7 +20,7 @@
<h2>Former team members</h2>
<div class="uk-child-width-expand@s uk-text-center uk-margin-xlarge-top" uk-grid>
{% for person in data.past %}
<div class="uk-width-1-3@m">
<div class="uk-width-1-5@m">
{% set image = resize_image(path="team/" ~ person.picture, width=140, height=140, op="fill") %}
<img src="{{ image.url }}">
<p>
Expand Down

0 comments on commit 8252508

Please sign in to comment.