├── .gitignore ├── Caddyfile ├── README.md ├── fetch.go ├── go.mod ├── go.sum ├── migrations ├── schema.001.sql └── schema.002.sql ├── module.go ├── screenshot.png └── templates ├── .head.html ├── assets ├── htmx.org@1.9.3 │ └── dist │ │ └── htmx.js ├── reset.css └── shared.css └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infogulch/xrss/HEAD/.gitignore -------------------------------------------------------------------------------- /Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infogulch/xrss/HEAD/Caddyfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infogulch/xrss/HEAD/README.md -------------------------------------------------------------------------------- /fetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infogulch/xrss/HEAD/fetch.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infogulch/xrss/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infogulch/xrss/HEAD/go.sum -------------------------------------------------------------------------------- /migrations/schema.001.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infogulch/xrss/HEAD/migrations/schema.001.sql -------------------------------------------------------------------------------- /migrations/schema.002.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infogulch/xrss/HEAD/migrations/schema.002.sql -------------------------------------------------------------------------------- /module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infogulch/xrss/HEAD/module.go -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infogulch/xrss/HEAD/screenshot.png -------------------------------------------------------------------------------- /templates/.head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infogulch/xrss/HEAD/templates/.head.html -------------------------------------------------------------------------------- /templates/assets/htmx.org@1.9.3/dist/htmx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infogulch/xrss/HEAD/templates/assets/htmx.org@1.9.3/dist/htmx.js -------------------------------------------------------------------------------- /templates/assets/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infogulch/xrss/HEAD/templates/assets/reset.css -------------------------------------------------------------------------------- /templates/assets/shared.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infogulch/xrss/HEAD/templates/assets/shared.css -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infogulch/xrss/HEAD/templates/index.html --------------------------------------------------------------------------------