Update video

This commit is contained in:
Luke 2022-01-27 22:34:43 +01:00
parent 72887fcc8a
commit 68a69c3f1b

View file

@ -1,31 +1,39 @@
--- ---
layout: page_container layout: page_container
container_class: "podcast pt-40 lg:pt-64"
--- ---
<div class="text-center"> <div class="header-four-container">
{% if page.progress_update %} {% if page.progress_update %}
{% assign title_length = page.title | size %} {% assign title_length = page.title | size %}
<span style="font-size: 12rem; font-weight: 800; margin-top: -9rem; opacity: 0.05;" class="z-0 ml-0 w-full left-0 text-center absolute bg-top">#{{ page.title | slice: 2, 2 }}</span> <span class="header-four-container-counter">#{{ page.title | slice: 2, 2 }}</span>
<h1 style="padding-top: 1.5em;">{{ page.title | slice: 7, title_length }}</h1> <h1 class="header-four-container-title">{{ page.title | slice: 7, title_length }}</h1>
{% else %} {% else %}
<h1>{{ page.title }}</h1> <h1 class="header-four-container-title">{{ page.title }}</h1>
{% endif %} {% endif %}
<p class="opacity-55">{{ page.date | date: "%B %-d, %Y" }}</p> {% if page.summary %}
<div class="flex mx-auto justify-center pt-5"> <p class="header-four-container-desc">
<a href="{{ site.twitter_url }}" class="opacity-55 hover:opacity-100 ease-in-out duration-150" target="_blank"> {{ page.summary | markdownify | remove: "<p>" | remove: "</p>" }}
<img style="height: 1.1rem; width: auto;" src="{{ site.img_url }}icons/twitter.svg"> </p>
</a> {% endif %}
<a href="{{ site.github_url }}" class="pl-4 pr-4 opacity-55 hover:opacity-100 ease-in-out duration-150" target="_blank"> <span class="header-four-container-title-author">
<img style="height: 1.19rem; width: auto;" src="{{ site.img_url }}icons/github.svg"> May 6, 2021 • Written by <a class="link-primary" href="/team/#david">David</a>
</a> </span>
<a href="{{ site.reddit_url }}" class="opacity-55 hover:opacity-100 ease-in-out duration-150" target="_blank"> <div class="header-four-container-social">
<img style="height: 1.18rem; width: auto;" src="{{ site.img_url }}icons/reddit.svg"> <a class="link hover-opacity-in" href="{{ site.twitter_url }}"><i class="icon-twitter text-lg"></i></a>
</a> <a class="link hover-opacity-in" href="{{ site.github_url }}"><i class="icon-github text-xl"></i></a>
<a class="link hover-opacity-in" href="{{ site.reddit_url }}"><i class="icon-reddit text-xl"></i></a>
</div> </div>
</div> </div>
<div class="content"> <div class="markdown-container">
{{ content }} {{ content | replace: '<!--break-->', '<a class="anchor" id="continue"></a>' }}
{% if page.progress_update == null %}
<p>{{ page.date | date: "%B %-d, %Y" }} • Written by <a href="{{ site.team_url }}#{{ page.author | slugify }}">{{ page.author | capitalize }}</a></p>
{% endif %}
</div> </div>
<div class="horizontal-line element-x-center max-w-4xl mt-0"></div>
{% if page.portmaster_plug == true %}
{% include portmaster_plug.html %}
{% endif %}
{% include next_previous_item.html %} {% include next_previous_item.html %}