summaryrefslogtreecommitdiff
path: root/src/components/licenses/WTFPL.astro
diff options
context:
space:
mode:
authorJoão Augusto Costa Branco Marado Torres <torres.dev@disroot.org>2025-08-05 18:50:37 +0100
committerJoão Augusto Costa Branco Marado Torres <torres.dev@disroot.org>2025-08-05 18:50:37 +0100
commit0af094770c4ebabc56ff761a8bd215bc397c0f7e (patch)
treea9ad669c8b84b4d13897732ed93ccfcbbeb2cb25 /src/components/licenses/WTFPL.astro
parent84eef3f848c4efa18985a776021a58720744523a (diff)
refactor: reading page review
Signed-off-by: João Augusto Costa Branco Marado Torres <torres.dev@disroot.org>
Diffstat (limited to 'src/components/licenses/WTFPL.astro')
-rw-r--r--src/components/licenses/WTFPL.astro53
1 files changed, 0 insertions, 53 deletions
diff --git a/src/components/licenses/WTFPL.astro b/src/components/licenses/WTFPL.astro
deleted file mode 100644
index feab7ec..0000000
--- a/src/components/licenses/WTFPL.astro
+++ /dev/null
@@ -1,53 +0,0 @@
----
-import type { Props as BaseProps } from "../CopyrightNotice.astro";
-interface Props extends BaseProps {}
-
-let { website, author, email, dateCreated } = Astro.props;
----
-
-<footer itemprop="copyrightNotice">
- <p>
- <small>
- Copyright © <span itemprop="copyrightYear">{
- dateCreated.getFullYear()
- }</span>
- <span
- itemprop="copyrightholder"
- itemscope
- itemtype="https://schema.org/Person"
- >{
- website ? (
- <a
- itemprop="url"
- rel="author external noreferrer"
- target="_blank"
- href={website}
- content={website}
- ><span itemprop="name">{author}</span></a>
- ) : author
- }
- {
- email && (
- <>&lt;<a
- itemprop="email"
- rel="author external noreferrer"
- target="_blank"
- href={`mailto:${email}`}
- >{email}</a>&gt;</>
- )
- }</span>
- </small>
- </p>
- <p>
- <small>
- This work is free. You can redistribute it and/or modify it under the
- terms of the Do What The Fuck You Want To Public License, Version 2, as
- published by Sam Hocevar. See <a
- itemprop="license"
- href="http://www.wtfpl.net/"
- rel="license noreferrer"
- target="_blank"
- >http://www.wtfpl.net/</a> for more details.
- </small>
- </p>
-</footer>