update docs for permalinks with all fields
authorNate Finch <nate.finch@gmail.com>
Sat, 2 Aug 2014 11:16:24 +0000 (07:16 -0400)
committerspf13 <steve.francia@gmail.com>
Wed, 6 Aug 2014 04:05:40 +0000 (00:05 -0400)
List all the fields and what they mean, based on hugolib/permalinks.go

docs/content/extras/permalinks.md

index 54b4c6104a9566303e0e7fca6f6915237a6efbf0..4018b37ed98c9a590c15282f2f385365ffc980db 100644 (file)
@@ -36,3 +36,18 @@ A file named `content/post/sample-entry` which contains a line
 appearing at `public/2013/11/sample-entry/index.html` and be reachable via
 the URL <http://yoursite.example.com/2013/11/sample-entry/>.
 
+The following is a list of values that can be used in a permalink definition, 
+all references to time are dependent on the content's date.
+
+**:year** the 4 digit year<br/>
+**:month** the 2 digit month<br/>
+**:monthname** the name of the month<br/>
+**:day** the 2 digit day<br/>
+**:weekday** the 1 digit day of the week (Sunday = 0)<br/>
+**:weekdayname** the name of the day of the week<br/>
+**:yearday** the 1-3 digit day of the year<br/>
+**:section** the content's section<br/>
+**:title** the content's title<br/>
+**:slug** the content's slug (or title if no slug)<br/>
+**:filename** the content's filename (without extension)<br/>
+