Madelena Mak d4c03fe1be
Update the theme to match branding better (#33462)
Co-authored-by: Franck Nijhof <git@frenck.dev>
2024-06-30 13:47:01 +02:00

22 lines
670 B
HTML

<section class="sharing aside-module grid__item one-whole lap-one-half">
<h1 class="title epsilon">Share this post</h1>
<ul class="divided">
{% if site.twitter_tweet_button %}
<li>
<a
target="_blank"
href="https://twitter.com/intent/tweet?url={{ page.url | canonical_url | url_encode }}&text={{ page.title | append: ' via @home_assistant' | url_encode }}"
>Tweet</a>
</li>
{% endif %}
{% if site.facebook_like %}
<li>
<a
target="_blank"
href="https://www.facebook.com/sharer.php?u={{ page.url | canonical_url | url_encode }}"
>Share on Facebook</a>
</li>
{% endif %}
</ul>
</section>