All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
28 lines
No EOL
715 B
HTML
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> |