mirror of
https://github.com/Start9Labs/start9.com.git
synced 2026-04-04 14:29:46 +00:00
Misc edits for release (#1)
* optimize data for ticker * rework data model for cleaner be your own section * wip * delete deprecated assets * edit copy; misc small style fixes * reenable ticker, update nexcloud, edit embassy one name * rearrange support section * new graphiccs to info section * bold personal server iheader in info section * mobile styling for be your own section * adjust infographics section * adjust underline + animmation * add ui screenshots to powered by section * fix overflow, sizing, spacing * renable ticker * fix marketplace link * more link updates * edit team bios and fix apostrophes * update footer with bdonation link; adjust scss spacing * copy changes * add license page * clean up spacing and uunused files * Update src/_includes/components/landing/community.njk * Update src/_includes/components/landing/infographics.njk * Update src/_includes/components/landing/powered-by.njk * Update src/_includes/components/landing/support.njk * connect subscribe api * implement newsletter subscription * audit all links and cleanup * add 404 page and more cleanup * add sitemap and robots * fix service links * small fixes + copy edits * fix infographics and ticker spacing * update emails * update docs links and temp remove team * update docs link urls * fix diy link * typo * typo and sizing * Update src/about.njk Co-authored-by: Matt Hill <matthewonthemoon@gmail.com>
This commit is contained in:
117
src/news.njk
117
src/news.njk
@@ -4,75 +4,62 @@ 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>
|
||||
<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 %}
|
||||
{# 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 }}">
|
||||
{% 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>
|
||||
|
||||
{# <div id="hacker-list">
|
||||
<ul class="list">
|
||||
<li>
|
||||
<h3 class="name">Jonny</h3>
|
||||
<p class="city">Stockholm</p>
|
||||
{% 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>
|
||||
<li>
|
||||
<h3 class="name">Jonas</h3>
|
||||
<p class="city">Berlin</p>
|
||||
{% 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>
|
||||
</div> #}
|
||||
</section>
|
||||
Reference in New Issue
Block a user