added makefile and cleaned backups

This commit is contained in:
2025-12-30 18:33:47 +00:00
parent 04f2f7b845
commit 78cfe20d64
56 changed files with 103 additions and 11 deletions

38
backups/notes.org~ Normal file
View File

@@ -0,0 +1,38 @@
#+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