header-button-like.html 323 B

1234567
  1. <button
  2. data-csrftoken="{{ csrf() }}"
  3. data-liked="{% if page.isLiked(user) %}1{% else %}0{% endif %}"
  4. class="like-button btn btn-default btn-outline btn-circle
  5. {% if not size == null %}btn-{{size}}{% endif %}
  6. {% if page.isLiked(user) %}active{% endif %}"
  7. ><i class="icon-like"></i></button>