From: early Date: Sun, 5 Jan 2025 03:46:34 +0000 (-0700) Subject: start work on landing page X-Git-Url: https://git.earlybird.gay/?a=commitdiff_plain;h=5ddc0e237cd8e737571a4d2103cee795862930e3;p=today start work on landing page --- diff --git a/landing-page/ca/bloc/correu.html b/landing-page/ca/bloc/correu.html deleted file mode 100644 index 9b73126..0000000 --- a/landing-page/ca/bloc/correu.html +++ /dev/null @@ -1,15 +0,0 @@ - - - Today Web Framework - - -
-

Today

-
-
-

Un correu del bloc

-
- - \ No newline at end of file diff --git a/landing-page/ca/bloc/index.html b/landing-page/ca/bloc/index.html deleted file mode 100644 index 8752380..0000000 --- a/landing-page/ca/bloc/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - Today Web Framework - - -
-

Today

-
-
-

Bloc de desenvolupador

-
- - \ No newline at end of file diff --git a/landing-page/ca/index.html b/landing-page/ca/index.html index 166cae4..43fabcc 100644 --- a/landing-page/ca/index.html +++ b/landing-page/ca/index.html @@ -1,15 +1,143 @@ + Today Web Framework + +
-

Today

+

Today

+
-

Aquest és la pagina principal per Today, un marc del lloc web.

+
+

Fas un lloc web avui

+

«Today» posa fàcil a crear, millorar, i servir el vostre + lloc web. Crea les pàgines web amb HTML i CSS, i afeigeix + contingut dinàmic amb Go. +

+
+
+
+

Capacitats

+

El estàndard web és capaç, documentat, i recolzat. L'objectiu + primer de «Today» és construir sobre aquell estàndard amb capacitats + que estan fàcil per utilitzar, i no reinventen el web o el teu + lloc web. +

+

Construeix iterativament

+

You can start a Today project with your pre-existing static + website and build on it as you go. Today "pages" replace the + static files they use, and you can load data with Go and display + that data with a template HTML file. +

+

Server-side components

+

If you're reusing behavior often, you can make a Today + "template part". These parts have their own behavior and + templates, and are used like custom HTML elements. They can + be safely reused and even shared across projects! +

+

Localization

+

Today is built to support multi-language webpages. Both pages and + parts can be made with templates in many languages, and when + being served, the page will be composed with the closest-matched + languages for each. +

+
+
+
+

Why?

+

There's only one real reason for Today to exist; so that you can + make a website today. That's the namesake, that's what it's + always going to be about. Today is designed to be a web + framework for beginner-to-intermediate devs building + fundamentals, and to give easy-ish answers to a lot of the + hard-ish questions about creating websites. A monumental amount + of work has been put into making the independent web + more capable through great frameworks like React; I + want to focus on making it more accessible. The hope + is that helping devs build fundamentals can onboard to more + complex tech with fewer headaches. +

+
+
+
+

Project Status

+

Today is a work in progress and is fairly early in development. + It will be ready when it is ready; I am navigating an + international move and have a day job, so working on this is a + "when it happens" event. Having said that, there is a clear + road to a finished project. Here's what's upcoming/planned for + me to be comfortable with a v0 release: +

+

Done

+
    +
  • Dynamic pages with templates and Go data loading.
  • +
  • Custom elements, rendered server-side.
  • +
  • Good localization support.
  • +
+

Work in Progress

+
    +
  • Custom template parser. Right now, Today is bending Go's + standard HTML parser into a shape that sort of works. I'm + working on a custom parser that should make maintenance and + feature development much smoother! +
  • +
  • SQLite support. Most non-trivial websites need a database. + Most websites don't need more than SQLite. I want a quick + and easy option for people to use, particularly one that is + easy to transition away from when they need to. +
  • +
  • New user documentation.
  • +
+

Planned

+
    +
  • Concurrent processing of component OnLoad functions. A + common criticism of Go templates is that they are slow for + nontrivial uses, because they are processed sequentially. I + think I can fix that, at least with the OnLoad of + template parts. +
  • +
  • Maintainer documentation. I need to document a process on + submitting external contributions, and write a lot on how + internals work. +
  • +
  • Transation of documentation to Catalan.
  • +
  • Live projects. A web framework is nothing if you don't make + websites with it! +
  • +
+

Once the "planned" list is empty, I'll release a v0 that should + be safe for testing use. Until then, it's a pet project in R&D. +

