docs: Document .File variables for pages
authordigitalcraftsman <digitalcraftsman@protonmail.com>
Wed, 18 May 2016 19:07:06 +0000 (21:07 +0200)
committerdigitalcraftsman <digitalcraftsman@protonmail.com>
Fri, 29 Jul 2016 18:12:28 +0000 (20:12 +0200)
Fixes #2154.

docs/content/templates/variables.md

index a8e779cbc472266d0816f45316502074017c28e2..953ba5cb6d951257ec6b61a3c82f3bbe42ad006e 100644 (file)
@@ -161,6 +161,20 @@ Also available is `.Site` which has the following:
 **.Site.BuildDrafts** A boolean (Default: false) to indicate whether to build drafts. Defined in the site configuration.<br>
 **.Site.Data**  Custom data, see [Data Files](/extras/datafiles/).<br>
 
+## File Variables
+
+The `.File` variable gives you additional information of a page.
+
+> **Note:** `.File` is only accessible on *Pages* but **not** on *Nodes* (like the homepage and list pages).
+
+Available are the following attributes:
+
+**.File.Path** The original relative path of the page, e.g. `content/posts/foo.md`<br>
+**.File.LogicalName** The name of the content file that represents a page, e.g. `foo.md`<br>
+**.File.BaseFileName** The filename without extension, e.g. `foo`<br>
+**.File.Ext** or **.File.Extension** The file extension of the content file, e.g. `md`<br>
+**.File.Dir** Given the path `content/posts/dir1/dir2/`, the relative directory path of the content file will be returned, e.g. `posts/dir1/dir2/`<br>
+
 ## Hugo Variables
 
 Also available is `.Hugo` which has the following: