From 9cb339941cc37362cb8ce92c5797492553c2acf4 Mon Sep 17 00:00:00 2001 From: Manuel Ernesto Garcia Date: Mon, 26 Sep 2022 15:37:08 -0400 Subject: [PATCH] adding details to template --- src/components/Footer.astro | 2 +- src/components/Header.astro | 2 +- src/config.ts | 4 ++-- src/pages/blog/[page].astro | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 910f4f7..9a04773 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -8,7 +8,7 @@ const today = new Date();
- Template developed by + Template developed by Manuel Ernesto ⚡️
diff --git a/src/components/Header.astro b/src/components/Header.astro index 1b23d7f..e2831d6 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -10,7 +10,7 @@ diff --git a/src/config.ts b/src/config.ts index d259494..153e9d6 100644 --- a/src/config.ts +++ b/src/config.ts @@ -1,5 +1,5 @@ // Place any global data in this file. // You can import this data from anywhere in your site by using the `import` keyword. -export const SITE_TITLE = 'Manuel Ernesto Garcia'; -export const SITE_DESCRIPTION = 'Software Engineer from Cuba and Entrepreneur. Working in create software that solve problems in a simple way and sharing what I learn along the way.'; +export const SITE_TITLE = 'Astro Personal Website Template'; +export const SITE_DESCRIPTION = 'Astro personal website template'; diff --git a/src/pages/blog/[page].astro b/src/pages/blog/[page].astro index a0b5d70..03d19b2 100644 --- a/src/pages/blog/[page].astro +++ b/src/pages/blog/[page].astro @@ -7,7 +7,7 @@ export async function getStaticPaths({ paginate }) { (a, b) => new Date(b.frontmatter.pubDate).valueOf() - new Date(a.frontmatter.pubDate).valueOf() ); - return paginate(posts, { pageSize: 1 }); + return paginate(posts, { pageSize: 10 }); } const { page } = Astro.props; ---