M template/dash.html => template/dash.html +2 -2
@@ 7,13 7,13 @@
<td>Today is {{ .Today }}.</td>
<td> </td>
{{if not $hasToday}}
- <td><form method="POST" action="jrnl/{{ .Today.Year }}">
+ <td><form method="POST" action="./jrnl/{{ .Today.Year }}">
<input type="hidden" name="text" value="> {{ .Today }} " />
<input type="submit" value="Start today's entry!" />
</form></td>
{{end}}
{{if not $hasYesterday}}
- <td><form method="POST" action="jrnl/{{ .Yesterday.Year }}">
+ <td><form method="POST" action="./jrnl/{{ .Yesterday.Year }}">
<input type="hidden" name="text" value="> {{ .Yesterday }} " />
<input type="submit" value="Start yesterday's entry!" />
</form></td>