Towards IndieWeb: POSSE and Notes
#posse #blogging #webmention #indieweb
https://t.co/15Q3wsMv9J
page 1 of 1
POSSE is the #IndieWeb acronym for Publish (on your) Own Site, Syndicate Everywhere. It's something I'm playing with in Goldfrog.
A common idiom is to differentiate Notes (small microblog-like posts) from Articles (longer blog posts with a title). Right now Goldfrog has a basic blog Post type, with (ID
, Title
, Slug
, Tags
, Body
). I'd like to keep the posting experience as simple as possible, so I'm thinking about how to handle something that literally just has a Body
(and Tags
, because I parse and attach any #hashtags - see? - in the content).
My Posts have an ID, though a uniqueness constraint on the slug means I could use that instead. But Notes don't have a title to "slugify" (it is too a word). Goldfrog also writes every post to the filesystem as a Jekyll-compatible markdown file, so I would need to figure out what format and filename/slug would be appropriate so that they get a permalink.
Url Options
An upcoming build of Goldfrog will support new "kind" of Post, albeit only differentiated by the presence of a title. I've made a few UI and backend changes to support notes:
(SORRY, LOST IMAGE)
txt-8213d2c
id
attribute on the note, so the link jumps directly to the note on the digest page. This results in a "permalink" like "YYYY-MM-DD/#txt-8213d2c"page 1 of 1