summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--index.html69
1 files changed, 69 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..0155fc5
--- /dev/null
+++ b/index.html
@@ -0,0 +1,69 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8"/>
+ <script type="text/javascript" src="garden.js"></script>
+ <link href="css/garden.css" rel="stylesheet">
+ </head>
+ <body>
+ <div class="container">
+ <h1>Intensive Vegetable Garden Scheduler</h1>
+ <p>
+ This handy tool helps plan your intensively planted, organic,
+ no-dig, home vegetable garden. Just select your first and
+ last frost dates and a planting schedule will be generated for
+ you.
+ </p>
+ <p>
+ The schedule works by using generalized information about
+ different types of crops such as average weeks to maturity,
+ whether direct sowing or transplanting is preferred, weeks
+ between plantings for continuous harvests, when and how a fall
+ crop should be planted (if applicable), etc. Such
+ generalizations could never hope to capture the true
+ complexity of growing vegetables, but it should serve as a
+ useful reference point so that you don't get lost in the weeds
+ during the growing season and forget to sow the next crop of
+ bush beans.
+ </p>
+ <p>
+ My gardening style is a combination of several intensive
+ growing strategies in an attempt to grow as much food as
+ possible using the least space and least effort. Those
+ strategies are: square foot gardening, "no dig" AKA "no till",
+ multisowing, and succession planting.
+ </p>
+ <p>
+ Finally, this planner is intended for gardeners located in the
+ nothern areas of the northern hemisphere where we need to
+ start many summer crops indoors and cannot harvest during
+ winter without season extension. All planting dates are made
+ under the assumption that no season extension techniques are
+ being applied.
+ </p>
+ <p>
+ <a href="https://git.dthompson.us/intensive-garden-planner.git">Source
+ code</a> is available under the GNU Affero General Public
+ License version 3 or later. Perhaps you'd like to make an
+ improvement or modify it for use in the southern hemisphere?
+ </p>
+ <h2>Configuration</h2>
+ <div>
+ <label for="last-frost-date">Last frost date:</label>
+ <input name="last-frost-date" type="date"></input>
+ </div>
+ <div>
+ <label for="first-frost-date">First frost date:</label>
+ <input name="first-frost-date" type="date"></input>
+ </div>
+ <h2>Key</h2>
+ <ul>
+ <li><img src="images/start-indoors.svg" class="key"/>: start seeds indoors</li>
+ <li><img src="images/direct-sow.svg" class="key"/>: direct sow outdoors</li>
+ <li><img src="images/transplant.svg" class="key"/>: transplant outdoors</li>
+ </ul>
+ <h2>Schedule</h2>
+ <table id="schedule"></table>
+ </div>
+ </body>
+</html>