From bc89d1b936d125a2572d4dd351f178c18e69c156 Mon Sep 17 00:00:00 2001 From: EFEELE Date: Mon, 14 Apr 2025 11:46:22 -0600 Subject: [PATCH] FIX all posts redirect page --- .../blog/{all-posts.astro => posts/index.astro} | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) rename src/pages/blog/{all-posts.astro => posts/index.astro} (81%) diff --git a/src/pages/blog/all-posts.astro b/src/pages/blog/posts/index.astro similarity index 81% rename from src/pages/blog/all-posts.astro rename to src/pages/blog/posts/index.astro index b316f7d..721edcd 100644 --- a/src/pages/blog/all-posts.astro +++ b/src/pages/blog/posts/index.astro @@ -1,8 +1,8 @@ --- -import Layout from "../../layouts/Layout.astro"; -import Hero from "../../components/blog/Hero.astro"; -import Tags from "../../components/blog/Tags.astro"; -import ListPosts from "../../components/blog/ListPosts.astro"; +import Layout from "../../../layouts/Layout.astro"; +import Hero from "../../../components/blog/Hero.astro"; +import Tags from "../../../components/blog/Tags.astro"; +import ListPosts from "../../../components/blog/ListPosts.astro"; const pageTitle = "Web Development and Technology Blog | Fernando López | EFEELE"; const description = "Welcome to my blog, where I share my passion for frontend development, web design, and the latest technology trends."; const ogimage = { @@ -11,10 +11,10 @@ const ogimage = { }; const currentUrl = `https://efeele.dev${Astro.url.pathname}`; const tweetText = encodeURIComponent(`"${pageTitle}"`); -import Heading from "../../components/ui/Heading.astro"; -import Share from "../../components/ui/Share.astro"; +import Heading from "../../../components/ui/Heading.astro"; +import Share from "../../../components/ui/Share.astro"; -import Languages from "../../components/blog/Languages.astro"; +import Languages from "../../../components/blog/Languages.astro"; ---