kitoy.me/templates/post_macros.html

27 lines
883 B
HTML
Raw Normal View History

2020-04-19 09:06:04 +02:00
{% macro title(page) %}
<header>
<h2 class="date"><a href="{{ page.permalink }}">{{ page.title }}</a></h2>
<small>
<time datetime="{{ page.date | date(format="%F") | safe }}">
{{ page.date | date(format="%F") }}
</time>
{{ " - " }}({{ page.reading_time }} min de souffrance)
</small>
</header>
{% endmacro title %}
{% macro polish(content) %}
{{ content |
replace(from=":sourire:", to="😄") |
replace(from=":+1:", to="👍") |
replace(from=":tire_la_langue:", to="😛") |
replace(from=":rire:", to="😀") |
replace(from=":colere:", to="😦") |
replace(from=":coeur:", to="❤") |
replace(from=":déçu:", to="😞") |
replace(from=":tada:", to="🎉") |
2023-04-16 17:35:57 +02:00
replace(from=":clap:", to="👏") |
safe
2020-04-19 09:06:04 +02:00
}}
{% endmacro content %}