Skip to content

Commit

Permalink
Add new assets to footer (#39)
Browse files Browse the repository at this point in the history
* Remove circle from ZEC logo.

This matches how other logos are displayed.

* Add DGB, ETH and USDC to footer.
  • Loading branch information
jholdstock committed Dec 8, 2023
1 parent 219fb31 commit da9eef0
Show file tree
Hide file tree
Showing 5 changed files with 133 additions and 41 deletions.
15 changes: 15 additions & 0 deletions src/assets/images/dgb-logo.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
51 changes: 51 additions & 0 deletions src/assets/images/eth-logo.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions src/assets/images/usdc-logo.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
72 changes: 31 additions & 41 deletions src/assets/images/zec-logo.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions src/layouts/partials/footer.html
Expand Up @@ -41,6 +41,21 @@ <h1>DCRDEX</h1>
<img src="{{ $dogelogo.Permalink }}" />
<span>Dogecoin</span>
</div>
<div class="currency col-6 col-sm-4">
{{ $ethlogo := resources.Get "/images/eth-logo.svg" }}
<img src="{{ $ethlogo.Permalink }}" />
<span>Ethereum</span>
</div>
<div class="currency col-6 col-sm-4">
{{ $usdclogo := resources.Get "/images/usdc-logo.svg" }}
<img src="{{ $usdclogo.Permalink }}" />
<span>USDC</span>
</div>
<div class="currency col-6 col-sm-4">
{{ $dgblogo := resources.Get "/images/dgb-logo.svg" }}
<img src="{{ $dgblogo.Permalink }}" />
<span>DigiByte</span>
</div>
</div>

<p>
Expand Down

0 comments on commit da9eef0

Please sign in to comment.