--- /dev/null
+<!DOCTYPE html>
+<html>
+<header>
+ <title>Today Engine Examples</title>
+ <link rel="stylesheet" href="/style.css">
+</header>
+
+<body>
+ <main>
+ <stdp-contact-form :action="/contact" :method="POST"></stdp-contact-form>
+ </main>
+</body>
+
+</html>
\ No newline at end of file
--- /dev/null
+package main
+
+import (
+ "net/http"
+ "syscall"
+
+ "git.earlybird.gay/today-engine/page"
+ stdpart "git.earlybird.gay/today-engine/standard/part"
+
+ tapp "git.earlybird.gay/today-app/app"
+)
+
+var Page = page.New("index", "index.html",
+ page.Includes(
+ stdpart.ContactForm([]string{"Feedback"}),
+ ),
+)
+
+func main() {
+ app := tapp.New()
+ tapp.GetEnv().Apply(app)
+ app.ShutdownOnSignal(syscall.SIGINT, syscall.SIGTERM)
+
+ app.Handle("GET /{$}", Page)
+ app.Handle("GET /", http.FileServer(http.Dir("public")))
+ app.Handle("POST /contact", stdpart.HandleContactForm(nil, stdpart.PrintContact))
+
+ app.ListenAndServe()
+}
--- /dev/null
+/* The Great Reset */
+* {
+ padding: 0;
+ margin: 0;
+}
+
+/* Containers */
+
+html {
+ font-family: sans-serif;
+}
+
+main, section, nav {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+}
+
+main {
+ margin: 2rem 25%;
+}
+
+span {
+ display: inline;
+}
+
+span + span {
+ margin-left: .5rem;
+}
+
+/* Forms */
+
+form {
+ display: grid;
+ grid-template-columns: 1fr 3fr;
+ gap: .5rem;
+}
+
+form > input[type="submit"] {
+ grid-column: span 2;
+}
+
+/* Typography */
+
+:not(pre) > code {
+ font-size: 1rem;
+}
+
+li {
+ margin-left: 20px;
+}
\ No newline at end of file
go 1.22.4
require golang.org/x/net v0.27.0
+
+require git.earlybird.gay/today-app v0.0.0-20240813010007-675f08ae35b1
+git.earlybird.gay/today-app v0.0.0-20240813010007-675f08ae35b1 h1:Fbz2uRIWK6CR+jcNN0KQrna4u/kYZccn2obcla7dPfQ=
+git.earlybird.gay/today-app v0.0.0-20240813010007-675f08ae35b1/go.mod h1:AxsoC2ERffYriW60C1vdV34ew6JPKxllG9mHOTs128I=
golang.org/x/net v0.27.0 h1:5K3Njcw06/l2y9vpGCSdcxWOYHOUk3dVNGDXN+FvAys=
golang.org/x/net v0.27.0/go.mod h1:dDi0PyhWNoiUOrAS8uXv/vnScO4wnHQO4mj9fn/RytE=