+
+ + \ No newline at end of file diff --git a/landing-page/en/blog/index.html b/landing-page/en/blog/index.html deleted file mode 100644 index 566b558..0000000 --- a/landing-page/en/blog/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - Today Web Framework - - -
-

Today

-
-
-

Today Devblog

-
- - \ No newline at end of file diff --git a/landing-page/en/blog/post.go b/landing-page/en/blog/post.go deleted file mode 100644 index 999e2de..0000000 --- a/landing-page/en/blog/post.go +++ /dev/null @@ -1,5 +0,0 @@ -package blog - -import "git.earlybird.gay/today/web/page" - -var Post = page.New("Post", "post.html") diff --git a/landing-page/en/blog/post.html b/landing-page/en/blog/post.html deleted file mode 100644 index e04f15d..0000000 --- a/landing-page/en/blog/post.html +++ /dev/null @@ -1,15 +0,0 @@ - - - Today Web Framework - - -
-

Today

-
-
-

A blog post

-
- - \ No newline at end of file diff --git a/landing-page/en/index.html b/landing-page/en/index.html index 49094eb..532ad7e 100644 --- a/landing-page/en/index.html +++ b/landing-page/en/index.html @@ -1,15 +1,143 @@ + Today Web Framework + +
-

Today

+

Today

+
-

This is a landing page for the Today web framework.

+
+

Make a website today

+

Today makes creating, improving, and hosting your website + simple. Build webpages with HTML and CSS, and add dynamic + content where you want it with Go. +

+
+
+
+

Features

+

The web standard is capable, well-documented, and widely + supported. The core design goal of Today is to build on this + standard with helpful, easy-to-use features that don't reinvent + the web or your website. +

+

Build iteratively

+

You can start a Today project with your pre-existing static + website and build on it as you go. Today "pages" replace the + static files they use, and you can load data with Go and display + that data with a template HTML file. +

+

Server-side components

+

If you're reusing behavior often, you can make a Today + "template part". These parts have their own behavior and + templates, and are used like custom HTML elements. They can + be safely reused and even shared across projects! +

+

Localization

+

Today is built to support multi-language webpages. Both pages and + parts can be made with templates in many languages, and when + being served, the page will be composed with the closest-matched + languages for each. +

+
+
+
+

Why?

+

There's only one real reason for Today to exist; so that you can + make a website today. That's the namesake, that's what it's + always going to be about. Today is designed to be a web + framework for beginner-to-intermediate devs building + fundamentals, and to give easy-ish answers to a lot of the + hard-ish questions about creating websites. A monumental amount + of work has been put into making the independent web + more capable through great frameworks like React; I + want to focus on making it more accessible. The hope + is that helping devs build fundamentals can onboard to more + complex tech with fewer headaches. +

+
+
+
+

Project Status

+

Today is a work in progress and is fairly early in development. + It will be ready when it is ready; I am navigating an + international move and have a day job, so working on this is a + "when it happens" event. Having said that, there is a clear + road to a finished project. Here's what's upcoming/planned for + me to be comfortable with a v0 release: +

+

Done

+
    +
  • Dynamic pages with templates and Go data loading.
  • +
  • Custom elements, rendered server-side.
  • +
  • Good localization support.
  • +
+

Work in Progress

+
    +
  • Custom template parser. Right now, Today is bending Go's + standard HTML parser into a shape that sort of works. I'm + working on a custom parser that should make maintenance and + feature development much smoother! +
  • +
  • SQLite support. Most non-trivial websites need a database. + Most websites don't need more than SQLite. I want a quick + and easy option for people to use, particularly one that is + easy to transition away from when they need to. +
  • +
  • New user documentation.
  • +
+

Planned

+
    +
  • Concurrent processing of component OnLoad functions. A + common criticism of Go templates is that they are slow for + nontrivial uses, because they are processed sequentially. I + think I can fix that, at least with the OnLoad of + template parts. +
  • +
  • Maintainer documentation. I need to document a process on + submitting external contributions, and write a lot on how + internals work. +
  • +
  • Transation of documentation to Catalan.
  • +
  • Live projects. A web framework is nothing if you don't make + websites with it! +
  • +
+

Once the "planned" list is empty, I'll release a v0 that should + be safe for testing use. Until then, it's a pet project in R&D. +

