Le blog de Victor Héry https://blog.victor-hery.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

16 lines
531 B

{% macro applause_button(article) %} {% from '_includes/_defaults.html' import
APPLAUSE_BUTTON with context %}
{% if (APPLAUSE_BUTTON or article.applause_button == "on") and article.applause_button != "off" %}
{% set url = SITEURL+ '/' + article.url %}
{% set identifier = SITEURL+ '/' + article.url %}
{% if article.applause_button_id %}
{% set identifier = article.applause_button_id %}
{% endif %}
<div class="applause_button">
<applause-button url={{ identifier }}> </applause-button>
</div>
{% endif %} {% endmacro %}