9 lines
154 B
Plaintext
9 lines
154 B
Plaintext
package templates
|
|
|
|
templ Header(title, subtitle string) {
|
|
<div class="header">
|
|
<h1>{ title }</h1>
|
|
<div class="subtitle">{ subtitle }</div>
|
|
</div>
|
|
}
|