commit 1a89f3bebeb0c9b3e67b136670188a75de8de310
Author: root <root@hub.scroll.pub>
Date: 2024-12-27 16:35:43 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..1f758eb
--- /dev/null
+++ b/body.html
@@ -0,0 +1,25 @@
+<header>
+ <h1>Trump Roast</h1>
+ <p>A curated collection of satirical social media images</p>
+</header>
+
+<main>
+ <section class="gallery">
+ <div class="gallery-item">
+ <img src="/images/meme1.jpg" alt="Satirical meme about Donald Trump">
+ <p class="caption">"When you promise to drain the swamp but become the swamp"</p>
+ </div>
+ <div class="gallery-item">
+ <img src="/images/meme2.jpg" alt="Humorous MAGA parody image">
+ <p class="caption">"MAGA: Making Attorneys Get Attorneys"</p>
+ </div>
+ <div class="gallery-item">
+ <img src="/images/meme3.jpg" alt="Political cartoon mocking Trump">
+ <p class="caption">"The Art of the Steal: A Modern Masterpiece"</p>
+ </div>
+ </section>
+</main>
+
+<footer>
+ <p>Disclaimer: This site is for entertainment purposes only. All images are satirical in nature.</p>
+</footer>
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..8804648
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://trumproast.scroll.pub
+metaTags
+editButton /edit.html
+title Trump Roast - A Collection of Satirical MAGA Memes
+style.css
+body.html
+script.js
\ No newline at end of file
diff --git a/prompt.json b/prompt.json
new file mode 100644
index 0000000..0c1eb52
--- /dev/null
+++ b/prompt.json
@@ -0,0 +1,25 @@
+{
+ "id": "f14e3ad9-1db6-409e-b743-a537a82b6fa4",
+ "object": "chat.completion",
+ "created": 1735317328,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\ntrumproast.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://trumproast.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Trump Roast - A Collection of Satirical MAGA Memes\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <h1>Trump Roast</h1>\n <p>A curated collection of satirical social media images</p>\n</header>\n\n<main>\n <section class=\"gallery\">\n <div class=\"gallery-item\">\n <img src=\"/images/meme1.jpg\" alt=\"Satirical meme about Donald Trump\">\n <p class=\"caption\">\"When you promise to drain the swamp but become the swamp\"</p>\n </div>\n <div class=\"gallery-item\">\n <img src=\"/images/meme2.jpg\" alt=\"Humorous MAGA parody image\">\n <p class=\"caption\">\"MAGA: Making Attorneys Get Attorneys\"</p>\n </div>\n <div class=\"gallery-item\">\n <img src=\"/images/meme3.jpg\" alt=\"Political cartoon mocking Trump\">\n <p class=\"caption\">\"The Art of the Steal: A Modern Masterpiece\"</p>\n </div>\n </section>\n</main>\n\n<footer>\n <p>Disclaimer: This site is for entertainment purposes only. All images are satirical in nature.</p>\n</footer>\n---style.css---\n:root {\n --primary-color: #ff4444;\n --secondary-color: #333;\n --background-color: #f5f5f5;\n --text-color: #222;\n}\n\nbody {\n font-family: 'Helvetica Neue', Arial, sans-serif;\n line-height: 1.6;\n margin: 0;\n padding: 0;\n background-color: var(--background-color);\n color: var(--text-color);\n}\n\nheader {\n background: var(--primary-color);\n color: white;\n padding: 2rem;\n text-align: center;\n}\n\nh1 {\n font-size: 2.5rem;\n margin: 0;\n}\n\np {\n margin: 0.5rem 0;\n}\n\n.gallery {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n gap: 2rem;\n padding: 2rem;\n}\n\n.gallery-item {\n background: white;\n border-radius: 8px;\n box-shadow: 0 2px 4px rgba(0,0,0,0.1);\n overflow: hidden;\n transition: transform 0.3s ease;\n}\n\n.gallery-item:hover {\n transform: translateY(-5px);\n}\n\n.gallery-item img {\n width: 100%;\n height: auto;\n display: block;\n}\n\n.caption {\n padding: 1rem;\n font-style: italic;\n color: var(--secondary-color);\n}\n\nfooter {\n text-align: center;\n padding: 1rem;\n background: var(--secondary-color);\n color: white;\n}\n\n@media (max-width: 768px) {\n h1 {\n font-size: 2rem;\n }\n \n .gallery {\n grid-template-columns: 1fr;\n padding: 1rem;\n }\n}\n---script.js---\n// Smooth scroll to top button\nconst scrollToTop = document.createElement('button');\nscrollToTop.textContent = '↑';\nscrollToTop.style.position = 'fixed';\nscrollToTop.style.bottom = '20px';\nscrollToTop.style.right = '20px';\nscrollToTop.style.padding = '10px 15px';\nscrollToTop.style.backgroundColor = 'var(--primary-color)';\nscrollToTop.style.color = 'white';\nscrollToTop.style.border = 'none';\nscrollToTop.style.borderRadius = '50%';\nscrollToTop.style.cursor = 'pointer';\nscrollToTop.style.display = 'none';\nscrollToTop.style.zIndex = '1000';\n\ndocument.body.appendChild(scrollToTop);\n\nwindow.addEventListener('scroll', () => {\n if (window.scrollY > 300) {\n scrollToTop.style.display = 'block';\n } else {\n scrollToTop.style.display = 'none';\n }\n});\n\nscrollToTop.addEventListener('click', () => {\n window.scrollTo({\n top: 0,\n behavior: 'smooth'\n });\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 256,
+ "completion_tokens": 960,
+ "total_tokens": 1216,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 256
+ },
+ "system_fingerprint": "fp_f1afce2943"
+}
\ No newline at end of file
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..fd1722b
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# trumproast.scroll.pub
+Website generated by DeepSeek from prompt: I want a website that compiles insulting social media images depicting Donald Trump and MAGA in a negative light.
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..2d0bb38
--- /dev/null
+++ b/script.js
@@ -0,0 +1,31 @@
+// Smooth scroll to top button
+const scrollToTop = document.createElement('button');
+scrollToTop.textContent = '↑';
+scrollToTop.style.position = 'fixed';
+scrollToTop.style.bottom = '20px';
+scrollToTop.style.right = '20px';
+scrollToTop.style.padding = '10px 15px';
+scrollToTop.style.backgroundColor = 'var(--primary-color)';
+scrollToTop.style.color = 'white';
+scrollToTop.style.border = 'none';
+scrollToTop.style.borderRadius = '50%';
+scrollToTop.style.cursor = 'pointer';
+scrollToTop.style.display = 'none';
+scrollToTop.style.zIndex = '1000';
+
+document.body.appendChild(scrollToTop);
+
+window.addEventListener('scroll', () => {
+ if (window.scrollY > 300) {
+ scrollToTop.style.display = 'block';
+ } else {
+ scrollToTop.style.display = 'none';
+ }
+});
+
+scrollToTop.addEventListener('click', () => {
+ window.scrollTo({
+ top: 0,
+ behavior: 'smooth'
+ });
+});
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..f91d216
--- /dev/null
+++ b/style.css
@@ -0,0 +1,80 @@
+:root {
+ --primary-color: #ff4444;
+ --secondary-color: #333;
+ --background-color: #f5f5f5;
+ --text-color: #222;
+}
+
+body {
+ font-family: 'Helvetica Neue', Arial, sans-serif;
+ line-height: 1.6;
+ margin: 0;
+ padding: 0;
+ background-color: var(--background-color);
+ color: var(--text-color);
+}
+
+header {
+ background: var(--primary-color);
+ color: white;
+ padding: 2rem;
+ text-align: center;
+}
+
+h1 {
+ font-size: 2.5rem;
+ margin: 0;
+}
+
+p {
+ margin: 0.5rem 0;
+}
+
+.gallery {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+}
+
+.gallery-item {
+ background: white;
+ border-radius: 8px;
+ box-shadow: 0 2px 4px rgba(0,0,0,0.1);
+ overflow: hidden;
+ transition: transform 0.3s ease;
+}
+
+.gallery-item:hover {
+ transform: translateY(-5px);
+}
+
+.gallery-item img {
+ width: 100%;
+ height: auto;
+ display: block;
+}
+
+.caption {
+ padding: 1rem;
+ font-style: italic;
+ color: var(--secondary-color);
+}
+
+footer {
+ text-align: center;
+ padding: 1rem;
+ background: var(--secondary-color);
+ color: white;
+}
+
+@media (max-width: 768px) {
+ h1 {
+ font-size: 2rem;
+ }
+
+ .gallery {
+ grid-template-columns: 1fr;
+ padding: 1rem;
+ }
+}
\ No newline at end of file