From 231202b2d3bfdda154b68983f6f712bfc1f50b3a Mon Sep 17 00:00:00 2001 From: Xe Iaso Date: Sat, 11 Jan 2025 15:14:44 -0500 Subject: cmd: add stickers Signed-off-by: Xe Iaso --- cmd/asbestos/html.templ | 114 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 cmd/asbestos/html.templ (limited to 'cmd/asbestos/html.templ') diff --git a/cmd/asbestos/html.templ b/cmd/asbestos/html.templ new file mode 100644 index 0000000..ae57782 --- /dev/null +++ b/cmd/asbestos/html.templ @@ -0,0 +1,114 @@ +package main + +import ( + "within.website/x/htmx" + "within.website/x/xess" +) + +templ NotFound() { +

The URL you requested could not be found. Please check your URL and hang up to try your call again.

+} + +templ allClear() { +

Your data was not found in the dataset. No action is required on your part.

+} + +templ Error(why string) { +

Oopsie whoopsie uwu we made a fucky-wucky! A widdle fucko boingo! The code monkeys at our headquarters are working VEWY HARD to fix this!

+

Reason: { why }

+} + +templ Index() { +

TODO placeholder

+ +
+
+} + +templ headArea() { + @htmx.Use() + +} + +templ footer() { +

+ A product of Techaro + + { "@techaro.lol" } + , the only ethical AI company +

+} + +templ Layout(title string, body templ.Component) { + @xess.Base( + title, + headArea(), + nil, + body, + footer(), + ) +} + +templ searchPage(authorDID string, posts []Post) { + + + + + + + + + + for _, post := range posts { + + + + + + } + +
Created atTextLink
{ post.CreatedAt }{ post.Text }🔗
+
+

Since your data is in this dataset, here's what you can do about it:

+

Compose an email to dmca@huggingface.co with the subject line DMCA Takedown Request and something like the following body (rephrase this in your own words):

+
+ Hello, +
+
+ I am writing to you to inform you that my data is present in the dataset bluesky-community/one-million-bluesky-posts and I did not consent to it being included. I would like to request that you remove my data from the dataset. +
+
+ You can identify my data by searching for the following DID in the author_did column: { authorDID } +
+
+ Thank you for your attention and patience in this matter. +
+
+ Sincerely, +
+
+ { "(Your Name here)" }, { "(Your Email here)" } +
+ { "(identified as" } { authorDID }{ ")" } +
+

For more information, please refer to the dataset page.

+
+} -- cgit v1.2.3