├── LICENSE ├── README.md ├── caddy_example ├── .gitignore ├── Caddyfile ├── README.md ├── homepage │ ├── articles │ │ └── index.html │ ├── assets │ │ └── .keep │ ├── index.html │ ├── markdown │ │ └── .keep │ └── templates │ │ └── .keep ├── package.json ├── src │ └── stylesheets │ │ └── application.css ├── tailwind.config.js └── yarn.lock ├── example_conf.json ├── go.mod ├── go.sum ├── main.go └── main_test.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canostrical/blogsync/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canostrical/blogsync/HEAD/README.md -------------------------------------------------------------------------------- /caddy_example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canostrical/blogsync/HEAD/caddy_example/.gitignore -------------------------------------------------------------------------------- /caddy_example/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canostrical/blogsync/HEAD/caddy_example/Caddyfile -------------------------------------------------------------------------------- /caddy_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canostrical/blogsync/HEAD/caddy_example/README.md -------------------------------------------------------------------------------- /caddy_example/homepage/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canostrical/blogsync/HEAD/caddy_example/homepage/articles/index.html -------------------------------------------------------------------------------- /caddy_example/homepage/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /caddy_example/homepage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canostrical/blogsync/HEAD/caddy_example/homepage/index.html -------------------------------------------------------------------------------- /caddy_example/homepage/markdown/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /caddy_example/homepage/templates/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /caddy_example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canostrical/blogsync/HEAD/caddy_example/package.json -------------------------------------------------------------------------------- /caddy_example/src/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canostrical/blogsync/HEAD/caddy_example/src/stylesheets/application.css -------------------------------------------------------------------------------- /caddy_example/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canostrical/blogsync/HEAD/caddy_example/tailwind.config.js -------------------------------------------------------------------------------- /caddy_example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canostrical/blogsync/HEAD/caddy_example/yarn.lock -------------------------------------------------------------------------------- /example_conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canostrical/blogsync/HEAD/example_conf.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canostrical/blogsync/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canostrical/blogsync/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canostrical/blogsync/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canostrical/blogsync/HEAD/main_test.go --------------------------------------------------------------------------------