An experimental IndieWeb site built in Go.

disable tailwind styles, add build script to package

Also add a gitkeep to maintain the `static` directory

Changed files
+3 -2
pages
static
+1 -1
package.json
··· 4 "description": "", 5 "main": "index.js", 6 "scripts": { 7 - "test": "echo \"Error: no test specified\" && exit 1" 8 }, 9 "keywords": [], 10 "author": "",
··· 4 "description": "", 5 "main": "index.js", 6 "scripts": { 7 + "build": "tailwindcss -o static/styles.css --minify" 8 }, 9 "keywords": [], 10 "author": "",
+1 -1
pages/home.templ
··· 12 <link rel="token_endpoint" href="/token"> 13 <link rel="micropub" href="/micropub"> 14 15 - <link rel="stylesheet" href="/static/styles.css" /> 16 </head> 17 <body> 18 <h1>Micropub and IndieAuth Server Demo</h1>
··· 12 <link rel="token_endpoint" href="/token"> 13 <link rel="micropub" href="/micropub"> 14 15 + // <link rel="stylesheet" href="/static/styles.css" /> 16 </head> 17 <body> 18 <h1>Micropub and IndieAuth Server Demo</h1>
+1
static/.gitkeep
···
··· 1 +