mirror of
https://codeberg.org/andyscott-pages/andyscott-dot-me.git
synced 2024-11-08 13:20:49 -05:00
adding details to template
This commit is contained in:
parent
fccdbfc69a
commit
9cb339941c
4 changed files with 5 additions and 5 deletions
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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';
|
||||
|
|
|
@ -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;
|
||||
---
|
||||
|
|
Loading…
Reference in a new issue