mirror of
https://github.com/safing/web
synced 2025-04-12 06:59:10 +00:00
Fix icons and wrong static content
This commit is contained in:
parent
7f8d7d8720
commit
004e0b86cc
4 changed files with 13 additions and 13 deletions
|
@ -11,7 +11,7 @@
|
|||
<span class="prev-next-container-next-title">
|
||||
Next {{ next_type }}
|
||||
</span>
|
||||
<a href="{{ page.next.url }}" class="link-primary">#030 - Safing's Marketing Funnel</a>
|
||||
<a href="{{ page.next.url }}" class="link-primary">{{ page.next.title }}</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% if page.previous.url %}
|
||||
|
@ -26,7 +26,7 @@
|
|||
<span class="prev-next-container-next-title">
|
||||
Previous {{ previous_type }}
|
||||
</span>
|
||||
<a href="{{ page.previous.url }}" class="link-primary">#030 - Safing's Marketing Funnel</a>
|
||||
<a href="{{ page.previous.url }}" class="link-primary">{{ page.previous.title }}</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1,19 +1,19 @@
|
|||
<a class="card-blog" href="{{ episode.url }}">
|
||||
<div class="card-blog-thumbnail">
|
||||
{% if episode.custom_thumbnail_name == null %}
|
||||
<img
|
||||
<img
|
||||
src="{{ site.img_url }}thumbnails/podcast/placeholder.png"
|
||||
style="max-width: 365px; max-height: 223px;"
|
||||
>
|
||||
{% else %}
|
||||
<img
|
||||
<img
|
||||
src="{{ site.img_url }}thumbnails/podcast/{{ episode.custom_thumbnail_name }}.jpg"
|
||||
style="max-width: 365px; max-height: 223px;"
|
||||
>
|
||||
{% endif %}
|
||||
<span class="counter">#{{ episode.title | slice: 2, 2 }}</span>
|
||||
<span class="box-icon">
|
||||
<i class="icon-play text-xl"></i>
|
||||
<i class="icon-mic text-xl"></i>
|
||||
</span>
|
||||
</div>
|
||||
<div class="card-blog-content" style="max-width: 365px;">
|
||||
|
@ -31,4 +31,4 @@
|
|||
{% assign title_length = episode.title | size %}
|
||||
<span>{{ episode.title | slice: 7, title_length }} - #{{ episode.title | slice: 2, 2 }}</span>
|
||||
</div>
|
||||
</a>
|
||||
</a>
|
||||
|
|
|
@ -11,7 +11,7 @@ layout: page
|
|||
Podcast
|
||||
</h2>
|
||||
<div class="blogpod-container-top-extra">
|
||||
<a class="link-secondary" href="{{ site.podcast_itunes_url }}"><i class="icon-rss"></i></a>
|
||||
<a class="link-secondary" href="{{ site.podcast_itunes_url }}"><i class="icon-podcast"></i></a>
|
||||
<a class="link-secondary" href="{{ site.podcast_feed_url }}"><i class="icon-rss"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -22,4 +22,4 @@ layout: page
|
|||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
|
|
|
@ -8,11 +8,11 @@ layout: page
|
|||
<div class="blogpod-container-top">
|
||||
<span class="blogpod-container-top-bg-title">Follow Us</span>
|
||||
<h2 class="blogpod-container-top-title">
|
||||
Podcast
|
||||
Video Updates
|
||||
</h2>
|
||||
<div class="blogpod-container-top-extra">
|
||||
<a class="link-secondary" href="{{ site.youtube_channel_url }}"><i class="icon-rss"></i></a>
|
||||
<a class="link-secondary" href="{{ site.invidious_channel_url }}"><i class="icon-rss"></i></a>
|
||||
<a class="link-secondary" href="{{ site.youtube_channel_url }}">YouTube</a>
|
||||
<a class="link-secondary" href="{{ site.invidious_channel_url }}">Invidious</i></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="blogpod-container-bottom">
|
||||
|
@ -22,4 +22,4 @@ layout: page
|
|||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
|
|
Loading…
Add table
Reference in a new issue