Skip to content

Commit d168d15

Browse files
Update index.astro
1 parent a55abd2 commit d168d15

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pages/index.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const socialCount = SOCIALS.filter(social => social.active).length;
4242

4343
<p>
4444
Hi!/¡Hola!/Hoi! - I'm willtheorangeguy, and this is my corner of the internet!
45-
It's a dev blog, with random personal thoughts, tech stuff, and travel musings.
45+
It's a dev blog, with random personal thoughts, tech stuff, and lots of reviews.
4646
I'm currently studying Computer Science at the University of Calgary, and build
4747
small, fun, and powerful programs in Python and reusable web templates in my <i>limited</i> spare time.
4848
</p>
@@ -85,7 +85,7 @@ const socialCount = SOCIALS.filter(social => social.active).length;
8585
<ul>
8686
{
8787
sortedPosts
88-
.filter(({ data }) => !data.featured)
88+
.filter(({ data }) => !data.featured && !data.tags.some(tag => /-review$/.test(tag)))
8989
.map(
9090
({ data }, index) =>
9191
index < 5 && (

0 commit comments

Comments
 (0)