Simple blogging system written in Go https://goblog.app
Go to file
Jan-Lukas Else 9c0dd8155b Don't show draft-taxonomies 2021-01-21 16:49:10 +01:00
.vscode Full text search 2020-11-15 11:34:48 +01:00
templates One editor per blog 2021-01-17 12:53:07 +01:00
.drone.yml Add drone config 2020-09-24 19:07:34 +02:00
.gitignore Serve files in "static" folder 2020-12-23 14:11:14 +01:00
Dockerfile Use ParseLocal method 2020-12-16 20:21:35 +01:00
LICENSE Add MIT license 2020-12-18 22:25:58 +01:00
README.md Add a basic Readme 2021-01-19 19:52:43 +01:00
activityPub.go Add config for short domains 2020-12-24 11:00:16 +01:00
activityPubSending.go Verify webmentions using a queue 2020-11-25 12:36:14 +01:00
activityStreams.go Improve error rendering 2020-12-24 10:09:34 +01:00
api.go Drafts 2021-01-15 21:56:46 +01:00
authentication.go Improve error rendering 2020-12-24 10:09:34 +01:00
blogs.go Fix index navigation 2020-11-15 12:46:24 +01:00
blogstats.go One editor per blog 2021-01-17 12:53:07 +01:00
cache.go Disable cache for static and media files, serve template assets directly from memory 2021-01-10 17:19:08 +01:00
config.go Add config option to enable redirect to random post 2021-01-20 13:38:24 +01:00
customPages.go Improve error rendering 2020-12-24 10:09:34 +01:00
database.go Strict use of local dates 2020-12-16 21:24:53 +01:00
databaseMigrations.go Drafts 2021-01-15 21:56:46 +01:00
editor.go One editor per blog 2021-01-17 12:53:07 +01:00
errors.go Improve error rendering 2020-12-24 10:09:34 +01:00
feeds.go Improve error rendering 2020-12-24 10:09:34 +01:00
go.mod Add config option to enable redirect to random post 2021-01-20 13:38:24 +01:00
go.sum Add config option to enable redirect to random post 2021-01-20 13:38:24 +01:00
hooks.go Drafts 2021-01-15 21:56:46 +01:00
http.go Add config option to enable redirect to random post 2021-01-20 13:38:24 +01:00
httpLogs.go Rotate logs and cache assets too 2020-11-26 17:40:40 +01:00
hugo.go Small things 2020-10-15 17:32:46 +02:00
indieAuth.go Improve error rendering 2020-12-24 10:09:34 +01:00
indieAuthServer.go Improve error rendering 2020-12-24 10:09:34 +01:00
main.go Fix group strings (with umlauts...) 2021-01-11 17:45:57 +01:00
markdown.go Update Emojilib 2020-12-31 17:15:05 +01:00
media.go Local media storage 2021-01-10 15:59:43 +01:00
micropub.go Drafts 2021-01-15 21:56:46 +01:00
micropubMedia.go Local media storage 2021-01-10 15:59:43 +01:00
minify.go Update dependencies, minify sitemap 2020-10-17 17:36:18 +02:00
nodeinfo.go Drafts 2021-01-15 21:56:46 +01:00
notifications.go Add Telegram syndication 2020-11-09 19:54:06 +01:00
postAliases.go Improve error rendering 2020-12-24 10:09:34 +01:00
posts.go Add config option to enable redirect to random post 2021-01-20 13:38:24 +01:00
postsDb.go Don't show draft-taxonomies 2021-01-21 16:49:10 +01:00
postsFuncs.go Drafts 2021-01-15 21:56:46 +01:00
regexRedirects.go Set redirect code 2020-11-10 07:53:08 +01:00
render.go One editor per blog 2021-01-17 12:53:07 +01:00
robotstxt.go Add some features, improve database handling & performance, robots.txt and more 2020-11-09 16:40:12 +01:00
search.go One editor per blog 2021-01-17 12:53:07 +01:00
shortDomain.go Add config for short domains 2020-12-24 11:00:16 +01:00
shortPath.go Improvements for short urls 2020-12-22 23:26:23 +01:00
sitemap.go Drafts 2021-01-15 21:56:46 +01:00
staticFiles.go Add Cache-Control header for static files 2021-01-10 17:26:13 +01:00
taxonomies.go One editor per blog 2021-01-17 12:53:07 +01:00
telegram.go Short URLs 2020-12-22 22:15:29 +01:00
templateAssets.go Disable cache for static and media files, serve template assets directly from memory 2021-01-10 17:19:08 +01:00
templateStrings.go Add language based strings 2020-10-12 19:12:43 +02:00
utils.go Fix group strings (with umlauts...) 2021-01-11 17:45:57 +01:00
webmention.go Drafts 2021-01-15 21:56:46 +01:00
webmentionSending.go Custom webmention sending implementation and other improvements 2020-11-16 18:34:29 +01:00
webmentionVerification.go Ellipsize long webmention titles 2020-12-13 10:39:00 +01:00

README.md

GoBlog

Hello!

This repository contains the code for GoBlog, my own blogging system. I created it because I was tired of all the workarounds to customize Hugo and other blog systems to my needs.

The goals of GoBlog are:

  • Minimalism
  • Flexibility
  • (IndieWeb)

Documentation on how to use GoBlog yourself will follow soon.

-- jlelse