25 lines
613 B
Plaintext
25 lines
613 B
Plaintext
package views
|
|
|
|
templ Home(title string, data CommonData) {
|
|
@base(title, data) {
|
|
<section aria-labelledby="welcome-heading">
|
|
<h2 id="welcome-heading">Welcome</h2>
|
|
<p>Welcome to webweav.ing, a collection of webmastery tools created by the <a href="https://32bit.cafe" rel="noopener">32-Bit Cafe</a>.</p>
|
|
</section>
|
|
}
|
|
}
|
|
|
|
templ ComingSoon(title string, data CommonData) {
|
|
@base(title, data) {
|
|
<h2>Coming Soon</h2>
|
|
}
|
|
}
|
|
|
|
templ AboutPage(title string, data CommonData) {
|
|
@base(title, data) {
|
|
<section aria-labelledby="about-heading">
|
|
<h2 id="about-heading">About Webweav.ing</h2>
|
|
</section>
|
|
}
|
|
}
|