blogging platform in Go
Find a file
Naman Sood 5904b68813 server: resize social media image
Signed-off-by: Naman Sood <mail@nsood.in>
2021-12-17 04:41:51 -05:00
.github/workflows github: send fonts to deploy 2021-12-17 03:16:09 -05:00
fonts server, post: add about images for social media 2021-12-17 03:09:04 -05:00
posts posts: jabra 75t on ubuntu 2021-09-11 15:06:30 -04:00
static posts: windows 11 on unsupported hardware 2021-07-09 00:37:46 -04:00
styles posts: jabra 75t on ubuntu 2021-09-11 15:06:30 -04:00
templates templates: make twitter use big card image 2021-12-17 04:31:23 -05:00
.gitignore update hello world some more 2021-03-19 21:35:36 -04:00
errorCatcher.go errorCatcher: set Content-Type authoritatively 2021-03-20 18:07:11 -04:00
go.mod server, post: add about images for social media 2021-12-17 03:09:04 -05:00
go.sum server, post: add about images for social media 2021-12-17 03:09:04 -05:00
listener.go move listener logic into separate file 2021-04-24 03:03:57 -04:00
post.go server, post: fix social media images 2021-12-17 04:02:54 -05:00
prose.go Initial commit - read and serve markdown and static files 2021-02-06 16:27:00 -05:00
README.md Load HTML templates and SCSS styling 2021-02-15 02:31:18 -05:00
server.go server: resize social media image 2021-12-17 04:41:51 -05:00
style.go seperate styles logic 2021-04-24 03:02:19 -04:00
template.go separate template logic into own file 2021-03-15 23:36:00 -04:00

Prose

Prose is a blogging platform written in Go, which I am building to serve my own blog.

Usage

Blog posts should be created in the format title-slug.md. Work in progress posts should be stored as WIP-title-slug.md. Static content should be stored in the static/ folder, appropriately arranged.

Posts will be served as /title-slug, and files like static/random/file/structure.txt will be served as /random/file/structure.txt. When title slugs and static files conflict, slugs will have higher precdence.

To start the server:

go run .

Server will be live on port 8080.