popov.link/src/components/Pagination.astro

36 lines
394 B
Plaintext
Raw Normal View History

2024-09-12 22:10:31 +00:00
---
type Props = {
readonly nextUrl?: string;
2024-09-12 22:57:55 +00:00
readonly prevUrl?: string;
2024-09-12 22:10:31 +00:00
};
2024-09-12 22:57:55 +00:00
const { nextUrl, prevUrl } = Astro.props;
2024-09-12 22:10:31 +00:00
---
<style lang="scss">
div {
text-align: center;
}
span {
margin: 0 2em;
2024-09-12 22:10:31 +00:00
}
</style>
<div>
{
prevUrl && (
<span>
<a href={prevUrl}>&lt; Prev</a>
</span>
)
}
{
nextUrl && (
<span>
<a href={nextUrl}>Next &gt;</a>
</span>
)
}
2024-09-12 22:10:31 +00:00
</div>