site: fix :hour, :minute, :second permalink keys to refer to date front matter value

Fixes #4336
This commit is contained in:
Parker Moore 2016-01-11 13:36:41 -08:00
parent a32c77fb87
commit da6618c6fc
1 changed files with 4 additions and 3 deletions

View File

@ -79,7 +79,7 @@ permalink is defined according to the format `/:categories/:year/:month/:day/:ti
</td> </td>
<td> <td>
<p> <p>
Hour of the day, 24-hour clock, zero-padded from the Posts filename. (00..23) Hour of the day, 24-hour clock, zero-padded from the posts <code>date</code> front matter. (00..23)
</p> </p>
</td> </td>
</tr> </tr>
@ -89,7 +89,7 @@ permalink is defined according to the format `/:categories/:year/:month/:day/:ti
</td> </td>
<td> <td>
<p> <p>
Minute of the hour from the Posts filename. (00..59) Minute of the hour from the posts <code>date</code> front matter. (00..59)
</p> </p>
</td> </td>
</tr> </tr>
@ -99,7 +99,8 @@ permalink is defined according to the format `/:categories/:year/:month/:day/:ti
</td> </td>
<td> <td>
<p> <p>
Second of the minute from the Posts filename. (00..60) Second of the minute from the posts <code>date</code> front matter. (00..59)
</p>
</p> </p>
</td> </td>
</tr> </tr>