diff options
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 34 |
1 files changed, 19 insertions, 15 deletions
@@ -6,7 +6,7 @@ <link href="css/garden.css" rel="stylesheet"> </head> <body> - <div class="container"> + <div id="container" class="container"> <h1>Intensive Vegetable Garden Scheduler</h1> <p> This handy tool helps plan your intensively planted, organic, @@ -35,17 +35,17 @@ </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. + nothern areas of the northern hemisphere (USDA zone 7 and below) + 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? + License version 3 or later. Perhaps you'd like to add a new + crop or fix a bug? </p> <h2>Configuration</h2> <div> @@ -56,14 +56,18 @@ <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> + <h3>Key</h3> + <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> + <table id="schedule"></table> + </div> + <h2>Week-by-week instructions</h2> + <div id="instructions"></div> </div> </body> </html> |