commit eabdc95ba78bb15b71b5a84b97211ed4484f9b9e
Author: root <root@hub.scroll.pub>
Date: 2024-12-29 04:33:09 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..271444c
--- /dev/null
+++ b/body.html
@@ -0,0 +1,49 @@
+<header>
+ <nav>
+ <a href="/" class="logo">PodcastWave</a>
+ <ul>
+ <li><a href="/episodes">Episodes</a></li>
+ <li><a href="/about">About</a></li>
+ <li><a href="/contact">Contact</a></li>
+ </ul>
+ </nav>
+ <div class="hero">
+ <h1>Welcome to PodcastWave</h1>
+ <p>Your ultimate destination for captivating podcasts.</p>
+ <a href="/episodes" class="cta-button">Explore Episodes</a>
+ </div>
+</header>
+
+<main>
+ <section class="featured-episodes">
+ <h2>Featured Episodes</h2>
+ <div class="episode-grid">
+ <div class="episode-card">
+ <img src="/images/episode1.jpg" alt="Episode 1">
+ <h3>Episode 1: The Journey Begins</h3>
+ <p>Join us as we embark on an exciting journey into the world of podcasts.</p>
+ <a href="/episodes/1" class="listen-button">Listen Now</a>
+ </div>
+ <div class="episode-card">
+ <img src="/images/episode2.jpg" alt="Episode 2">
+ <h3>Episode 2: Deep Dive</h3>
+ <p>Dive deep into fascinating topics with our expert guests.</p>
+ <a href="/episodes/2" class="listen-button">Listen Now</a>
+ </div>
+ </div>
+ </section>
+
+ <section class="about">
+ <h2>About PodcastWave</h2>
+ <p>PodcastWave is dedicated to bringing you the best in audio storytelling. Our mission is to inspire, educate, and entertain through the power of podcasts.</p>
+ </section>
+</main>
+
+<footer>
+ <p>Connect with us:</p>
+ <ul>
+ <li><a href="/twitter">Twitter</a></li>
+ <li><a href="/facebook">Facebook</a></li>
+ <li><a href="/instagram">Instagram</a></li>
+ </ul>
+</footer>
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..9e3655a
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://podcastwave.scroll.pub
+metaTags
+editButton /edit.html
+title PodcastWave - Your Podcast Destination
+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..0e6b7d3
--- /dev/null
+++ b/prompt.json
@@ -0,0 +1,25 @@
+{
+ "id": "94dd7125-a8a7-4b75-bfd9-f9c347dead11",
+ "object": "chat.completion",
+ "created": 1735446770,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\npodcastwave.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://podcastwave.scroll.pub\nmetaTags\neditButton /edit.html\ntitle PodcastWave - Your Podcast Destination\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <nav>\n <a href=\"/\" class=\"logo\">PodcastWave</a>\n <ul>\n <li><a href=\"/episodes\">Episodes</a></li>\n <li><a href=\"/about\">About</a></li>\n <li><a href=\"/contact\">Contact</a></li>\n </ul>\n </nav>\n <div class=\"hero\">\n <h1>Welcome to PodcastWave</h1>\n <p>Your ultimate destination for captivating podcasts.</p>\n <a href=\"/episodes\" class=\"cta-button\">Explore Episodes</a>\n </div>\n</header>\n\n<main>\n <section class=\"featured-episodes\">\n <h2>Featured Episodes</h2>\n <div class=\"episode-grid\">\n <div class=\"episode-card\">\n <img src=\"/images/episode1.jpg\" alt=\"Episode 1\">\n <h3>Episode 1: The Journey Begins</h3>\n <p>Join us as we embark on an exciting journey into the world of podcasts.</p>\n <a href=\"/episodes/1\" class=\"listen-button\">Listen Now</a>\n </div>\n <div class=\"episode-card\">\n <img src=\"/images/episode2.jpg\" alt=\"Episode 2\">\n <h3>Episode 2: Deep Dive</h3>\n <p>Dive deep into fascinating topics with our expert guests.</p>\n <a href=\"/episodes/2\" class=\"listen-button\">Listen Now</a>\n </div>\n </div>\n </section>\n\n <section class=\"about\">\n <h2>About PodcastWave</h2>\n <p>PodcastWave is dedicated to bringing you the best in audio storytelling. Our mission is to inspire, educate, and entertain through the power of podcasts.</p>\n </section>\n</main>\n\n<footer>\n <p>Connect with us:</p>\n <ul>\n <li><a href=\"/twitter\">Twitter</a></li>\n <li><a href=\"/facebook\">Facebook</a></li>\n <li><a href=\"/instagram\">Instagram</a></li>\n </ul>\n</footer>\n---style.css---\n:root {\n --primary-color: #1a73e8;\n --secondary-color: #f1f3f4;\n --text-color: #202124;\n --background-color: #ffffff;\n --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n}\n\nbody {\n font-family: var(--font-family);\n color: var(--text-color);\n background-color: var(--background-color);\n margin: 0;\n padding: 0;\n line-height: 1.6;\n}\n\nheader {\n background: var(--primary-color);\n color: var(--background-color);\n padding: 1rem 0;\n text-align: center;\n}\n\nheader .logo {\n font-size: 1.5rem;\n font-weight: bold;\n color: var(--background-color);\n text-decoration: none;\n}\n\nnav ul {\n list-style: none;\n padding: 0;\n display: flex;\n justify-content: center;\n gap: 1rem;\n}\n\nnav ul li a {\n color: var(--background-color);\n text-decoration: none;\n font-weight: bold;\n}\n\n.hero {\n padding: 2rem;\n background: var(--secondary-color);\n text-align: center;\n}\n\n.hero h1 {\n font-size: 2.5rem;\n margin-bottom: 1rem;\n}\n\n.hero p {\n font-size: 1.2rem;\n margin-bottom: 2rem;\n}\n\n.cta-button {\n background: var(--primary-color);\n color: var(--background-color);\n padding: 0.75rem 1.5rem;\n text-decoration: none;\n border-radius: 5px;\n font-weight: bold;\n}\n\n.featured-episodes {\n padding: 2rem;\n text-align: center;\n}\n\n.episode-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 1rem;\n margin-top: 1rem;\n}\n\n.episode-card {\n background: var(--secondary-color);\n padding: 1rem;\n border-radius: 5px;\n text-align: center;\n}\n\n.episode-card img {\n max-width: 100%;\n border-radius: 5px;\n}\n\n.episode-card h3 {\n font-size: 1.25rem;\n margin: 1rem 0 0.5rem;\n}\n\n.episode-card p {\n font-size: 0.9rem;\n margin-bottom: 1rem;\n}\n\n.listen-button {\n background: var(--primary-color);\n color: var(--background-color);\n padding: 0.5rem 1rem;\n text-decoration: none;\n border-radius: 5px;\n font-weight: bold;\n}\n\n.about {\n padding: 2rem;\n text-align: center;\n background: var(--secondary-color);\n}\n\nfooter {\n background: var(--primary-color);\n color: var(--background-color);\n text-align: center;\n padding: 1rem 0;\n}\n\nfooter ul {\n list-style: none;\n padding: 0;\n display: flex;\n justify-content: center;\n gap: 1rem;\n}\n\nfooter ul li a {\n color: var(--background-color);\n text-decoration: none;\n}\n\n@media (max-width: 768px) {\n .hero h1 {\n font-size: 2rem;\n }\n\n .hero p {\n font-size: 1rem;\n }\n\n .episode-grid {\n grid-template-columns: 1fr;\n }\n}\n---script.js---\n// JavaScript for interactive elements (if needed)\ndocument.addEventListener('DOMContentLoaded', function() {\n // Example: Add event listeners or dynamic content here\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 238,
+ "completion_tokens": 1367,
+ "total_tokens": 1605,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 238
+ },
+ "system_fingerprint": "fp_f1afce2943"
+}
\ No newline at end of file
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..53d1ff9
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# podcastwave.scroll.pub
+Website generated by DeepSeek from prompt: 我要创建一个播客
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..e58e529
--- /dev/null
+++ b/script.js
@@ -0,0 +1,4 @@
+// JavaScript for interactive elements (if needed)
+document.addEventListener('DOMContentLoaded', function() {
+ // Example: Add event listeners or dynamic content here
+});
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..2366977
--- /dev/null
+++ b/style.css
@@ -0,0 +1,152 @@
+:root {
+ --primary-color: #1a73e8;
+ --secondary-color: #f1f3f4;
+ --text-color: #202124;
+ --background-color: #ffffff;
+ --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+}
+
+body {
+ font-family: var(--font-family);
+ color: var(--text-color);
+ background-color: var(--background-color);
+ margin: 0;
+ padding: 0;
+ line-height: 1.6;
+}
+
+header {
+ background: var(--primary-color);
+ color: var(--background-color);
+ padding: 1rem 0;
+ text-align: center;
+}
+
+header .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--background-color);
+ text-decoration: none;
+}
+
+nav ul {
+ list-style: none;
+ padding: 0;
+ display: flex;
+ justify-content: center;
+ gap: 1rem;
+}
+
+nav ul li a {
+ color: var(--background-color);
+ text-decoration: none;
+ font-weight: bold;
+}
+
+.hero {
+ padding: 2rem;
+ background: var(--secondary-color);
+ text-align: center;
+}
+
+.hero h1 {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+}
+
+.hero p {
+ font-size: 1.2rem;
+ margin-bottom: 2rem;
+}
+
+.cta-button {
+ background: var(--primary-color);
+ color: var(--background-color);
+ padding: 0.75rem 1.5rem;
+ text-decoration: none;
+ border-radius: 5px;
+ font-weight: bold;
+}
+
+.featured-episodes {
+ padding: 2rem;
+ text-align: center;
+}
+
+.episode-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 1rem;
+ margin-top: 1rem;
+}
+
+.episode-card {
+ background: var(--secondary-color);
+ padding: 1rem;
+ border-radius: 5px;
+ text-align: center;
+}
+
+.episode-card img {
+ max-width: 100%;
+ border-radius: 5px;
+}
+
+.episode-card h3 {
+ font-size: 1.25rem;
+ margin: 1rem 0 0.5rem;
+}
+
+.episode-card p {
+ font-size: 0.9rem;
+ margin-bottom: 1rem;
+}
+
+.listen-button {
+ background: var(--primary-color);
+ color: var(--background-color);
+ padding: 0.5rem 1rem;
+ text-decoration: none;
+ border-radius: 5px;
+ font-weight: bold;
+}
+
+.about {
+ padding: 2rem;
+ text-align: center;
+ background: var(--secondary-color);
+}
+
+footer {
+ background: var(--primary-color);
+ color: var(--background-color);
+ text-align: center;
+ padding: 1rem 0;
+}
+
+footer ul {
+ list-style: none;
+ padding: 0;
+ display: flex;
+ justify-content: center;
+ gap: 1rem;
+}
+
+footer ul li a {
+ color: var(--background-color);
+ text-decoration: none;
+}
+
+@media (max-width: 768px) {
+ .hero h1 {
+ font-size: 2rem;
+ }
+
+ .hero p {
+ font-size: 1rem;
+ }
+
+ .episode-grid {
+ grid-template-columns: 1fr;
+ }
+}
\ No newline at end of file