adding details to template

This commit is contained in:
Manuel Ernesto Garcia 2022-09-26 15:37:08 -04:00
parent fccdbfc69a
commit 9cb339941c
4 changed files with 5 additions and 5 deletions

View file

@ -8,7 +8,7 @@ const today = new Date();
</div>
<div class="inline opacity-50">
<!-- Thanks for using this template. Please keep this line to support my work :) -->
<a href="https://manuelernestog.github.io/website" target="_blank" class="font-bold">Template</a> developed by
<a href="https://github.com/manuelernestog/astro-personal-website" target="_blank" class="font-bold">Template</a> developed by
<a href="https://manuelernestog.github.io/website" target="_blank" class="font-bold">Manuel Ernesto ⚡️</a>
</div>
</footer>

View file

@ -10,7 +10,7 @@
</label>
</div>
<div class="navbar-center">
<a class="btn btn-ghost normal-case text-xl">Manuel Ernesto ⚡️</a>
<a class="btn btn-ghost normal-case text-xl" href="/">Manuel Ernesto ⚡️</a>
</div>
<div class="navbar-end"></div>
</div>

View file

@ -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';

View file

@ -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;
---