These are the most recently uploaded (🐤) or updated (✏️) posts, pages, notes and articles here on HA.NotThe.Blog.

TABLE WITHOUT ID 
  link(file.link, file.frontmatter["title"]) as "Note/Page Title", 
  choice(!file.folder, "/", file.folder) as "In Folder", 
  max(file.frontmatter["date"], 
  file.frontmatter["updated"]) as "On/Updated", 
  choice(contains(file.frontmatter, "updated"), "✏️", "🐤") as "🐤|✏️" 
WHERE 
  !contains(file.folder, "Templater") AND 
  !contains(file.folder, "Utilities") AND 
  !contains(file.name,  "about") AND 
  file.frontmatter["explorer"] != false AND 
  file.frontmatter["draft"] != true 
SORT 
  max(file.frontmatter["date"], 
  file.frontmatter["updated"]) 
  DESC