1package components
2
3templ Button(text string) {
4 <button class="btn btn-xs">{ text }</button>
5 <button class="btn btn-sm">{ text }</button>
6 <button class="btn">{ text }</button>
7 <button class="btn btn-lg">{ text }</button>
8 <button class="btn btn-xl">{ text }</button>
9}
10
11templ Main() {
12 <!DOCTYPE html>
13 <html>
14 <head>
15 <title>a title</title>
16 <link rel="stylesheet" href="/style.css"/>
17 </head>
18 <body>
19 @Button("meep")
20 </body>
21 </html>
22}