Mercurial Hosting > linkmystyle
view unsubscribe/src/private/tools/unsubscribed.html.luan @ 4:f455bb813e2e default tip
remove facebook ads
| author | Franklin Schmidt <fschmidt@gmail.com> |
|---|---|
| date | Thu, 06 Nov 2025 07:41:24 -0700 |
| parents | 8f4df159f06b |
| children |
line wrap: on
line source
local Luan = require "luan:Luan.luan" local error = Luan.error local ipairs = Luan.ipairs or error() local Io = require "luan:Io.luan" local Http = require "luan:http/Http.luan" local Db = require "site:/lib/Db.luan" return function() local docs = Db.search("type:unsubscribe",1,1000000) Io.stdout = Http.response.text_writer() %> <!doctype html> <html lang="en"> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> @import "tools.css"; body { margin-top: 0; margin-bottom: 0; } </style> </head> <body> <% for _, doc in ipairs(docs) do local email = doc.unsubscribe_email or error() %> <p> <a href="/subscribe.html?email=<%= email %>">X</a> <%= email %> </p> <% end %> </body> </html> <% end