+
+ + \ No newline at end of file diff --git a/landing-page/images/favicon.png b/landing-page/images/favicon.png new file mode 100644 index 0000000..228da2d Binary files /dev/null and b/landing-page/images/favicon.png differ diff --git a/landing-page/images/flags/catalunya.png b/landing-page/images/flags/catalunya.png new file mode 100644 index 0000000..c8429dc Binary files /dev/null and b/landing-page/images/flags/catalunya.png differ diff --git a/landing-page/images/flags/usa.png b/landing-page/images/flags/usa.png new file mode 100644 index 0000000..cba8fcb Binary files /dev/null and b/landing-page/images/flags/usa.png differ diff --git a/landing-page/main.go b/landing-page/main.go index 32a6488..6f26316 100644 --- a/landing-page/main.go +++ b/landing-page/main.go @@ -2,9 +2,9 @@ package main import ( "fmt" + "net/http" tapp "git.earlybird.gay/today/app" - "git.earlybird.gay/today/landing-page/en/blog" "git.earlybird.gay/today/localization" "golang.org/x/text/language" ) @@ -14,9 +14,9 @@ func main() { tapp.GetEnv().Apply(app) app.PreHandler(localization.SetLocaleFromPath("lang", language.English)) + app.Handle("/{$}", http.RedirectHandler("/en/", http.StatusPermanentRedirect)) app.Static("/", ".") - app.Handle("GET /{lang}/blog/{post_id}", blog.Post) err := app.ListenAndServe() if err != nil { fmt.Println(err) diff --git a/landing-page/style.css b/landing-page/style.css new file mode 100644 index 0000000..1106c7d --- /dev/null +++ b/landing-page/style.css @@ -0,0 +1,166 @@ +@import url("/style/nav.css"); +@import url("/style/code.css"); + +/* The Great Reset */ +* { + padding: 0; + margin: 0; + box-sizing: border-box; +} + +/* Variables */ +:root { + --padding-sm: 12px 1rem; + --padding-md: 24px 2rem; + --padding-lg: 48px 4rem; + + --gap-sm: .5rem; + --gap-md: 1rem; + --gap-lg: 2rem; + + --border-radius: 16px; + --border-width: 2px; + --border: var(--border-width) solid var(--secondary); + --border-half: calc(var(--border-width)/2) solid var(--secondary); + + /* ANSI terminal color definitions */ + --black: #2E3436; + --black-bright: #383F41; + --red: #EF2929; + --green: #8AE234; + --yellow: #FCE94F; + --blue: #729FCF; + --magenta: #77507B; + --magenta-bright: #AD7FA8; + --cyan: #34E2E2; + --white: #D3D7CF; + --white-bright: #EEEEEC; + + /* Web-semantic colors */ + --background: var(--black); + --primary: var(--black-bright); + --text: var(--white-bright); + --secondary: var(--magenta); + --accent: var(--magenta-bright); + --interactive: var(--blue); + --interactive-active: var(--cyan); + --text-inverse: var(--black); + + --font-family: sans-serif; + --font-family-code: monospace; + + --font-sm: .8rem; +} + +html { + background-color: var(--background); + + color: var(--text); + font-family: var(--font-family); + font-size: 1.1rem; + line-height: 1.5; +} + +body { + display: flex; + flex-direction: column; + min-height: 100vh; +} + +header { + background-color: var(--primary); + + display: flex; + flex-direction: row; + gap: var(--gap-sm); + align-items: center; + + padding: 0 var(--gap-md); +} + +footer { + background-color: var(--primary); + display: flex; + flex-direction: column; + gap: var(--gap-sm); + + padding: var(--padding-sm); +} + +p.logo-text{ + font-size: 1.5rem; + font-weight: bolder; + width: fit-content; + height: min-content; + justify-self: center; +} + +main { + display: flex; + flex-direction: column; + gap: var(--gap-md); + + margin: 2rem 20%; + padding: var(--padding-md); + + flex-grow: 1; +} + +section { + display: flex; + flex-direction: column; + gap: var(--gap-md); +} + +/* Forms */ + +form { + display: grid; + grid-template-columns: 1fr 3fr; + gap: .5rem; +} + +form > input[type="submit"] { + grid-column: span 2; +} + +/* Typography */ + + +li { + margin-left: 20px; +} + +hr { + color: var(--secondary); + height: var(--border-width); +} + +blockquote { + padding-left: 1rem; + border-left: var(--border); +} + +.hidden { + display: none; +} + +@media screen and (max-width: 1000px) { + html { + font-size: 1rem; + } + header { + display: flex; + flex-direction: column; + gap: var(--gap-sm); + align-items: start; + padding: var(--padding-sm); + } + main { + margin: 0; + padding: var(--padding-sm); + } + html { + padding: 1rem; + } +} diff --git a/landing-page/style/code.css b/landing-page/style/code.css new file mode 100644 index 0000000..b59b2b3 --- /dev/null +++ b/landing-page/style/code.css @@ -0,0 +1,27 @@ +/* code divs are used to style adjacent
 blocks */
+div.code {
+    background-color: var(--primary);
+    border: var(--border);
+    border-radius: var(--border-radius);
+    overflow: hidden;
+
+    display: flex;
+    flex-direction: row;
+    flex-wrap: wrap;
+}
+
+div.code pre:nth-child(n+3) {
+    border-top: var(--border);
+}
+
+div.code pre:nth-child(odd) {
+    border-right: var(--border);
+}
+
+pre:has(code) {
+    padding: var(--padding-sm);
+    /* overflow-x: auto; */
+    min-width: 40%;
+    max-width: 60%;
+    text-wrap: wrap;
+}
diff --git a/landing-page/style/hljs.css b/landing-page/style/hljs.css
new file mode 100644
index 0000000..a3e3507
--- /dev/null
+++ b/landing-page/style/hljs.css
@@ -0,0 +1,102 @@
+/*
+This is a copy of .highlightjs's rainbow theme, so I can modify it a bit with
+colors I like. It's under the BSD 3-clause License.
+
+Copyright (c) 2006, Ivan Sagalaev
+*/
+
+pre:has(code) {
+    padding: 0;
+}
+
+pre code.hljs {
+    display: block;
+    padding: 1em;
+    font-size: var(--font-sm);
+}
+
+code.hljs {
+    padding: var(--padding-sm);
+}
+
+/*
+  
+  Style with support for rainbow parens
+  
+  */
+.hljs {
+    background: var(--primary);
+    color: var(--text);
+}
+
+.hljs-comment,
+.hljs-quote {
+    color: #969896;
+    font-style: italic
+}
+
+.hljs-keyword,
+.hljs-selector-tag,
+.hljs-literal,
+.hljs-addition {
+    color: var(--magenta-bright);
+}
+
+.hljs-number,
+.hljs-selector-attr,
+.hljs-selector-pseudo {
+    color: #f99157
+}
+
+.hljs-string,
+.hljs-doctag,
+.hljs-regexp {
+    color: var(--cyan);
+}
+
+.hljs-title,
+.hljs-name,
+.hljs-type,
+.hljs-section,
+.hljs-built_in {
+    color: var(--green);
+}
+
+.hljs-variable,
+.hljs-template-variable,
+.hljs-selector-id,
+.hljs-title.class_,
+.hljs-class .hljs-title {
+    color: var(--yellow);
+}
+
+.hljs-section,
+.hljs-name,
+.hljs-strong {
+    font-weight: bold
+}
+
+.hljs-symbol,
+.hljs-bullet,
+.hljs-subst,
+.hljs-meta,
+.hljs-link {
+    color: #f99157
+}
+
+.hljs-deletion {
+    color: #dc322f
+}
+
+.hljs-formula {
+    background: #eee8d5
+}
+
+.hljs-attr,
+.hljs-attribute {
+    color: var(--blue);
+}
+
+.hljs-emphasis {
+    font-style: italic
+}
\ No newline at end of file
diff --git a/landing-page/style/nav.css b/landing-page/style/nav.css
new file mode 100644
index 0000000..4145637
--- /dev/null
+++ b/landing-page/style/nav.css
@@ -0,0 +1,57 @@
+/* Nav styling
+These styles assume navs are lists; nested lists will
+produce dropdown menus.
+*/
+nav {
+    display: flex;
+    flex-direction: row;
+}
+nav.vertical {
+    flex-direction: column;
+}
+nav a {
+    color: var(--text);
+    text-decoration: none;
+    padding: var(--padding-sm);
+    display: block;
+    text-align: center;
+
+    transition: all .1s;
+}
+nav img {
+    height: 1.5rem;
+}
+nav a:hover {
+    background-color: var(--secondary);
+}
+nav a.active {
+    background-color: var(--secondary);
+}
+nav div.dropdown {
+    position: relative;
+}
+nav div.dropdown > nav {
+    visibility: hidden;
+    position: absolute;
+    top: 100%;
+
+    flex-direction: column;
+
+    min-width: 100%;
+}
+nav.vertical div.dropdown > nav {
+    top: 0%;
+    left: 100%;
+}
+nav div.dropdown:hover > nav, nav div.dropdown:focus-within > nav {
+    visibility: visible;
+    background-color: var(--primary);
+}
+
+@media screen and (max-width: 1000px) {
+    nav {
+        flex-direction: column;
+        width: 100%;
+    }
+}
+