commit 711fff6f215a83e0851cfd8466769cdc2a695607
Author: root <root@hub.scroll.pub> Date: 2024-12-28 01:48:40 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..23e4e2b --- /dev/null +++ b/body.html @@ -0,0 +1,10 @@ +<header> + <h1>TumblScroll</h1> + <button id="nextSite">Next Site</button> +</header> +<main> + <iframe id="siteFrame" src="/site1.html" title="TumblScroll Site"></iframe> +</main> +<footer> + <p>Explore the web, one click at a time.</p> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..ae2d26b --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://tumblscroll.scroll.pub +metaTags +editButton /edit.html +title TumblScroll - Oldschool Tumblr-like Site +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..9ed1fe3 --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "1564eb0f-b500-4392-af7b-328c92e7c339", + "object": "chat.completion", + "created": 1735350511, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\ntumblscroll.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://tumblscroll.scroll.pub\nmetaTags\neditButton /edit.html\ntitle TumblScroll - Oldschool Tumblr-like Site\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <h1>TumblScroll</h1>\n <button id=\"nextSite\">Next Site</button>\n</header>\n<main>\n <iframe id=\"siteFrame\" src=\"/site1.html\" title=\"TumblScroll Site\"></iframe>\n</main>\n<footer>\n <p>Explore the web, one click at a time.</p>\n</footer>\n---style.css---\nbody {\n font-family: 'Arial', sans-serif;\n margin: 0;\n padding: 0;\n background: #f0f0f0;\n color: #333;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n min-height: 100vh;\n}\n\nheader {\n width: 100%;\n background: #333;\n color: #fff;\n padding: 20px 0;\n text-align: center;\n}\n\nheader h1 {\n margin: 0;\n font-size: 2.5rem;\n}\n\nheader button {\n background: #555;\n color: #fff;\n border: none;\n padding: 10px 20px;\n font-size: 1rem;\n cursor: pointer;\n transition: background 0.3s ease;\n}\n\nheader button:hover {\n background: #777;\n}\n\nmain {\n width: 100%;\n max-width: 1200px;\n margin: 20px auto;\n padding: 20px;\n background: #fff;\n box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);\n}\n\niframe {\n width: 100%;\n height: 600px;\n border: none;\n}\n\nfooter {\n width: 100%;\n background: #333;\n color: #fff;\n padding: 10px 0;\n text-align: center;\n margin-top: auto;\n}\n\nfooter p {\n margin: 0;\n font-size: 0.9rem;\n}\n\n@media (max-width: 768px) {\n header h1 {\n font-size: 2rem;\n }\n\n header button {\n padding: 8px 16px;\n font-size: 0.9rem;\n }\n\n iframe {\n height: 400px;\n }\n}\n---script.js---\nconst sites = ['/site1.html', '/site2.html', '/site3.html', '/site4.html', '/site5.html'];\nlet currentSiteIndex = 0;\n\ndocument.getElementById('nextSite').addEventListener('click', () => {\n currentSiteIndex = (currentSiteIndex + 1) % sites.length;\n document.getElementById('siteFrame').src = sites[currentSiteIndex];\n});\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 278, + "completion_tokens": 654, + "total_tokens": 932, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 278 + }, + "system_fingerprint": "fp_f1afce2943" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..bc29abc --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# tumblscroll.scroll.pub +Website generated by DeepSeek from prompt: oldschool tumblr like site that lets the user click a button at the top and then the ui inside of an i frame changes them to the next site. the sites the user sees are going to be pre-populated \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..2ad8a75 --- /dev/null +++ b/script.js @@ -0,0 +1,7 @@ +const sites = ['/site1.html', '/site2.html', '/site3.html', '/site4.html', '/site5.html']; +let currentSiteIndex = 0; + +document.getElementById('nextSite').addEventListener('click', () => { + currentSiteIndex = (currentSiteIndex + 1) % sites.length; + document.getElementById('siteFrame').src = sites[currentSiteIndex]; +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..57d45d9 --- /dev/null +++ b/style.css @@ -0,0 +1,83 @@ +body { + font-family: 'Arial', sans-serif; + margin: 0; + padding: 0; + background: #f0f0f0; + color: #333; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + min-height: 100vh; +} + +header { + width: 100%; + background: #333; + color: #fff; + padding: 20px 0; + text-align: center; +} + +header h1 { + margin: 0; + font-size: 2.5rem; +} + +header button { + background: #555; + color: #fff; + border: none; + padding: 10px 20px; + font-size: 1rem; + cursor: pointer; + transition: background 0.3s ease; +} + +header button:hover { + background: #777; +} + +main { + width: 100%; + max-width: 1200px; + margin: 20px auto; + padding: 20px; + background: #fff; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); +} + +iframe { + width: 100%; + height: 600px; + border: none; +} + +footer { + width: 100%; + background: #333; + color: #fff; + padding: 10px 0; + text-align: center; + margin-top: auto; +} + +footer p { + margin: 0; + font-size: 0.9rem; +} + +@media (max-width: 768px) { + header h1 { + font-size: 2rem; + } + + header button { + padding: 8px 16px; + font-size: 0.9rem; + } + + iframe { + height: 400px; + } +} \ No newline at end of file