feat: rel=me for profile links, don't show http:// prefix
This commit is contained in:
parent
0c187aaf84
commit
256a14a922
3 changed files with 25 additions and 2 deletions
|
@ -11,6 +11,7 @@
|
|||
import { userStore } from "$lib/store";
|
||||
import renderMarkdown from "$lib/api/markdown";
|
||||
import ReportButton from "../ReportButton.svelte";
|
||||
import ProfileLink from "../ProfileLink.svelte";
|
||||
|
||||
export let data: PageData;
|
||||
|
||||
|
@ -51,7 +52,7 @@
|
|||
<div class="col-md d-flex align-items-center">
|
||||
<ul class="list-unstyled">
|
||||
{#each data.links as link}
|
||||
<li><Icon name="globe" /> <a href={link}>{link}</a></li>
|
||||
<li><ProfileLink {link} /></li>
|
||||
{/each}
|
||||
</ul>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue