docs: Update layouts path name

This commit is contained in:
Brian Shumate 2016-12-15 19:09:51 -05:00 committed by Bjørn Erik Pedersen
parent 79b2725ac4
commit 6fd4bfcae3

View file

@ -15,8 +15,8 @@ toc: true
In practice, it's very convenient to split out common template portions into a In practice, it's very convenient to split out common template portions into a
partial template that can be included anywhere. As you create the rest of your partial template that can be included anywhere. As you create the rest of your
templates, you will include templates from the ``/layout/partials` directory templates, you will include templates from the ``/layouts/partials` directory
or from arbitrary subdirectories like `/layout/partials/post/tag`. or from arbitrary subdirectories like `/layouts/partials/post/tag`.
Partials are especially important for themes as it gives users an opportunity Partials are especially important for themes as it gives users an opportunity
to overwrite just a small part of your theme, while maintaining future compatibility. to overwrite just a small part of your theme, while maintaining future compatibility.
@ -99,11 +99,11 @@ This footer template is used for [spf13.com](http://spf13.com/):
</body> </body>
</html> </html>
To reference a partial template stored in a subfolder, e.g. `/layout/partials/post/tag/list.html`, call it this way: To reference a partial template stored in a subfolder, e.g. `/layouts/partials/post/tag/list.html`, call it this way:
{{ partial "post/tag/list" . }} {{ partial "post/tag/list" . }}
Note that the subdirectories you create under /layout/partials can be named whatever you like. Note that the subdirectories you create under /layouts/partials can be named whatever you like.
For more examples of referencing these templates, see For more examples of referencing these templates, see
[single content templates](/templates/content/), [single content templates](/templates/content/),