16 lines
642 B
HTML
16 lines
642 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 %}
|