21 lines
711 B
Plaintext
21 lines
711 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>
|
|
<aside class="notice" role="alert" aria-labelledby="service-status">
|
|
<h3 id="service-status" class="sr-only">Service Status Notice</h3>
|
|
<p><strong>Important:</strong> This service is in a pre-alpha state. Your account and data can disappear at any time.</p>
|
|
</aside>
|
|
</section>
|
|
}
|
|
}
|
|
|
|
templ ComingSoon(title string, data CommonData) {
|
|
@base(title, data) {
|
|
<h2>Coming Soon</h2>
|
|
}
|
|
}
|