mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-07-09 18:47:18 +08:00
14 lines
449 B
Svelte
14 lines
449 B
Svelte
<script lang="ts">
|
|
import { site } from '$lib/config/site'
|
|
export let post: Urara.Post
|
|
</script>
|
|
|
|
<button class="tooltip tooltip-left opacity-60 hover:opacity-100" data-tip="Share">
|
|
<a
|
|
href={`https://www.addtoany.com/share#url=${site.protocol + site.domain + post.path}&title=${encodeURI(
|
|
post.title ?? post.path.slice(1)
|
|
)}`}
|
|
class="btn btn-circle btn-ghost">
|
|
<span class="i-heroicons-outline-share" />
|
|
</a>
|
|
</button>
|