blowfish/layouts/partials/meta/likes_button.html

18 lines
756 B
HTML
Raw Normal View History

2022-09-28 17:43:50 -05:00
<span>
2022-10-10 08:51:15 -05:00
<!--button id="likes_button" class="border rounded px-3" onclick="process_article()">
2022-09-28 17:43:50 -05:00
Like
2022-10-10 08:51:15 -05:00
</button-->
<button id="likes_button"
2022-10-10 18:09:30 -05:00
style="height: 24px; padding-top: 0px; padding-bottom: 5px; padding-left: 10px; padding-right: 10px"
2022-10-10 08:51:15 -05:00
class="!rounded-md bg-primary-600 px-4 py-2 !text-neutral !no-underline hover:!bg-primary-500 dark:bg-primary-800 dark:hover:!bg-primary-700"
onclick="process_article()">
2022-10-10 18:09:30 -05:00
<span id="likes_button_heart" style="display:none">{{ partial "icon.html" "heart" }} </span>
<span id="likes_button_emtpty_heart">{{ partial "icon.html" "heart-empty" }}</span>
&nbsp;
<span id="likes_button_text">Like</span>
2022-09-28 17:43:50 -05:00
</button>
2022-10-10 08:51:15 -05:00
2022-09-28 17:43:50 -05:00
</span>
{{- /* Trim EOF */ -}}