site: fix :hour, :minute, :second permalink keys to refer to date front matter value
Fixes #4336
This commit is contained in:
parent
a32c77fb87
commit
da6618c6fc
|
@ -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 Post’s filename. (00..23)
|
Hour of the day, 24-hour clock, zero-padded from the post’s <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 Post’s filename. (00..59)
|
Minute of the hour from the post’s <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 Post’s filename. (00..60)
|
Second of the minute from the post’s <code>date</code> front matter. (00..59)
|
||||||
|
</p>
|
||||||
</p>
|
</p>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
Loading…
Reference in New Issue