Fix NextPrev links
This commit is contained in:
@@ -11,7 +11,7 @@ const { prev, next } = Astro.props;
|
||||
<div class="col-5 d-flex justify-content-center">
|
||||
{
|
||||
prev && (
|
||||
<a class="btn btn-outline-dark" href={prev}>
|
||||
<a class="btn btn-outline-dark" href={'/' + prev}>
|
||||
< Prev
|
||||
</a>
|
||||
)
|
||||
@@ -21,7 +21,7 @@ const { prev, next } = Astro.props;
|
||||
<div class="col-5 d-flex justify-content-center">
|
||||
{
|
||||
next && (
|
||||
<a class="btn btn-outline-dark" href={next}>
|
||||
<a class="btn btn-outline-dark" href={'/' + next}>
|
||||
Next >
|
||||
</a>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user