jb-ssg-site/components/resources/com/jessebrault/site/composition/CompositionListingTemplate.wvc
2024-06-06 21:25:16 +02:00

20 lines
762 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
package com.jessebrault.site.composition
---
<div class="composition-listing">
<div class="info-row-1">
<h4 class="title"><a href={compositionUrl}>$composition.title</a></h4>
<WhenNotNull item={composition.subTitle} render={<h5 class="sub-title">$it</h5>} />
<WhenNotNull item={composition.version} render={<span class="version"> $it</span>} />
</div>
<div class="info-row-2">
<span class="instrumentation">$composition.instrumentation</span>
</div>
<WhenNotNull item={composition.shortInfo} render={
<div class="info-row-3"><span class="short-info">$composition.shortInfo</span></div>
} />
<div class="date-column">
<span class="date">$compositionDate</span>
</div>
</div>