You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Niko Abeler 7a70be9839 test for 'multi process' concurrency 9 months ago
.vscode refactoring 11 months ago
assets removed reference 10 months ago
cmd/owl avatar and new header design 9 months ago
embed list format date 9 months ago
.gitignore renamed old file 10 months ago
Dockerfile adjust Dockerfile 9 months ago
README.md more docs 9 months ago
directories.go limit posts to single depth directory 10 months ago
embed.go refactoring rendering 10 months ago
go.mod start to use a proper cli library 9 months ago
go.sum start to use a proper cli library 9 months ago
owl_test.go more thread safety 9 months ago
post.go formatted date 9 months ago
post_test.go test for 'multi process' concurrency 9 months ago
release.sh release 9 months ago
renderer.go twitter handle + refactor user config in renderer 9 months ago
renderer_test.go avatar and new header design 9 months ago
repository.go avatar and new header design 9 months ago
repository_test.go refactoring to have web config (single user, unsafe) in config of repo 9 months ago
rss.go allow different time formats in posts 9 months ago
rss_test.go allow different time formats in posts 9 months ago
user.go allow different time formats in posts 9 months ago
user_test.go allow different time formats in posts 9 months ago
webmention.go refactoring webmention interface 9 months ago
webmention_test.go more thread safety 9 months ago

README.md

Mascot

Owl Blogs

A simple web server for blogs generated from Markdown files

Repository

A repository holds all data for a web server. It contains multiple users.

User

A user has a collection of posts. Each directory in the /users/ directory of a repository is considered a user.

User Directory structure

<user-name>/
  \- public/
       \- <post-name>
            \- index.md
                -- This will be rendered as the blog post.
                -- Must be present for the blog post to be valid.
                -- All other folders will be ignored
            \- webmentions.yml
                -- Used to track incoming and outgoing webmentions 
            \- media/
                -- Contains all media files used in the blog post.
                -- All files in this folder will be publicly available
            \- webmention/
               \- <hash>.yml
                    -- Contains data for a received webmention
  \- meta/
       \- base.html
            -- The template used to render all sites
       \- VERSION
            -- Contains the version string.
            -- Used to determine compatibility in the future
  \- media/
       -- All this files will be publicly available. To be used for general files
       \- avatar.{png, jpg, jpeg, gif}
            -- The avatar for the user
  \- config.yml
        -- Contains settings global to the user.
        -- For example: page title and style options

Post

Posts are Markdown files with a mandatory metadata head.

  • The title will be added to the web page and does not have to be reapeated in the body. It will be used in any lists of posts.
  • aliases are optional. They are used as permanent redirects to the actual blog page.
---
title: My new Post
date: 13 Aug 2022 17:07 UTC
aliases:
     - /my/new/post
     - /old_blog_path/
---

Actual post

webmentions.yml

incoming:
     - source: https://example.com/post
       title: Example Post
       ApprovalStatus: ["", "approved", "rejected"]
       retrieved_at: 2021-08-13T17:07:00Z
outgoing:
     - target: https://example.com/post
       supported: true
       scanned_at: 2021-08-13T17:07:00Z
       last_sent_at: 2021-08-13T17:07:00Z