working on css design system
parent
3885b5135b
commit
fb43eddefc
@ -1,13 +0,0 @@
|
|||||||
---
|
|
||||||
const { id, title, tags, description } = Astro.props
|
|
||||||
---
|
|
||||||
|
|
||||||
<div class="article">
|
|
||||||
<div class="title">
|
|
||||||
<a href={`/guide/${id}`}>{title}</a>
|
|
||||||
</div>
|
|
||||||
<div class="description">{description}</div>
|
|
||||||
<div class="tags">
|
|
||||||
{tags.map(tag => <a href={`/guide/tags/${tag}`}>#{tag}</a>)}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
@ -1,25 +0,0 @@
|
|||||||
---
|
|
||||||
const { id, title, tags, description, image, date, author } = Astro.props
|
|
||||||
---
|
|
||||||
|
|
||||||
<div class="news-item">
|
|
||||||
<a href={`/notizie/${id}`} class="title">
|
|
||||||
{title}
|
|
||||||
</a>
|
|
||||||
<div class="content">
|
|
||||||
<div class="date">
|
|
||||||
{
|
|
||||||
new Date(date).toLocaleDateString('it-IT', {
|
|
||||||
year: 'numeric',
|
|
||||||
month: 'long',
|
|
||||||
day: 'numeric',
|
|
||||||
})
|
|
||||||
}
|
|
||||||
</div>
|
|
||||||
<div class="description">{description}</div>
|
|
||||||
<div class="tags">
|
|
||||||
{tags.map(tag => <a href={`/notizie/tags/${tag}`}>#{tag}</a>)}
|
|
||||||
</div>
|
|
||||||
{image && <img src={image} alt={title} />}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
@ -1,9 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: Il Nuovo Sito del PHC
|
title: Il Nuovo Sito del PHC
|
||||||
description: Benvenuti nel nuovo sito web del PHC, realizzato con la tecnologia web Astro! In questo articolo, ne vedremo le feature principali e cosa serba il futuro.
|
description: Benvenuti nel nuovo sito web del PHC, realizzato con la tecnologia web Astro! In questo articolo, ne vedremo le feature principali e cosa serba il futuro.
|
||||||
author: Francesco Minnocci
|
|
||||||
publishDate: 2024-07-28
|
publishDate: 2024-07-28
|
||||||
tags: [astro, web, appunti]
|
|
||||||
---
|
---
|
||||||
|
|
||||||
# Il Nuovo Sito del PHC
|
# Il Nuovo Sito del PHC
|
Loading…
Reference in New Issue