6b00298bb Remove outdated "related example" 987f1e1cd Fix dead links (#601) 96287a20a Add config option "summaryLength" (#600) ced7f2085 Adjust Over showcase e334a6354 Add new showcase: over 10435b502 Add warning about privacy options only work with internal templates (#525) 48c6b0e4d Minor grammatical fix 684670ebc Add quote 0e9fada52 Improvements to taxonomy template examples e06c4bf73 Add syntax highlighting; consistent 4-space indentation c1cb3f081 Remove dead links for custom permalinks 3e3aefd04 Fix 0a671bc3751479e74a0a9d2132736c61d239707c d65888685 fix file name in 'Add Non-content Entries to a Menu' code toggle (#547) 1a0563857 Add Solus install guide (#590) 8a0d65b0d Update Windows Installation instructions (#564) c4348636a Fix typo 0a671bc37 Add post to menu example af14497c6 Add notes for `os.Stat` (Hugo 0.47) (#557) e49f65bb3 Singular to plural cb5608dbf Update introduction.md 30b060dff Add variable re-definition example (Hugo v0.48+) 21123967e Minor edits fac3df043 Refresh the Go Templates introduction 4a9600e92 Updating URL to how-to-guide for hosting hugo site on firebase bfaa7779c add missing word c2cb5d09b Tweak 'name: weight' to 'name: date' in example (#582) 5ea938ad6 Remove some Scratch 2708dcd57 Release 0.48 e375d0f05 Merge branch 'temp48' 75e36c160 releaser: Prepare repository for 0.49-DEV a6102f253 releaser: Add release notes to /docs for release of 0.48 41fc35db4 releaser: Bump versions for release of 0.48 64b9ecc74 Spell out the npm command for installing PostCSS 19e900a17 Improved Related Content doc fe21600e7 Merge commit '844aef544c19e9d8f529b4f8144e089d0982bb34' 844aef544 Squashed 'themes/gohugoioTheme/' changes from 66249819..68ddff44 069828db8 Update git.md d881d1433 Make default "related" behavior more explicit 60b9160eb Add docs for displaying 404 page on CloudFront b72ebc760 Add .gitattributes to /resources 000cf85f4 Make the pros/cons styling consistent for summaries; use desc list ebf1da97a Add note about outputStyle compressed e3338ee91 Triple backquote syntax fix 361962a7c Add one more Blogger to Hugo tool for Windows (.NET Framework 4.5) (#540) 066606a21 Fix wrong link about Mmark Syntax Document faee70757 Added exitwp-for-hugo 6b4108051 Add hugo-wrapper to starter-kits 4695dfba2 Added Utterances as Comments Alternatives. c7ba9e3e1 Correct typo beb850d9f Release 0.47.1 1cf417c8a Merge branch 'temp471' 0843bc46c releaser: Prepare repository for 0.48-DEV 8ff5c8b70 releaser: Add release notes to /docs for release of 0.47.1 e2353434d releaser: Bump versions for release of 0.47.1 ffb1300af Update development.md c22234ea5 netlify: Minify output 5b9191c56 Release 0.47 bfd92cf52 releaser: Prepare repository for 0.48-DEV ac7acf730 releaser: Add release notes to /docs for release of 0.47 b0096099d releaser: Bump versions for release of 0.47 86a7ae459 docs: Regenerate CLI docs d2c8b72bc Merge commit 'a95896878f4b4a79448b39ce93a4e0d3258b4a43' 84de7ef59 Merge commit '3a44bf182fed5f34621f450114083a6dd7e88a07' git-subtree-dir: docs git-subtree-split: 6b00298bb26b700281df28817b6556e7480cdd1e
4.8 KiB
title | linktitle | description | godocref | date | publishdate | lastmod | categories | keywords | menu | weight | sections_weight | draft | aliases | toc | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Local File Templates | Local File Templates | Hugo's `readerDir` and `readFile` functions make it easy to traverse your project's directory structure and write file contents to your templates. | https://golang.org/pkg/os/#FileInfo | 2017-02-01 | 2017-02-01 | 2017-02-01 |
|
|
|
110 | 110 | false |
|
true |
Traverse Local Files
With Hugo's readDir
and readFile
template functions, you can traverse your website's files on your server.
Use readDir
The readDir
function returns an array of os.FileInfo
. It takes the file's path
as a single string argument. This path can be to any directory of your website (i.e., as found on your server's file system).
Whether the path is absolute or relative does not matter because---at least for readDir
---the root of your website (typically ./public/
) in effect becomes both:
- The file system root
- The current working directory
readDir
Example: List Directory Files
This shortcode creates a link to each of the files in a directory---display as the file's basename---along with the file's size in bytes.
{{< code file="layouts/shortcodes/directoryindex.html" download="directoryindex.html" >}} {{< readfile file="/themes/gohugoioTheme/layouts/shortcodes/directoryindex.html" >}} {{< /code >}}
You can then call the shortcode as follows inside of your content's markup:
{{</* directoryindex path="/static/css" pathURL="/css" */>}}
The above shortcode is part of the code for the Hugo docs. Here it lists this site's CSS files:
{{< directoryindex path="/themes/gohugoioTheme/static/dist" pathURL="/css" >}}
{{% note "Slashes are Important" %}}
The initial slash /
in pathURL
is important in the directoryindex
shortcode. Otherwise, pathURL
becomes relative to the current web page.
{{% /note %}}
Use readFile
The readfile
function reads a file from disk and converts it into a string to be manipulated by other Hugo functions or added as-is. readFile
takes the file, including path, as an argument passed to the function.
To use the readFile
function in your templates, make sure the path is relative to your Hugo project's root directory:
{{ readFile "/content/templates/local-file-templates" }}
readFile
Example: Add a Project File to Content
As readFile
is a function, it is only available to you in your templates and not your content. However, we can create a simple shortcode template that calls readFile
, passes the first argument through the function, and then allows an optional second argument to send the file through the Blackfriday markdown processor. The pattern for adding this shortcode to your content will be as follows:
{{</* readfile file="/path/to/local/file.txt" markdown="true" */>}}
{{% warning %}}
If you are going to create custom shortcodes with readFile
for a theme, note that usage of the shortcode will refer to the project root and not your themes
directory.
{{% /warning %}}
Here is the templating for our new readfile
shortcode:
{{< code file="layouts/shortcodes/readfile.html" download="readfile.html" >}} {{< readfile file="/themes/gohugoioTheme/layouts/shortcodes/readfile.html">}} {{< /code >}}
This readfile
shortcode is also part of the Hugo docs. So is testing.txt
, which we will call in this example by passing it into our new readfile
shortcode as follows:
{{</* readfile file="/content/en/readfiles/testing.txt" */>}}
The output "string" for this shortcode declaration will be the following:
{{< readfile file="/content/en/readfiles/testing.txt" >}}
However, if we want Hugo to pass this string through Blackfriday, we should add the markdown="true"
optional parameter:
{{</* readfile file="/content/en/readfiles/testing.txt" markdown="true" */>}}
And here is the result as called directly in the Hugo docs and rendered for display:
{{< readfile file="/content/en/readfiles/testing.txt" markdown="true">}}