Skip to content

Commit

Permalink
add logo to footer
Browse files Browse the repository at this point in the history
see #3
The order are changed to make the looking more balanced. This order might be changed in the future.
  • Loading branch information
whalekeykeeper committed Mar 20, 2024
1 parent 7717835 commit 568ee6e
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions layouts/partials/docs/inject/footer.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
<div id="sponsors" class="flex flex-wrap justify-between" style="max-height: 150px;">
<span>
<picture>
<source srcset='{{ "images/logo01-erc-dark.png" | relURL }}' media="(prefers-color-scheme: dark)">
<img src='{{ "images/logo01-erc.jpg" | relURL }}' style="height: auto; width: 27%;" />
<source srcset='/translations/images/logo04-heidelberg-cats.png' media="(prefers-color-scheme: light)">
<source srcset='/translations/images/logo04-heidelberg-cats-dark.png' media="(prefers-color-scheme: dark)">
<img src='translations/images/logo04-heidelberg-cats.png' style="height: auto; width: 28%;" />
</picture>
<picture>
<source srcset='{{ "images/logo03-uni-dark.png" | relURL }}' media="(prefers-color-scheme: dark)">
<img src='{{ "images/logo03-uni.png" | relURL }}' style="height: auto; width: 27%;" />
<img src='{{ "images/logo03-uni.png" | relURL }}' style="height: auto; width: 18%;" />
</picture>
<picture>
<source srcset='{{ "images/logo01-erc-dark.png" | relURL }}' media="(prefers-color-scheme: dark)">
<img src='{{ "images/logo01-erc.jpg" | relURL }}' style="height: auto; width: 18%;" />
</picture>
<picture>
<source srcset='{{ "images/logo02-readc-light.png" | relURL }}' media="(prefers-color-scheme: light)">
<source srcset='{{ "images/logo02-readc.png" | relURL }}' media="(prefers-color-scheme: dark)">
<img src='{{ "images/logo02-readc.png" | relURL }}' style="height: auto; width: 35%;" />
<img src='{{ "images/logo02-readc.png" | relURL }}' style="height: auto; width: 27%;" />
</picture>
</span>
</div>

0 comments on commit 568ee6e

Please sign in to comment.