mirror of
https://github.com/jfmcbrayer/brutaldon
synced 2024-12-22 05:23:03 +01:00
8cdefb5e90
Currently, this only works with CSRF protection turned off. Next job is to fix that.
12 lines
396 B
HTML
12 lines
396 B
HTML
{% if toot.visibility != 'private' and toot.visibility != 'direct' %}
|
|
{% if toot.reblogged %}
|
|
<span class="fa fa-retweet has-text-warning">
|
|
<strong class="is-hidden-mobile" >Boosted</strong>
|
|
{% else %}
|
|
<span class="fa fa-retweet" >
|
|
<span class="is-hidden-mobile" >Boost</span>
|
|
{% endif %}
|
|
</span>
|
|
</span>
|
|
{% endif %}
|