Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix citation button on Explore page #170

Merged
merged 6 commits into from
Oct 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions packages/viewer/src/components/Shared/Cite.svelte
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
<script lang="ts">
import { onMount } from 'svelte'
import { page } from '$app/stores'
import CopyButton from './CopyButton.svelte'
let url = ''
let markdown = ''
export let title: string =
'π-Base, a community database of topological counterexamples.'
onMount(() => {
url = window.location.href
markdown = `[${title}](${url})`
})
$: markdown = `[${title}](${$page.url})`
</script>

<div class="text-center p-2">
Expand All @@ -17,7 +12,7 @@
<span class="text-muted">
The pi-Base Community.
<cite>{title}.</cite>
Available at: {url}
Available at: {$page.url}
(Accessed: {new Date().toISOString().split('T')[0]}).
</span>
</small>
Expand Down
Loading