11 lines
199 B
Plaintext
11 lines
199 B
Plaintext
|
package bulma
|
||
|
|
||
|
templ Hero(title, subtitle string) {
|
||
|
<section class="hero">
|
||
|
<div class="hero-body">
|
||
|
<p class="title">{ title }</p>
|
||
|
<p class="subtitle">{ subtitle }</p>
|
||
|
</div>
|
||
|
</section>
|
||
|
}
|