Simon Bruder
b087785e6e
Otherwise running ffmpeg fails due to pipewire on the host using a different glibc version.
23 lines
974 B
HTML
23 lines
974 B
HTML
{% macro podlove_subscribe_button(size="medium") %}
|
|
<noscript>
|
|
<img src="{{ get_url(path="assets/poster.jpg") | safe }}" alt="Logo von {{ config.title }}">
|
|
<a href="{{ get_url(path="subscribe") }}"><button class="noscript-subscribe-button">Abonnieren</button></a>
|
|
</noscript>
|
|
<script
|
|
class="podlove-subscribe-button"
|
|
src="{{ get_url(path="vendor/podlove-subscribe-button/javascripts/app.js") | safe }}"
|
|
data-language="{{ lang }}"
|
|
data-size="{{ size }}"
|
|
data-format="cover"
|
|
data-json-data="podcastData"
|
|
data-colors="{{ config.extra.theme.main | default(value="#2B8AC6") }}"
|
|
></script>
|
|
{% endmacro podlove_subscribe_button %}
|
|
{% macro title(page) -%}
|
|
{#- tera lacks zero padding and also log operator -#}
|
|
{%- if page.extra.episode -%}
|
|
{%- set len = page.extra.episode | as_str | length -%}
|
|
{{ config.extra.acronym }}{% for i in range(end=config.extra.pad_to - len) %}0{% endfor %}{{ page.extra.episode }} {% endif -%}
|
|
{{ page.title }}
|
|
{%- endmacro poster %}
|