mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
[Docs] Fix more missing .
in example partial
calls
This commit is contained in:
parent
20bed49f52
commit
659f71e617
3 changed files with 6 additions and 6 deletions
|
@ -152,7 +152,7 @@ It makes use of [partial templates](/layout/partials/)
|
|||
</div>
|
||||
{{ end }}
|
||||
|
||||
{{ partial "footer.html" }}
|
||||
{{ partial "footer.html" . }}
|
||||
|
||||
Notice how the project/single.html template uses an additional parameter unique
|
||||
to this template. This doesn't need to be defined ahead of time. If the key is
|
||||
|
|
|
@ -75,4 +75,4 @@ It makes use of [partial templates](/templates/partials/) and uses a similar app
|
|||
</div>
|
||||
</section>
|
||||
|
||||
{{ partial "footer.html" }}
|
||||
{{ partial "footer.html" . }}
|
||||
|
|
|
@ -91,7 +91,7 @@ content tagged with each tag.
|
|||
</div>
|
||||
</section>
|
||||
|
||||
{{ partial "footer.html" }}
|
||||
{{ partial "footer.html" . }}
|
||||
|
||||
|
||||
Another example listing the content for each term (ordered by Date):
|
||||
|
@ -115,7 +115,7 @@ Another example listing the content for each term (ordered by Date):
|
|||
</div>
|
||||
</section>
|
||||
|
||||
{{ partial "footer.html" }}
|
||||
{{ partial "footer.html" . }}
|
||||
|
||||
|
||||
## Ordering
|
||||
|
@ -141,7 +141,7 @@ Hugo can order the meta data in two different ways. It can be ordered:
|
|||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
{{ partial "footer.html" }}
|
||||
{{ partial "footer.html" . }}
|
||||
|
||||
### Example terms.html file (ordered by popularity)
|
||||
|
||||
|
@ -160,4 +160,4 @@ Hugo can order the meta data in two different ways. It can be ordered:
|
|||
</div>
|
||||
</section>
|
||||
|
||||
{{ partial "footer.html" }}
|
||||
{{ partial "footer.html" . }}
|
||||
|
|
Loading…
Reference in a new issue