Skip to content

Commit

Permalink
prevent modal on cliking footer icons
Browse files Browse the repository at this point in the history
Signed-off-by: Vivek Vishal <[email protected]>
  • Loading branch information
vishalvivekm authored Oct 28, 2024
1 parent 0c4e509 commit c44e155
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions layouts/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
<div class="col-lg-6">
<a href="/">
{{ $svg := resources.Get "icons/logo.svg" }}
<img class="footer-logo" src="{{ $svg.Permalink }}" alt="Footer Logo Layer5">
<img class="footer-logo" src="{{ $svg.Permalink }}" alt="Footer Logo Layer5" data-modal="false">
</a>
</div>
<div class="col-lg-6 footer-info footer-icons">
{{ range .Site.Params.links.footer.icons }}
<a href="{{ .url }}" class="{{ .class }}" target="_blank" rel="noreferrer">
{{ $svg1 := resources.Get .icon }}
<img height="30px" src="{{ $svg1.Permalink }}" alt="{{ .alt }}">
<img height="30px" src="{{ $svg1.Permalink }}" alt="{{ .alt }}" data-modal="false">
</a>
{{ end }}
</div>
Expand Down Expand Up @@ -87,4 +87,4 @@ <h5 class="footer-h5"><a href="{{ .url }}">{{ .name }}</a></h5>
href="https://layer5.io/company/legal/terms-of-service">Terms</a></span>
</div>
</div>
</footer>
</footer>

0 comments on commit c44e155

Please sign in to comment.