thesandwi.ch/src/components/project/index.html
Isaac Mills ec1d4e6246
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Add Tyson to people, and adjust Richard's quote
2025-07-13 11:13:30 -06:00

28 lines
No EOL
715 B
HTML

<script props>
module.exports = {
onclick: props.onclick || '',
titlestyle: props.titlestyle || '',
headerstyle: props.headerstyle || '',
}
</script>
<div class="project">
<div class="project-title" style="{{titlestyle}}">
<if condition="$slots.img?.filled">
<div class="figure">
<slot:img></slot:img>
</div>
</if>
<slot:title></slot:title>
<if condition="$slots.links?.filled">
<div class="links">
<slot:links></slot:links>
</div>
</if>
</div>
<div class="description">
<div onclick="{{onclick}}" style="{{headerstyle}}">
<slot:subtitle></slot:subtitle>
</div>
<slot:description></slot:description>
</div>
</div>