Initial commit
All checks were successful
ci/woodpecker/manual/woodpecker Pipeline was successful

This commit is contained in:
Isaac Mills 2025-05-29 09:14:36 -06:00
parent 32aad3bfd3
commit ee7195b82a
Signed by: fnmain
GPG key ID: B67D7410F33A0F61
22 changed files with 2067 additions and 781 deletions

37
src/project.html Normal file
View file

@ -0,0 +1,37 @@
<script props>
module.exports = {
img: props.img || '',
svg: props.svg || '',
text: props.text || '',
href: props.href || '/',
onclick: props.onclick || ''
}
</script>
<div class="project">
<div class="project-title" style="min-width: 275px;">
<a href="{{href}}" target="_blank">
<if condition="img != ''">
<img class="figure" src="{{img}}">
</if>
<if condition="svg != ''">
<div class="figure">
<include src="{{svg}}"></include>
</div>
</if>
<if condition="text != ''">
<p style="font-size: 200px; text-align: center; margin: 0; padding: 0;">{{text}}</p>
</if>
<markdown>
<slot:title />
</markdown>
</a>
</div>
<div class="description">
<div onclick="{{onclick}}">
<markdown>
<slot:subtitle />
</markdown>
</div>
<slot:description />
</div>
</div>