Event Cards Update und alle links sind Orange, einheitlich auf der ganzen Seite
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
---
|
||||
// src/components/HoverCard.astro
|
||||
import "../../styles/components/HoverCard.css"
|
||||
const { title, description, image = "", date} = Astro.props;
|
||||
import "../../styles/components/HoverCard.css";
|
||||
const { title, description, image = "", date } = Astro.props;
|
||||
---
|
||||
|
||||
<article class="hover-card">
|
||||
@ -9,13 +9,10 @@ const { title, description, image = "", date} = Astro.props;
|
||||
<img class="card-image" src={image} alt={title} />
|
||||
</div>
|
||||
|
||||
<h3 class="card-title">{title}</h3>
|
||||
<h3 class="card-title" set:html={title} />
|
||||
<h4 class="card_date">{date}</h4>
|
||||
|
||||
<div class="hover-text">
|
||||
<div>
|
||||
<p>{description}</p>
|
||||
</div>
|
||||
<p set:html={description} />
|
||||
</div>
|
||||
</article>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user