Fixed group links and landing text

This commit is contained in:
a-ill
2023-08-05 21:06:36 +03:00
parent 53abde4a90
commit 74d86157ef
39 changed files with 45 additions and 37 deletions

View File

@@ -81,7 +81,13 @@
<div class="location-info">
<p><b>{$content.location}: </b>{getAddress(entry)}</p>
<p><b>{$content.members}: </b>{entry.members}</p>
<p><b>{$content.contact}: </b><a href={entry.contact} target=;_blank; rel=noreferrer>{entry.contact}</a></p>
{#if entry.contact.includes("@")}
<p><b>{$content.contact}: </b><a href={"mailto:" + entry.contact} target=;_blank; rel=noreferrer>{entry.contact}</a></p>
{:else if entry.contact.includes("http")}
<p><b>{$content.contact}: </b><a href={entry.contact} target=;_blank; rel=noreferrer>{entry.contact}</a></p>
{:else}
<p><b>{$content.contact}: </b>{entry.contact}</p>
{/if}
</div>
{/each}
</div>