mirror of
https://github.com/safing/web
synced 2025-09-02 02:59:03 +00:00
Merge pull request #41 from safing/feature/podcast-rss-link
Podcast iTunes & RSS links
This commit is contained in:
commit
ed7c847d77
4 changed files with 31 additions and 3 deletions
|
@ -91,6 +91,7 @@ donations:
|
||||||
|
|
||||||
### Podcast
|
### Podcast
|
||||||
|
|
||||||
|
podcast_itunes_url: https://podcasts.apple.com/podcast/id1480027286
|
||||||
podcast_feed_url: /podcast.xml
|
podcast_feed_url: /podcast.xml
|
||||||
podcast_album_art: /assets/podcast/img/cover.jpg
|
podcast_album_art: /assets/podcast/img/cover.jpg
|
||||||
podcast_owner: 'Safing'
|
podcast_owner: 'Safing'
|
||||||
|
|
|
@ -10,9 +10,9 @@
|
||||||
<ul>
|
<ul>
|
||||||
<span>Podcast</span>
|
<span>Podcast</span>
|
||||||
<li><a href="{{ site.podcast_url }}">Overview</a></li>
|
<li><a href="{{ site.podcast_url }}">Overview</a></li>
|
||||||
|
<li><a href="{{ site.podcast_itunes_url }}">iTunes</a></li>
|
||||||
<li><a href="{{ site.podcast_feed_url }}">RSS</a></li>
|
<li><a href="{{ site.podcast_feed_url }}">RSS</a></li>
|
||||||
<li class="vhidden">.</li>
|
<li class="vhidden">.</li>
|
||||||
<li class="vhidden">.</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
<ul>
|
<ul>
|
||||||
<span>Resources</span>
|
<span>Resources</span>
|
||||||
|
@ -41,4 +41,4 @@
|
||||||
<li>Safing © {{ site.time | date: '%Y' }}</li>
|
<li>Safing © {{ site.time | date: '%Y' }}</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
|
@ -116,3 +116,23 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.pod-links{
|
||||||
|
text-align: center;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
margin-top: -3rem;
|
||||||
|
margin-bottom: 8rem;
|
||||||
|
}
|
||||||
|
.pod-links ul{
|
||||||
|
display: inline-flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pod-links li{
|
||||||
|
list-style-type: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pod-links ul br{
|
||||||
|
padding-left: 1rem;
|
||||||
|
padding-right: 1rem;
|
||||||
|
}
|
||||||
|
|
|
@ -2,6 +2,13 @@
|
||||||
title: The Safing Podcast
|
title: The Safing Podcast
|
||||||
layout: page_column
|
layout: page_column
|
||||||
---
|
---
|
||||||
|
<div class="pod-links">
|
||||||
|
<ul>
|
||||||
|
<li><a href="{{ site.podcast_itunes_url }}">iTunes</a></li>
|
||||||
|
<br>
|
||||||
|
<li><a href="{{ site.podcast_feed_url }}">RSS</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="ui divided items">
|
<div class="ui divided items">
|
||||||
{% assign sorted_podcasts = site.podcasts | reverse %}
|
{% assign sorted_podcasts = site.podcasts | reverse %}
|
||||||
|
@ -26,4 +33,4 @@ layout: page_column
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
Loading…
Add table
Reference in a new issue