redstrate.com/themes/red/layouts/partials/footer.html

43 lines
1.5 KiB
HTML
Raw Normal View History

2022-11-03 15:13:15 -04:00
<div id="f-badges">
{{ range $.Site.Menus.badges }}
{{ $badgeScope := . }}
{{ with resources.Get .URL }}
2023-04-17 17:00:05 -04:00
<img style="image-rendering: pixelated;" width="{{ .Width }}" height="{{ .Height }}" src="{{ .RelPermalink }}" alt="{{ $badgeScope.Name }}">
{{ end }}
{{ end }}
2024-02-23 22:35:59 -05:00
<br/>
{{ range $.Site.Menus.otherbadges }}
{{ $badgeScope := . }}
2024-09-29 18:57:31 -04:00
{{ $url := .URL }}
{{ with resources.Get .Params.img }}
<a href="{{ $url }}"><img style="image-rendering: pixelated;" width="{{ .Width }}" height="{{ .Height }}" src="{{ .RelPermalink }}" alt="{{ $badgeScope.Name }}"></a>
2024-02-23 22:35:59 -05:00
{{ end }}
{{ end }}
2024-09-29 19:00:45 -04:00
{{ with .Site.Params.geekring_site_id }}
<map name="badge-geekring">
<area shape="rect" coords="4,3,13,28" href="http://geekring.net/site/{{ . }}/previous" alt="Previous">
<area shape="rect" coords="13,3,22,28" href="http://geekring.net/site/{{ . }}/random" alt="Random">
<area shape="rect" coords="76,3,84,28" href="http://geekring.net/site/{{ . }}/next" alt="Next">
<area shape="rect" coords="23,3,63,28" href="https://geekring.net/" alt="Geekring">
</map>
{{ with resources.Get "geek_2.gif" }}
<img width="88" height="31" usemap="#badge-geekring" src="{{ .RelPermalink }}" alt="The Geekring">
2024-09-29 19:00:45 -04:00
{{ end }}
{{ end }}
</div>
2022-11-03 15:13:15 -04:00
2023-04-17 14:18:40 -04:00
<div class="f-list">
<ul class="nice-list">
{{ range $.Site.Menus.footer }}
<li>
<a href="{{ .URL }}">{{ .Name }}</a>
</li>
{{ end }}
</ul>
2022-11-03 15:13:15 -04:00
</div>
2022-11-06 16:42:01 -05:00