Skip to content

Commit

Permalink
Merge pull request #908 from coderefinery/radovan/neic-logo
Browse files Browse the repository at this point in the history
NeIC asked me to add a small NeIC logo to index page
  • Loading branch information
bast authored Sep 30, 2024
2 parents e81e0e6 + 38a576a commit a4128fe
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,17 @@
{% block content %}
<div class="uk-child-width-expand@s uk-margin-bottom" uk-grid>
<div>
{% set coderefinery = resize_image(path="logo/coderefinery.png", width=250, op="fit_width") %}
<img src="{{ coderefinery.url }}"
alt="CodeRefinery logo" class="pull-left mr-2"/>

<div class="uk-margin-bottom">
{% set neic_logo = resize_image(path="about/funding/neic.png", width=80, op="fit_width") %}
<img src="{{ neic_logo.url }}"
alt="NeIC logo" class="mr-2"/>
</div>
<div>
{% set coderefinery = resize_image(path="logo/coderefinery.png", width=250, op="fit_width") %}
<img src="{{ coderefinery.url }}"
alt="CodeRefinery logo" class="pull-left mr-2"/>

</div>
</div>
<div class="uk-width-3-4@m">
{% set description = get_page(path="index/description.md") %}
Expand Down

0 comments on commit a4128fe

Please sign in to comment.