summaryrefslogtreecommitdiff
path: root/frontend/src/components/LallansIssuesGallery.astro
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/LallansIssuesGallery.astro')
-rw-r--r--frontend/src/components/LallansIssuesGallery.astro26
1 files changed, 0 insertions, 26 deletions
diff --git a/frontend/src/components/LallansIssuesGallery.astro b/frontend/src/components/LallansIssuesGallery.astro
deleted file mode 100644
index 1580e53..0000000
--- a/frontend/src/components/LallansIssuesGallery.astro
+++ /dev/null
@@ -1,26 +0,0 @@
----
-import type LallansIssue from '../types/LallansIssue';
-import type Locale from '../types/Locale';
-import { getAllLallansIssues } from '../data/lallans';
-
-const issues = await getAllLallansIssues();
----
-
-<ul class="lallans-issues-gallery">
- { issues.map(issue => (
- <li>
- <a
- class="link lallans-issues-gallery__issue-container"
- href={ `lallans/${issue.issueNumber}` }
- >
- <img
- class="lallans-issues-gallery__issue-cover-image"
- src={ `/public/images/lallans/issue${issue.issueNumber}.jpg` }
- />
- <p class="lallans-issues-gallery__issue-title">
- Lallans { issue.issueNumber } | { issue.issueName }
- </p>
- </a>
- </li>
- ))}
-</ul> \ No newline at end of file