summaryrefslogtreecommitdiff
path: root/public/blog/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'public/blog/index.html')
-rw-r--r--public/blog/index.html125
1 files changed, 36 insertions, 89 deletions
diff --git a/public/blog/index.html b/public/blog/index.html
index 068f3a0..2c2d5f8 100644
--- a/public/blog/index.html
+++ b/public/blog/index.html
@@ -1,96 +1,43 @@
-<!DOCTYPE html>
-<html lang="en">
+<html>
<head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="robots" content="index, follow">
-
- <link rel="alternate" type="application/rss+xml" title="RSS" href="https://urbanecologycollective.org/rss.xml">
-
- <title>ecoblog</title>
-
- <link rel="preload" href="https://urbanecologycollective.org/css/style.css" as="style">
- <link rel="stylesheet" href="https://urbanecologycollective.org/css/reset.css">
- <link rel="stylesheet" href="https://urbanecologycollective.org/css/suCSS.css">
- <link rel="stylesheet" href="https://urbanecologycollective.org/css/style.css">
- <link rel="stylesheet" href="https://urbanecologycollective.org/css/custom.css">
-
- <!-- Add favicon with appropriate sizes -->
- <link rel="icon" href="https:&#x2F;&#x2F;urbanecologycollective.org/favicon.ico">
-
+ <title>Zola</title>
</head>
<body>
-
-
-
-
- <nav id="nav-bar">
-
- <a href="&#x2F;" class="">
-
- home
- </a>
-
- <a href="https:&#x2F;&#x2F;urbanecologycollective.org&#x2F;wiki" class="">
-
- wiki
- </a>
-
- </nav>
-
- <main>
-
-<section class="content-section">
- <h1>All blog posts</h1>
-
-
- <ul class="content-list">
-
-
- <li class="title-list">
-
- <time class="content-meta">2025-12-01</time>
-
- <a href="https:&#x2F;&#x2F;urbanecologycollective.org&#x2F;blog&#x2F;little-forest-floor&#x2F;" class="content-link">
- A Little Forest Floor in a Raised Bed
- </a>
-</li>
-
-
- <li class="title-list">
-
- <time class="content-meta">2025-09-23</time>
-
- <a href="https:&#x2F;&#x2F;urbanecologycollective.org&#x2F;blog&#x2F;native-plant-garden&#x2F;" class="content-link">
- Designing a Native Plant Garden
- </a>
-</li>
-
-
- </ul>
-
-
- <nav class="pagination" aria-label="Pagination">
- <div class="pagination-inner">
-
-
- <span class="page-current accent-data">1 of 1</span>
-
-
- </div>
-</nav>
-
-
-</section>
-
- </main>
-
+ <div class="container">
+ <h1>Welcome to Zola!</h1>
+ <p>
+ You're seeing this page because we couldn't find a template to render.
+ </p>
+ <p>
+ To modify this page, create a <b>section.html</b> file in the templates directory or
+ <a href="https://www.getzola.org/documentation/themes/installing-and-using-themes/" target="_blank">install a theme</a>.
+ <br>
+ You can find what variables are available in this template in the <a href="https:&#x2F;&#x2F;www.getzola.org&#x2F;documentation&#x2F;templates&#x2F;pages-sections&#x2F;#section-variables" target="_blank">documentation</a>.
+ </p>
+ </div>
<footer>
- <!-- <hr> -->
-<!-- <div id="footer-container"> -->
-<!-- <p>Made using <a target="_blank" rel="noopener noreferrer" href="https://github.com/Speyll/anemone">anemone</a> Zola theme</p> -->
-<!-- </div> -->
-
+ <a href="https://www.getzola.org/documentation/getting-started/cli-usage/" target="_blank">Get started with Zola</a>
</footer>
+ <style>
+ html {
+ line-height: 1.5;
+ }
+ h1 {
+ margin-bottom: 2rem;
+ }
+ .container {
+ font-family: "sans-serif";
+ text-align: center;
+ margin-top: 20vh;
+ padding: 2rem;
+ background: #e9e9e9;
+ }
+ footer {
+ position: fixed;
+ width: 100%;
+ bottom: 1rem;
+ text-align: center;
+ }
+ </style>
</body>
</html>