repos / starfx

supercharged async flow control library.
git clone https://github.com/neurosnap/starfx.git

commit
7b09e81
parent
a3fa13b
author
Eric Bower
date
2024-03-05 14:51:15 +0000 UTC
docs: metadata
4 files changed,  +8, -3
M docs/tmpl/base.layout.tmpl
+1, -1
1@@ -2,7 +2,7 @@
2 <!doctype html>
3 <html lang="en">
4   <head>
5-    <title>{{template "title" .}}</title>
6+    <title>{{template "title" .}} ยท starfx</title>
7     <meta charset='utf-8'>
8     <meta name="viewport" content="width=device-width, initial-scale=1" />
9     <meta name="keywords" content="ngrok, sish, ssh, tunnel, self-hosted" />
M docs/tmpl/home.page.tmpl
+1, -0
1@@ -3,6 +3,7 @@
2 {{define "title"}}{{.Data.Title}}{{end}}
3 
4 {{define "meta"}}
5+<meta name="description" content="{{.Data.Description}}">
6 {{end}}
7 
8 {{define "attrs"}}class="container"{{end}}
M docs/tmpl/post.page.tmpl
+3, -1
 1@@ -2,7 +2,9 @@
 2 
 3 {{define "title"}}{{.Data.Title}}{{end}}
 4 
 5-{{define "meta"}}{{end}}
 6+{{define "meta"}}
 7+<meta name="description" content="{{.Data.Description}}">
 8+{{end}}
 9 
10 {{define "attrs"}}class="container"{{end}}
11 
M docs/tmpl/sitemap.page.tmpl
+3, -1
 1@@ -2,7 +2,9 @@
 2 
 3 {{define "title"}}{{.Data.Title}}{{end}}
 4 
 5-{{define "meta"}}{{end}}
 6+{{define "meta"}}
 7+<meta name="description" content="{{.Data.Description}}">
 8+{{end}}
 9 
10 {{define "attrs"}}class="container-sm"{{end}}
11