diff options
| author | surya <surya@urbanecologycollective.org> | 2026-04-18 15:40:40 -0400 |
|---|---|---|
| committer | surya <surya@urbanecologycollective.org> | 2026-04-18 15:40:40 -0400 |
| commit | b5c4e9636b4c498f5157124d0d3ff45628a0ff7b (patch) | |
| tree | 7fffece0cb77cda53b7e066bb6bc70e52b582afa /public/blog/index.html | |
| parent | 40d2a460af1eecb7ccf7f302479a6a7afe410da7 (diff) | |
theme
Diffstat (limited to 'public/blog/index.html')
| -rw-r--r-- | public/blog/index.html | 125 |
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://urbanecologycollective.org/favicon.ico"> - + <title>Zola</title> </head> <body> - - - - - <nav id="nav-bar"> - - <a href="/" class=""> - - home - </a> - - <a href="https://urbanecologycollective.org/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://urbanecologycollective.org/blog/little-forest-floor/" 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://urbanecologycollective.org/blog/native-plant-garden/" 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://www.getzola.org/documentation/templates/pages-sections/#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> |
