mirror of
https://github.com/Start9Labs/start9.com.git
synced 2026-03-31 20:43:43 +00:00
* revamped js/css asset build * update favicon compilation and color; cleanup package.json * fix spacing * update social media display and references * adjust about page sizing and mobile display * update jobs and page titles * abstract links to single source, small style fixes * adjust footer * update pro viddeo page and seo * seo and video fixes * fix seo display * move tor link to footer * sizing adjustments and add hosted video * video and sizing adjustments * wip video * final video * update pro link * temp fix for ticker start * update link, add auto orient, remove video border * fix contact form submission and mobile submit
65 lines
1.7 KiB
Plaintext
65 lines
1.7 KiB
Plaintext
---
|
|
title: Podcasts
|
|
layout: layouts/peripheral.njk
|
|
---
|
|
|
|
<section id="hero">
|
|
<div id="hero-image" class="image-with-shadow">
|
|
<img src="/assets/images/news-hero.png" alt="news page hero: tv emerging from an embassy" title="news page hero: tv emerging from an embassy"/>
|
|
<img class="img-shadow" src="/assets/images/news-hero.png" alt=""/>
|
|
</div>
|
|
<div id="logo">
|
|
<h1>
|
|
<span>Podcasts</span>
|
|
</h1>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="news">
|
|
{# TWITTER / MEDIUM FEED #}
|
|
{# <ul class="news">
|
|
{% for post in news %}
|
|
<li class="post">
|
|
<a href="{{ post.guid }}">
|
|
{% if post.creator %}
|
|
<span class="creator">{{ post.creator }}</span>
|
|
{% endif %}
|
|
|
|
{% if post.creator.includes('@') %}
|
|
<p class="twitter-text">{{ post.title }}</p>
|
|
{% else %}
|
|
<h3>{{ post.title }}</h3>
|
|
{% endif %}
|
|
<h4>{{ post.pubDate }}</h4>
|
|
|
|
{% if post.description %}
|
|
<p>{{ post.description }}</p>
|
|
{% endif %}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul> #}
|
|
<ul class="podcasts">
|
|
{% for item in podcasts %}
|
|
<li class="podcast">
|
|
<a href="{{ item.link }}" rel="noopener noreferrer" target="_blank">
|
|
{% if item.anchor %}
|
|
<span class="creator">{{ item.anchor }}</span>
|
|
{% endif %}
|
|
{% if item.anchor %}
|
|
<img src="{{ item.image }}" alt=""/>
|
|
{% endif %}
|
|
{% if item.title %}
|
|
<h3>{{ item.title }}</h3>
|
|
{% endif %}
|
|
{% if item.date %}
|
|
<time datetime="{{ item.date }}">{{ item.date }}</time>
|
|
{% endif %}
|
|
{% if item.description %}
|
|
<p>{{ item.description }}</p>
|
|
{% endif %}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</section> |