Skip to content

Commit

Permalink
feat: prevent indexing preview page
Browse files Browse the repository at this point in the history
  • Loading branch information
clemlatz committed Jan 19, 2025
1 parent d9f804f commit 917ffde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/preview.astro
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const totalPages = Math.ceil(posts.length / config.settings.pagination);
const currentPosts = sortedPosts.slice(0, config.settings.pagination);
---

<Base title="Preview">
<Base title="Preview" noindex={true}>
<section class="section">
<div class="container">
<Posts posts={currentPosts} className="mb-16" />
Expand Down

0 comments on commit 917ffde

Please sign in to comment.