mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-07-09 18:37:18 +08:00
18 lines
458 B
Svelte
18 lines
458 B
Svelte
<script lang="ts">
|
|
import { site } from '$lib/config/site'
|
|
import { head } from '$lib/config/general'
|
|
</script>
|
|
|
|
<svelte:head>
|
|
{#if site.author.github}
|
|
<link rel="me" href="https://github.com/{site.author.github}" />
|
|
{/if}
|
|
{#if site.author.twitter}
|
|
<link rel="me" href="https://twitter.com/{site.author.twitter}" />
|
|
{/if}
|
|
{#if head.relMe}
|
|
{#each head.relMe as href}
|
|
<link rel="me" {href} />
|
|
{/each}
|
|
{/if}
|
|
</svelte:head>
|