├── .gitignore ├── LICENCE ├── Makefile ├── README.md ├── components ├── about.templ ├── counter.templ ├── header.templ ├── home.templ ├── icons.templ ├── layout.templ └── todos.templ ├── configs ├── configs.go ├── dotenv ├── input.css └── tailwind.config.js ├── db ├── db.go └── db_test.go ├── go.mod ├── handlers ├── handlers.go └── handlers_test.go ├── main.go ├── middleware ├── middleware.go └── middleware_test.go ├── models ├── global.go ├── global_test.go ├── session.go ├── session_test.go ├── todo.go └── todo_test.go └── static ├── assets └── icons │ └── checkbox.svg ├── css └── styles.css └── js └── htmx.min.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/LICENCE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/README.md -------------------------------------------------------------------------------- /components/about.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/components/about.templ -------------------------------------------------------------------------------- /components/counter.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/components/counter.templ -------------------------------------------------------------------------------- /components/header.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/components/header.templ -------------------------------------------------------------------------------- /components/home.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/components/home.templ -------------------------------------------------------------------------------- /components/icons.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/components/icons.templ -------------------------------------------------------------------------------- /components/layout.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/components/layout.templ -------------------------------------------------------------------------------- /components/todos.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/components/todos.templ -------------------------------------------------------------------------------- /configs/configs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/configs/configs.go -------------------------------------------------------------------------------- /configs/dotenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/configs/dotenv -------------------------------------------------------------------------------- /configs/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/configs/input.css -------------------------------------------------------------------------------- /configs/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/configs/tailwind.config.js -------------------------------------------------------------------------------- /db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/db/db.go -------------------------------------------------------------------------------- /db/db_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/db/db_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/go.mod -------------------------------------------------------------------------------- /handlers/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/handlers/handlers.go -------------------------------------------------------------------------------- /handlers/handlers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/handlers/handlers_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/main.go -------------------------------------------------------------------------------- /middleware/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/middleware/middleware.go -------------------------------------------------------------------------------- /middleware/middleware_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/middleware/middleware_test.go -------------------------------------------------------------------------------- /models/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/models/global.go -------------------------------------------------------------------------------- /models/global_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/models/global_test.go -------------------------------------------------------------------------------- /models/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/models/session.go -------------------------------------------------------------------------------- /models/session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/models/session_test.go -------------------------------------------------------------------------------- /models/todo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/models/todo.go -------------------------------------------------------------------------------- /models/todo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/models/todo_test.go -------------------------------------------------------------------------------- /static/assets/icons/checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/static/assets/icons/checkbox.svg -------------------------------------------------------------------------------- /static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/static/css/styles.css -------------------------------------------------------------------------------- /static/js/htmx.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancoder/hello_gotham/HEAD/static/js/htmx.min.js --------------------------------------------------------------------------------