@use crate::handlers::notes::Note; @use super::{header_html, footer_html}; @(notes: Vec, page: u64) @:header_html(Some("Notes"), None)

Notes

Notes are what I use for shorter form content. Think what you might see on Twitter or Mastodon. Most of my notes will be shorter form replies to articles and other things that I'd normally have lost to Hacker News or lobste.rs comments. I'm trying to use this to own my platform.

Let's see how long I can keep up this experiment.

If you want to subscribe to my notes, you can use this dedicated feed.

@for note in notes { @Html(note.to_html().0) } @if page!=0 { Prev } Next @:footer_html()