Skip to content

Commit 6e898a4

Browse files
authored
Merge pull request #109 from stumbo/rssFeed
Rss feed
2 parents 4857397 + 6867dea commit 6e898a4

File tree

2 files changed

+17
-40
lines changed

2 files changed

+17
-40
lines changed

layouts/docs/baseof.html

Lines changed: 0 additions & 40 deletions
This file was deleted.

layouts/partials/footer/links.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<ul class="td-footer__links-list">
2+
{{ range . }}
3+
{{ if eq .name "RSS" }}
4+
<li class="td-footer__links-item" data-bs-toggle="tooltip" title="RSS" aria-label="RSS">
5+
<a target="_blank" rel="noopener" href="{{ .RelPermalink }}/project/status/index.xml" aria-label="RSS">
6+
<i class="fas fa-rss"></i>
7+
</a>
8+
</li>
9+
{{ else }}
10+
<li class="td-footer__links-item" data-bs-toggle="tooltip" title="{{ .name }}" aria-label="{{ .name }}">
11+
<a target="_blank" rel="noopener" href="{{ .url }}" aria-label="{{ .name }}">
12+
<i class="{{ .icon }}"></i>
13+
</a>
14+
{{ end }}
15+
{{ end }}
16+
17+
</ul>

0 commit comments

Comments
 (0)