✍️ Blog Manager & Content Planner

Dynamic Publication Hub

Track draft statuses, tag distribution, word estimates, and publishing timelines for articles in your digital garden.


📅 Published & Active Articles

TABLE 
    status as Status, 
    date as "Published Date", 
    round(file.size / 5) as "~ Words",
    tags as Tags
FROM "Blog"
WHERE file.name != "Highlights" 
    AND status = "published"
SORT date DESC

📝 Drafts & Brainstorming

TABLE 
    round(file.size / 5) as "~ Words",
    tags as Tags,
    file.mtime as "Last Edited"
FROM "Blog"
WHERE file.name != "Highlights" 
    AND (status = "draft" OR !status)
SORT file.mtime DESC

Back to Recent Articles