W.I.P blog integration into the home page.
This commit is contained in:
parent
917a8b6adc
commit
b05a431319
1 changed files with 31 additions and 0 deletions
|
@ -8,6 +8,7 @@ import BaseLayout from '../layouts/BaseLayout.astro';
|
||||||
import CallToAction from '../components/CallToAction.astro';
|
import CallToAction from '../components/CallToAction.astro';
|
||||||
import Grid from '../components/Grid.astro';
|
import Grid from '../components/Grid.astro';
|
||||||
import Hero from '../components/Hero.astro';
|
import Hero from '../components/Hero.astro';
|
||||||
|
import BlogPreview from '../components/BlogPreview.astro';
|
||||||
import Icon from '../components/Icon.astro';
|
import Icon from '../components/Icon.astro';
|
||||||
import Pill from '../components/Pill.astro';
|
import Pill from '../components/Pill.astro';
|
||||||
import PortfolioPreview from '../components/PortfolioPreview.astro';
|
import PortfolioPreview from '../components/PortfolioPreview.astro';
|
||||||
|
@ -21,6 +22,10 @@ const projects = (await getCollection('projects'))
|
||||||
.sort((a, b) => b.data.publishDate.valueOf() - a.data.publishDate.valueOf())
|
.sort((a, b) => b.data.publishDate.valueOf() - a.data.publishDate.valueOf())
|
||||||
.slice(0, 4);
|
.slice(0, 4);
|
||||||
|
|
||||||
|
const blog = (await getCollection('blog'))
|
||||||
|
.sort((a, b) => b.data.publishDate.valueOf() - a.data.publishDate.valueOf())
|
||||||
|
.slice(9, 4);
|
||||||
|
|
||||||
// Full Astro Component Syntax:
|
// Full Astro Component Syntax:
|
||||||
// https://docs.astro.build/basics/astro-components/
|
// https://docs.astro.build/basics/astro-components/
|
||||||
---
|
---
|
||||||
|
@ -69,6 +74,32 @@ const projects = (await getCollection('projects'))
|
||||||
</CallToAction>
|
</CallToAction>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<section class="section with-background with-cta">
|
||||||
|
<header class="section-header stack gap-2 lg:gap-4">
|
||||||
|
<h3>Blog posts</h3>
|
||||||
|
<p>Take a look below for my most recent blog posts.</p>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<div class="gallery">
|
||||||
|
<Grid variant="offset">
|
||||||
|
{
|
||||||
|
blog.map((blog) => (
|
||||||
|
<li>
|
||||||
|
<BlogPreview blog={blog} />
|
||||||
|
</li>
|
||||||
|
))
|
||||||
|
}
|
||||||
|
</Grid>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="cta">
|
||||||
|
<CallToAction href="/blog/">
|
||||||
|
View All
|
||||||
|
<Icon icon="arrow-right" size="1.2em" />
|
||||||
|
</CallToAction>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<ContactCTA />
|
<ContactCTA />
|
||||||
|
|
Loading…
Reference in a new issue