You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

overview.md 8.0KB

6 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. +++
  2. title = "Overview"
  3. weight = 10
  4. +++
  5. Zola uses the [Tera](https://tera.netlify.com) template engine and is very similar
  6. to Jinja2, Liquid or Twig.
  7. As this documentation will only talk about how templates work in Zola, please read
  8. the [Tera template documentation](https://tera.netlify.com/docs/templates/) if you want
  9. to learn more about it first.
  10. All templates live in the `templates` directory. If you are not sure what variables are available in a template, you can just stick `{{ __tera_context }}` in it
  11. to print the whole context.
  12. A few variables are available on all templates minus RSS and sitemap:
  13. - `config`: the [configuration](./documentation/getting-started/configuration.md) without any modifications
  14. - `current_path`: the path (full URL without the `base_url`) of the current page, never starting with a `/`
  15. - `current_url`: the full URL for that page
  16. ## Standard Templates
  17. By default, Zola will look for three templates: `index.html`, which is applied
  18. to the site homepage; `section.html`, which is applied to all sections (any HTML
  19. page generated by creating a directory within your `content` directory); and
  20. `page.html`, which is applied to all pages (any HTML page generated by creating a
  21. `.md` file within your `content` directory).
  22. The homepage is always a section (regardless of whether it contains other pages).
  23. Thus, the `index.html` and `section.html` templates both have access to the
  24. section variables. The `page.html` template has access to the page variables.
  25. The page and section variables are described in more detail in the next section of this documentation.
  26. ## Built-in Templates
  27. Zola comes with three built-in templates: `rss.xml`, `sitemap.xml`, and
  28. `robots.txt` (each described in their own section of this documentation).
  29. Additionally, themes can add their own templates, which will be applied if not
  30. overridden. You can override built-in or theme templates by creating a template with
  31. same name in the correct path. For example, you can override the RSS template by
  32. creating a `templates/rss.xml` file.
  33. ## Custom Templates
  34. In addition to the standard `index.html`, `section.html`, and `page.html` templates,
  35. you may also create custom templates by creating a `.html` file in the `templates`
  36. directory. These custom templates will not be used by default. Instead, the custom template will _only_ be used if you apply it by setting the `template` front-matter variable to the path for that template (or if you `include` it in another template that is applied). For example, if you created a custom template for your site's About page called `about.html`, you could apply it to your `about.md` page by including the following front matter in your `about.md` page:
  37. ```md
  38. +++
  39. title = "About Us"
  40. template = "about.html"
  41. +++
  42. ```
  43. Custom templates are not required to live at the root of your `templates` directory.
  44. For example, `product_pages/with_pictures.html` is a valid template.
  45. ## Built-in filters
  46. Zola adds a few filters, in addition of the ones [ones already present](https://tera.netlify.com/docs/templates/#built-in-filters) in Tera.
  47. ### markdown
  48. Converts the given variable to HTML using Markdown. This doesn't apply any of the
  49. features that Zola adds to Markdown: internal links, shortcodes etc won't work.
  50. By default, the filter will wrap all text into a paragraph. To disable that, you can
  51. pass `true` to the inline argument:
  52. ```jinja2
  53. {{ some_text | markdown(inline=true) }}
  54. ```
  55. ### base64_encode
  56. Encode the variable to base64.
  57. ### base64_decode
  58. Decode the variable from base64.
  59. ## Built-in global functions
  60. Zola adds a few global functions to [those in Tera](https://tera.netlify.com/docs/templates/#built-in-functions) in order to make it easier to develop complex sites.
  61. ### `get_page`
  62. Takes a path to a `.md` file and returns the associated page
  63. ```jinja2
  64. {% set page = get_page(path="blog/page2.md") %}
  65. ```
  66. ### `get_section`
  67. Takes a path to a `_index.md` file and returns the associated section
  68. ```jinja2
  69. {% set section = get_section(path="blog/_index.md") %}
  70. ```
  71. If you only need the metadata of the section, you can pass `metadata_only=true` to the function:
  72. ```jinja2
  73. {% set section = get_section(path="blog/_index.md", metadata_only=true) %}
  74. ```
  75. ### ` get_url`
  76. Gets the permalink for the given path.
  77. If the path starts with `./`, it will be understood as an internal
  78. link like the ones used in markdown.
  79. ```jinja2
  80. {% set url = get_url(path="./blog/_index.md") %}
  81. ```
  82. This can also be used to get the permalinks for static assets for example if
  83. we want to link to the file that is located at `static/css/app.css`:
  84. ```jinja2
  85. {{/* get_url(path="css/app.css") */}}
  86. ```
  87. By default, assets will not have a trailing slash. You can force one by passing `trailing_slash=true` to the `get_url` function.
  88. An example is:
  89. ```jinja2
  90. {{/* get_url(path="css/app.css", trailing_slash=true) */}}
  91. ```
  92. In the case of non-internal links, you can also add a cachebust of the format `?t=1290192` at the end of a URL
  93. by passing `cachebust=true` to the `get_url` function.
  94. ### `get_taxonomy_url`
  95. Gets the permalink for the taxonomy item found.
  96. ```jinja2
  97. {% set url = get_taxonomy_url(kind="categories", name=page.taxonomies.category) %}
  98. ```
  99. The `name` will almost come from a variable but in case you want to do it manually,
  100. the value should be the same as the one in the front-matter, not the slugified version.
  101. ### `get_taxonomy`
  102. Gets the whole taxonomy of a specific kind.
  103. ```jinja2
  104. {% set categories = get_taxonomy_url(kind="categories") %}
  105. ```
  106. ### `load_data`
  107. Loads data from a file or URL. Supported file types include *toml*, *json* and *csv*.
  108. The `path` argument specifies the path to the data file relative to your content directory.
  109. As a security precaution, If this file is outside of the main site directory, your site will fail to build.
  110. ```jinja2
  111. {% set data = load_data(path="blog/story/data.toml") %}
  112. ```
  113. The optional `format` argument allows you to specify and override which data type is contained
  114. within the file specified in the `path` argument. Valid entries are *"toml"*, *"json"*, *"csv"*
  115. or *"plain"*. If the `format` argument isn't specified, then the paths extension is used.
  116. ```jinja2
  117. {% set data = load_data(path="blog/story/data.txt", format="json") %}
  118. ```
  119. For *toml* and *json* the data is loaded into a structure matching the original data file,
  120. however for *csv* there is no native notion of such a structure. Instead the data is seperated
  121. into a data structure containing *headers* and *records*. See the example below to see
  122. how this works.
  123. In the template:
  124. ```jinja2
  125. {% set data = load_data(path="blog/story/data.csv") %}
  126. ```
  127. In the *blog/story/data.csv* file:
  128. ```csv
  129. Number, Title
  130. 1,Gutenberg
  131. 2,Printing
  132. ```
  133. The equivalent json value of the parsed data would be stored in the `data` variable in the
  134. template:
  135. ```json
  136. {
  137. "headers": ["Number", "Title"],
  138. "records": [
  139. ["1", "Gutenberg"],
  140. ["2", "Printing"]
  141. ],
  142. }
  143. ```
  144. #### Remote content
  145. Instead of using a file, you can load data from a remote URL. This can be done by specifying a `url` parameter to `load_data` rather than `file`.
  146. ```jinja2
  147. {% set response = load_data(url="https://api.github.com/repos/getzola/zola") %}
  148. {{ response }}
  149. ```
  150. By default, the response body will be returned with no parsing. This can be changed by using the `format` argument as above.
  151. ```jinja2
  152. {% set response = load_data(url="https://api.github.com/repos/getzola/zola", format="json") %}
  153. {{ response }}
  154. ```
  155. #### Data Caching
  156. Data file loading and remote requests are cached in memory during build, so multiple requests aren't made to the same endpoint. URLs are cached based on the URL, and data files are cached based on the files modified time. The format is also taken into account when caching, so a request will be sent twice if it's loaded with 2 different formats.
  157. ### `trans`
  158. Gets the translation of the given `key`, for the `default_language` or the `language given
  159. ```jinja2
  160. {{/* trans(key="title") */}}
  161. {{/* trans(key="title", lang="fr") */}}
  162. ```
  163. ### `resize_image`
  164. Resizes an image file.
  165. Pease refer to [_Content / Image Processing_](./documentation/content/image-processing/index.md) for complete documentation.