Files
org_web/backups/notes.org~
Zaine cc0b739e66
All checks were successful
Build Org Website / build (push) Successful in 45s
SHOULD WORK
2026-05-07 09:33:39 +01:00

39 lines
769 B
Org Mode
Executable File

#+TITLE: Public Notes
#+OPTIONS: toc:nil num:nil
#+NO_SIDENOTES: t
#+COMMENTS: t
#+SLUG: notes
This page is a shared notes space — short thoughts, marginalia, and passing ideas.
Names are required; everything else is intentionally lightweight.
#+BEGIN_EXPORT html
<div id="notes-wall">
<p>Loading notes…</p>
</div>
<div id="notes-form-wrapper">
<form id="notes-form">
<label for="note-author">Name</label>
<input
id="note-author"
name="author_name"
type="text"
maxlength="100"
required
/>
<label for="note-content">Note</label>
<textarea
id="note-content"
name="content"
rows="4"
required
></textarea>
<button type="submit">Post note</button>
</form>
</div>
#+END_EXPORT